/*------------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;
}

/* ------------------- Title ------------------- */
.title {
	text-align: center;
}

.title h2 {
	font-size: 42px;
	font-weight: 800;
	line-height: 55px;
	text-align: center;
	color: #000;
	margin-bottom: 25px;
}

.title p {
	font-weight: 600;
	font-size: 16px;
	line-height: 25px;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 8px;
}

/* ------------------- Container ------------------- */
.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.container-full {
	padding: 60px 0;
}

/*------------banner-----------------*/
.banner {
	background: #ACF4A1;
	padding: 12px;
}

.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: #0286D8 !important;
	border: 1px solid #0286D8;
	border-radius: 8px;
	color: #ffffff !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: 22px;
	height: 16px;
	margin-top: 2px;
}

.btn:hover {
	background-color: #0286D8;
	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: #0286D8 !important;
	border: 1px solid #0286D8;
	border-radius: 8px;
	color: #ffffff !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: #0286D8;
	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: 40px;
}

header nav a {
	text-decoration: none;
	color: #000;
}

header .logo {
	height: 35px;
}

/*-------------Ads seen on----------------*/
.AdsSeenOn,
.AdsSeenOn-slide-mobile {
	background: #000;
	color: #fff;
}

.AdsSeenOn-inner,
.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 12px 0;
}

.AdsSeenOn-inner {
	overflow: hidden;
}

.AdsSeenOn .AdsSeenOn-inner .AdsSeenOn-item,
.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide .AdsSeenOn-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;

}

.AdsSeenOn .AdsSeenOn-inner .AdsSeenOn-item p,
.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide .AdsSeenOn-item p {
	font-size: 14px;
	line-height: 18px;
}

.AdsSeenOn .container {
	max-width: 1320px;
}

.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4.5rem;
	-webkit-animation: moveCustomersPhotos 20s linear infinite;
	animation: moveCustomersPhotos 20s linear infinite;
}

.AdsSeenOn-slide-mobile {
	display: none;
}

/*-------------hero----------------*/
.hero {
	background: url("../img/pc-hero-bg.png") no-repeat right top/50% 100%,
		#FBF2E5;
	position: relative;
	padding: 4rem 0rem 4rem 0;
	overflow: hidden;
}
.hero2{
	background: url("../img/hero2-bg.png") no-repeat left top/50% 100%,
		#FBF2E5;
	position: relative;
	padding: 4rem 0rem 4rem 0;
	overflow: hidden;
}

.hero {
	position: relative;
	background-color: #FBF2E5;
}

.hero.end {
	background: url("../img/hero-end-bg.png") no-repeat left center/cover,
		rgba(251, 251, 251, 1);
}

.hero.end .hero-inner {
	margin-left: 50%;
}

.pc-badge {
	position: absolute;
	left: 52%;
	top: 12%;
	width: 7.5rem;
	height: 7.5rem;
}

.doc {
	position: absolute;
	left: 52%;
	top: 90%;
}

.doc {
	display: flex;
	flex-direction: row;
	gap: 8px;
	align-items: center;
}

.doc img {
	width: 35px;
}

.tech {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: start;
	margin-top: 20px;
}

.tech p {
	font-size: 12px;

}

.tech img {
	width: 90%;
	height: auto;
}

.hero.end .pc-badge {
	left: 2%;
}
.hero2 .hero-inner{
	margin-left: 55%;
}
.hero2 .pc-badge{
	top: 5%;
	left: 2%;
}
.hero2 .doc{
	left: 2%;
}
.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 0rem 0.625rem;
	max-width: 39.375rem;
}

.hero-inner .rating {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.3125rem;
}

.hero-inner .rating p {
	font-size: 0.875rem;
	font-weight: 400;
}

.hero-inner .rating span {
	font-weight: 600;
}

.hero-inner h1 {
	font-weight: 800;
	font-size: 3.125rem;
	line-height: 3.75rem;
	color: #000000;
}

.hero-inner h1 span {
	color: #169FFF;
}

.hero .hero-inner .sub-title {
	font-size: 1.125rem;
	line-height: 1.5625rem;
	margin: 0px 0px 0.3rem 0px;
	font-weight: 400;
}

.hero .hero-inner ul {
	list-style: none;
}

.hero .hero-inner ul li {
	font-size: 1rem;
	line-height: 2rem;
	font-weight: 400;
	background: url("../img/check-circle.svg") no-repeat left 0.3rem / 1.5rem auto;
	padding-left: 2rem;
	margin-bottom: 10px;
}

.mobile-hero-bg {
	display: none;
}

.mobile-badge {
	display: none;
}

/*
.SwiperPhotoes {
	margin-top: 1.25rem;
	padding: 1.25rem 0;
}

.SwiperPhotoes .title h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: #2e3a4b;
}

.SwiperPhotoes .swiper-container {
	display: grid;
	grid-template-columns: 25px auto 25px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 40px;
}

.SwiperPhotoes .swiper {
	width: 100%;
	height: 100%;
	max-height: 320px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.SwiperPhotoes .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	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;
	-webkit-transition: 0.8s;
	transition: 0.8s;
}

.SwiperPhotoes .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.SwiperPhotoes .swiper {
	margin-left: auto;
	margin-right: auto;
}

.SwiperPhotoes .btn-box {
	margin: 0 auto;
	align-items: center;
}

------------Swiper----------------------*/
.SwiperPhotoes {
	margin-top: 1.25rem;
	padding: 1.25rem 0;
}

.SwiperPhotoes .mySwiper {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	overflow: hidden;
}

.SwiperPhotoes .mySwiper .swiper-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
}

.SwiperPhotoes .mySwiper .swiper-slide {
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.SwiperPhotoes .mySwiper .swiper-slide img {
	width: 100%;
	max-width: 400px;
	height: auto;
	display: block;
	border-radius: 8px;
}


.SwiperPhotoes .mySwiper .swiper-pagination {
	position: static;
	margin-top: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.SwiperPhotoes .mySwiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 4px;
	border-radius: 50%;
	transition: background 0.3s;
}

.SwiperPhotoes .mySwiper .swiper-pagination-bullet-active {
	background: #000;
}


.SwiperPhotoes .swiper-button-prev,
.SwiperPhotoes .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	z-index: 10;
	cursor: pointer;
}

.SwiperPhotoes .swiper-button-prev {
	left: 8px;
}

.SwiperPhotoes .swiper-button-next {
	right: 8px;
}


.SwiperPhotoes .swiper-button-prev::after,
.SwiperPhotoes .swiper-button-next::after {
	display: none;
}

/* ------------ Features ------------ */
.features {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	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: 400px;
}

.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 {
	width: 40px;
	position: relative;
	top: -5px;
}

.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;
}

/*------------studies----------------*/
.studies {
	background: url("../img/results-bg.png") no-repeat top center/cover;
}
.studies .title p,
.studies .title h2 {
	text-align: start;
}

.studies .title h2 {
	margin-bottom: 0px;
}

.studies .text p {
	font-size: 16px;
	line-height: 20px;
	margin: 10px 0 30px 0;
}

.studies-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;

}

.studies-inner img {
	padding-right: 80px;
}

.studies-left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.studies .bars {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.studies .bars .bar {
	display: flex;
	flex-direction: row;
	gap: 15px;
	width: 100%;
	align-items: center;
}

.studies .bars .bar .blue {
	background: #0493ED;
	border-radius: 50px;
	box-shadow: 12px 0px 0 0 #E8F6FF;
	width: 70%;
	padding: 10px 20px;
}

.studies .bars .bar .blue p {
	font-size: 21px;
	color: #fff;
	margin-bottom: 0px;
	padding: 15px 10px;
	font-weight: 500;
}

.studies .bars .bar h3 {
	font-size: 45px;
	font-weight: 700;
	margin-bottom: 0px;
	color: #0493ED;
	padding: 20px 0px;
}

.show-mob {
	display: none;
}

/*------------Swiper Face-----------------*/
.SwiperFace {
	padding: 1.25rem 0;
	background-color: rgba(235, 244, 244, 1);
}

.SwiperFace .btn-box {
	margin-top: 30px;
}

.SwiperFace .FaceSwiper {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	overflow: hidden;
}

.SwiperFace .FaceSwiper .swiper-wrapper {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: nowrap;
}

/*
.SwiperFace .FaceSwiper .swiper-slide {
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}


.SwiperFace .FaceSwiper .swiper-slide img {
	width: 100%;
	max-width: 400px;
	height: auto;
	display: block;
	border-radius: 8px;
}
*/

.SwiperFace .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
}


.SwiperFace .swiper-Card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 280px;
	padding: 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.SwiperFace .swiper-Card img {
	width: 100%;
	height: auto;
	max-width: 300px;
	margin-bottom: 12px;
}


.SwiperFace .swiper-Card .spec {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	margin-bottom: 6px;
}


.SwiperFace .swiper-Card .spec-2 {
	font-size: 14px;
	font-weight: 600;
	color: #555;
	margin-bottom: 6px;
}


.SwiperFace .swiper-Card .spec-3 {
	font-size: 13px;
	line-height: 1.5;
	color: #777;
}

.SwiperFace .FaceSwiper .swiper-pagination {
	position: static;
	margin-top: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
}


.SwiperFace .FaceSwiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 4px;
	border-radius: 50%;
	transition: background 0.3s;
}

.SwiperFace .FaceSwiper .swiper-pagination-bullet-active {
	background: #000;
}


.SwiperFace .swiper-button-prev,
.SwiperFace .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	z-index: 10;
	cursor: pointer;
}

.SwiperFace .swiper-button-prev {
	left: 8px;
}

.SwiperFace .swiper-button-next {
	right: 8px;
}


.SwiperFace .swiper-button-prev::after,
.SwiperFace .swiper-button-next::after {
	display: none;
}

/*------------steps-----------------*/
.Steps-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 50px;
	margin-top: 50px;
}

.Steps-inner .Steps-card {
	display: flex;
	flex-direction: column;
	position: relative;
}

.stepicon {
	position: absolute;
}

.Steps-inner .Steps-card .s1 {
	font-weight: 700;
	font-size: 22px;
	line-height: 120%;
	margin-top: 20px;
}

.Steps-inner .Steps-card .s2 {
	font-size: 16px;
	line-height: 150%;
	margin-top: 10px;
}

/* -------------------compet ------------------- */
.compet {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	border-radius: 20px;
	overflow: hidden;
	padding: 40px 20px;
	background: url("../img/banner-bg.png") no-repeat center left/auto 100%, #EBF4F4;
}

.compet-text {
	padding: 50px;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.compet-text .title h2 {
	text-align: start;
}

.compet-t {
	color: #221C44;
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
}

.d50 {
	border-radius: 50px;
	border: 3px solid #0493ED;
	width: 80%;
	margin-bottom: 10px;
	width: 90%;
}

.d50 p {
	font-weight: 500;
	font-size: 21px;
	text-align: center;
	padding: 25px;
	color: #221C44;
}

.compet-img img {
	height: auto;
	width: 100%;
	object-fit: cover;
	max-width: 450px;
	transform: translateX(120px);
}

.hide-pc {
	display: none;
}

/* ------------ Comparison ------------ */
#comparison {
	background: url("../img/comp-bg.png") no-repeat center center/80%;
}

#comparison .title h2 {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #000;
}

#comparison .title p {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.325rem;
}

.s4CompBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 120px;
	margin-bottom: 120px;
	background: #ffffff;
	opacity: 1;
	border-radius: 15px;
	border: 1px solid #000;

}

.s4CompBox .compCol1 {

	width: 57%;
	padding: 15px 0;
	position: relative;
	padding-top: 120px;
}

.s4CompBox .compCol1 ul {
	padding-left: 0;
	width: 100%;
}

.s4CompBox .compCol1 ul li {
	width: 100%;
	height: 70px;
	text-align: left;
	padding: 10px 0 10px 20px;
	position: relative;
	border-bottom: 1px solid #c2c2c2;
	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;
}

.s4CompBox .compCol1 ul li:last-child {
	border-bottom: none;
}

.s4CompBox .compCol1 ul li p {
	width: 100%;
	font-size: 18px;
	line-height: 26px;
	color: #000;
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.s4CompBox .compCol2 {
	width: 21.5%;
	background: #0493ED;
	border-radius: 10px;
	margin: -30px 0px -44px 0;
	padding-bottom: 15px;
}

.s4CompBox .compCol2 ul {
	list-style: none;
	padding-top: 5px;
	padding-left: 0;
	width: 100%;
}

.s4CompBox .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: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.s4CompBox .compCol2 ul li:last-child {
	border-bottom: none;
}

.s4CompBox .compCol2 ul li svg {
	color: #ffffff;
	height: 30px;
	width: 30px;
}

.s4CompBox .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%;
}

.s4CompBox .compCol2Top.compCol3Top {
	height: 115px;
	margin-top: 35px;
	-webkit-transform: translateY(70px);
	transform: translateY(70px);
}

.s4CompBox .compCol2Top.compCol3Top p {
	display: inline-block;
	line-height: 22px;
	letter-spacing: 0.3px;
	padding: 6px 15px;
	border-radius: 50px;
	color: #161616;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	padding: 0;
}

.s4CompBox .compCol2Top .compCol2Prod {
	margin: auto;
	max-width: 90%;
}

.s4CompBox .compCol2Prod.product {
	margin-top: -80px;
}

.s4CompBox .compCol3 {
	background-color: transparent;
}

.s4CompBox .compCol3 ul {
	padding-top: 0px;
}

.s4CompBox .compCol3 ul li {
	border-bottom: 1px solid #c2c2c2;
}

.s4CompBox .compCol3 ul li svg {
	color: #adadad;
}

/*-------------moneyback----------------*/
.moneyback {
	background: #FBF2E5;
	color: #000;
	border-radius: 1.25rem;
	max-width: 1180px;
	margin: 0 auto;
}

.moneyback-img {
	width: 8rem;
	height: auto;
}

.moneyback .moneyback-inner {
	display: flex;
	flex-direction: row;
	gap: 1.25rem;
	justify-content: center;
	max-width: 44rem;
	margin: 0 auto;
	padding: 40px 0px;

}

.moneyback .moneyback-inner .moneyback-text {
	font-weight: 500;
	font-size: 1rem;
}

.moneyback .moneyback-inner .moneyback-text p {
	font-size: 1.1rem;
	line-height: 1.5;
}

.moneyback .moneyback-inner .moneyback-text span {
	font-weight: 900;
}

.moneyback .moneyback-inner .moneyback-text .title {
	font-size: 1.5625rem;
	line-height: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	text-align: start;
}

/*-------------faq----------------*/
.a42534s {
	background: #fff;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}

.a42534s .btn-box {
	margin-top: 30px;
}

.faq-title h2 {
	font-weight: 800;
	font-size: 42px;
	line-height: 55px;
	margin-bottom: 25px;
	text-align: start;
	margin-bottom: 20px;
}

.faq .title p {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	margin-top: 1rem;
	margin-bottom: 0.325rem;
}

.vfwdewqqww23 {
	max-width: 50rem;
	margin: 1.875rem auto;
}

.der1313 {
	border-radius: 0.9375rem;
	border-top: 1px solid #e3e3e3;
	border-bottom: 1px solid #e3e3e3;
	background-color: #fff;
	width: 100%;
}

.a32432frsdfcds {
	background-color: #fff;
	border: none;
	color: #000;
	cursor: pointer;
	font-size: 1.1rem;
	letter-spacing: 0.3px;
	line-height: 28px;
	font-weight: 600;
	outline: none;
	padding: 18px;
	text-align: left;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	position: relative;
}

.p324dwer {
	background-color: #fff;
	max-height: 0;
	overflow: hidden;
	padding: 0 18px;
	text-align: left;
	-webkit-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}

.p324dwer p {
	color: #545454;
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 20px;
	padding-top: 0;
}

.a32432frsdfcds:after {
	content: "";
	display: inline-block;
	background: url("../img/drop-down-43.png") no-repeat center/cover;
	width: 0.8rem;
	height: 1.2rem;
	position: absolute;
	left: 95%;
	top: 40%;
}

.active:after {
	background: url("../img/up-down-43.png") no-repeat center/cover;
	width: 0.8rem;
	height: 1.2rem;
}

.faq .container {
	padding: 1rem 1rem;
}

/* ------------ 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: #fff;
	border-radius: 25px;
	max-width: 350px;
	border: 2px solid #E3E3E3;
}

.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;
}

.reviews .review .review-name img {
	width: 16px;
}

.reviews .review .review-name span {
	color: #3AB890;
	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;
}

.reviews .review .review-content .condition {
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}

.reviews .review .review-content .condition p {
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.5px;
}

.reviews .review .review-content .condition p:nth-child(1) {
	font-weight: 700;
}

.reviews .review .review-content .condition .ku {
	border-radius: 50px;
	padding: 3px 15px;
	border: 2px solid #EBF4F4;
}

/*------------intro-----------------*/
.intro {
	background: url("../img/intro-full.png") no-repeat center/cover,
		linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(235, 244, 244, 1) 50%);
	
}

.intro {
	padding: 12rem 0px 8rem 0rem;
}

.intro .intro-card {
	border: 3px solid #EBF4F4;
	background-color: #fff;
	border-radius: 20px;
	padding: 50px 40px;
	width: 60%;
	margin-left: 50px;
}
.intro .intro-card p{
	margin-bottom: 15px;
}
.intro .intro-card .b1 {
	font-weight: 800;
	font-size: 42px;
	line-height: 50px;
}
.intro .intro-card .b2{
	font-weight: 400;
	font-size: 18px;
	line-height: 29px;
}
.intro .intro-card .b3{
	font-weight: 700;
	font-size: 18px;
	line-height: 29px;
} 
/* ------------ 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: 0 auto;
  margin-bottom: 20px;
  background-color: white;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  padding: 1rem 1.5rem;
  max-width: 1008px;
 
}

.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----------------*/

.mobile-order-now .btn-box {
  margin: 0 auto;
}
.mobile-order-now .btn-box a {
  margin: 0;
}
.footer {
	padding: 2.5rem 0;
	border-top: 1px solid #babdbc;
}

.footer-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	
}

.footer nav a {
	display: inline;
	text-decoration: none;
	color: #000;
	text-align: center;
}

.footer img {
	width: 10rem;
	height: auto;
	margin: 0 auto 1rem;
}

.footer nav a:hover {
	color: #1F88DB;
	text-decoration: underline;
}
.footer nav{
	font-size: 1rem;
	line-height: 2.125rem;
	text-align: center;
}
.footer-inner p{
	font-size: 1rem;
	line-height: 2.125rem;
	text-align: center;
}
.footer nav a::after {
		content: "|";
		margin: 0 0.3125rem;
}

.hidden {
  display: none !important;
}
/*-------------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;
}
/*------------media queries-----------------*/
@media (max-width: 1200px) {
	.hero-inner {
		max-width: 30rem;
	}

	.hero-inner h1 {
		font-weight: 800;
		font-size: 2.625rem;
		line-height: 3.5rem;
		color: #000000;
	}

	.btn-box .btn {
		padding: 12px 30px;
	}

	.pc-badge {
		width: 6rem;
		height: 6rem;
	}

	.studies .bars .bar .blue p {
		padding: 5px;
	}

	.studies .bars .bar h3 {
		font-size: 35px;
		line-height: 45px;
		padding: 5px;
	}

	.studies .bars .bar .blue {
		width: 80%;
	}

	.studies-inner img {
		padding-right: 30px;
	}

	.studies-inner {
		gap: 20px;
	}

	.studies .bars {
		gap: 25px;
	}

	.compet-img img {
		transform: translateX(50px);
		transform: translateY(80px);
		height: auto;
	}

	.d50 p {
		font-size: 21px;
		line-height: 28px;
	}
	.intro {
		padding: initial;
	}
	
}

@media screen and (max-width: 1024px) {
	#comparison {
		padding-top: 40px !important;
	}

	.s4CompBox {}

	.container-full .container {
		padding: 1.5rem 1rem;
	}

	.s4CompBox .compCol2Prod.product {
		margin-top: -65px;
	}

	.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) {
	.container-full {
		padding: 30px 0;
	}

	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-radius: 4px;
	}

	.AdsSeenOn-slide-mobile {
		display: block;
	}

	.AdsSeenOn {
		display: none;
	}

	.AdsSeenOn-slide-mobile .container {
		overflow: hidden;
	}

	.AdsSeenOn-slide-mobile .container .AdsSeenOn-inner {
		width: 1600px;
	}

	.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide {
		display: flex;
		flex-direction: row;
		align-items: center;
		gap: 1rem;
		-webkit-animation: moveCustomersPhotos 20s linear infinite;
		animation: moveCustomersPhotos 20s linear infinite;
	}

	@-webkit-keyframes moveCustomersPhotos {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}

		100% {
			-webkit-transform: translate(-50rem);
			transform: translate(-50rem);
		}
	}

	@keyframes moveCustomersPhotos {
		0% {
			-webkit-transform: translateX(0);
			transform: translateX(0);
		}

		100% {
			-webkit-transform: translate(-50rem);
			transform: translate(-50rem);
		}
	}

	.AdsSeenOn-inner,
	.AdsSeenOn-slide-mobile .AdsSeenOn-inner .slide {
		padding: 6px 0;
	}

	.hero,
	.hero.end {
		background-image: initial;
		padding: 1.5rem 0rem;
	}

	.pc-badge {
		display: none;
	}

	.show-pc {
		display: none;
	}

	.hero .hero-inner,
	.hero.end .hero-inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		max-width: 100%;
		padding: 0rem;
		gap: 0rem;
	}

	.hero .hero-inner .rating,
	.hero.end .hero-inner .rating {
		flex-direction: column;
		gap: 0.625rem;
		margin-bottom: 0.625rem;
	}

	.hero .hero-inner .rating p,
	.hero.end .hero-inner .rating p {
		font-size: 0.8rem;
	}

	.hero .hero-inner h1,
	.hero.end .hero-inner h1 {
		text-align: center;
		padding: 0rem 0.4rem;
		margin-bottom: 0.625rem
	}

	.hero .hero-inner .sub-title,
	.hero.end .hero-inner .sub-title {
		padding: 10px 10px 4px 10px;
		text-align: center;
		margin-top: 0.625rem;
		margin-bottom: 0.625rem;
	}

	.hero ul {
		padding: 4px 15px 4px 15px;
		margin: 0 auto;
	}

	.mobile-hero-bg {
		display: block;
		width: 100%;

	}

	.relative {
		position: relative;
		width: 100%;
	}

	.hero .mobile-badge {
		display: block;
		position: absolute;
		right: 10%;
		top: 80%;
		width: 6.5rem;
		height: 6.5rem;
	}

	.doc {
		position: absolute;
		left: 2%;
		top: 90%;
	}

	.hero.end .mobile-badge {
		left: 2%;
	}

	.hero .btn-box,
	.hero.end .btn-box {
		align-items: center;
		margin-top: 0.625rem;
		margin-bottom: 0.625rem;
	}

	.hero ul li {
		margin-bottom: 0.3125rem;
	}

	.hero .container {
		padding: 0rem;
	}

	.tech {
		display: none;
	}

	.btn-box {
		display: none;
	}

	.reviews {
		grid-template-columns: 1fr 1fr;
		justify-items: center;
		max-width: 560px;
	}


}

@media screen and (max-width: 915px) {
	header {
		padding: 15px 0;
	}

	.title h2 {
		font-size: 28px;
		line-height: 38px;
	}

	.reviews {
		grid-template-columns: 1fr;
		max-width: 100%;
	}
	.intro .intro-card .b1 {
		font-weight: 800;
		font-size: 28px;
		line-height: 38px;
	}
	.footer-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}
	
	.footer-inner img {
		margin: auto;
	}
	
	.footer nav a {
		display: inline;
		text-align: center;
	}
	
	.mobile-order-now {
	  display: block;
	}
	.mobile-order-now .btn-box {
	  display: -webkit-box !important;
	  display: -ms-flexbox !important;
	  display: flex !important;
	}
	
	.footer nav a:nth-child(3)::after {
		content: none;
	}
	
	.footer-inner p {
		text-align: center;
	}


}

@media screen and (max-width: 768px) {
	.banner {
		padding: 8px;
	}

	.container {
		padding: 0 30px;
	}

	header .logo {
		height: 30px;
	}

	header #menu-btn {
		display: block;
		width: 50px;
		padding: 4px 12px;
		border-radius: 4px;
	}

	.hero .hero-inner h1 {
		font-size: 2.375rem;
		line-height: 3rem;
	}

	.hero .mobile-badge {
		display: block;
		position: absolute;
		right: 10%;
		top: 85%;
		width: 6.5rem;
		height: 6.5rem;
	}

	.doc {
		position: absolute;
		left: 2%;
		top: 90%;
	}

	.title h2 {
		font-size: 26px;
		line-height: 36px;
	}
	.intro .intro-card .b1 {
		font-weight: 800;
		font-size: 26px;
		line-height: 36px;
	}

	.faq-title h2 {
		font-size: 26px;
		line-height: 36px;
	}

	.title p {
		font-size: 14px;
		line-height: 22px;
		letter-spacing: 1px;
	}

	.features {
		background: none;
		grid-template-columns: 1fr;
		gap: 20px;
		margin-bottom: 40px;
	}

	.features .features-center {
		order: -1;
		margin-bottom: 20px;
	}

	.features .features-center .badge {
		bottom: 60px;
		position: absolute;
		right: -68px;
		width: 95px;
		height: 95px;
	}

	.features .features-col {
		gap: 30px;
	}

	.features .features-col {
		margin: 0 auto;
		max-width: 450px;
	}

	.features .features-col:nth-child(1) {
		margin: 0 auto;
		max-width: 450px;
	}

	.show-pc {
		display: none;
	}

	.studies-inner {
		grid-template-columns: 1fr;
	}

	.studies .title h2,
	.studies .title p {
		text-align: center;
	}

	.studies .title h2 {
		margin-bottom: 15px;
	}

	.studies-inner img {
		padding-right: 0px;
		width: 100%;
	}

	.studies .bars {
		margin-top: 20px;
	}

	.studies .bars .bar .blue {
		padding: 10px 5px;
	}

	.studies .bars .bar .blue p {
		font-size: 16px;
		line-height: 20px;

	}

	.studies .bars .bar h3 {
		font-size: 25px;
		line-height: 30px;
	}

	.studies .text p {
		text-align: center;
		margin-top: 0px;
		margin-bottom: 5px;
	}

	.show-mob {
		display: block;
	}

	.SwiperFace .btn-box {
		display: none;
	}

	.Steps-inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 50px;
		margin-top: 30px;
	}

	.compet-img img {
		display: none;
	}

	.compet {
		display: grid;
		grid-template-columns: 1fr;
		background-color: #F5F5F5;
		border-radius: 20px;
		overflow: hidden;
	}

	.compet-text p {
		font-size: 18px;
		line-height: 1.5;
	}

	.compet-text {
		padding: 10px;
	}

	.compet {
		border-radius: 20px;
		overflow: hidden;
		padding: 20px;
		background: url("../img/banner-bg-mob.png") no-repeat top left/60%, #EBF4F4;
	}

	.compet .show-mob {
		height: auto;
		width: 80%;
		object-fit: cover;
		max-width: 400px;
		margin: 0 auto;
	}

	.compet-text h2 {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.d50 {
		width: 100%;
	}

	.d50 p {
		padding: 10px;
	}

	.moneyback .moneyback-inner {
		flex-direction: column;
		gap: 1.25rem;
		align-items: center;
		justify-content: center;
		text-align: center;
		max-width: 37.5rem;
		margin: 0 auto;
		padding: 1rem 1rem;
	}

	.moneyback .moneyback-inner .moneyback-text .title {

		text-align: center;
	}

	.moneyback-img {
		width: 7rem;
	}

	.a42534s {
		background: #fff;
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
	}

	.a42534s .btn-box {}

	#reviews .title {
		padding: 30px 0;
	}
	.intro {
		background: 
			linear-gradient(180deg, rgba(255, 255, 255, 1) 50%, rgba(235, 244, 244, 1) 50%);
	}
	.intro .intro-card {
		border: 3px solid #EBF4F4;
		background-color: #fff;
		border-radius: 20px;
		padding: 20px 20px;
		width: 100%;
		margin-left: 0px;
	}
	.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) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.hero .mobile-badge {
		display: block;
		position: absolute;
		right: 10%;
		top: 80%;
		width: 5rem;
		height: 5rem;
	}

	.doc {
		position: absolute;
		left: 2%;
		top: 85%;
	}

	.hero .hero-inner h1 {
		font-size: 2rem;
		line-height: 2.6rem;
	}

	.features .features-center .bg {
		max-width: 280px;
	}

	.features .features-center .badge {
		bottom: 60px;
		position: absolute;
		right: -68px;
		width: 95px;
		height: 95px;
	}

	.features .features-item .features-text h4 {
		font-size: 20px;
		line-height: 26px;
	}

	.features .features-item .features-text {
		gap: 5px;

	}

	.features .features-item .features-text h4 {
		margin-bottom: 3px;
	}

	.features .features-item .features-text p {
		font-size: 16px;
		line-height: 28px;
	}

	.features .features-item img {
		width: 30px;
	}

	.container {
		padding: 0 15px;
	}

	.d50 p {
		font-size: 16px;
	}
}

@media screen and (max-width: 400px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.hero .mobile-badge {
		display: block;
		position: absolute;
		right: 10%;
		top: 80%;
		width: 4.5rem;
		height: 4.5rem;
	}

	.doc {
		position: absolute;
		left: 2%;
		top: 85%;
	}
	.btn-box .btn-text-row{
		font-size: 10px;
		line-height: 15px;
	}
}

@media screen and (max-width: 350px) {
	.banner-inner {
		font-size: 0.8125rem;
	}

	.container {
		padding: 0 10px;
	}

	header #menu-btn {
		width: 45px;
	}

	header .logo {
		height: 25px;
	}

	.hero .mobile-badge {
		display: block;
		position: absolute;
		right: 10%;
		top: 80%;
		width: 4rem;
		height: 4rem;
	}

	.doc {
		position: absolute;
		left: 2%;
		top: 82%;
	}

	.hero .hero-inner h1 {
		font-size: 2rem;
		line-height: 2.6rem;
	}

	.studies .bars .bar .blue p {
		font-size: 14px;
		line-height: 14px;
	}
}

@media screen and (max-width: 320px) {
	.hero .hero-inner h1 {
		font-size: 1.6rem;
		line-height: 2.2rem;
	}
	.btn-box .btn-text-row{
		display: none;
	}
}