/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scroll-margin-top: 60px;
}

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

html {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ------------------- Container ------------------- */
.container-full {
	padding: 60px 0;
}

.container-full.bg-grey {
	background-color: #fbfbfa;
}

.container-full.bg-light-blue {
	background-color: #f9fcfd;
}

.container-full.bg-dark {
	background-color: #000;
}

.container {
	max-width: 1230px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

/* ------------------- Title ------------------- */
.title {
	text-align: center;
}

.title h2 {
	font-size: 48px;
	font-weight: 800;
	line-height: 70px;
	text-align: center;
}

.title h2 span {
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	display: block;
	color: #09a7cf;
	margin-bottom: 5px;
}

.title p {
	max-width: 615px;
	margin: 0 auto;
	width: 100%;
	text-align: center;
	margin-top: 10px;
}

.title img {
	margin-bottom: 10px;
}

.text {
	font-size: 18px;
	line-height: 30px;
	font-weight: 300;
	text-align: center;
	margin-top: 15px;
}

/*------------banner-----------------*/
.banner {
	background: #ACF4A1;
	padding: 0.5rem;
}

.banner-inner {
	text-align: center;
	font-size: 1rem;
	line-height: 1.8rem;
}

.banner .banner-inner .highlight {
	font-weight: 600;
}

.banner .banner-inner .code {
	background: #000000;
	color: #fff;
	padding: 0.3125rem 1rem;
	font-weight: bold;
	border-radius: 0.5rem;
	margin: 0px 0.5rem;
}

/* ------------------- Button ------------------- */
.btn {
	background-color: #fed606 !important;
	border: 1px solid #d9b600;
	border-radius: 8px;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	color: #000000 !important;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	font-size: 20px;
	padding: 8px 18px;
	text-decoration: none;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-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: 15px;
	-webkit-transition: 0.1s;
	transition: 0.1s;
}

.btn img {
	width: 27px;
	height: 27px;
}

.btn:hover {
	background-color: #d7a90f;
	border-color: transparent;
}

.btn-box.btn-centered {
	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;
}

.btn-box .btn {
	background-color: #fed606 !important;
	border: 1px solid #d9b600;
	border-radius: 8px;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	color: #000000 !important;
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 32px;
	padding: 12px 43px;
	-webkit-animation: pulse 1.5s infinite ease;
	animation: pulse 1.5s infinite ease;
}

.btn-box .btn:hover {
	background-color: #d7a90f;
	border-color: transparent;
}

.btn-box .btn-text-row {
	font-size: 11px;
	line-height: 16px;
	margin-top: 12px;
	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;
	font-weight: 700;
	gap: 5px;
}

.btn-box .btn-text-row .btn-dot {
	height: 7px;
	width: 7px;
	background-color: #95df89;
	border-radius: 50%;
	margin-right: 8px;
	-webkit-box-shadow: 0 0 0 2px #adf4a1;
	box-shadow: 0 0 0 2px #adf4a1;
	-webkit-animation: pulseCtaShip 1.725s forwards infinite ease-out;
	animation: pulseCtaShip 1.725s forwards infinite ease-out;
	opacity: 0.5;
}

@-webkit-keyframes pulseCtaShip {
	45% {
		-webkit-box-shadow: 0 0 0 5px #adf4a1;
		box-shadow: 0 0 0 5px #adf4a1;
		opacity: 1;
	}

	55% {
		opacity: 1;
	}
}

@keyframes pulseCtaShip {
	45% {
		-webkit-box-shadow: 0 0 0 5px #adf4a1;
		box-shadow: 0 0 0 5px #adf4a1;
		opacity: 1;
	}

	55% {
		opacity: 1;
	}
}

.btn-box .btn-text-row .btn-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 3px;
	text-align: start;
}

.btn-box .btn-text-row .btn-stock-view {
	font-size: 0;
}

.btn-box .btn-text-row .btn-stock-view span {
	background-color: green;
	display: inline-block;
	height: 10px;
	width: 10px;
	margin-right: 2px;
	margin-top: 8px;

}

.btn-box .btn-text-row .btn-stock-view span:first-child {
	background-color: #fc2201 !important;
}

.btn-box.grey-dots .btn-stock-view span {
	background-color: rgba(217, 217, 217, 0.6) !important;
}

.btn-box .btn-text-row .btn-stock {
	font-size: 12px;
	color: #ea4701;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@-webkit-keyframes pulseCTAButton {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

@keyframes pulseCTAButton {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}

/*------------header-----------------*/
header {
	padding: 12px 0;
	-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 1000;
}

header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1320px;
}

header #menu-btn {
	display: none;
}

header 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: 75px;
}

header nav a {
	text-decoration: none;
	color: #002f28;
}

header .logo {
	height: 50px;
}

/*------------hero-----------------*/
.hero {
	background-color: #fdfbf5;
}

.hero .hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	width: 100%;
}

.hero .hero-left {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero .hero-left .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
}

.hero .hero-left .badges {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	bottom: 5%;
	left: 5%;
	padding: clamp(3.75rem, -7.083rem + 17.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
	width: 220px;
}

.hero .hero-right {
	padding: 38px 55px 59px;
	padding-bottom: 59px;
	padding-bottom: 105px;
	max-width: 800px;
	width: 100%;
}

.hero .hero-right .hero-left,
.hero .hero-right #logos {
	display: none;
}

.hero .rating {
	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;
	margin-bottom: 10px;
}

.hero .rating p {
	font-size: 14px;
	line-height: 24px;
}

.hero ul {
	margin-top: 17px;
	margin-bottom: 16px;
}

.hero ul li {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
	gap: 10px;
	line-height: 39px;
	list-style: none;
}

.hero ul li svg {
	color: #16b8d7;
	height: 20px;
	width: 20px;
}

.hero h1 {
	font-size: 42px;
	font-weight: 800;
	line-height: 56px;
	text-align: left;
}

h1 span {
	position: relative;
	z-index: 1;
}

h1 span::after {
	content: " ";
	background: #FED6064A;
	position: absolute;
	width: 100%;
	height: 30px;
	left: 0;
	bottom: 5px;
	z-index: -1;
}
.hero2 h1 span::after{
	display: none;
}
.hero h4 {
	font-size: 20px;
	line-height: 32px;
	margin-top: 15px;
	font-weight: 500;
}

.hero2 .hero-inner .hero-left {
	position: relative;
}

.hero2 .hero-inner .hero-left .badges {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	top: -78px;
	left: 75%;
	padding: clamp(3.75rem, -7.083rem + 17.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
	width: 200px;
}

.show-pc {
	display: block;
}

/* ------------- As seen on ------------ */
.logos {
	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;
	color: white;
	gap: 30px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.logos .logos-line {
	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: 30px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/* ------------ Grid 2 ------------ */
.grid-2-container {
	margin: 35px auto;
	max-width: 1135px;
	width: 100%;
}

.grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 75px;
	margin-bottom: 68px;
}

.grid-2 img,
.grid-2 video {
	width: 100%;
	border-radius: 8px;
}

.grid-2 .grid-2-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.grid-2 .grid-2-text p {
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
	margin-top: 20px;
}

.grid-2 .grid-2-text h4 {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	margin-bottom: 5px;
}

.grid-2 .grid-2-text h4:first-child {
	font-size: 32px;
	font-weight: 700;
	line-height: 38px;
	color: #11abc8;
}

.grid-2-container .grid-2:nth-child(3) {
	background-color: #000;
	color: #fff;
}

.grid-2-container .grid-2:nth-child(3) img {
	border-radius: 0;
}

/*------------fullpto-----------------*/
.fullpto-showmobile {
	display: none;
}

.fullpto-showpc {
	margin-top: 20px;
	width: 100%;
}

.fullpto-showmobile {
	margin-top: 20px;
	width: 100%;
}

/* ------------ Features ------------ */
.features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	margin: 48px auto;
	gap: 30px;
}

.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 .features-center {
	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;
	position: relative;
}

.features .features-center .bottle {
	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;
	position: relative;
}

.features .features-center .bg {
	width: 110%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	max-width: 350px;
}

.features .features-item {
	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: start;
	-ms-flex-align: start;
	align-items: start;
	gap: 15px;
}

.features .features-item img {
	-webkit-filter: brightness(0) saturate(100%) invert(63%) sepia(82%) saturate(1229%) hue-rotate(145deg) brightness(89%) contrast(89%);
	filter: brightness(0) saturate(100%) invert(63%) sepia(82%) saturate(1229%) hue-rotate(145deg) brightness(89%) contrast(89%);
	height: 20px;
	min-height: 20px;
	min-width: 20px;
	width: 20px;
}

.features .features-item .features-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.features .features-item .features-text h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 8px;
}

.features .features-item .features-text p {
	font-size: 18px;
	line-height: 28px;
}

/* ------------ Comparison ------------ */
#comparison {
	padding: 1rem 0 0 0;
}

.CompBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 4rem;
	margin-bottom: 1rem;
	background: #ffffff;
	border-radius: 15px;
}

.CompBox .compCol1 {

	width: 40%;
	padding: 15px 0;
	position: relative;
	padding-top: 120px;
}

.CompBox .compCol1 ul {
	padding-left: 0;
	width: 100%;
}

.CompBox .compCol1 ul li {
	width: 100%;
	height: 70px;
	text-align: left;
	padding: 10px 0 10px 20px;
	position: relative;
	border-bottom: 1px dashed #2D627C;
	border-top: 1px dashed #2D627C;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

}

.CompBox .compCol2 ul li p {
	padding-left: 10px;
	font-weight: 600;
	text-align: start;
}

.CompBox .compCol1 ul li:last-child {
	border-bottom: none;
}

.CompBox .compCol1 ul li p {
	width: 100%;
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #000;
	font-weight: 800;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.CompBox .compCol2 {
	width: 30%;
	background-color: #262626;
	color: #fff;
	border-radius: 10px;
	margin: -30px 0px 10px 0;
	padding-bottom: 15px;
}

.CompBox .compCol3 {
	color: #000;
}

.CompBox .compCol2 ul {
	list-style: none;
	padding-top: 5px;
	padding-left: 0;
	width: 100%;
}

.CompBox .compCol2 ul li {
	width: 100%;
	height: 70px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	border-bottom: 1px dashed #2D627C;
	border-top: 1px dashed #2D627C;
	padding: 10px 0 10px 20px;

}

.CompBox .compCol2 ul li:last-child {
	border-bottom: none;
}

.CompBox .compCol2 ul li svg {
	color: #ffffff;
	height: 30px;
	width: 30px;
}

.CompBox .compCol2Top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 145px;
	width: 100%;
}

.CompBox .compCol2Top.compCol3Top {
	height: 151px;
}

.CompBox .compCol2Top.compCol3Top p {
	display: inline-block;
	line-height: 1.375rem;
	letter-spacing: 0.3px;
	padding: 6px 15px;
	border-radius: 50px;
	color: #161616;
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	padding: 0;
	margin-top: 50px;
}

.CompBox .compCol2Top .compCol2Prod {
	margin: auto;
	max-width: 90%;
}


.CompBox .compCol3 {
	background-color: transparent;
}

.CompBox .compCol3 ul {
	padding-top: 0px;
}

.CompBox .compCol3 ul li {
	border-bottom: 1px dashed #2D627C;
}

.CompBox .compCol3 ul li svg {
	color: #adadad;
}

#comparison .btn-box.pc {
	align-items: center;
}

/* ------------ 30 day guarantee ------------ */
.moneyback {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 45px;
	max-width: 800px;
	margin: 0 auto;
	margin-top: 50px;
}

.moneyback h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 43px;
}

.moneyback p {
	font-size: 18px;
	line-height: 30px;
	padding: 0px 10px;
}

.moneyback .moneyback-img {
	width: 150px;
	display: block;
	height: 150px;
}

.moneyback .moneyback-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

/* ------------ Reviews ------------ */
.reviews {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 34px auto;
	gap: 16px;
}

.reviews .review {
	margin-bottom: 25px;
	border-radius: 7px;
	overflow: hidden;
	background-color: #fdfbf5;
	border-radius: 25px;
	max-width: 350px;
}

.reviews .review .review-img {
	max-width: 100%;
	margin: 0 auto;
	object-fit: cover;

}

.reviews .review .review-stars {
	width: 96px;
}

.reviews .review .review-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 6px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: bold;
}

.reviews .review .review-name img {
	width: 16px;
}

.reviews .review .review-name span {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	margin-top: 2px;
	gap: 6px;
	line-height: 28px;
}

.reviews .review .review-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	padding: 20px 20px 30px 20px;
}

.review-content .reviews-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between !important;
	width: 95%;
}

.review-content .reviews-top p {
	color: grey;
	font-size: 1rem;
	line-height: 1.625rem;
}

.review-text {
	font-size: 1.125rem;
	line-height: 1.875rem;
}
/* ------------ FAQ ------------ */
.accs {
  margin: 30px auto;
}

.accordion-container {
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 8px 0px #f2f2f2;
          box-shadow: 0px 4px 8px 0px #f2f2f2;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  background-color: white;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  padding: 1rem 1.5rem;
}

.accordion {
  color: black;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: inherit;
  display: grid;
  grid-template-columns: auto 30px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq-icon {
  height: 30px;
  width: 30px;
  position: relative;
  z-index: 1;
  border: 2px solid #000000;
  border-radius: 50%;
  -webkit-transition: 0.24s, top 0.44s;
  transition: 0.24s, top 0.44s;
}

.faq-icon::before {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 12px;
  right: 5px;
  width: 16px;
  height: 2px;
  -webkit-transition: 0.46s ease-in;
  transition: 0.46s ease-in;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faq-icon::after {
  content: "";
  background-color: #000000;
  position: absolute;
  top: 12px;
  right: 5px;
  width: 16px;
  height: 2px;
  -webkit-transition: 0.46s ease-in;
  transition: 0.46s ease-in;
  opacity: 1;
}

.active .faq-icon::after {
  opacity: 0 !important;
}

.active .faq-icon {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.panel p {
  padding-top: 0;
}

.active {
  padding-bottom: 10px;
}
/* ------------ Footer ------------ */
footer {
  margin-top: 25px;
}
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 {
  height: 50px;
  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;
}
/*-------------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;
}
/*------------mediaQueries-----------------*/
@media screen and (max-width: 1200px) {

	.accs {
		max-width: 915px;
	}

	.hero2 .hero-inner .hero-left .badges {
		top: -50px;
		left: 75%;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 120px;
	}
}

@media only screen and (max-width: 1024px) {
	.hero .hero-inner {
		grid-template-columns: 1fr;
	}

	.hero .hero-inner .hero-left {
		display: none;
	}

	.hero .hero-inner .hero-right {
		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;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 100%;
		padding: 20px;
		overflow: hidden;
		padding-bottom: 40px;
	}

	.hero .hero-inner .hero-right h1 {
		text-align: center;
	}

	.hero .hero-inner .hero-right h4 {
		text-align: center;
		max-width: 384px;
	}

	.hero .hero-inner .hero-right #logos {
		display: block;
		margin: 0 -20px;
		margin-bottom: 10px;
		width: 100vw;
	}

	.hero .hero-inner .hero-right #logos .logos {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
		padding: 10px 0;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 100px;
	}

	.hero .hero-inner .hero-right .hero-left {
		display: block;
		height: auto;
		aspect-ratio: 673/522;
		margin: 0 -20px;
		margin-top: 10px;
		width: 100vw;
	}

	.hero .hero-inner .hero-right .hero-left .badges {
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		bottom: 5%;
		left: 5%;
		padding: clamp(3.75rem, -7.083rem + 17.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
		width: 220px;
	}

	.hero .rating {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}

	#logos {
		display: none;
	}

	#logos {
		padding: 10px 0 !important;
	}

	.grid-2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 560px;
		margin: 0 auto;
		gap: 20px;
		margin-bottom: 36px;
	}

	.grid-2 .grid-2-text {
		width: 100%;
		padding: 0px 8px 25px 8px;
	}

	.grid-2 .grid-2-text h4 {
		font-size: 22px !important;
		line-height: 26px !important;
	}

	.grid-2 .grid-2-text p {
		font-size: 18px;
		line-height: 28px;
		margin-top: 15px;
		max-width: 500px;
	}

	.grid-2:nth-child(2),
	.grid-2:nth-child(4) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.title h2 {
		font-size: 28px;
		line-height: 38px;
	}

	.text {
		font-size: 18px;
		line-height: 27px;
		margin-top: 10px;
	}

	.features {
		background: none;
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}

	.features .features-center {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
		background: url(../assets/images/water-bg.webp) 50% 57% no-repeat;
		margin-bottom: 53px;
	}

	.features .features-center .badge {
		bottom: 60px;
		position: absolute;
		right: -68px;
		width: 95px;
		height: 95px;
	}

	.features .features-col {
		gap: 20px;
	}

	.features .features-col {
		margin: 0 auto;
		max-width: 550px;
	}

	.features .features-col:nth-child(1) {
		margin: 0 auto;
		max-width: 550px;
	}

	.reviews {
		grid-template-columns: 1fr 1fr;
		justify-content: center;
		max-width: 650px;
	}

	.review-content .review-text b {
		font-size: 1rem;
	}

	.reviews .review {
		max-width: 300px;
		margin: 0 auto;
	}

}

@media screen and (max-width: 991px) {
	header {
		padding: 23px 0;
	}

	header .btn {
		display: none;
	}

	header nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: absolute;
		width: 100%;
		background-color: white;
		top: 100%;
		left: 0;
		height: 0;
		overflow: hidden;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		gap: 0;
	}

	header nav a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		min-height: 44px;
		padding-left: 18px;
		border: 1px solid #d6d6d6 !important;
	}

	header nav.open {
		height: 132px;
	}

	header #menu-btn {
		display: block;
		width: 60px;
		padding: 4px 12px;
		border: 1px solid rgba(0, 0, 0, 0.4);
		border-radius: 4px;
	}

	.container-full {
		padding: 30px 0;
	}

	.reviews {
		grid-template-columns: 1fr 1fr;
		justify-items: center;
		max-width: 560px;
	}


}

@media only screen and (max-width: 915px) {
	header {
		padding: 15px 0;
	}

	.reviews {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
}

@media screen and (min-width: 768px) {
	nav {
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
	}
}

@media screen and (max-width: 767px) {
	.container {
		padding: 0 20px;
	}

	header .logo {
		height: 35px;
	}

	header #menu-btn {
		display: block;
		width: 50px;
		padding: 4px 12px;
		border: 1px solid rgba(0, 0, 0, 0.4);
		border-radius: 4px;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 150px;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 80px;
	}

	.hero .hero-inner .hero-right h1 {
		font-size: 30px;
		line-height: 38px;
		font-weight: bold;
	}

	h1 span::after {
		content: " ";
		background: #FED6064A;
		position: absolute;
		width: 100%;
		height: 20px;
		left: 0;
		bottom: 5px;
		z-index: -1;
	}

	.title h2 {
		font-size: 26px;
		line-height: 34px;
	}

	.title h2 span {
		font-size: 16px;
		line-height: 25px;
	}

	.fullpto-showmobile {
		display: block;
	}

	.fullpto-showpc {
		display: none;
	}

	.CompBox .compCol1 ul li p {
		font-size: 14px;
		line-height: 18px;
		font-weight: 700;
	}

	.compCol2 ul li p,
	.compCol3 ul li p {
		font-size: 14px;
		line-height: 18px;
		font-weight: 700;
	}

	.CompBox .compCol1 ul li {
		padding: 5px 0 2px 10px;
	}

	.CompBox .compCol2 ul li {
		padding: 5px 0 2px 10px;
	}

	.CompBox .compCol1 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2Top.compCol3Top p {
		font-size: 14px;
		line-height: 18px;
	}

	.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;
		text-align: center;
		gap: 20px;
	}

	#reviews .title {
		padding: 30px 0;
	}

	.hero2 .hero-inner .hero-left .badges {
		top: -50px;
		left: 75%;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 100px;
	}

	.show-pc {
		display: none;
	}
	.mobile-btn {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  background-color: rgba(255, 255, 255, 1);
	  position: fixed;
	  bottom: 0;
	  -webkit-box-pack: center;
	      -ms-flex-pack: center;
	          justify-content: center;
	  left: 0;
	  width: 100%;
	  padding: 15px 20px;
	  z-index: 10;
	}
}

@media screen and (max-width: 600px) {
	.container {
		padding: 0 20px;
	}

	.hero .hero-inner .hero-right #logos {
		padding: 0;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 120px;
	}

	.logos .logos-line {
		gap: 20px;
	}

	.hero .hero-inner .hero-right h1 {
		font-size: 28px;
		line-height: 36px;
		font-weight: bold;
	}

	.features .features-center .bg {
		max-width: 250px;
	}

	.features .features-center .badge {
		bottom: 60px;
		position: absolute;
		right: -68px;
		width: 95px;
		height: 95px;
	}

	.CompBox .compCol1 {
		width: 35%;
	}

	.CompBox .compCol2 {
		width: 40%;
	}

	.CompBox .compCol3 {
		width: 25%;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 80px;
	}

}

@media screen and (max-width: 450px) {

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 100px;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 60px;
	}

	.logos .logos-line {
		gap: 10px;
	}

	h1 span::after {
		content: " ";
		background: #FED6064A;
		position: absolute;
		width: 100%;
		height: 15px;
		left: 0;
		bottom: 5px;
		z-index: -1;
	}

	.CompBox .compCol1 ul li {
		padding: 5px 0px 5px 5px;
	}

	.CompBox .compCol2 ul li {
		padding: 5px 0px 5px 5px;
	}

	.CompBox .compCol1 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li p {
		padding-left: 5px;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 70px;
	}

	.hero2 ul {
		width: 100%;
	}

	.hero2 ul li {
		font-size: 16px;
		line-height: 39px;
		list-style: none;
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 70px;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 60px;
	}
}

/*# sourceMappingURL=styles.css.map */
@media screen and (max-width: 350px) {
	.banner-inner {
		font-size: 0.8125rem;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 55px;
	}

	.hero2 ul li {
		font-size: 12px;
	}
	.mobile-btn .btn-box .btn{
		padding: 14px 0;
	}
}