/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scroll-margin-top: 60px;
}

body {
	font-family: "Montserrat", sans-serif;
	overflow-x: hidden;
	background-color: #fbfbfe;
}

html {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

.btn-box img {
	display: inline;
}

/* ------------------- Containers ------------------- */
.container-full {
	padding: 48px;
}

.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
}

.container-white {
	background-color: #fff;
	padding: 35px 0px;
}

/* ------------------- Typography ------------------- */
.title {
	text-align: center;
	margin-bottom: 48px;
}

.title p {
	font-size: 19px;
	line-height: 22px;
	font-weight: 500;
	color: #000;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.title h2 {
	font-size: 53px;
	line-height: 60px;
	font-weight: 600;
	color: #000;
	margin-top: 10px;
}

.text {
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
}

.text p {
	font-size: 20px;
}

/*------------banner-----------------*/
.banner {
	background: #000;
	padding: 4px;
	color: #fff;
	font-weight: 700;
}

.banner-inner {
	text-align: center;
	font-size: 1rem;
	line-height: 1.8rem;
}

.banner .banner-inner p span {
	color: #50ea50;
}

/*------------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: 1300px;
	width: 100%;
	margin: 0 auto;
	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: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 100%;
}

.header-inner .logo {
	max-height: 55px;
	max-width: 250px;
}

.header-inner nav {
	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;
	gap: 10px;
}

.header-inner nav a {
	color: #000000;
	font-size: 16px;
	line-height: 16px;
	font-weight: 500;
	letter-spacing: 0.5px;
	text-decoration: none;
}

.hamburger {
	cursor: pointer;
	z-index: 16;
	display: none;
}

.hamburger button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 4px;
	outline: none;
	-webkit-appearance: none;
	background: none;
	padding: 0;
	cursor: pointer;
	border: none;
}

.hamburger button .bar1,
.hamburger button .bar2,
.hamburger button .bar3 {
	width: 25px;
	height: 3px;
	background-color: #000;
	-webkit-transition: 0.4s;
	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;
}

/* ------------------- Buttons ------------------- */
.order-now {
	background: #1dd068;
	color: #fff;
	font-size: 18px;
	text-align: center;
	width: auto;
	padding: 0 1em;
	height: 40px;
	line-height: 44px;
	border-radius: 50px;
	font-weight: bold;
	letter-spacing: 0.5px;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
	text-decoration: none;
}

.btn-box {
	max-width: 410px;
	width: 100%;
	margin-top: 35px;
}

.btn-box.centered {
	margin: 35px auto 0;
}

.btn {
	width: 100%;
	color: #fff;
	background-color: #29af5c !important;
	border: 1px solid #29af5c;
	border-radius: 8px;
	font-family: "Inter", sans-serif;
	padding: 8px 25px;
	font-size: 18px;
	font-weight: 700;
	line-height: 21px;
	-webkit-animation: pulse 1.5s infinite ease-in-out;
	animation: pulse 1.5s infinite ease-in-out;
	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;
	text-decoration: none;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

.btn img {
	display: inline-block;
	vertical-align: middle;
	margin: -4px 0 0 15px;
}

.btn-txt {
	width: 100%;
	margin-top: 10px;
	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;
	font-weight: bold;
}

.btn-txt p {
	padding: 0 8px;
	font-size: 13px;
	line-height: 17px;
	letter-spacing: 0;
}

.btn-txt .btn-text1:before {
	display: inline-block;
	margin: -2px 5px 0 0;
	width: 9px;
	height: 9px;
	background: #6fb620;
	border-radius: 50%;
	content: "";
	-webkit-animation: fade 1s ease-in-out infinite;
	animation: fade 1s ease-in-out infinite;
}

.btn-txt .hourglass {
	margin: -2px 3px 0 0;
	-webkit-animation: rotateP 2.5s ease-in-out forwards infinite;
	animation: rotateP 2.5s ease-in-out forwards infinite;
}

/* ------------------- hero ------------------- */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.3),
			rgba(0, 0, 0, 0.3)),
		url("../img/hero-bg.png") no-repeat center right -100px/cover;
	padding: 45px 0 50px;
	color: #fff;
}

.hero-inner {
	max-width: 1300px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.hero-inner .hero-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.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;
	display: inline;
}

.hero-inner .hero-left .hero-mobile {
	display: none;
	-webkit-animation: fadeInAnimation ease 1s;
	animation: fadeInAnimation ease 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.hero-inner .hero-left .hero-text {
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	letter-spacing: 0.3px;
	margin-top: 20px;
}

.hero-inner .hero-left .hero-list {
	list-style-type: none;
	margin-top: 25px;
}

.hero-inner .hero-left .hero-list li {
	padding-left: 40px;
	background: url("../img/listStyle.png") no-repeat 0px 2px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	letter-spacing: 0.3px;
	margin-top: 10px;
	text-align: left;
}

.hero-inner .hero-right {
	width: 100%;
	-webkit-animation: fadeInAnimation ease 1s;
	animation: fadeInAnimation ease 1s;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}

.hero .hero-right-wrapper {
	transform: translateX(-100px);
}

h1 {
	font-size: 56px;
	line-height: 62px;
	font-weight: bold;
	margin-top: 30px;
}

/* ------------------ As seen on ------------------ */
.seen-on {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 35px;
	text-align: center;
	width: 100%;
	padding-bottom: 30px;
}

.seen-on p {
	color: #000;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	font-family: "Lab-Grotesque-Bold";
}

.seen-on .companies {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 50px;
	width: 100%;
	margin: 0 auto;
}

.seen-on .companies img {
	height: 69px;
}

hr {
	border: none;
	height: 1px;
	background-color: #ebebeb;
}

/* ------------------ Doctor Quote ------------------ */
.doctor {
	display: grid;
	grid-template-columns: 2fr 10fr;
	gap: 50px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1019607843);
	-webkit-box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
	max-width: 970px;
	padding: 15px 55px 15px 15px;
	position: relative;
	vertical-align: middle;
	width: 100%;
	align-items: start;
	margin: 60px auto 40px;
}

.doctor-left {
	border-radius: 8px;
	padding: 0 0 8px;
	width: 280px;
	overflow: hidden;
}

.doctor-left img {
	width: 100%;
}

.doctor-left p {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 24px;
	padding: 8px 0 0;
	text-align: center;
}

.doctor-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
}

.doctor-right img {
	width: 100px;
}

.doctor-right .doctor-title {
	color: #0c64c5;
	font-size: 24px;
	letter-spacing: 0.3px;
	line-height: 30px;
	font-family: "Lab-Grotesque-Medium";
}

.doctor-right .doctor-description {
	color: #000;
	font-size: 20px;
	font-style: italic;
	letter-spacing: 0.5px;
	line-height: 27px;
	font-family: "Lab-Grotesque-Medium";
}

.doctor-right .doctor-name {
	color: #0c64c5;
	font-size: 20px;
	font-weight: 700;
}

.doctor-right .doctor-name span {
	color: #2a2a2a;
	font-size: 16px;
	letter-spacing: 0.3px;
	line-height: 20px;
	margin-top: 15px;
	font-weight: 400;
}

#comma {
	position: absolute;
	right: 50px;
	top: -23px;
}

/* ------------------- Overview -------------------*/
#overview {
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.overview {
	display: grid;
	grid-template-columns: 470px auto;
	margin: 0 auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.overview .title {
	text-align: start;
}

.overview .overview-img {
	width: 470px;
}

.overview .overview-img .overview-front {
	border-radius: 5px;
}

.overview .overview-img.hidden-desktop {
	display: none;
}

.overview .overview-p {
	font-size: 17px;
	line-height: 26px;
	font-weight: normal;
	color: #000;
	letter-spacing: 0.5px;
	margin-top: 20px;
	padding-right: 60px;
}

.overview .overview-p.subtitle {
	font-size: 1.5rem;
}

.o-dots1 {
	position: absolute;
	top: 3%;
	left: 37%;
}

.o-dots2 {
	position: absolute;
	right: -14%;
	bottom: -9%;
}

.overview .title {
	margin-bottom: 0px;
}

@-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;
	}
}

/* ------------------- Animations ------------------- */
@-webkit-keyframes fade {
	0% {
		opacity: 100%;
	}

	50% {
		opacity: 30%;
	}

	70% {
		opacity: 100%;
	}

	100% {
		opacity: 100%;
	}
}

@keyframes fade {
	0% {
		opacity: 100%;
	}

	50% {
		opacity: 30%;
	}

	70% {
		opacity: 100%;
	}

	100% {
		opacity: 100%;
	}
}

@-webkit-keyframes rotateP {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@keyframes rotateP {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@-webkit-keyframes pulse {
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes pulse {
	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-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;
	}
}

/* ------------------- Features ------------------- */
#features {
	background-color: #131314;
	color: white;
}

#features .title h2 {
	color: #32b9bc;
}

.features {
	max-width: 1528px;
	margin: 24px auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.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 {
	padding-top: 13px;
	font-size: 24px;
}

.features .feature-item p {
	font-size: 20px;
	padding-top: 12px;
}

.features .feature-item img {
	width: 100%;
	max-width: 80px;
}

.features .feature-center {
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	-ms-flex-item-align: center;
	align-self: center;
}

/* grid-2 */
.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: #000;
	background-color: white;
}

.grid-2 .title h2,
.grid-2 .title p {
	color: #000;
}

.grid-2 .grid-2-item {
	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;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
	padding: 50px 0 0 45px;
	height: 580px;
}

.grid-2 .grid-2-item:nth-child(1) {
	background: url("../img/grid2-left.png");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
}

.grid-2 .grid-2-item:nth-child(2) {
	background: url("../img/grid2-right.gif");
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
}

.grid-2 .grid-2-item .text,
.grid-2 .grid-2-item .title {
	text-align: start;
	max-width: 360px;
	margin: 0;
}

.grid-2 .grid-2-item .text p {
	font-size: 17px;
	line-height: 26px;
	font-weight: normal;
	letter-spacing: 0.5px;
}

/* ------------------- Box ------------------- */
.s5CompBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	max-width: 1030px;
	background: #fff;
	border-radius: 20px;
	margin: 0 auto;
	margin-top: 220px;
	margin-bottom: 50px;
	-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.2);
}

.s5CompBox .s5Col1 {
	float: left;
	width: 37%;
	padding: 25px 0;
	position: relative;
}

.s5CompBox .s5Col1 ul {
	float: left;
	list-style-type: none;
	width: 100%;
}

.s5CompBox .s5Col1 ul li {
	float: left;
	width: 100%;
	height: 70px;
	text-align: left;
	font-size: 19px;
	line-height: 74px;
	color: #000;
	letter-spacing: 0.3px;
	font-weight: 600;
	padding: 0 0 0 60px;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #e7e7e7;
	background: url("../img/comp-point.png") no-repeat 22px 25px;
}

.s5CompBox .s5Col1 ul li:last-child {
	border: none;
}

.s5Col2 {
	float: left;
	width: 19%;
	border-radius: 20px;
	margin: -95px 20px -25px 0;
}

.s5Col2 .s5Col2Top {
	float: left;
	width: 100%;
	height: 115px;
}

.s5Col2 .s5Col2Top .s5Col2Prod {
	display: block;
	margin: -65px auto 10px;
	max-width: 100%;
}

.s5Col2 .s5Col2Top p {
	font-size: 20px;
	line-height: 18px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-align: center;
}

.s5Col2 .s5Col2Top img {
	height: auto;
}

.s5Col2 ul {
	float: left;
	width: 100%;
	padding-top: 5px;
	list-style-type: none;
}

.s5Col2 ul li {
	width: 100%;
	height: 70px;
	padding: 20px 0;
	border-bottom: 1px solid #4d82a8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.s5Col2 ul li:last-child {
	border: none;
}

.s5Col2 ul li img {
	height: auto;
	max-width: 100%;
}

.s5Col3 {
	background: #383838;
}

.s5Col3 ul li {
	border-bottom: 1px solid #484848;
}

.s5Col4 {
	background: #383838;
}

.s5Col4 ul li {
	border-bottom: 1px solid #484848;
}

.mobile-btn-container {
	padding: 20px 0;
}

/* ------------------- Moneyback ------------------- */
#moneyback {
	background-color: #191919;
}

.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: white;
}

.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;
}

/* ------------------- 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;
}

/* ------------------- Faq ------------------- */
#faq {
	padding-bottom: 0 !important;
}

.accordion-container {
	background-color: #fff;
	border-radius: 6px;
	-webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
	box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
	overflow: hidden;
	margin-bottom: 24px;
}

.accordion {
	background-color: inherit;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 16px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	font-weight: 700 !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	color: rgb(74, 74, 74);
	font-family: "Montserrat", sans-serif;
}

.accordion img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.active img {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.panel p {
	padding: 12px 24px;
	color: rgb(74, 74, 74);
	font-size: 16px;
	line-height: 24px;
}

.panel ol {
	padding-left: 1.5em;
	list-style-type: decimal;
	color: #333;
	font-size: 1rem;
	line-height: 1.6;
	padding: 12px 24px;
	margin-left: 20px;
}

.panel ol li {
	margin-bottom: 0.75em;
}
/* ------------------- Footer ------------------- */
footer {
	padding: 35px 15px;
	background-color: #000;
	color: #fff;
}

footer .footer-items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

footer .footer-items .footer-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}

footer .footer-items .footer-item a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}
footer .footer-items .footer-item p{
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.3s ease;
	font-size: 0.95rem;
	margin-bottom: 10px;
	line-height: 1.5rem;
}
footer .footer-items .footer-item img {
	max-height: 75px;
	width: 250px;
	filter: brightness(0) invert(1);
	margin-bottom: 10px;
}
/*-------------policy----------------*/

.html.container-all{
	padding: 0.625rem 1.875rem;
}
.html.container-all h3{
	text-align: center;
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}
.html.container-all p{
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 1.25rem;
	font-weight: 300;
}
.html.container-all .highlight{
	font-weight: 600;
}
/*------------mediaquery-----------------*/
@media only screen and (max-width: 1301px) {
	.container-full {
		padding: 40px 0 40px !important;
	}

	.container,
	.hero-inner {
		width: 850px;
	}

	.logos img {
		height: 25px;
	}

	.hero-inner .hero-left .hero-list li {
		font-size: 20px;
		margin-top: 5px;
	}

	h1 {
		margin-top: 25px;
		font-size: 40px;
		line-height: 46px;
		font-weight: 900;
	}

	.overview {
		grid-template-columns: auto auto;
		gap: 0;
	}

	.overview .overview-img {
		padding-right: 48px;
		width: 370px;
	}

	.overview .overview-p {
		padding: 0;
	}

	.o-dots1 {
		top: 2%;
		left: 42%;
		width: 200px;
		height: auto;
	}

	.o-dots2 {
		position: absolute;
		right: -4%;
		bottom: -6%;
		width: 420px;
		height: auto;
	}

	.title {
		margin-bottom: 20px;
	}

	.title h2 {
		font-size: 34px;
		line-height: 40px;
		margin-top: 15px;
	}

	.title p {
		font-size: 17px;
	}

	.btn {
		font-size: 18px;
	}

	.s5CompBox .s5Col1 {
		padding: 15px 0;
		width: 40%;
	}

	.s5CompBox .s5Col1 ul li {
		height: 60px;
		font-size: 16px;
		line-height: 62px;
		font-weight: 500;
		padding: 0 0 0 50px;
		background-position: 20px 20px;
		-webkit-box-align: normal;
		-ms-flex-align: normal;
		align-items: normal;
	}

	.s5Col2 {
		width: 18%;
		margin: -95px 15px -25px 0;
	}

	.s5Col2 .s5Col2Top {
		height: 105px;
	}

	.s5Col2 .s5Col2Top .s5Col2Prod {
		margin: -65px auto 10px;
		width: 80px;
	}

	.s5Col2 .s5Col2Top p {
		font-size: 18px;
	}

	.s5Col2 ul li {
		height: 60px;
	}

	.s5Col2 ul li img {
		width: 24px;
	}

	.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:1200px) {}

@media only screen and (max-width:1024px) {
	.order-now {
		display: none;
	}

	nav {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		position: fixed;
		top: 100px;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		background-color: white;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		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;
	}

	.container {
		width: 750px;
	}

	.o-dots1 {
		top: 1%;
		left: 15%;
		width: 200px;
		height: auto;
	}

	.overview {
		grid-template-columns: 1fr;
		gap: 0;
		width: calc(100% - 130px);
	}

	.overview .overview-img {
		display: none;
	}



	.text p {
		font-size: 15px;
	}

	.overview .overview-img {
		display: none;
	}

	.overview .overview-img.hidden-desktop {
		display: block !important;
		width: 100%;
		padding: 0;
	}

	.overview .overview-img.hidden-desktop .overview-front {
		width: 100%;
		margin: 20px 0;
	}

	#features .title h2 {
		font-size: 24px;
	}

	.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;
	}

	.moneyback {
		gap: 45px;
	}
}

@media only screen and (max-width:991px) {
	.hero-inner {
		grid-template-columns: 1fr;
		max-width: 435px;
		width: 100%;
		padding: 0 15px;
	}

	.hero-inner .hero-left .hero-mobile {
		display: block;
		width: 100%;
	}

	.hero-inner .hero-left .hero-list li {
		font-size: 20px;
		margin-top: 5px;
	}

	.hero-right {
		display: none;
	}

	h1 {
		margin-top: 25px;
		font-size: 40px;
		line-height: 46px;
	}

	.hero {
		background:
			url("../img/hero-bg.png") no-repeat center right -650px/cover;
		padding: 45px 0 50px;
		color: #fff;
	}

}

@media only screen and(max-width: 768px) {
	.banner {
		padding: 5px 8px;
	}

	.banner-inner {
		line-height: 1rem;
	}
}

@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;
	}

	.hero {
		padding: 25px 0 25px;
	}



	.hero-inner .hero-left {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
	}

	.hero-inner .hero-left .hero-list {
		margin-top: 5px;
		float: none;
		width: 90%;
		display: inline-block;
		vertical-align: top;
	}

	.hero-inner .hero-left .hero-list li {
		width: auto;
		font-weight: 600;
		font-size: 17px;
		margin-top: 5px;
		padding-left: 30px;
		background-position: 2px 3px;
		background-size: 19px;
	}

	.hero-right {
		display: none;
	}

	h1 {
		margin-top: 14px;
		font-size: 28px;
		line-height: 34px;
		margin-bottom: -15px;
	}

	.doctor {
		grid-template-columns: 1fr;
	}

	.doctor {
		gap: 30px;
		justify-items: center;
		text-align: center;
		padding: 15px;
	}

	.doctor .doctor-right .doctor-description {
		font-size: 18px;
		line-height: 25px;
	}

	.doctor .doctor-right img {
		margin: 0 auto;
	}

	.doctor .doctor-left {
		max-width: 250px;
	}

	.doctor #comma {
		right: 27px;
	}

	.overview {
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
	}

	.btn-box {
		display: none;
	}

	.overview .overview-p {
		font-size: 15px;
		line-height: 22px;
		margin-top: 10px;
	}

	.overview .title {
		padding: 0;
	}

	.o-dots2,
	.o-dots1 {
		display: none;
	}

	.grid-2 {
		grid-template-columns: 1fr;
	}

	.grid-2 .grid-2-item {
		min-height: 238px !important;
		height: auto;
		margin: 0;
		gap: 10px;
		padding: 20px;
	}

	.grid-2 .grid-2-item .title {
		max-width: 100%;
		width: 66.66667%;
		padding: 0;
	}

	.grid-2 .grid-2-item:nth-child(1) {
		background-position: center;
	}

	.grid-2 .grid-2-item:nth-child(2) {
		background-position: center;
	}

	.grid-2 .grid-2-item .text p {
		width: 60%;
	}

	.s5CompBox {
		border-radius: 10px;
		margin-top: 160px;
	}

	.s5CompBox .s5Col1 {
		width: 46%;
		padding: 10px 0;
	}

	.s5CompBox .s5Col1 ul li {
		font-size: 14px;
		line-height: 18px;
		padding: 13px 0 13px 30px;
		background-position: 10px 14px;
		background-size: 14px;
	}

	.s5Col2 {
		width: 24%;
		margin: -95px 3% -25px 0;
	}

	.s5Col2 .s5Col2Top {
		height: 100px;
	}

	.s5Col2 .s5Col2Top .s5Col2Prod {
		margin: -45px auto 10px;
		width: 70px;
	}

	.s5Col2 .s5Col2Top p {
		font-size: 13px;
	}

	.s5Col2 ul li {
		height: 60px;
	}

	.s5Col2 ul li img {
		width: 24px;
	}

	.hide-mob {
		display: none;
	}

	.title h2 {
		font-size: 26px;
		line-height: 32px;
		margin-top: 5px;
	}

	.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;
	}

	.btn-box {
		display: none;
	}

	#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 {
		min-height: 118px;
	}

	.mobile-btn {
		position: relative;
		background-color: white;
		padding: 10px 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 {
		padding: 15px 0;
	}
	
	footer .footer-items {
		display: grid;
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

@media only screen and (max-width: 600px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.header-inner .logo {
		max-width: 180px;
		height: auto;
	}

	.seen-on .companies img {
		height: 50px;
	}

	.seen-on .companies {
		gap: 30px;
	}

	.container-white {
		padding: 20px 0;
	}

	.seen-on {
		gap: 15px;
	}

	.btn {
		font-size: 16px;
		padding: 12px 15px;
	}

	.container-white {
		padding: 20px 0;
	}
}

@media only screen and (max-width: 425px) {
	.banner-inner {
		font-size: 0.9375rem;
	}
}

@media only screen and (max-width: 375px) {
	.banner-inner {
		font-size: 0.8125rem;
	}
}