

/* Genral Styles */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body,
button,
input,
textarea {
 font-family: 'Inter', sans-serif;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}
.wrapper{
        position: relative;
        z-index: 5;
        width: 90%;
        padding: 5px 20px;
        margin: 0 auto;
}
main{
    background: #28307e!important;
}
.quests{
  padding: 25px !important;
}
.link-sp{
    background: linear-gradient(to right, rgba(117,88,165,1) 0%,rgba(37,184,213,1) 99%);
    border-radius: 20px;
    padding: 10px;
    color: white;
}
.link-sp:hover{
    background: linear-gradient(to right, rgba(37,184,213,1) 1%, rgba(117,88,165,1) 98%);
 }
 .title{
     color: white;
     text-align: center;
     margin: 10px;
 }
 .text{
     color: white;
     line-height: 1.6;
     margin: 5px;
     margin-bottom: 18px;
     text-align: left;
 }
 .title:before {
    content: attr(data-title);
    display: block;
    margin: 10px;
    color: #26b6d4;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  .points{
      position: absolute;
      opacity: 0.5;
  }
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
   
    justify-content: center;
  }
  .section{
    padding-top: 60px;
  }

/* NAV BAR */
nav{
    position: absolute;
    background-color: #28307e;
    width: 100%;
    height: 100px;
    z-index: 50;
    border-bottom: px solid white;
}


.nav-logo{
    display: flex;
    align-items: center;
}

.nav-logo img{
    width: 150px;
    margin-top: 10px;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}
.nav-links {
position: relative;
top: 10px;
}

.nav-links ul {
    display: flex;
  }
  
  .nav-links a {
    display: inline-block;
    padding: 10px 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    transition: 0.3s;
  }
  .nav-links ul li{
      margin: 1px 10px;
      cursor: pointer;
  }

  .nav-links a:hover{
      color: #26b6d4;
  }

  .nav-links .link-sp{
    background: linear-gradient(to right, rgba(117,88,165,1) 0%,rgba(37,184,213,1) 99%);
    border-radius: 20px;
    text-transform: unset;
    font-size: 1em;
    padding: 15px;

  }
  .nav-links .link-sp:hover{
     background: linear-gradient(to right, rgba(37,184,213,1) 1%, rgba(117,88,165,1) 98%);
     color: white;

    }
    .hamburger-menu {
      width: 2.7rem;
      height: 3rem;
      z-index: 100;
      position: relative;
      display: none;
      align-items: center;
      justify-content: flex-end;
    }
    .hamburger-menu .bar {
      position: relative;
      width: 2.1rem;
      height: 3px;
      border-radius: 3px;
      background-color:  rgba(37,184,213,1)  ;
      transition: 0.5s;
    }
    
    .bar:before,
    .bar:after {
      content: "";
      position: absolute;
      width: 2.1rem;
      height: 3px;
      border-radius: 3px;
      background-color: white;
      transition: 0.5s;
    }
    
    .bar:before {
      transform: translateY(-9px);
    }
    
    .bar:after {
      transform: translateY(9px);
    }
    
    nav.open .hamburger-menu .bar {
      background-color: transparent;
      transform: rotate(360deg);
    }
    
    nav.open .hamburger-menu .bar:before {
      transform: translateY(0) rotate(45deg);
      background-color: orangered;
    }
    
    nav.open .hamburger-menu .bar:after {
      transform: translateY(0) rotate(-45deg);
      background-color: orangered;
    }
    .footer-input-wrap{
        display: none;
    }
    nav.open .nav-links {
      transform: translateX(0);
    }
    nav ul li{
        padding: 1px 10px;
    }
  /* HEADER-CONTENT */
  .header-content{
      padding-top: 130px ;
  }
  .column-2{
      position: relative;
  }
  header .points2 {
    bottom: 10%;
    left: auto;
    right: 0%;
    top: auto;
    width: 500px;
  }
  img.img-element{
      width: 500px;
  }
  header .title:before {
    content: attr(data-title);
    display: block;
    margin-bottom: 5px;
    color: #26b6d4;
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  header .title{
      text-align: left;
  }
  .header-content .text{
    text-align: left;
  }

  /*purchase-link*/
  .purchase{
      width: 180px;
      height: 100px;
    padding: 10px;
  }
  .image-link{
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-column-gap: 5px;
  }
  .section{
      margin: 40px auto;
  }

  /*HOW IT WORKS*/
  
  
  
 .amor{
     display: flex;
    align-items: center;
    position: relative;
    justify-content: space-evenly;
 }
 .how-works .iconify{
     font-size: 40px;
     position: absolute;
     bottom: 10%;
 }
 .column-2 img{
     width: 75%;
     margin-left: 35px;
 }
 .how-works .column-1{
     width: 90%;
     margin-left: 30px;
 }
 .how-works .title:before {
    content: attr(data-title);
    display: block;
    margin: 10px;
    color: #26b6d4;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
  }
  .swiper-container {
    width: 1000px;
    height: 400px;
  }

  /*Benefit section*/
  .benefit-box{
    background: #1d2478;
    border-radius: 10px;
    padding: 15px 5px;
    margin: 10px 10px;
    text-align: center;
  }
  h6{
    color: white;
  }
  .benefits{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  /*TESTIMONY*/
  .testimony{
    color: white;
    width: 300px;
    background: #1d2478;
    border-radius: 10px;
    padding: 20px 20px;
    margin: 10px 1px;
  }
  .testimonies{
    display: flex;
  justify-content: space-evenly;
  }
  .quests{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 3px auto;
    background: #1d2478;
    padding: 10px 10px ;
  }
  .quest{
    color: white;
  }
  .ansa.text{
    line-height: 1.6;
  }
#ansa{
    text-align: left;
    width: 70%;
    line-height: 1.6;
    margin: 3px auto;
    background-color:#1d2478;
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    color: white;
  }
  #links{
    color: white;
    cursor: pointer;
  }
  #ansa.open{
    height: fit-content;
    padding: 10px 15px;
     transition: max-height 0.5s;
    -moz-transition:max-height 0.5s ;
  }
  .linka{
    color: white;
    cursor: pointer;
  }
  #answer{
    text-align: left;
    width: 70%;
    margin: 3px auto;
    background-color:#1d2478;
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    color: white;
  }
  #answer.open{
    height: fit-content;
    padding: 10px 15px;
     transition: max-height 0.5s;
    -moz-transition:max-height 0.5s ;
  }
  #Answer{
    text-align: left;
    width: 70%;
    margin: 3px auto;
    background-color:#1d2478;
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    color: white;
  }
  #Answer.open{
    height: fit-content;
    padding: 10px 15px;
     transition: max-height 0.5s;
    -moz-transition:max-height 0.5s ;
  }
  #top{
    text-align: left;
    width: 70%;
    margin: 3px auto;
    background-color:#1d2478;
    position: relative;
    z-index: 1;
    height: 0;
    overflow: hidden;
    color: white;
  }
  #top.open{
    height: fit-content;
    padding: 10px 15px;
     transition: max-height 0.5s;
    -moz-transition:max-height 0.5s ;
  }
  
  /*CONTACT US*/
.icon{
  color: white;
  font-size: 30px;
  margin: 10px;
  border-right: 2px solid white;
  width: 55px;
  display: flex;
  align-items: center;
  height: 60px;
}
.contact-content{
  margin: 62px ;
}
.jerrycan{
  display: flex;
  align-items: center;
  
}
.contact-content.title:before{
  font-size: 12px;
  text-align: left;
}
.contact-content .title{
  font-size: 16px;
}
.contact-content p{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 13px;
  text-align: left;
}
/*FOOTER*/
.footer{
  background-color:#1d2478;
  padding: 15px;
  font-size: 15px;
}
.copy{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer a{
  color: white;
}
.footer a:hover{
  color: lightblue;
}
.footer-link a{
  margin: 10px;
}
.section{
  margin: 50px;
  margin-bottom: 0;
  
}
.title{
  margin: 20px;
}
.column-1 .title{
  margin: 0;
  margin-bottom: 5px;
}
.column-1 .title::before{
  margin: 0;
  margin-bottom: 5px;
}
/*PLANS*/
.plan{
  width: 31%;
  background-color: #999999;
  padding: 15px 15px;
  margin: 10px 10px;
  border-radius: 10px;
  transition: .3s;
  text-align: center;
}
.plan:hover{
  background-color: darkgrey;
  box-shadow: 2px 3px 3px 1px black;
  transform: translateY(-3px);
}
.plan p{
  margin: 20px;
  font-size: 17px;
  color:  #1d2478;
}
.plan-title{
  border-bottom: 1px solid #1d2478;
  color: #26b6d4;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 800;
}
.stem{
  font-weight: 600;
}
.rema{
  text-align: center;
}
.plans{
  display: flex;
  align-items: center
}

/*LOGIN*/
.log-form{
  background-color: #1d2478;
  width: 450px;
  padding: 30px 20px;
  border-radius: 5px;
}
.form{
  display: block;
  width: 80%;
  margin: 10px auto;
  border-radius: 20px;
   padding: 16px 20px;
}
.signup-page .title{
  text-align: center;
}
.tre{
  color: white;
  margin-left: 40px;
  margin-bottom: 20px;
}
.form-link{
  text-align: center;
  font-size: 16px;
  color: white;
  display: block;
}
.form-link:hover{
  text-decoration: grey;
}
.link-sp{
  cursor: pointer;
}
.checkbox{
  width: 30px;
  height: 15px;
}
.tren{
  color: white;
}
.column-1{

  margin-right: 40px;
}
.column-1 .title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: capitalize;
}
.aj{
  font-size: 13px;
}
.as{
  text-align: center;
  color: aliceblue;
}
.sepa{
  display: none;
}
.footer-newstletter{
  display: none;
}
/*RESPONSIVENESS*/
/*SIGN UP AND LOGIN*/
@media screen and (max-width: 1000px){
  .grid-2{
    display: initial;
  } 
  .column-1 img{
    width: 95%;
  }
  .hh{
    background: transparent !important;
  }
  .log-form{
    width: 95%;
  }
  .image-link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
  }
  .purchase{
    width: 95%;
  }
  .copy{
    display: initial;
    text-align: center;
  }

  /*HOMEPAGE*/
  .column-1 .title::before {
    margin: 0;
    margin-bottom: 5px;
}
header .title:before{
  font-size: 20px;
}
.like{
  padding-top: 80px;
}
.column-1,.column-2{
  padding: 10px;
  margin-right: 0%;
  margin-left: 0;
}
.section{
  margin: 0px;
  padding-top: 10px;
  padding: 5px;
}
.steps{
  width: 98%;
}
.swiper-container{
  width: 100%;
  height: auto;
}
.column-2 img{
  width: 95%;
  margin-left: 0;
}
.how-works .section-header .text{
  display: none;
}
.wrapper{
  width: 100%;
  padding: 10px;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.testimonies {
  display: initial;
  margin: 2px auto;
}
.quests{
  width: 96%;
}
#ansa, #answer, #Answer, #top{
  width: 96%;
}
.sepa{
  display: initial;
}

.contact-content {
   margin: 10px; 
}
.icon{
  width: 40px;
  padding: 10px;
}
.contact.section{
  margin-bottom: 0%;
}
.plans {
  display: initial;
}
.plan{
  width: 97%;
}
.purchase-link.section{
  margin-bottom: 0;
}
.hamburger-menu {
  display: flex;
}



.nav-links {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: #1d2478;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transform: translateX(100%);
  transition: 0.5s;
}

.nav-links ul {
  flex-direction: column;
}

.nav-links a {
  color: white;
}
.aj{
font-size: 10px;
width: 90%;
}


}