/*------------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;
}

/*-------------container----------------*/
.container {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	padding: 2rem 1rem;
}

/*-------------banner----------------*/

.banner {
	background-color: #000;
	color: white;
	text-align: center;
	padding: 0.375rem 1rem;
}

.banner p {
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.5;
}

.banner p span {
	color: #ffdd57;
}

/*-------------btn----------------*/
header .header-inner nav .headerbtn {

	align-items: center;
	font-size: 1.125rem;
	line-height: 1.5;
	font-weight: 700;
	margin-left: 8rem;
	padding: 0.5rem 1.375rem;
	background-color: #1dd068;
	text-decoration: none;
	border-radius: 1rem;
	color: #ffffff;

}

header .header-inner nav .headerbtn:hover {
	box-shadow: 0.0625rem 0.0625rem 0.25rem rgba(0, 0, 0, 0.25);

}

header .header-inner nav .headerbtn:active {
	border: 0.0625rem solid #1dd068;
	background-color: #fff;
	color: #1dd068;
}

.packageBtn {
	background: #1fc862;
	border-radius: 50px;
	box-shadow: 0 0.3125rem 0.3125rem 0.0625rem rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 0.3125rem 0.3125rem 0.0625rem rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 900;
	height: 3.75rem;
	letter-spacing: 0.3px;
	line-height: 3rem;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	text-shadow: 0.125rem 0.125rem #2a8b3a;
	width: 100%;
	text-decoration: none;
	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;
	max-width: 428px;
	margin-top: 0.625rem;
}

.packageBtn img {
	margin-left: 15px;
}

.packageBtn:hover {
	text-decoration: underline;
}

/* ------------------ Green box button ------------------ */
.btn-box {
	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;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 460px;
	width: 100%;
}

.btn-box .btn-box-top {
	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;
	justify-items: start;
	margin-bottom: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.btn-box .btn-box-top p {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1.0625rem;
	padding: 0 0.5rem;
}

.btn-box .btn-box-top p {
	margin-top: 0.5rem;
}

.btn-box .btn-box-top .hourglass::before {
	content: "";
	display: inline-block;
	width: 0.8rem;
	height: 0.8rem;
	margin-right: 0.0625rem;
	background: url("../img/hourglass.png") no-repeat center center / contain;
	animation: rotate 2.5s ease-in-out infinite forwards;
}

.btn-box .btn-box-top .sale::before {
	-webkit-animation: fade 1s ease-in-out infinite;
	animation: fade 1s ease-in-out infinite;
	background: #36ee4e;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 9px;
	margin: -2px 5px 0 0;
	vertical-align: middle;
	width: 9px;
}

.btn-box .btn-rev {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.3px;
	line-height: 1rem;
	margin-top: 0.75rem;
	position: relative;
}

.btn-box .btn-rev:after,
.btn-box .btn-rev:before {
	border-top: 1px solid #d3e4e9;
	content: "";
	display: inline-block;
	margin: -1px 10px 0;
	vertical-align: middle;
	width: 73px;
}

.btn-box .packageBtn {
	margin-top: 0.2rem;
	margin-bottom: 0.2rem;
}

.packageBtn.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);
	}
}

/* ------------------ Animations ------------------ */
@-webkit-keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}

	100% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
	}
}

@-webkit-keyframes 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%;
	}
}

/*-------------header----------------*/
header {
	position: sticky;
	top: -100px;
	transition: all 0.3s ease;
	z-index: 1000;
	height: 80px;
	background-color: #fff;
	box-shadow: 0.0625rem 0.0625rem 0.5rem 0.0625rem rgba(132, 132, 132, 0.2);
	padding: 0.3125rem 0rem;
}

header.sticky {
	position: sticky;
	top: 0;
	transition: 0.5s;
}

header .header-inner {
	max-width: 1180px;
	padding: 1rem 1.25rem;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .header-inner .logo {
	max-height: 3.4375rem;
	max-width: 15.625rem;
}

header .header-inner .menu-btn {
	cursor: pointer;
	display: none;
}

header .header-inner nav {
	display: flex;
	flex-direction: row;
	gap: 2rem;
	align-items: center;
}

header .header-inner nav a {
	text-decoration: none;
	color: #000;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.3px;
}

/*-------------hero----------------*/
.hero {
	width: 100%;
	color: #fff;
	padding: 2rem 0rem;
	background-color: #6d81ff;
	background: url("../img/final-bg-3.jpg") no-repeat bottom center /cover;
	
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	padding: 0rem 2rem;
	max-width: 40rem;
}

.hero-inner .rating {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.3125rem;
}

.hero-inner h1 {
	font-weight: bold;
	font-size: 3.5rem;
	line-height: 3.875rem;
	width: 100%;
	margin-top: 1.25rem;
}

.hero-inner .rating span {
	font-weight: 600;
}

.hero-inner .rating p {
	font-size: 1rem;
	font-weight: 400;
}

.hero-mobile-bg {
	display: none;
}

.hero .hero-inner ul {

	list-style: none;
	margin-top: 0.3125rem;
}

.hero .hero-inner ul li {
	font-size: 1.1rem;
	line-height: 2rem;
	font-style: italic;
	letter-spacing: 1.2px;
	background: url("../img/checkmark.svg") no-repeat left 0.1rem / 1.6rem auto;
	padding-left: 2.5rem;
	margin-top: 0.3125rem;
}

.hero .btn-box {
	margin-top: 0.9375rem;
	align-items: flex-start;
}

.hero .hero-inner .sub-title {
	font-size: 1.125rem;
	font-weight: 500;

}

/*-------------Badge---------------------*/
.badge {
	background-color: #30386F;
	color: #fff;
	padding: 0rem 1rem;
}

.badge .badge-inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
	max-width: 1180px;
	margin: 0 auto;
}

.badge .badge-inner .badge-item {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.3125rem;

}

.badge .badge-inner .badge-item img {
	width: 2.5rem;
	height: auto;
}

.badge .badge-inner .badge-item:last-child img {
	width: 3.5rem;
	height: auto;
}

.badge .badge-inner .badge-item p {
	font-size: 1rem;
	font-weight: bold;
	padding-left: 0.2rem;
}

.badge.mobile {
	display: none;
}

/* -------------------  Quote -------------------  */
.quote {
	border-bottom: 2px solid #c7c7c7;
}

.quote-inner {
	display: grid;
	grid-template-columns: 203px auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 780px;
	margin: 0 auto;
	gap: 30px;
}

.quote .quote-img {
	width: 100%;
	border-radius: 20px;
	height: auto;
	width: 100%;
}

.quote .quote-text img {
	width: 106px;
	height: auto;
}

.quote .quote-text h3 {
	font-size: 1.25rem;
	line-height: 1.625rem;
	color: #000;
	margin-top: 10px;
	text-transform: uppercase;
}

.quote .quote-text p {
	font-size: 1.0625rem;
	line-height: 1.375rem;
	color: #000;
	letter-spacing: 0.3px;
	font-style: italic;
	margin-top: 10px;
}

.quote .quote-text small {
	display: block;
	font-size: 1.125rem;
	line-height: 1.25rem;
	color: #361b0a;
	font-weight: bold;
	margin-top: 12px;
}

/*-------------overview----------------*/
.overview {
	padding: 3rem 0rem;
	border-bottom: 2px solid #c7c7c7;
}

.overview-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
	gap: 1.875rem;
	width: 100%;
}

.overview-inner .overview-text .swiper.SwiperhiddenMobile {
	display: none;
}

.swiper {
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
	max-width: calc(100vw - 40px);
	margin: 0 auto;
}

.swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.overview .title h2 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: start;
	color: #000;
}

.overview .overview-text-p {
	color: #000;
	font-size: 1.1875rem;
	letter-spacing: 0.5px;
	line-height: 1.75rem;
	font-weight: 300;
}

.overview .overview-text {
	display: flex;
	flex-direction: column;
	gap: 1.5625rem;
}

.overview .overview-text h3 {
	font-size: 1.4rem;
	line-height: 1.8rem;
}

.overview-text-p span {
	font-weight: 600;
}

/*-------------Advantages-------------------*/
.features {
	background: #e7f2ff;
}

.features-inner .features-img {
	display: none;
	max-width: 25rem;
	margin: 0 auto;
}

.features .title h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: #6577e6;
}

.features .title p {
	font-weight: 500;
	font-size: 1rem;
	text-align: center;
	margin-bottom: 0.325rem;
	color: #000;
}

.grid3 {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	align-items: center;
	justify-content: center;
	gap: 0.9375rem;
	margin-top: 2rem;
	margin-bottom: 2rem;

}

.grid3-col {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.grid3-item {
	display: flex;
	gap: 1rem;
	align-items: start;
}

.grid3-item-text {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.grid3-item img {
	width: 6.25rem;
	height: 6.25rem;
}

.grid3 .grid3-col:first-child .grid3-item {
	flex-direction: row-reverse;
	text-align: end;
}

.grid3 .grid3-col .grid3-item-text p {
	color: #000;
	font-size: 1rem;
	letter-spacing: 0.5px;
	line-height: 1.75rem;
	font-weight: 300;
}

.grid3 .grid3-col .grid3-item-text .title {
	font-size: 1.2rem;
	color: #181818;
	letter-spacing: 0.5px;
	line-height: 2.0625rem;
	font-weight: 700;
}

.features .btn-box.pc {
	margin: 0 auto;
}

/*-------------grid-4----------------*/
.grid-4-section {
	padding: 2rem 1rem;
	
}

.grid-4-section .title h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: bold;
	text-align: center;
	color: #000;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin: 40px 0;
	margin-top: 60px;
}

.grid-4 .grid-4-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	text-align: center;
}

.grid-4 .grid-4-item img {
	width: 100%;
	border-radius: 6px;
}

.grid-4 .grid-4-item p {
	color: #2c2d2d;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5rem;
}
.grid-4-section .btn-box.pc{
	margin: 0 auto;
}
/*------------middle banner-----------------*/
.middle-banner {
	background-color: #fff;
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: center;
	background: #e7f2ff;
}

.middle-banner p {
	font-size: 1.375rem;
	font-weight: bold;
	color: #000000;
	text-align: 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;
}
/* ------------ 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: #6577e6;
	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{
	margin: 0 auto;
}
/* ------------------ Reviews ------------------ */
.star-reviews {
  display: grid;
  grid-template-columns: 170px auto;
  max-width: 800px;
  margin: 40px auto;
  margin-bottom: 60px;
  padding-right: 20px;
}

.star-reviews-avg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.star-reviews-avg p {
  color: #131a2a;
  font-size: 17px;
  font-weight: 500;
  line-height: 22px;
  padding: 0 25px;
  text-align: center;
}
.star-reviews-avg img {
  width: 100px;
}
.star-reviews-avg .average {
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 3px;
}

.star-reviews-bars {
  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;
  width: 100%;
}
.star-reviews-bars .star-reviews-bar {
  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: 20px;
}
.star-reviews-bars .star-reviews-bar .bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 460px;
  background-color: white;
  border-radius: 15px;
  -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
          box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
  height: 12px;
  overflow: hidden;
  width: calc(100% - 175px);
}
.star-reviews-bars .star-reviews-bar .bar span {
  height: 100%;
  background-color: #fab73c;
  display: block;
}
.star-reviews-bars .star-reviews-bar img {
  width: 120px;
  height: 20px;
}
.star-reviews-bars .star-reviews-bar p {
  min-width: 32px;
  color: #000;
  font-size: 18px;
  line-height: 12px;
  width: 22px;
}

.swiper-reviews {
  display: none !important;
}

.reviews {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  margin: 40px auto;
  margin-top: 50px;
}

.reviews-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: 35px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}

.reviews-item {
  max-width: 265px;
  background-color: white;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1019607843);
  -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.reviews-item .reviews-item-img {
  width: 100%;
}
.reviews-item .reviews-item-info {
  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;
}
.reviews-item .reviews-item-info img {
  width: 100px;
}
.reviews-item .reviews-item-info .reviews-item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  font-family: "Lab-Grotesque-Medium";
}
.reviews-item .reviews-item-info .reviews-item-name span {
  color: #6fb620;
  font-size: 14px;
}
.reviews-item .reviews-item-info .reviews-item-name .verified {
  width: 15px;
}
.reviews-item .reviews-item-info .reviews-item-stars {
  margin-top: 5px;
}
.reviews-item .reviews-item-info .reviews-item-text {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 23px;
  margin-top: 5px;
  font-family: "Lab-Grotesque-Medium";
}
#reviews{
	background: #e7f2ff;
}
#reviews .title h2 {
	font-size: 2.5rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
	margin-top: 1.25rem;
}

#features-text {
  color: #000;
  font-size: 19px;
  letter-spacing: 0.5px;
  line-height: 28px;
  text-align: center;
}
#reviews .btn-box.pc{
	margin: 0 auto;
}
/*-------------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;
}
/*-------------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;
}
/*-------------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;
}
/*-------------media queries----------------*/
@media (max-width: 1024px) {
	html {
		font-size: 16px;
	}

	header .header-inner .menu-btn {
		display: block;
	}

	header .header-inner nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		max-height: 0;
		overflow: hidden;
	}

	header .header-inner nav a {
		background: #ffffff;
		width: 100%;
		text-align: start;
		color: #000;
		padding: 1rem;
		border-bottom: 1px solid #a5a5a5;
	}

	header .header-inner nav a:first-child {
		border-top: 1px solid #a5a5a5;
	}

	#header-btn {
		display: none;
	}

	header .header-inner nav.nav-open {
		max-height: 260px;
	}

	body.menu-open::before {
		content: "";
		background: rgba(0, 0, 0, 0.2);
		position: fixed;
		top: 200px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999;
	}

	body.menu-open {
		overflow: hidden;
	}

	.hero {
		padding: 2rem 0rem;
		height: 72rem;
		background-color: #6d81ff;
		background: url("../img/tablet-bg-3.jpg") no-repeat top center/cover;
	}

	.hero-inner {
		padding: 0rem 2rem;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		max-width: 100%;

	}

	.hero-inner .rating {
		flex-direction: column;
		align-items: center;
		gap: 0.3125rem;
	}

	.hero-inner .rating p {
		text-align: center;
	}

	.hero-inner h1 {
		font-weight: bold;
		font-size: 2.8rem;
		line-height: 3.2rem;
		width: 100%;
		margin-top: 0.5rem;
		text-align: center;
		padding: 0rem 0.2rem;
	}

	.hero-inner .rating span {
		font-weight: 600;
	}

	.hero-inner .rating p {
		font-size: 1rem;
		font-weight: 400;
	}

	.hero .btn-box {
		margin-top: 0.9375rem;
		align-items: center;
	}

	.badge.pc {
		display: none;
	}

	.badge.mobile {
		display: block;
	}

	.badge.mobile {
		background-color: #30386F;
		color: #fff;
		padding: 0.8rem 1rem;
		overflow: hidden;
	}

	.badge.mobile .badge-inner {
		width: 100%;
	}

	.badge.mobile .badge-track {
		display: flex;
		width: max-content;
		animation: scroll-left 20s linear infinite;
		gap: 7rem;
	}

	.badge.mobile .badge-item {
		display: flex;
		align-items: center;
		gap: 0.3rem;
		white-space: nowrap;
	}

	.badge.mobile .badge-item img {
		width: 2.5rem;
		height: auto;
	}

	.badge.mobile .badge-inner .badge-track .badge-item:nth-child(4n) img {
		width: 3.5rem;
		height: auto;
	}

	.badge.mobile .badge-item p {
		font-size: 1rem;
		font-weight: bold;
		padding-left: 0.2rem;
	}

	@keyframes scroll-left {
		0% {
			transform: translateX(0);
		}

		100% {
			transform: translateX(-50%);
		}
	}

	.quote-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		text-align: center;
		gap: 15px;
	}

	.quote .quote-img {
		width: 160px;
	}

	.quote .quote-text img {
		margin: 0 auto;
	}

	.overview-inner {
		grid-template-columns: 1fr;
		width: 100%;
		margin: 0 auto;
	}

	.overview-inner .swiper .SwiperhiddenMobile {
		display: none;
	}



	.btn-box.pc {
		display: none;
	}

	.overview .title h2 {
		font-size: 2rem;
		margin-bottom: 1rem;
		font-weight: bold;
		text-align: center;
	}

	.overview-inner .swiper {
		display: none;
	}

	.overview-inner .overview-text .swiper.SwiperhiddenMobile {
		display: block;
	}

	.features-inner .features-img {
		display: block;
	}

	.features-pc-img {
		display: none;
	}

	.grid3 {
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		gap: 0.9375rem;
		margin-top: 1.25rem;
	}

	.grid3 .grid3-col:first-child .grid3-item {
		flex-direction: row;
		text-align: start;
	}

	/* Grid-4 Layout */
	.grid-4 {
		grid-template-columns: 1fr 1fr;
	}
	.Recommended-inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 15px;
	}

	.badge.mobile .badge-track {
		display: flex;
		width: max-content;
		animation: scroll-left 20s linear infinite;
		gap: 4rem;
	}

	.overview .overview-text-p {
		padding: 0 1rem;
	}

	.overview .overview-text h3 {
		padding: 0 1rem;
	}
	.reviews {
	  -webkit-column-count: 2;
	     -moz-column-count: 2;
	          column-count: 2;
	}
	.mobile-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		background-color: #fafafa;
		position: fixed;
		bottom: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		left: 0;
		width: 100%;
		padding-bottom: 0.5rem;
		z-index: 10;
	}
	
	.mobile-btn .btn-box {
		margin: 0;
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
	
	}
	
	.mobile-btn.btn-default {
		position: relative;
		background-color: #f1f6f0;
	}
	
	.mobile-btn.btn-default .btn-box {
		-webkit-animation: none;
		animation: none;
	}
	.mobile-btn {
	  opacity: 0;
	  transition: opacity 0.4s ease;
	  pointer-events: none;
	}
	
	.mobile-btn.visible {
	  opacity: 1;
	  pointer-events: auto;
	}
}

@media (max-width: 600px) {
	.hero {
		height: 70rem;
		background: url("../img/mobile-bg-test.png") no-repeat top center/cover;
	}
	/* Star Reviews */
	.star-reviews {
	  grid-template-columns: 1fr;
	  padding: 0;
	}
	.star-reviews-bars {
	  margin-top: 20px;
	}
	.star-reviews-bars .star-reviews-bar {
	  -webkit-box-orient: horizontal;
	  -webkit-box-direction: normal;
	      -ms-flex-direction: row;
	          flex-direction: row;
	  gap: 15px;
	}
	.star-reviews-bars .star-reviews-bar img {
	  width: 90px;
	  height: 15px;
	}
	.star-reviews-bars .star-reviews-bar p {
	  font-size: 15px;
	  line-height: 10px;
	}
	.star-reviews-bars .star-reviews-bar .bar {
	  -webkit-box-flex: 1;
	      -ms-flex: 1;
	          flex: 1;
	  width: 100%;
	}
	.reviews {
	  display: none;
	}
	/* Swiper Reviews */
	.swiper-reviews {
	  display: -webkit-box !important;
	  display: -ms-flexbox !important;
	  display: flex !important;
	  max-width: 320px;
	  margin-top: 0;
	  margin-bottom: 30px;
	}
	.swiper-reviews .swiper-button-next,
	.swiper-reviews .swiper-button-prev {
	  height: 44px;
	  width: 44px;
	}
	.swiper-reviews .swiper-button-next:after,
	.swiper-reviews .swiper-button-prev:after {
	  font-size: 20px;
	  background-color: rgba(0, 0, 0, 0.5019607843);
	  aspect-ratio: 1/1;
	  padding: 10px;
	  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;
	  border-radius: 50%;
	  color: #ccc;
	  width: 44px;
	}
	.swiper-reviews .swiper-button-next,
	.swiper-reviews .swiper-rtl .swiper-button-prev {
	  right: var(--swiper-navigation-sides-offset, 10px);
	  left: auto;
	  top: 40%;
	}
	.swiper-reviews .swiper-button-prev,
	.swiper-reviews .swiper-rtl .swiper-button-next {
	  left: var(--swiper-navigation-sides-offset, 10px);
	  right: auto;
	  top: 40%;
	}
	.swiper-reviews .reviews-item {
	  max-width: 100%;
	  -webkit-box-shadow: none;
	          box-shadow: none;
	}
	#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 (max-width: 520px) {
	html {
		font-size: 14px;
	}

	/* Grid-4 Layout */
	.grid-4 {
		gap: 15px;
		margin: 30px 0;
		margin-bottom: 0;
	}

	.grid-4 .grid-4-item {
		gap: 10px;
	}

	.grid-4 .grid-4-item p {
		font-size: 1.2rem;
		letter-spacing: 0.5px;
		line-height: 1.5rem;
		min-height: 3.125rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}

	.btn-box .btn-rev:after,
	.btn-box .btn-rev:before {
		border-top: 1px solid #d3e4e9;
		content: "";
		display: inline-block;
		margin: -1px 10px 0;
		vertical-align: middle;
		width: 1.25rem;
	}

	.packageBtn {
		max-width: 23.75rem;
		font-size: 1.4rem;
		font-weight: 800;
	}
	.reviews {
	  -webkit-column-count: 1;
	     -moz-column-count: 1;
	          column-count: 1;
	}
}

@media (max-width: 420px) {
	html {
		font-size: 12px;
	}

	.hero {
		height: 73rem;
		background-color: #6d81ff;
		background: url("../img/mobile-bg-test.jpg") no-repeat top center/cover;
	}

	@media (max-width: 360px) {
		html {
			font-size: 11px;
		}

		.packageBtn {
			font-size: 1.1rem;
		}

		.hero {
			height: 80rem;
			background-color: #6d81ff;
			background: url("../img/mobile-bg-test.jpg") no-repeat top center/ cover;
		}
	}