*{
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
    scroll-margin-top: 75px;
}
html{
	overflow-y: scroll;
}
body{
	font-family: "Montserrat", sans-serif;
	background-color: #ffffff;
}
body.no-scroll{
	overflow: hidden;
}
/* ------------------- Containers ------------------- */
.container-full {
  padding: 48px;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
/*------------------------------header-----------------------------*/
header {
  height: 75px;
  padding: 4px 20px;
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  position: sticky;
  top: -60px;
  background-color: white;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header.scrolled {
  width: 100%;
  -webkit-animation: 0.3s headerScrolled forwards;
          animation: 0.3s headerScrolled forwards;
  top: 0;
}
.header-inner{
	max-width: 1170px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}
.header-inner .logo{
	max-width: 250px;
	max-height: 55px;
}
.header-inner nav{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.header-inner nav a{
	color: #000;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-decoration: none;
}
.order-now{
	background-color: #57ad65;
	color: #fff;
	font-size: 18px;
	line-height: 44px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-align: center;
	width: auto;
	height: 40px;
	padding: 0 1.5em;
	border-radius: 8px;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}
.order-now{
	animation: pulse 1.5s infinite ease-in-out;
	transform: scale(0.9);
}
@keyframes pulse {
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.hamburger{
	cursor: pointer;
	z-index: 20;
	display: none;
}
.hamburger button{
	display: flex;
	flex-direction: column;
	gap:4px;
	outline: none;
	background: none;
	padding: 0;
	border: 0;
	cursor: pointer;
}
.hamburger button .bar1,
.hamburger button .bar2,
.hamburger button .bar3{
	width: 25px;
	height: 3px;
	background-color: #000;
	transition: 0.4s;
	border-radius: 2px 2px 2px 2px;
}
.hamburger button.menu-open .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
  background: #000;
}
.hamburger button.menu-open .bar2 {
  opacity: 0;
}
.hamburger button.menu-open .bar3 {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
  background: #000;
  
}
/*--------------------hero----------------------------*/
.btn-box{
	max-width: 410px;
	width: 100%;
	margin-top: 35px;
}
.btn{
	width: 100%;
	color: #fff;
	background-color: #57ad65;
	border-bottom: 2px solid #4b9457;
	border-radius: 8px;
	padding: 8px 25px;
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
	animation: pulse 1.5s infinite ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transform: scale(0.9);
}
.btn img {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 0 0 15px;
}
.hero{
	background: url("../img/bg.jpg");
	padding: 25px 0;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
h1{
	font-size: 56px;
	line-height: 62px;
	font-weight: bold;
	margin-top: 10px;
}
.hero-inner{
	color: #000;
}
.hero-mobile{
	display: none;
}
.hero-inner{
	max-width: 1300px;
	width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 6.6fr 5.4fr;
	align-items: center;
}
.hero-inner .hero-left .hero-list li{
	padding-left: 40px;
	background: url("../img/check-blue.png");
	background-size: 22px 22px;
	background-position: 0px 2px;
	background-repeat: no-repeat;
	list-style: none;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	letter-spacing: 0.3px;
	margin-top: 20px;
	text-align: left;
}
.hero-inner .hero-right{
	max-width: 580px;
	width: 80%;
	animation: fadeInAnimation ease 1s;
	animation-iteration-count: 1;
}
.hero-text{
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	margin-top:20px;
}
.hero-list{
	margin-top: 12px;
}
@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.hero-inner .hero-left .hero-rating {
  font-size: 14px;
  line-height: 18px;
  font-weight: normal;
  letter-spacing: 0.3px;
}
.hero-inner .hero-left .hero-rating img {
  margin-right: 7px;
}
.hero-left{
	margin-top: 20px;
}
/*--------------------As seen on----------------------*/
.logos{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap:30px;
	justify-content: center;
	flex-wrap: wrap;
}
.logos .logos-line{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;

}
/*--------------------overview-----------------------*/
#overview{
	background-color:#f6fcff;
	color: #000;
}
.title h2 {
  font-size: 50px;
  line-height: 70px;
  font-weight: 800;
  margin-top: 10px;
  text-align: center;
}
.overview-content{
	display: grid;
	grid-template-columns: 4fr 6fr;
	margin: 0 auto;
}
.overview-img{
	display: flex;
	justify-content: center;
	align-items: center;
}
.overview-text{
	font-size: 17px;
	line-height: 26px;
	letter-spacing: 0.5px;
	
}
.overview-p{
	padding: 0px 16px;
	margin: 20px 0px;
}
a{
	color: #337ab7;
	text-decoration: none;
}
.overview .btn-box{
	margin-left: 30px;
}
/*--------------------Features------------------------*/
.features{
	max-width: 1530px;
	margin: 24px auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: start;
}
.features .features-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.features .feature-item {
  display: grid;
  grid-template-columns: 80px auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  margin: 16px 0;
}
.features .feature-item h3 {
  color:#0c4b88;
  font-size: 24px;
}
.features .feature-item p {
  font-size: 20px;
  padding-top: 5px;
}
.features .feature-item img {
  width: 100%;
  max-width: 100px;
}
.features .feature-center {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
}
.title h2 {
  font-size: 50px;
  line-height: 70px;
  font-weight: 800;
  margin-top: 10px;
  text-align: center;
}
.title{
	text-align: center;
}
.feature-center.hidden-desktop{
	display: none;
}
/*--------------------grid-2-------------------------*/
#benefits{
	background-color: #f6fcff;
	padding-bottom: 5px;
}

.grid-2-container{
	margin: 35px auto;
	max-width: 1135px;
	width: 100%;
}
.grid-2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap:40px;
	margin-bottom: 68px;
	background-color: #f6fcff;
	border-radius: 8px;
}
.grid-2-text{
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px 20px;
}
.grid-2 .grid-2-text h4:first-child{
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	color: rgb(1, 51, 94);
}
.grid-2 .grid-2-text h4{
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
}
.grid-2 p{
	font-size: 18px;
	font-weight: 400;
	line-height: 23px;
}
.text{
	font-size: 24px;
	line-height: 34px;
	max-width: 1015px;
	margin: 3px auto 0 auto;
}
.grid-2 img{
	width: 100%;
	border-radius: 30px;
}
.grid-2:nth-child(2n){
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
/* ------------------- Moneyback ------------------- */
#moneyback {
  background-color: #fff;
  
}

.moneyback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  gap: 80px;
}
.moneyback .moneyback-img {
  width: 100%;
  max-width: 289px;
}
.moneyback .moneyback-text {
  max-width: 624px;
  color: black;
}
.moneyback .moneyback-text .moneyback-title {
  font-size: 53px;
  line-height: 60px;
  font-weight: 600;
  margin-top: 20px;
}
.moneyback .moneyback-text .moneyback-p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  margin-top: 20px;
  letter-spacing: 0.5px;
}
#moneyback{
	margin-top: -40px;
}
/* ------------------- Reviews -------------------*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.review .review-img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}
.review .stars {
  display: block;
  margin: 0 auto;
  width: 100px;
  margin-top: 30px;
}
.review p {
  font-size: 17px;
  line-height: 26px;
  font-weight: normal;
  color: #000;
  letter-spacing: 0.5px;
  margin-top: 20px;
}
.review .reviewer {
  font-size: 17px;
  line-height: 18px;
  color: #000;
  letter-spacing: 0.3px;
  font-weight: 600;
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}
.review .reviewer img {
  width: 12px;
  border-radius: 0;
}
.review .reviewer span {
  color: #37b72d;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.5px;
}
.btn-box.centered {
  margin: 35px auto 0;
}
.mobile-btn-container {
	display: none;
  padding: 20px 0;
}
/* ------------ Footer ------------ */
footer {
  margin-top: 20px;
}
footer * {
  font-size: 16px;
  line-height: 28px;
  color: #808080;
  text-decoration: none;
}
footer .container {
  padding-top: 47px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .container img {
  max-width: 169px;
  margin-bottom: 20px;
}
footer .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 10px;
}
footer .copyright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #dfdfdf;
  margin-bottom: 20px;
}
footer .copyright p {
  font-size: 18px;
  line-height: 35px;
}
.mobile-order-now {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0px -3px 8px 0px #bbbbbb;
          box-shadow: 0px -3px 8px 0px #bbbbbb;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 7px 10px;
}
.mobile-order-now .btn-box {
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hidden {
  display: none !important;
}
.mobile-btn-container {
  padding: 20px 0;
}
/* ------------------- media query ------------------- */
@media screen and (max-width: 1500px){
	
}
@media only screen and (max-width: 1301px){
	.container-full {
	  padding: 40px 0 40px !important;
	}
	.container{
	  width: 900px;
	}
	.title {
	    margin-bottom: 20px;
		margin-top: 20px;
	  }
	.title h2 {
	    font-size: 34px;
	    line-height: 40px;
	    margin-top: 15px;
	}
	.moneyback {
	  gap: 65px;
	}
	.moneyback .moneyback-img {
	  max-width: 250px;
	}
	.moneyback .moneyback-text .moneyback-title {
	  font-size: 34px;
	  line-height: 40px;
	  margin-top: 15px;
	}
}
@media only screen and (max-width: 1100px){
	
}
@media only screen and (max-width: 1024px){
	nav{
		display: flex;
		flex-direction: column !important;
		position: fixed;
		top: 75px;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		background-color: #fff;
		transition: 0.3s;
		padding: 0;
		z-index: 999;
	}
	nav span{
		display: none;
	}
	nav a{
		width: 100%;
		padding: 12px 20px;
		font-size: 15px;
		color: #000;
		font-weight: 500;
		border-bottom: 1px solid #dddddd;
	}
	nav.menu-open {
	  height: 100dvh;
	}
	nav .menu-top {
	  top: 75px;
	}
	.hamburger {
	  display: block;
	}
	.order-now {
	  display: none;
	}
	.container,
	.hero-inner {
	  width: 750px;
	}
	.hero-inner{
		grid-template-columns: 1fr;
		max-width: 500px;
		width: 100%;
		padding: 0px 15px;
	}
	h1{
		font-size: 40px;
		line-height: 45px;
		font-weight: 700;
		text-align: center;
	}
	.hero-text{
		font-size: 16px;
		line-height: 24px;
		text-align: center;
		margin-bottom: 20px;
	}
	.hero-mobile{
		display: block;
	}
	.hero-mobile{
		width: 80%;
		height: auto;
		max-width: 500px;
		margin: 0 auto;
		
	}
	.hero-right{
		display: none;
	}
	.overview-content{
		grid-template-columns: 1fr;
		max-width: 500px;
		width: 100%;
	}
	.title h2 {
	  font-size: 26px;
	  line-height: 32px;
	  margin-top: 5px;
	}
	#features .title h2 {
	  font-size: 24px;
	}
	.title h2 {
	  font-size: 26px;
	  line-height: 32px;
	  margin-top: 5px;
	}
	.features {
	  grid-template-columns: 1fr;
	}
	.features .features-col {
	  max-width: 600px;
	  margin: 0 auto;
	}
	.features .feature-item {
	  grid-template-columns: 1fr;
	  justify-items: center;
	  text-align: center;
	  gap: 0;
	}
	.features .feature-item h3 {
	  font-size: 20px;
	}
	.features .feature-item p {
	  font-size: 16px;
	}
	.features .feature-center {
	  display: none;
	}
	.feature-center.hidden-desktop{
		display: block;
		width: 80%;
		max-width: 320px;
		margin: 0 auto;
	}
	.grid-2{
		  display: flex;
		  flex-direction: column;
		  max-width: 560px;
		  margin: 0 auto;
		  gap: 20px;
		  margin-bottom: 36px;
		  align-items: start;
	  }
	  .grid-2-text{
		  display: flex;
		  flex-direction: column;
		  gap: 15px;
		  
	  }
	  .grid-2-text h4{
	  		  font-size:22px !important;
	  		  line-height: 26px !important;
	  }
	  .grid-2-text p{
		  font-size: 18px;
		  line-height: 28px;
		  margin-top: 0;
		  max-width: 500px;
	  }
	  .text{
		  font-size: 18px;
		  line-height: 27px;
		  margin-top: 10px;
	  }
	  .moneyback {
	    gap: 45px;
	  }
	  footer {
	    margin-top: 60px;
	  }
}
@media only screen and (max-width: 915px){
	
}
@media only screen and (max-width: 790px){
	
}
@media only screen and (max-width: 768px){
	header .mobile-btn {
	  display: block;
	  position: fixed;
	  bottom: -100px;
	  left: 0;
	  width: 100%;
	  padding: 10px;
	  background-color: white;
	  -webkit-transition: 0.6s;
	  transition: 0.6s;
	}
	header.scrolled .mobile-btn {
	  display: block;
	  position: fixed;
	  bottom: 0;
	  left: 0;
	  width: 100%;
	  padding: 10px;
	  background-color: white;
	}
	.hero{
		background: url("../img/bg-mobile.jpg");
		padding: 25px 0;
		background-repeat: no-repeat;
		background-position: right 90%;
		background-size: cover;
	}
	.overview-img img{
		width: 70%;
		max-width: 500px;
		margin: 0 auto;
	}
}
@media only screen and (max-width: 767px){
	.container-full {
	  padding: 25px 0 20px !important;
	}
	.container,
	.features {
	  width: 100%;
	  padding: 0 15px;
	}
	.container,
	.hero-inner {
	  max-width: 600px;
	}
	.btn-box {
	  display: none;
	}
	.hero-inner .hero-left{
		align-items: center;
		text-align: center;
	}
	h1{
		font-size: 28px;
		line-height: 37px;
		font-weight: 700;
	}
	.hero-list{
		margin-top: 5px;
		vertical-align: top;
		width: 90%;
		display:inline-block;
		float: none;
	}
	.btn-box {
	  display: none;
	}
	.moneyback {
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	      -ms-flex-direction: column;
	          flex-direction: column;
	  -webkit-box-align: center;
	      -ms-flex-align: center;
	          align-items: center;
	  -webkit-box-pack: center;
	      -ms-flex-pack: center;
	          justify-content: center;
	  gap: 10px;
	  text-align: center;
	}
	.moneyback .moneyback-img {
	  max-width: 160px;
	  height: auto;
	}
	.moneyback .moneyback-text .moneyback-title {
	  font-size: 26px;
	  line-height: 32px;
	  margin-top: 5px;
	}
	.moneyback .moneyback-text .moneyback-p {
	  font-size: 15px;
	  line-height: 22px;
	  margin-top: 10px;
	}
	#reviews h2 {
	  font-size: 26px !important;
	  line-height: 32px !important;
	  margin-top: 5px !important;
	}
	.review {
	  padding: 0 20px;
	}
	.review .review-img {
	  max-width: 370px;
	  width: 100%;
	  margin: 0 auto;
	}
	.review .stars {
	  margin-top: 25px;
	}
	.review p {
	  font-size: 15px;
	  line-height: 22px;
	  margin-top: 10px;
	}
	.mobile-btn-container{
		display: block !important;
	}
	.mobile-btn-container {
	    min-height: 118px;
	  }
	  .mobile-btn {
	    position: relative;
	    background-color: white;
	    padding: 20px 10px;
	    bottom: 0;
	    width: 100%;
	    z-index: 20;
	  }
	  .mobile-btn .btn-box {
	    display: block !important;
	    margin: 0 auto;
	  }
	  .mobile-btn .btn-box .btn {
	    width: 80%;
	    margin: 0 auto;
	  }
	  footer * {
	    font-size: 14px;
	    line-height: 22px;
	    text-align: center;
	  }
}
@media only screen and (max-width: 500px){
	
}
@media only screen and (max-width: 430px){
	
}