/* beginning of nav*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
body {
    margin: 0;
    padding: 0;
    /* width: 100%;
    height: 100%; */
    color: #111;
    /* font-size: x-large; */
    box-sizing: border-box;
    align-items: center;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  a {
    color: #111  ;
  }

  
/* Navbar section */
.nav {
  font-family: "Quicksand", sans-serif;
  background-color: white;
  width: 100%;
  height: 100px;
  position: fixed;
  line-height: 65px;
  text-align: center;
  z-index: 1;
}

.nav div.logo {
  float: left;
  width: auto;
  height: auto;
  padding-left: 3rem;
}

.nav div.logo a {
  text-decoration: none;
  font-size: 2.2rem;
}

.nav div.logo a:hover {
  color: #6495ED;
}

.nav div.main_list {
  height: 40px;
  float: right;
}

.nav div.main_list ul {
  width: 100%;
  height: 65px;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav div.main_list ul li {
  width: auto;
  height: 65px;
  padding: 0px;
  padding-right: 1rem;
}

.nav div.main_list ul li a {
  text-decoration: none;
  line-height: 30px;
  font-size: 1.3rem;
}


.btn-outline-success:hover{
  background-color: brown ;
  border-color: brown !important;
  color: #FFF !important;
}

.btn-outline-success{
   border-color: brown !important;
   color: black;
}
.btn-outline-success:visited{
  background-color:brown !important;
  border-color: brown !important ;
  box-shadow: none !important;

}

.btn-outline-success:active{
  border-color: brown !important;
  box-shadow: none !important;

}

.nav div.main_list ul li a:hover {
  color:brown;
}


.navTrigger {
  display: none;
}

.nav {
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}


div.stroke ul li a{
  position: relative;
  padding-bottom: 3px;
}
div.stroke ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: '.';
  color: transparent;
  background: black;
  height: 2px;
}
div.stroke ul li a:hover:after {
  width: 100%;
}
nav ul li a,
nav ul li a:after,
nav ul li a:before {
  transition: all .5s;
}

/* Media qurey section */

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
      margin: 0;
  }
}
.container{
  color: #111;
}
@media screen and (max-width:768px) {
  .navTrigger {
      display: block;
  }
  .nav div.logo {
      margin-left: 0px;
  }
  .nav div.main_list {
      width: 100%;
      height: 0;
      overflow: hidden;
  }
  .nav div.show_list {
      height: auto;
      display: none;
  }
  .nav div.main_list ul {
      flex-direction: column;
      width: 100%;
      height: 100vh;
      right: 0;
      left: 0;
      bottom: 0;
      background-color: #111;
      /*same background color of navbar*/
      background-position: center top;
  }
  .nav div.main_list ul li {
      width: 100%;
      text-align: right;
  }
  .nav div.main_list ul li a {
      text-align: center;
      width: 100%;
      font-size: 3rem;
      padding: 20px;
      padding-left: 0%;
  }
  .nav div.media_button {
      display: block;
  }
}


/* Animation */
/* Inspiration taken from Dicson https://codemyui.com/simple-hamburger-menu-x-mark-animation/ */

.navTrigger {
  cursor: pointer;
  width: 30px;
  height: 25px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  z-index: 1;

}

.navTrigger i {
  background-color: #0000ff;
  border-radius: 2px;
  content: '';
  display: block;
  width: 100%;
  height: 4px;
  z-index: 1;
}

.navTrigger i:nth-child(1) {
  -webkit-animation: outT 0.8s backwards;
  animation: outT 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
  margin: 5px 0;
  -webkit-animation: outM 0.8s backwards;
  animation: outM 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
  -webkit-animation: outBtm 0.8s backwards;
  animation: outBtm 0.8s backwards;
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
  -webkit-animation: inT 0.8s forwards;
  animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
  -webkit-animation: inM 0.8s forwards;
  animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
  -webkit-animation: inBtm 0.8s forwards;
  animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes inM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes outM {
  50% {
      -webkit-transform: rotate(0deg);
  }
  100% {
      -webkit-transform: rotate(45deg);
  }
}

@keyframes outM {
  50% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(45deg);
  }
}

@-webkit-keyframes inT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes inT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes outT {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(9px) rotate(135deg);
  }
}

@keyframes outT {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(9px) rotate(0deg);
  }
  100% {
      transform: translateY(9px) rotate(135deg);
  }
}

@-webkit-keyframes inBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes inBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

@-webkit-keyframes outBtm {
  0% {
      -webkit-transform: translateY(0px) rotate(0deg);
  }
  50% {
      -webkit-transform: translateY(-9px) rotate(0deg);
  }
  100% {
      -webkit-transform: translateY(-9px) rotate(135deg);
  }
}

@keyframes outBtm {
  0% {
      transform: translateY(0px) rotate(0deg);
  }
  50% {
      transform: translateY(-9px) rotate(0deg);
  }
  100% {
      transform: translateY(-9px) rotate(135deg);
  }
}

.affix {
  padding: 0;
  background-color:#212329;
  z-index:1; /*Add this*/
}
.affix2 {
  color: #FFF;
}



 
  *, *::before, *::after {
      box-sizing: border-box;
    }
    
    :root {
      --heading-font-family: 'Poppins', sans-serif; 
      --body-font-family: 'Lato', sans-serif;
      
    }
    
    .subscription_method {

      /* margin:10rem; */
      padding-top: 200px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 10rem;
    }
    
    .column {
      flex-grow: 1;
      flex-basis: 0;
      max-width: 500px;
      height: 400px;
      border-radius: 8px;
      background-color:#ead2a8 ;
      transition: 0.3s all ease;
      padding: 2rem;
      margin: 10px;
      align-items: center;
      
    }
  
  
    
    .column.Luxe {
      flex-grow: 1;
      flex-basis: 0;
      max-width: 500px;
      height: 400px;
      border-radius: 8px; 
      background-color:#ead2a8;
      color: black;
      padding: 2rem;
      margin: 10px;

    }
    
    
    
    
    .column:hover{
      transform: scale(1.1);
      box-shadow: 0 8px 31px;
      margin-top: -1rem;
      padding-top: 2rem;
      margin-bottom: -1rem;
      padding-bottom: 2rem;
      position: relative;
      
      }
   
     .column.Luxe:hover{
      transform: scale(1.1);
      box-shadow: 0 8px 31px;
      margin-top: -1rem;
      padding-top: 2rem;
      margin-bottom: -1rem;
      padding-bottom: 2rem;
      position: relative;
    }
    .column.nice:hover{
      transform: scale(1.1);
      box-shadow : 0 8px 31px;
    }
    
    .column:first-child {
      border-top-right-radius: 0; 
      border-bottom-right-radius: 0; 
    }
    
    .column:last-child {
      border-top-left-radius: 0; 
      border-bottom-left-radius: 0; 
    }
    
    .price_h {
      align-items: center;
      font-family: var(--heading-font-family);
      font-weight: bold;
      display: flex;
      flex-direction: column;
      
    }
    
    .price {
      font-size: 2.5rem;
      display: flex;
    }
    
    .dollar {
      font-size: 1.5rem;
      margin-top: .5rem;
      margin-right: .25rem;
    }
    
    .monthly {
      margin-bottom: 1.1rem;
      text-transform: uppercase;
      font-size: .90rem;
      align-self: flex-end;
      
    }
    
    .name {
      text-transform: uppercase;
      font-size: .9rem;
      margin-top: 1rem;
      margin-bottom: 0;
    }
    
    .divider {
      background-color: rgba(0, 0, 0, .2);
      margin-top: 2rem;
      margin-bottom: 2rem;
      height: 1px;
      width: 100%;
      
    }
    
    .column.nice .divider {
      background-color: rgba(255, 255, 255, .2);
    }
    
    .feature {
      display: flex;
      align-items: center;
      margin: .5rem;
    }
    
    .feature img {
      height: 1.1em;
      width: 1.1em;
      margin-right: .5rem;
    }
    
    .feature.no {
      color: rgb(92, 89, 89);
      text-decoration-line: line-through;
    }
    
   
  
    .cta {
      cursor: pointer;
      font-family: var(--heading-font-family);
      font-weight: bold;
      border-radius: 4px;
      margin-top: 4rem;
      transition: 100ms;
      transform: scale(1);
      background-color: black;
      color: white;
      height: 50px;
      align-items: center;
      padding: .60rem 1rem;
      
    }
    .email {
      cursor: pointer;
    }
   .column.nice .cta {
      background-color:black;
      color: white;
    }
    .column.Luxe .cta {
      background-color:black;
      color: white;

    }
    
    .cta:hover, .cta:focus {
      transform: scale(1.2);
    }


    .contact-container{
      width: 85%;
      align-items: center;
      background: #fff;
      border-radius: 6px;
      padding: 30px 50px 30px 40px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
      margin-left: 100px;
      margin-bottom: 50px;
      
    }
    .contact-container .contact-content{
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .contact-container .contact-content .left-side{
      width: 25%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      margin-top: 15px;
      position: relative;
    }
    .contact-content .left-side::before{
      content: '';
      position: absolute;
      height: 70%;
      width: 2px;
      right: -15px;
      top: 50%;
      transform: translateY(-50%);
      background: #afafb6;
    }
    .contact-content .left-side .details{
      margin: 14px;
      text-align: center;
    }
    .contact-content .left-side .details i{
      font-size: 30px;
      color: #3e2093;
      margin-bottom: 10px;
    }
    .contact-content .left-side .details .topic{
      font-size: 18px;
      font-weight: 500;
    }
    .contact-content .left-side .details .text-one,
    .contact-content .left-side .details .text-two{
      font-size: 14px;
      color: #afafb6;
    }
    .contact-container .contact-content .right-side{
      width: 75%;
      margin-left: 75px;
    
    }
    .contact-content .right-side .topic-text{
      font-size: 23px;
      font-weight: 600;
      color: #3e2093;
      text-align:center ;
      padding-left: 160px;
      padding-bottom: 10px;
     
    }
    .contact-content .right-side .topic-text p{
    text-align:left ;
     
    }
    .right-side .input-box{
      height: 50px;
      width: 100%;
      margin: 12px 0;
    }
    .right-side .input-box input,
    .right-side .input-box textarea{
      height: 100%;
      width: 100%;
      border: none;
      outline: none;
      font-size: 16px;
      background: #F0F1F8;
      border-radius: 6px;
      padding: 0 15px;
      resize: none;

    }
    .right-side .message-box{
      min-height: 110px;
    }
    .right-side .input-box textarea{
      padding-top: 6px;
    }
    .right-side .button{
      display: inline-block;
      margin-top: 12px;
      align-items: center;
      margin-left: 400px;
    }
    .right-side .button input[type="button"]{
      color: #fff;
      font-size: 18px;
      outline: none;
      border: none;
      padding: 12px 16px;
      border-radius: 6px;
      background: #3e2093;
      cursor: pointer;
      transition: all 0.3s ease;
        display: center;
        align-items: center;
        min-width: 180px;
    }
    .btnn{
      background: #5029bc;
      
    
    }
    .button input[type="button"]:hover{
      background: #5029bc;
    }
    
    
    @media (max-width: 950px) {
      .contact-container{
        width: 90%;
        padding: 30px 40px 40px 35px ;
      }
      .contact-container .content .right-side{
       width: 75%;
       margin-left: 55px;
    }
    }
    @media (max-width: 820px) {
      .contact-container{
        margin: 40px 0;
        height: 100%;
      }
      .contact-container .content{
        flex-direction: column-reverse;
      }
     .contact-container .content .left-side{
       width: 100%;
       flex-direction: row;
       margin-top: 40px;
       justify-content: center;
       flex-wrap: wrap;
     }
     .contact-container .content .left-side::before{
       display: none;
     }
     .contact-container .content .right-side{
       width: 100%;
       margin-left: 0;
     }
    }

  
   /*FOOTER */
  *{
    padding:0;
    margin:0;
    box-sizing:border-box;
    /* font-family: Arial, Helvetica, sans-serif; */
  }
  .footer-container{
    background-color:#212329;
    padding:2rem 0 1rem 0;
    font-size: medium;
  }
  .footer{
    width:80%;
    background-color:#212329;
    color:white;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    margin:0 auto;
  }
  .footer-heading{
    display:flex;
    flex-direction: column;
    margin-right: 4rem;
  }
  .footer-heading h2{
    margin-bottom: 2rem;
  }
  .footer-heading a{
    color:white;
    text-decoration: none;
    margin-bottom:0.5rem;
  }
  .footer-heading a:hover{
    color:#6495ED;
    transition: 0.3s ease-out;
  }
  .footer-email-form h2{
    margin-bottom: 2rem;
  }
  #footer-email {
    width:250px;
    height:40px;
    border-radius: 4px;
    outline: none;
    border: none;
    padding-left: 0.5rem;
    font-size: 1rem;
    margin-bottom:1rem;
  }
  #footer-email::placeholder{
    color:#b1b1b1;
  }
  #footer-email-btn{
    width: 100px;
    height: 40px;
    border-radius: 4px;
    background-color:#6495ED;
    outline: none;
    border: none;
    color:#fff;
    font-size: 1rem;
  }
  #footer-email-btn:hover{
    cursor: pointer;
    background-color: #337AF1;
    transition: all 0.4s ease-out;
  }
  @media screen and (max-width:1150px){
    .footer{
        height: 50vh;
     }
     .footer-email-form{
         margin-top:4rem;
     }
  }
  @media screen and (max-width:820px){
    .footer{
        padding-top: 4rem;
    }   
  }
  @media screen and (max-width:720px){
    .footer-3{
        display:none;
     }
     .footer-email-form{
         margin-top:2rem;
     }
  }
  .copyright {
    display: flex;
    justify-content: center;
    margin: 1rem auto 0 auto;
    padding-top: 1rem;
    border-top: grey 1px solid;
    width: 80%;
    color: white;
    font-family: 'lato',sans-serif;
  }
    
  #myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: blue;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
  }
  #myBtn:hover {
    background-color: #555;
  }
  
  .color{
    background-color: azure;
  }