/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scroll-margin-top: 60px;
}

body {
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

html {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ------------------- Button ------------------- */
.headerBtn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1rem;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 1.125rem;
	border-radius: 30px;
	background: #3aa943;
	background: -webkit-gradient(linear, left top, right top, color-stop(0, #3aa943), to(#84c741));
	background: linear-gradient(90deg, #3aa943 0, #84c741 100%);
	padding: 0.625rem 1.25rem;
	width: auto;
	font-weight: 600;
	color: white;
	text-decoration: none;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.headerBtn.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@-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);
	}
}

.headerBtn img {
	width: 27px;
	height: 27px;
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
}

.headerBtn:hover {
	background: -webkit-gradient(linear, left top, right top, color-stop(0, #84c741), to(#3aa943));
	background: linear-gradient(90deg, #84c741 0, #3aa943 100%);
}

.btn-box {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.btn-box .btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.625rem;
	font-size: 1.25rem;
	line-height: 1.5;
	font-weight: bold;
	padding: 0.5rem 2rem;
	background-color: #ffd431;
	color: #000;
	text-decoration: none;
	border-radius: 2.5rem;
	box-shadow: 0rem 0.25rem 0.25rem 0rem #B9B3AC82;
	max-width: 30rem;
}

.btn-text-row {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: flex;
	flex-direction: row;
	margin-top: 0.625rem;
}

.btn-text-row .btn-text {
	display: flex;
	flex-direction: row;
}

.btn-text-row .btn-text::before {
	content: "";
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background-color: #95df89;
	margin-right: 0.5rem;
	position: relative;
	top: 25%;
	-webkit-animation: fade 1s ease-in-out infinite;
	animation: fade 1s ease-in-out infinite;
}

@-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%;
	}
}

.btn-stock {
	margin: 0.0525rem 0.4rem;
}

.btn-stock span {
	background-color: rgba(217, 217, 217, 0.6);
	display: inline-block;
	height: 8px;
	width: 8px;
}

.btn-stock span:first-child {
	background-color: #fc2201;
}

.btn-text-row .low {
	color: #fc2201;
	font-weight: 600;
}

.btn.pulse {
	animation-name: pulse;
	-webkit-animation-name: pulse;
	animation-duration: 1.7s;
	-webkit-animation-duration: 1.7s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@-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);
	}
}

.btn-box.center {
	margin-top: 1.5rem;
	align-items: center;
	margin-right: 3.5rem;
}

/*------------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;
}

/*------------header-----------------*/
header {
	border-bottom: 1px solid #cfd1d5;
	padding: 10px 0 5px;
	position: sticky;
	background-color: #fff;
	top: -70px;
	transition: all 0.3s ease;
	z-index: 1000;
}

header.sticky {
	position: sticky;
	top: 0;
	transition: 0.5s;
}

header .header-inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

header .header-inner .rate {
	max-width: 200px;
	width: 100%;
}

header .header-inner .credit-card {
	max-width: 320px;
	width: 100%;
}

header .header-inner .logo {
	max-width: 8.4375rem;
	height: auto;
}

/*---------------hero----------------------*/
.hero {
	padding: 3rem 0;
	background: linear-gradient(to right, #e5f5dd 0%, #f3fbe7 40%, transparent 100%),
		url("../img/try-4-herobg.png") no-repeat right top/ cover;

}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-content: center;
}

.hero-left {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0.625rem;
}

.hero-inner .pc-hero {
	width: 80%;
}

.hero-right .doctors-pc {
	position: absolute;
	top: 72%;
	left: 60%;
	width: 6rem;
	height: auto;
}

.hero-left .rating {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.3125rem;
	flex-wrap: wrap;
}

.hero-left .rating p {
	font-size: 0.875rem;
	font-weight: 400;
}

.hero-left .rating span {
	font-weight: 600;
}

h1 {
	font-size: 2.6875rem;
	line-height: 3.1875rem;
	color: #002f28;
	margin-bottom: 0.3125rem;
}

.hero-left .sub-title {
	font-size: 1.1rem;
	line-height: 1.6375rem;
	color: #002f28;
	font-weight: 500;
	margin-bottom: 0.3125rem;
}

.hero .hero-inner ul {
	list-style: none;
}

.hero .hero-inner ul li {
	font-size: 1.1rem;
	line-height: 2.2rem;
	letter-spacing: 0.6px;
	font-weight: 600;
	padding-left: 3rem;
}

.hero .hero-left ul li:nth-child(1) {
	background: url("../img/list1.svg") no-repeat left 0.1rem / 1.8rem auto;
}

.hero .hero-left ul li:nth-child(2) {
	background: url("../img/list2.svg") no-repeat left 0.1rem / 1.8rem auto;
}

.hero .hero-left ul li:nth-child(3) {
	background: url("../img/list3.svg") no-repeat left 0.1rem / 1.8rem auto;
}

.hero .hero-left ul li:nth-child(4) {
	background: url("../img/list4.svg") no-repeat left 0.1rem / 1.8rem auto;
}

.hero .hero-left ul li:nth-child(5) {
	background: url("../img/list5.svg") no-repeat left 0.1rem / 1.8rem auto;
}

.hero .btn-box {
	margin-top: 0.9375rem;
}

.hero-review {
	display: flex;
	gap: 1.25rem;
	flex-direction: row;
	align-items: center;
}

.auth .check {
	display: inline-block;

}

.auth img {
	margin-top: 0.3125rem;
	position: relative;
	top: 3px;
}

.hero-review {
	margin-top: 2rem;
	max-width: 37.5rem;
}

.hero-review-text {
	max-width: 26.5625rem;
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	justify-content: center;
	align-items: flex-start;
	font-size: 0.875rem;
	line-height: 1.4rem;
}

.hero-review-text p span {
	font-weight: bold;
}

.hero-review-text .auth .name {
	font-weight: 600;
}

.hero-mobile-review {
	display: none;
}

/*-------------news----------------*/
.news {
	background-color: #2e3a4b;
	padding: 2.5rem 0;
}

.news .logos {
	margin: 0 auto;
	width: 100%;
	max-width: 1060px;
}

.news .logos-mobile {
	margin: 0 auto;
	width: 100%;
}

.news .logos-mobile {
	display: none;
}

/*-------------intro----------------*/
.intro {
	background: #fbfbfa;
	padding: 4.375rem 0;
}

.intro .intro-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 1.875rem;
}

.intro .intro-img {
	width: 100%;
	border-radius: 2.1875rem;
}

.intro .intro-text {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.intro .intro-text .subtitle {
	font-size: 20px;
	color: #5aa833;
}

.intro .intro-text h2 {
	font-size: 2.1875rem;
	line-height: 1.1;
	color: #2e3a4b;
	font-weight: bold;
}

.intro .introduction {
	color: #888888;
	font-weight: 300;
	font-size: 1rem;
	line-height: 1.5625rem;
	margin-bottom: 0.2rem;
}

/*-------------container----------------*/
.container {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	padding: 0rem 2rem;
}

/*-------------features----------------*/
.features {
	padding: 4.375rem 0;
	background-color: #f1f6f0;
}

.features .title h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: #2e3a4b;
}

.features .title p {
	font-weight: 400;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.325rem;
	color: #5aa833;
}

.grid3 {
	padding: 2.5rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: url("../img/features-4.png") no-repeat center / 125%;
	align-items: center;
}

.grid3 .grid3-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-flex-direction: column;
	flex-direction: column;

	gap: 2.5rem;
	width: 100%;
}

.grid3 .grid3-col .grid3-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;

	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;

	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;

	width: 100%;
	gap: 1.875rem;
}

.grid3 .grid3-col:first-child .grid3-item {
	text-align: end;

	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

.grid3 .grid3-col:last-child .grid3-item {
	text-align: start;

	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.grid3-item img {
	width: 5rem;
	border: 1px solid #2e3a4b;
	border-radius: 0.5rem;
}

.features-img {
	display: none;
}

.features .btn-box {
	margin: auto;
	align-items: center;
}

/*------------Swiper----------------------*/
.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;
}

/*------------Advantages-----------------*/
.Advantages {
	padding: 3rem 0;
	background-color: #f1f6f0;
}

.Advantages .title h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: #2e3a4b;
}

.Advantages .title p {
	font-weight: 400;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.325rem;
	color: #5aa833;
}

.Advantages-inner {
	display: flex;
	flex-direction: column;
	gap: 5rem;

}

.Advantages-item {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;
}

.Advantages-item img {
	width: 50%;
	height: auto;
	border-radius: 0.625rem;
	border: 1px solid rgb(91, 125, 69);
}

.Advantages-text {
	width: 50%;
}

.Advantages-item.reverse {
	flex-direction: row-reverse;

}

.Advantages-text {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding: 0.3125rem 0rem;
}

.Advantages-text p {
	color: #000000;
	font-size: 1.1rem;
	font-weight: 300;
	letter-spacing: 0.8px;
	line-height: 1.6;
}

.Advantages-text .title {
	font-size: 2rem;
	font-weight: 600;
	color: #221C44;
	letter-spacing: 0px;
}

.Advantages .btn-box {
	margin: 1.875rem auto;
	align-items: center;
}

/*------------how to use-----------------*/
.Recommended {
	padding: 2rem 1rem;
}

.Recommended-inner {
	max-width: 59.0625rem;
	margin: 0 auto;
	border-radius: 1.25rem;
	padding: 1.875rem 2.1875rem;
	border: 2px dashed #000;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 3.4375rem;
}

.Recommended h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	color: #2e3a4b;
}

.Recommended-text .Recommended-p {
	font-size: 1rem;
	line-height: 1.6;
	letter-spacing: 0.6px;
}

.Recommended-inner .Recommended-p span {
	font-weight: 600;
}

.Recommended .btn-box {
	margin-top: 2rem;
}

/*------------middle banner-----------------*/
.middle-banner {
	background-color: #d2ecc2;
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
}

.middle-banner p {
	font-size: 1.375rem;
	font-weight: bold;
	color: #002f28;
	text-align: center;
}

/* ------------ Comparison ------------ */
#comparison {
	padding: 3rem 0;
}

#comparison .title h2 {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
}

#comparison .title p {
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.325rem;
}

.CompBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 10rem;
	margin-bottom: 120px;
	background: #ffffff;
	border-radius: 15px;
	border: 1px solid #000;
}

.CompBox .compCol1 {

	width: 57%;
	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 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;
}

.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: 600;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.CompBox .compCol2 {
	width: 21.5%;
	background: #bdd9b7;
	border-radius: 10px;
	margin: -30px 0px -44px 0;
	padding-bottom: 15px;
}

.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: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.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: 115px;
	margin-top: 35px;
	-webkit-transform: translateY(-13px);
	transform: translateY(-13px);
}

.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: 16px;
	font-weight: 700;
	text-align: center;
	padding: 0;
}

.CompBox .compCol2Top .compCol2Prod {
	margin: auto;
	max-width: 90%;
}

.CompBox .compCol2Prod.product {
	margin-top: -80px;
}

.CompBox .compCol3 {
	background-color: transparent;
}

.CompBox .compCol3 ul {
	padding-top: 0px;
}

.CompBox .compCol3 ul li {
	border-bottom: 1px solid #c2c2c2;
}

.CompBox .compCol3 ul li svg {
	color: #adadad;
}
#comparison .btn-box.pc{
	align-items: center;
}
/*-------------reviews----------------*/
.reviews{
	background-color: #f1f6f0;
	padding: 3rem 0;
}
.reviews .btn-box.pc{
	align-items: center;
	margin-top: 1.25rem;
}
.reviews .title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: bold;
	text-align: center;
	color: #1E415F;
}

.reviews-rate {
	background: #fff;
	border-radius: 0.9375rem;
	margin: 0 auto;
	padding: 1.5rem 2rem;
	max-width: 31.25rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}

.reviews-rate-left img {
	display: inline-block;
	width: 7.5rem;
	height: auto;
}

.reviews-rate-left {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.reviews-rate-left-line {
	display: flex;
	gap: 0.625rem;
	align-items: center;
}

.reviews-rate-right {
	margin-top: -20px;
}

.reviews-rate-right .rate {
	color: #1E415F;
	font-size: 4.5rem;
	font-weight: 600;
}

.reviews-rate-right .rate-text {
	margin-top: -20px;
	padding: 0.3125rem;
}

.reviews-card-item {
	margin: 0 auto;
	margin-top: 2.5rem;
	margin-bottom: 3rem;
}

.reviews-card-item {
	background: #fff;
	border-radius: 0.5rem;
	width: 20rem;
	height: auto;
	overflow: hidden;
	object-fit: cover;
	
}

.reviews-product {
	width: 20rem;
	height: 20rem;
	object-fit: cover;
}

/* Swiper Reviews 
.Reviews-Swiper .swiper-button-next,
.Reviews-Swiper .swiper-button-prev {
	height: 44px !important;
	width: 44px !important;
}

.Reviews-Swiper .swiper-button-next:after,
.Reviews-Swiper .swiper-button-prev:after {
	font-size: 20px !important;
	background-color: red !important;

	padding: 10px !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	border-radius: 50% !important;
	color: #ccc !important;
	width: 44px !important;
}

.Reviews-Swiper .swiper-button-next,
.Reviews-Swiper .swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 30px) !important;
	left: auto !important;
	top: 25% !important;
}

.Reviews-Swiper .swiper-button-prev,
.Reviews-Swiper .swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, 30px) !important;
	right: auto !important;
	top: 25% !important;
}
*/
.Reviews-Swiper .swiper-button-next img,
.Reviews-Swiper .swiper-button-prev img {
		width: 45px;
}
.Reviews-Swiper .swiper-button-next,
.Reviews-Swiper .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  width: 56px;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.reviews-card-user {
	padding: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
}

.reviews-card-user-info {
	display: flex;
	flex-direction: row;
	gap: 0.9375rem;
	align-items: center;
}

.verified img {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	position: relative;
	top: 0.125rem;
}

.reviews-user-name {
	font-size: 1.25rem;
	font-weight: 500;
}

.verified span {
	font-weight: 300;
	font-size: 0.8rem;
}

.stars5 {
	display: inline;
	width: 5.5rem;
	height: auto;
}
.reviews-card-item p b{
	font-weight: 600;
}

	
}
/*-------------faq----------------*/
.faq{
	background-color: #fff;
}
.faq .container{
	padding: 3rem 1rem;
}
.faq .title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
}

.faq-accordion-inner {
	max-width: 50rem;
	margin: 1.875rem auto;
}

.faq-accordion {
	border-radius: 0.9375rem;
	box-shadow: 0rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	margin-bottom: 15px;
	width: 100%;
}

.accordion {
	background-color: #fff;
	border: none;
	color: #000;
	cursor: pointer;
	font-size: 1rem;
	letter-spacing: 0.3px;
	line-height: 2rem;
	font-weight: 500;
	outline: none;
	padding: 1.125rem;
	text-align: left;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	position: relative;
}

.panel {
	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;
}

.panel p {
	color: #545454;
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 20px;
	padding-top: 0;
}

.accordion:after {
	content: "";
	display: inline-block;
	background: url("../img/left-triangle.svg") no-repeat center/cover;
	width: 0.6rem;
	height: 1.2rem;
	position: absolute;
	left: 95%;
	top: 40%;
}

.active:after {
	background: url("../img/bottom-triangle.svg") no-repeat center/cover;
	width: 1.2rem;
	height: 0.6rem;
}
.faq .btn-box{
	align-items: center;
}
/* ------------------ Claim  ------------------ */
.Claimer{
	background-color: #f1f6f0;
	padding: 3rem 0;
}
#claim {
  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;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#claim #p-text-1 {
  color: #fc0000;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#claim #p-text-2 {
  color: #010101;
  font-size: 26px;
  font-weight: 400;
  line-height: 33px;
  font-family: "Lab-Grotesque-Medium";
}
#claim .btn-box {
  margin-top: 20px;
}
#claim .highlight{
	background-color: yellow;
}
/*-------------footer----------------*/
.footer {
	padding: 1rem 0;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	justify-content: space-between;
}

.footer nav a {
	display: block;
	text-decoration: none;
	color: #000;
	text-align: center;
}

.footer img {
	width: 15rem;
	height: auto;
	margin-left: 3.75rem;
}

.footer nav a:hover {
	color: #1F88DB;
	text-decoration: underline;
}
.footer nav{
	font-size: 0.75rem;
}
/*-------------policy----------------*/
.header-content{
	max-width: 1180px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0.625rem 2.5rem;
}
.header-content .logo{
	max-width: 18.125rem;
	height: auto;
}
.container-all{
	padding: 0.625rem 1.875rem;
}
.container-all h3{
	text-align: center;
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}
.container-all p{
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 1.25rem;
	font-weight: 300;
}
.container-all .highlight{
	font-weight: 600;
}
/*------------media query-----------------*/
@media (max-width: 1024px) {
	html {
		font-size: 16px;
	}

	header .header-inner .rate {
		display: none;
	}

	header .header-inner .credit-card {
		display: none;
	}

	.hero-inner .pc-hero {
		width: 100%;
		position: relative;
		top: 10%;
	}

	.hero {
		padding: 3rem 0;
		background: linear-gradient(to right, #e5f5dd 0%, #f3fbe7 40%, transparent 100%),
			url("../img/try-4-herobg.png") no-repeat 90% top/ cover;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 15px;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	h1 {
		max-width: 20rem;
	}

	.sub-title {
		max-width: 30rem;
	}

	.pc-hero {
		display: none;
	}

	.hero {
		padding: 3rem 0;
		background: linear-gradient(to right, #e5f5dd 0%, #f3fbe7 40%, transparent 100%),
			url("../img/try-4-herobg.png") no-repeat 90% top/ cover;
	}

	.hero .hero-left .rating {
		display: flex;
		flex-direction: column;
		align-items: flex-start;

	}

	.hero-inner .hero-left {
		gap: 0.9rem;
	}

	.hero-inner .hero-left ul li {
		margin-bottom: 0.4rem;
	}

	.news {
		background-color: #2e3a4b;
		padding: 1rem 0;
	}

	.hero-review.pc {
		display: none;
	}

	.news .logos {
		display: none;
	}

	.news .logos-mobile {
		display: block;
		max-width: 30.1875rem;

	}

	.btn-box.pc {
		display: none;
	}

	.hero-mobile-review {
		display: block;
	}

	.hero-mobile-review {
		display: flex;
		gap: 1.25rem;
		flex-direction: row;
		align-items: center;
	}

	.auth .check {
		display: inline-block;

	}

	.auth img {
		margin-top: 0.3125rem;
		position: relative;
		top: 3px;
	}

	.hero-mobile-review {
		margin: 0 auto;
		margin-top: 2rem;
		margin-bottom: 2rem;
		max-width: 37.5rem;
		padding: 0rem 2rem;
	}

	.hero-review-text {
		max-width: 26.5625rem;
		display: flex;
		flex-direction: column;
		gap: 0.375rem;
		justify-content: center;
		align-items: flex-start;
		font-size: 0.875rem;
	}

	.hero-review-text p span {
		font-weight: bold;
	}

	.hero-review-text .auth .name {
		font-weight: 600;
	}

	.intro .intro-inner {
		grid-template-columns: 1fr;
	}

	.intro-img {
		max-width: 35rem;
		margin: 0 auto;
	}

	.intro-text {
		text-align: center;
	}

	.intro {
		border-top: 1px solid #f7f7f7;
	}

	.grid3 {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.grid3 .grid3-col:first-child .grid3-item {
		flex-direction: row-reverse;
		justify-content: start;
		text-align: start;

	}

	.grid3 {
		background: initial;
		padding: 0 6.5rem;
	}

	.features-img {
		display: block;
		max-width: 25rem;
		margin: 0 auto;
	}

	.swiper-button-next img,
	.swiper-button-prev img {
		width: 45px;
	}

	.Advantages-inner {
		gap: 2rem;
	}

	.Advantages-item {
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
	}

	.Advantages-item img {
		width: 100%;
		height: auto;
		margin: 0 auto;
		max-width: 30rem;
	}

	.Advantages-text {
		width: 100%;
		padding: 0rem 1.5rem;
		margin: 0 auto;
		max-width: 30rem;
	}

	.Advantages-item.reverse {
		flex-direction: column-reverse;
	}

	.Advantages-item:nth-child(2n+1) {
		flex-direction: column-reverse;
	}

	.Recommended-inner {
		grid-template-columns: 1fr;
	}

	#comparison {
		padding-top: 40px;
	}
	#claim #p-text-1{
		display: flex;
		flex-direction: column;
		font-size: 2.5rem;
	}
	.footer-inner {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}
	
	.footer-inner img {
		margin: auto;
	}
	
	.footer nav a {
		display: inline;
		text-align: center;
	}
	
	.footer nav a::after {
		content: "|";
		margin: 0 0.3125rem;
	}
	
	.footer nav a:nth-child(3)::after {
		content: none;
	}
	
	.footer-inner p {
		text-align: center;
	}
	
}
@media (min-width: 769px) {
  .reviews-card-item {

  	margin-bottom: 0rem;
  }
  .Reviews-Swiper .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;         /* ✅ 允许换行 */
    gap: 20px 25px; 
	justify-content: center;
  }

  .Reviews-Swiper .swiper-slide {
    flex: 0 1 calc(33.333% - 20px); 
    width: auto !important;
    box-sizing: border-box;
  }
  .Reviews-Swiper .swiper-button-prev,
  .Reviews-Swiper .swiper-button-next,
  .Reviews-Swiper .swiper-pagination {
    display: none !important;
  }
}
@media (max-width: 600px) {

	.CompBox .compCol2Prod.product {
		margin-top: -4px;
	}
}

@media (max-width: 520px) {
	html {
		font-size: 14px;
	}

	.grid3 {
		background: initial;
		padding: 0 2.5rem;
	}
}

@media (max-width: 480px) {}

@media (max-width: 420px) {}

@media (max-width: 360px) {
	html {
		font-size: 12px;
	}
}