/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scroll-margin-top: 60px;
}

body {
	font-family: "Inter", sans-serif;
	overflow-x: hidden;
}

html {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

/* ------------------- Container ------------------- */
.container {
	max-width: 1320px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.container-full {
	padding: 60px 0;
}

/* ------------------- Title ------------------- */
.title {
	text-align: center;
}

.title h2 {
	font-size: 48px;
	font-weight: bold;
	line-height: 57px;
	text-align: center;
	color: #000;
	margin-bottom: 25px;
}

.text {
	font-size: 18px;
	line-height: 28px;
}

h4 {
	font-size: 32px;
	line-height: 38px;
}

/*------------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;
}

/*------------header-----------------*/
header {
	padding: 12px 0;
	border-bottom: 1px #000000 solid;
	background-color: transparent;
	position: sticky;
	z-index: 1000;
}

header .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	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;
	justify-content: space-between;
	gap: 40px;
	padding-left: 20px;
}

header nav a {
	text-decoration: none;
	color: #000;
}

header nav .nav-left {}

header nav .nav-left a {
	font-size: 15px;
	color: #202e3b;
	padding-left: 17px;
}

header nav .nav-right {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

header nav .nav-right a {
	color: #202e3b;
	font-size: 17px;
	font-weight: 700;
	text-decoration: underline;
}

header .logo {
	width: 120px;
}

/* ------------------- Button ------------------- */
.btn {
	background-color: #017186 !important;
	border-radius: 8px;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	color: #000000 !important;
	font-family: "Poppins", sans-serif;
	font-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: 20px;
	height: 20px;
}

.btn:hover {
	background-color: #d7a90f;
	border-color: transparent;
}

.btn-box.btn-centered {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.btn-box .btn {
	background-color: #017186 !important;
	border-radius: 8px;
	-webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1490196078);
	color: #fff !important;
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	padding: 17px 24px 19px 22px;
	/*-webkit-animation: pulse 1.5s infinite ease;
	animation: pulse 1.5s infinite ease;*/
}

.btn-box .btn:hover {
	background-color: #017186;
	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: 400;
	gap: 5px;
	color: #202e3b;
}

.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);
	}
}

/*------------hero-----------------*/
.hero {
	background-color: #fff;

}

.hero .hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	width: 100%;
}

.hero .hero-left {
	width: 100%;
	height: 100%;
	position: relative;
}

.hero .hero-left .hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}


.hero .hero-left .badges {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	top: 0%;
	left: 5%;
	padding: clamp(3.75rem, -7.083rem + 4.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
	width: 220px;
}

.hero .hero-right {
	padding: 60px 105px 20px 59px;
	max-width: 680px;
	width: 100%;
}

.hero .hero-right .hero-mob,
.hero .hero-right #logos {
	display: none;
}

.hero .rating {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.hero .rating p {
	font-size: 14px;
	line-height: 24px;
}

.hero h1 {
	font-size: 62px;
	font-weight: 700;
	line-height: 75px;
	text-align: left;
}

h1 span {
	position: relative;
	z-index: 1;
}

h1 span::after {
	content: " ";
	background: #FED6064A;
	position: absolute;
	width: 100%;
	height: 30px;
	left: 0;
	bottom: 5px;
	z-index: -1;
}

.hero2 h1 span::after {
	display: none;
}

.hero h4 {
	font-size: 20px;
	line-height: 32px;
	margin-top: 15px;
	font-weight: 400;
}

.hero2 .hero-inner .hero-left {
	position: relative;
}

.hero2 .hero-inner .hero-left .badges {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	top: -78px;
	left: 75%;
	padding: clamp(3.75rem, -7.083rem + 17.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
	width: 200px;
}

.show-pc {
	display: block;
}

.hero .hero-review {
	margin-top: 30px;
	display: grid;
	grid-template-columns: 68px auto;
	align-items: start;
	gap: 20px;
}

.hero .hero-review .avatar {
	border-radius: 50%;
}

.hero .hero-review .hero-review-text {
	max-width: 404px;
	width: 100%;
}

.hero .hero-review .hero-review-text .stars {
	width: 100px;
	margin-bottom: 5px;
}

.hero .hero-review .hero-review-text p {
	font-size: 14px;
	line-height: 24px;
}

.hero .hero-review .hero-review-text p span {
	color: #858585;
	font-size: 11px;
	line-height: 24px;
}

.hero .btn-box {
	margin-top: 30px;
}

.show-tab {
	display: none;
}

.hero-mob-review {
	display: none;
}
.hero ul {
	list-style: none;
	margin-top: 20px;
}

.hero 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;
}
.hero.hero2 .hero-left .hero-bg{
	object-fit: cover;
	height: 100%;
	width: 100%;
}
/*-------------Ads seen on----------------*/
.AdsSeenOn,
.AdsSeenOn-slide-mobile {
	background: #000;
	color: #fff;
	position: relative;
	z-index: 999;
}

.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;
}

.g1 {
	margin: 0 auto;
	background-color: #fff;
	color: #000;

}

.grid2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.grid3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.grid4 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	color: #fff;
	height: 700px;
}

.grid2 .grid2-1 {
	background: url("../img/grid2-bg-1.jpg") no-repeat top/cover;
}

.grid2 .grid2-2 {
	background: url("../img/grid2-bg-2.jpg") no-repeat left/cover;
}

.grid3 .grid3-1 {
	background: url("../img/grid3-bg-1.jpg") no-repeat right top/cover;
}

.grid4 .grid4-1 {
	background: url("../img/grid2-bg-4-1-1.jpg") no-repeat bottom right/cover;
}

.grid3 .grid3-2-inner {
	display: flex;
	flex-direction: column;
}

.grid3 .grid3-2 .grid3-2-inner {
	height: 100%;
}

.grid4 .grid4-2-inner {
	display: flex;
	flex-direction: column;
}

.grid4 .grid4-2 .grid4-2-inner {
	height: 100%;
}

.grid3 .grid3-2-1 {
	background: url("../img/grid3-bg-2-1.jpg") no-repeat left center/cover;
	height: 50%;
	padding: 40px 25px 40px 45px;

}

.grid3 .grid3-2-2 {
	background: url("../img/grid3-bg-2-2.jpg") no-repeat left center/cover;
	height: 50%;
	padding: 40px 25px 40px 45px;
	color: #fff;
}

.grid4 .grid4-2-1 {
	background: url("../img/grid2-bg-4-2-1.jpg") no-repeat left center/cover;
	height: 50%;
	padding: 40px 25px 40px 25px;
	color: #000;

}

.grid4 .grid4-2-2 {
	background: url("../img/grid2-bg-4-2-2.jpg") no-repeat left center/cover;
	height: 50%;
	padding: 40px 25px 40px 25px;
	color: #000;
}

.grid3 .grid3-2-2 h4,
.grid3 .grid3-2-1 h4 {
	margin-bottom: 18px;
}

.grid4 .grid4-2-2 h4,
.grid4 .grid4-2-1 h4 {
	margin-bottom: 18px;
	margin-top: 100px;
}

.grid2 .text {
	max-width: 420px;
}

.grid3 .text {
	max-width: 308px;
}

.grid4 .text {
	max-width: 508px;
}

.grid4 .grid4-2-1 .text,
.grid4 .grid4-2-2 .text {
	max-width: 300px;

}

.grid2 .grid2-1,
.grid2 .grid2-2 {
	padding: 40px 25px 40px 45px;
}

.grid3 .grid3-1 {
	padding: 40px 25px 40px 45px;
}

.grid4 .grid4-1 {
	padding: 40px 25px 40px 45px;
}

.grid2 .grid2-1 {
	color: #fff;
}

.grid2 .grid2-1 .grid2-1-inner,
.grid2 .grid2-2 .grid2-2-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: start;
}

.grid3 .grid3-1 .grid3-1-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: start;
}

.grid4 .grid4-1 .grid4-1-inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: start;
	position: relative;
	top: 70%;
}

.grid2-img {
	position: relative;
	margin-bottom: -40px;
}

.grid3-img {
	position: relative;
	top: 46px;
}

.grid2 .grid2-1 .grid2-1-inner {
	max-width: 640px;
	margin-left: auto;
}

.grid3 .grid3-1 .grid3-1-inner {
	max-width: 640px;
	margin-left: auto;
}

.grid4 .grid4-1 .grid4-1-inner {
	max-width: 640px;
	margin-left: auto;
}

.s1 {
	background-color: #040408;
	color: #fff;
	padding: 20px 25px 0px 45px;
	position: relative;

}

.s1 .container {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 70px;
}

.s1 .btn-box .btn-text-row {
	color: #fff;
}

.s1 .btn-box.grey-dots .btn-stock-view span:nth-child(2),
.s1 .btn-box.grey-dots .btn-stock-view span:nth-child(3),
.s1 .btn-box.grey-dots .btn-stock-view span:nth-child(4),
.s1 .btn-box.grey-dots .btn-stock-view span:nth-child(5) {
	background-color: rgba(255, 255, 255, 1) !important;
}

.opacity-bg {
	border-radius: 20px 20px 0 0;
	opacity: 0.36;
	position: relative;
	margin-bottom: -88px;
}

.s1-text {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.s1-text .btn-box .btn-text-row {
	justify-content: center;
}

.s1-text .btn {
	padding: 17px 26px;
}

.s1 .ring {
	position: relative;
	top: -30px;
	right: 100px;
}

.aaa {
	overflow: hidden;
}

/*------------v1-----------------*/
.v1,
.v1-mob {
	background-color: #f9f3e7;
}

.v1 {
	display: grid;
	grid-template-columns: 2fr 3fr;
	align-items: center;
}

.v1 .v1-left {
	position: relative;
	left: 50%;
}

.v1 .v1-left ul {
	font-size: 22px;
	margin-top: 15px;
	list-style: none;
}

.v1 .v1-left ul li {
	background-image: url("../img/number1.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	margin-bottom: 20px;
	line-height: 1.4;
	padding: 2px 0px 2px 38px;
}

.v1 .v1-left ul li:nth-child(2) {
	background-image: url("../img/number2.png");
}

.v1 .v1-left ul li:nth-child(3) {
	background-image: url("../img/number3.png");
}

.v1 .v1-left ul li:nth-child(4) {
	background-image: initial;
	font-weight: bold;
}

.v1-right button {
	position: absolute;
	top: 0;
	right: 0;
}

.v1-right {
	position: relative;
	overflow: hidden;
	max-height: 650px;
}

.v1-right video {
	width: 100%;
	height: 100%;
	object-position: top;
	object-fit: cover;
	display: block;
}

.v1-right button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	color: #fff;
	padding: 6px;
	cursor: pointer;
}

.v1-mob {
	display: none;
}

/*------------v1mob-----------------*/
.v1-mob {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	justify-content: center;
}


.v1-mob .v1-left ul {
	font-size: 18px;
	margin-top: 15px;
	list-style: none;
}

.v1-mob .v1-left ul li {
	background-image: url("../img/number1.png");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	margin-bottom: 20px;
	line-height: 1.4;
	padding: 2px 0px 2px 38px;
}

.v1-mob .v1-left ul li:nth-child(2) {
	background-image: url("../img/number2.png");
}

.v1-mob .v1-left ul li:nth-child(3) {
	background-image: url("../img/number3.png");
}

.v1-mob .v1-left ul li:nth-child(4) {
	background-image: initial;
	font-weight: bold;
}

.v1-top button {
	position: absolute;
	top: 0;
	right: 0;
}

.v1-top {
	position: relative;
	width: 100%;
}

.v1-mob .v1-top video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.v1-top button {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 50%;
	color: #fff;
	padding: 6px;
	cursor: pointer;
}

.v1-mob {
	display: none;
}

/*------------grid6-----------------*/
.grid6 .grid6-inner .grid6-item {
	display: flex;
	flex-direction: row;
	min-width: calc(100% / 3 - 39px);
	align-items: start;
	gap: 10px;
}

.grid6 .grid6-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	gap: 20px;
}

.grid6 .grid6-inner .grid6-item img {
	position: relative;
	top: 4px;
}

.grid6 .grid6-inner .grid6-item .s3 {
	margin-bottom: 13px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
}

.grid6 .grid6-inner .grid6-item .s4 {
	line-height: 24px;
	font-size: 16px;
}

.grid6 .btn-box {
	margin-top: 25px;
}

/*------------colors-----------------*/

.colors .colors-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	margin-top: 40px;
}

.colors .colors-inner .colors-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.colors .colors-inner .colors-item p {
	font-size: 24px;
	line-height: 38px;
	font-weight: 700;
}

.colors .colors-inner .colors-item img {
	width: 160px;
}

/* ------------ Comparison ------------ */
#comparison {
	padding: 2rem 0 2rem 0;
	background-color: #040408;
}

#comparison h2 {
	color: white;
}

.CompBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 10rem;
	margin-bottom: 1rem;
	background: transparent;
	border-radius: 15px;
}

.CompBox .compCol1 {

	width: 40%;
	padding: 15px 0;
	position: relative;
	padding-top: 120px;
}

.CompBox .compCol1 ul {
	padding-left: 0;
	width: 100%;
}

.CompBox .compCol1 ul li {
	width: 100%;
	height: 70px;
	text-align: left;
	padding: 10px 0 10px 20px;
	position: relative;
	border-bottom: 1px dashed #2D627C;
	border-top: 1px dashed #2D627C;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;

}

.CompBox .compCol2 ul li p {
	padding-left: 10px;
	font-weight: 600;
	text-align: start;
}

.CompBox .compCol1 ul li:last-child {
	border-bottom: none;
}

.CompBox .compCol1 ul li p {
	width: 100%;
	font-size: 1.125rem;
	line-height: 1.625rem;
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.5px;
	margin-bottom: 0;
}

.CompBox .compCol2 {
	width: 30%;
	background-color: #262626;
	color: #fff;
	border-radius: 10px;
	margin: -30px 0px 10px 0;
	padding-bottom: 15px;
}

.CompBox .compCol3 {
	color: #000;
}

.CompBox .compCol2 ul {
	list-style: none;
	padding-top: 5px;
	padding-left: 0;
	width: 100%;
}

.CompBox .compCol2 ul li {
	width: 100%;
	height: 70px;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-bottom: 1px dashed #2D627C;
	border-top: 1px dashed #2D627C;
	padding: 10px 0 10px 20px;

}

.CompBox .compCol2 ul li:last-child {
	border-bottom: none;
}

.CompBox .compCol2 ul li svg {
	color: #ffffff;
	height: 30px;
	width: 30px;
}

.CompBox .compCol2Top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 145px;
	width: 100%;
}

.CompBox .compCol2Top.compCol3Top {
	height: 151px;
}

.CompBox .compCol2Top.compCol3Top p {
	display: inline-block;
	line-height: 1.375rem;
	letter-spacing: 0.3px;
	padding: 6px 15px;
	border-radius: 50px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 18px;
	font-weight: 800;
	text-align: center;
	padding: 0;
	margin-bottom: 30px;
}

.CompBox .compCol2Top .compCol2Prod {
	margin: auto;
	max-width: 90%;
}


.CompBox .compCol3 {
	background-color: transparent;
}

.CompBox .compCol3 ul {
	padding-top: 0px;
}

.CompBox .compCol3 ul li {
	border-bottom: 1px dashed #2D627C;
}

.CompBox .compCol3 ul li svg {
	color: #adadad;
}

#comparison .btn-box.pc {
	align-items: center;
}

.CompBox .compCol2Prod.product {
	margin-top: -80px;
	width: 120px;
}

.CompBox .compCol2Prod.product.product3 {
	margin-top: -50px;
}

/* ------------ 30 day guarantee ------------ */
.moneyback {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 45px;
	max-width: 800px;
	margin: 0 auto;
	margin-top: 50px;
	color: white;
}

.moneyback h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 43px;
}

.moneyback p {
	font-size: 18px;
	line-height: 30px;
	padding: 0px 10px;
}

.moneyback .moneyback-img {
	width: 150px;
	display: block;
	height: 150px;
}

.moneyback .moneyback-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

#comparison .btn-box .btn-text-row {
	color: white;
}

#comparison .btn-box.grey-dots .btn-stock-view span:nth-child(2),
#comparison .btn-box.grey-dots .btn-stock-view span:nth-child(3),
#comparison .btn-box.grey-dots .btn-stock-view span:nth-child(4),
#comparison .btn-box.grey-dots .btn-stock-view span:nth-child(5) {
	background-color: rgba(255, 255, 255, 1) !important;
}

/*------------reviews-----------------*/
.ratings {
	max-width: 390px;
	border-radius: 4px;
	padding: 15px 20px;
	background-color: #fcfbf9;
}

.rating-row {
	display: flex;
	align-items: center;
	padding: 11px 0 12px 17px;
	border-bottom: 1px solid #f0f0f0;
}

.rating-row:last-child {
	border-bottom: none;
}

.label {
	font-size: 16px;
	color: #333;
	width: 150px;
	font-weight: 700;
}

.score {
	font-weight: bold;
	margin-right: 8px;
}

.stars img {
	width: 100px;
	vertical-align: middle;
}

.count {
	font-size: 14px;
	color: #555;
	margin-left: 8px;
	font-weight: 700;
}

.right {
	display: flex;
	flex-direction: row;

}

.reviews-inner {
	display: flex;
	flex-direction: row;
	align-items: start;
	gap: 20px;
}

.reviews-col {
	max-width: 770px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.reviews-item {
	background-color: #fcfbf9;
	border-radius: 4px;
	display: flex;
	align-items: start;
	gap: 20px;
	padding: 28px 16px 31px 24px;
}

.reviews-text {
	display: flex;
	flex-direction: column;
	align-items: start;
}
.reviews-item img{
	border-radius: 4px;
}
.reviews-text .c1 {
	font-size: 22px;
	line-height: 31px;
	margin: 4px 0 7px 0;
	font-weight: 700;
}

.reviews-text .c2 {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 11px;
	font-weight: 300;
}
.reviews-text .c3{
	font-weight: 700;
}
.reviews-text .c3 span{
	font-weight: 300;
}
/* ------------ 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 (min-width: 1500px) {
	.hero .hero-left .hero-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: right 80%;
		object-position: right 80%;
	}
}

@media (max-width: 1440px) {}

@media (max-width: 1200px) {
	.hero .hero-left .hero-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}

	.hero .hero-right {
		padding: 30px 30px 20px 30px;
		max-width: 680px;
		width: 100%;
	}

	.hero h1 {
		font-size: 42px;
		font-weight: 700;
		line-height: 55px;
		text-align: left;
	}

	.show-tab {
		display: block;
	}

	.hero .btn-box {
		margin: 20px 0px;
	}

	.s1 .ring {
		position: relative;
		top: -30px;
		right: 250px;
	}

	.v1 .v1-left {
		left: 30%;
	}
	.reviews-col{
		max-width: 580px;
	}
	.ratings{
		padding: 15px 5px;
	}
}

@media (max-width: 1024px) {
	.colors .colors-inner .colors-item img {
		width: 120px;
	}

	.colors .colors-inner {
		max-width: 720px;
	}

	.colors .colors-inner .colors-item p {
		font-size: 20px;
	}
	.reviews-col{
		max-width: 550px;
	}
}

@media (max-width: 991px) {
	.hero .hero-inner {
		grid-template-columns: 1fr;
	}

	.hero .hero-inner .hero-left {
		display: none;
	}

	.hero .hero-inner .hero-right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		max-width: 100%;
		padding: 20px 0px 20px;
		overflow: hidden;
		padding-bottom: 40px;
	}

	.hero .hero-inner .hero-right h1 {
		text-align: center;
	}

	.hero .hero-inner .hero-right h4 {
		text-align: start;
		max-width: 540px;
		padding: 0px 15px;
	}

	.hero .hero-inner .hero-right #logos {
		display: block;
		margin: 0 -20px;
		margin-bottom: 10px;
		width: 100vw;
	}

	.hero .hero-inner .hero-right #logos .logos {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
		padding: 10px 0;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 100px;
	}

	.hero .hero-inner .hero-right .hero-left {
		display: block;
		height: auto;
		aspect-ratio: 673/522;
		margin: 0 -20px;
		margin-top: 10px;
		width: 100vw;
	}

	.hero .hero-inner .hero-right .hero-mob .badges {
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		top: 2%;
		left: 5%;
		padding: clamp(3.75rem, -7.083rem + 4.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
		width: 220px;
	}

	.hero .rating {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 10px;
	}

	.hero .hero-right .hero-mob {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		margin-top: 10px;
	}

	.hero .hero-right .hero-mob video {
		width: 100%;
	}

	.hero-mob-review {
		display: block;
		padding: 0px 15px;
		max-width: 540px;

	}

	.hero-mob-review .avatar-mob {
		border-radius: 50%;
	}

	.hero-mob-review .hero-mob-review-top {
		display: flex;
		flex-direction: row;
		gap: 15px;
		align-items: center;
	}

	.hero-mob-review .hero-mob-review-top .hero-mob-riview-top-2 {
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.hero-mob-review .hero-mob-review-top .hero-mob-riview-top-2 span {
		color: #858585;
		font-size: 11px;
		line-height: 24px;
	}

	.hero-mob-review :nth-child(2) {
		font-size: 14px;
		line-height: 24px;
		margin-top: 5px;
	}

	.hero .hero-review {
		display: none;
	}

	.AdsSeenOn-slide-mobile {
		display: block;
		margin-top: 20px;
	}

	.AdsSeenOn {
		display: none;
	}

	.AdsSeenOn-slide-mobile .container {
		overflow: hidden;
	}

	.AdsSeenOn-slide-mobile .container .AdsSeenOn-inner {
		width: 1999px;
	}

	.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;
	}

	.container-full {
		padding: 30px 0;
	}

	.container-full.g1 {
		padding-top: 0px;
	}

	.grid2 {
		grid-template-columns: 1fr;
	}

	.grid3 {
		grid-template-columns: 1fr;
	}

	.grid4 {
		grid-template-columns: 1fr;
		height: 1648px
	}

	.grid2 .grid2-1 .grid2-1-inner {
		margin-left: initial;
	}

	.grid3 .grid3-1 .grid3-1-inner {
		margin-left: initial;
	}

	.grid4 .grid4-1 .grid4-1-inner {
		margin-left: initial;
	}

	.grid2 .grid2-2 {
		background: url("../img/grid2-bg-2-tranx.jpg") no-repeat right/cover;
	}

	.grid4 .grid4-1 {
		background: url("../img/grid2-bg-4-1-1-mob.jpg") no-repeat bottom/cover;
		height: 450px;
	}

	.grid4 .grid4-1 .grid4-1-inner {
		top: 0;
	}

	.grid4 .grid4-2-1 {
		background: url("../img/grid2-bg-4-2-1-mob.jpg") no-repeat center/cover;
		height: 700px;


	}

	.grid4 .grid4-2-2 {
		background: url("../img/grid2-bg-4-2-2-mob.jpg") no-repeat 30% center/cover;
		height: 500px;
	}

	.grid4 .grid4-2-2 h4,
	.grid4 .grid4-2-1 h4 {
		margin-top: initial;
	}

	.grid2 .grid2-2 .grid2-2-inner .grid2-img {
		margin-left: auto;
	}

	h4 {
		font-size: 28px;
		line-height: 35px;
	}

	.s1 {
		position: relative;
	}

	.s1 .container {
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.s1 .btn-box {
		display: none;
	}

	.s1 .ring {
		position: absolute;
		top: 250px;
		right: -92px;
		width: 65vw;
		max-width: 618px;
		min-width: 377px;
		z-index: 1;
	}

	.opacity-bg {
		margin-bottom: initial;
	}

	.s1 .container {
		padding: 0;
	}

	.s1 {
		padding: 40px 25px 0px 25px;
	}

	.grid3-img {
		top: 40px;
	}

	.v1 {
		display: none;
	}

	.v1-mob {
		display: flex;
	}

	.grid6 .grid6-inner {
		display: flex;
		flex-direction: column;
	}
	.reviews-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.reviews-col{
		max-width: 100%;
	}



}

@media (max-width: 991px) {
	header {
		padding: 23px 0;
		background-color: #ece8e3;
		position: sticky;
		top: 0;
		z-index: 1000;
	}

	header .nav-right {
		display: none;
	}

	header .container {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	header nav .nav-left {
		width: 100%;
	}

	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;
		padding-left: 0px;
	}

	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;
	}

}

@media (max-width: 915px) {
	header {
		padding: 15px 0;
	}

	.title h2 {
		font-size: 36px;
		line-height: 41px;
	}
}

@media (max-width: 768px) {
	.banner {
		padding: 8px;
	}

	.container {
		padding: 0 20px;
	}

	header .logo {
		width: 110px;
	}

	header #menu-btn {
		display: block;
		width: 50px;
		padding: 4px 12px;
		border-radius: 4px;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 150px;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 80px;
	}

	.hero .hero-inner .hero-right h1 {
		font-size: 30px;
		line-height: 38px;
		font-weight: bold;
	}

	h1 span::after {
		content: " ";
		background: #FED6064A;
		position: absolute;
		width: 100%;
		height: 20px;
		left: 0;
		bottom: 5px;
		z-index: -1;
	}

	.hero .hero-inner .hero-right .hero-mob .badges {
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		top: 0%;
		left: 5%;
		padding: clamp(2.75rem, -5.083rem + 3.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
		width: 180px;
	}

	.hero .hero-review {
		padding: 0px 10px;
	}

	.colors .colors-inner {
		display: grid;
		grid-template-columns: 1fr 1fr;
		row-gap: 20px;
		max-width: 450px;

	}

	.CompBox .compCol1 ul li p {
		font-size: 14px;
		line-height: 18px;
		font-weight: 700;
	}

	.compCol2 ul li p,
	.compCol3 ul li p {
		font-size: 14px;
		line-height: 18px;
		font-weight: 700;
	}

	.CompBox .compCol1 ul li {
		padding: 5px 0 2px 10px;
	}

	.CompBox .compCol2 ul li {
		padding: 5px 0 2px 10px;
	}

	.CompBox .compCol1 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2Top.compCol3Top p {
		font-size: 14px;
		line-height: 18px;
	}

	.CompBox .compCol2Prod.product {
		width: 67px;
	}

	.CompBox .compCol2Prod.product {
		margin-top: -50px;
	}

	.CompBox .compCol2Prod.product.product3 {
		margin-top: -10px;
	}

	.moneyback {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		text-align: center;
		gap: 20px;
	}
	.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 (max-width: 600px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.hero .hero-inner .hero-right #logos {
		padding: 0;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 120px;
	}

	.hero .hero-inner .hero-right h1 {
		font-size: 28px;
		line-height: 36px;
		font-weight: bold;
	}

	.hero .hero-inner .hero-right .hero-mob .badges {
		position: absolute;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		top: 0%;
		left: 5%;
		padding: clamp(2.75rem, -5.083rem + 3.333vw, 7rem) clamp(2.063rem, -4.813rem + 11vw, 4.125rem) 0 0;
		width: 150px;
	}

	.btn-box .btn-text-row {
		justify-content: center;
	}

	.btn-box .btn {
		padding: 12px 20px;
	}

	.text {
		font-size: 16px;
		line-height: 26px;
	}

	.colors .colors-inner .colors-item img {
		width: 100px;
	}
	.reviews-item{
		display: flex;
		flex-direction: column-reverse;
	}
	.reviews-text .c2{
		line-height: 24px;
		
	}

}

@media (max-width: 479px) {
	.grid2 .grid2-1 {
		background: url("../img/grid2-bg-mob-1.jpg") no-repeat right bottom/cover;
	}

	.grid2 .grid2-2 {
		background: url("../img/grid2-bg-2-mob-mob-mob.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: left top 30%;
	}

	.grid2-img {
		width: 180px;
	}

	.grid3-img {
		width: 180px;
	}

	.opacity-bg {
		width: 180px;
	}

	.s1 .ring {
		width: 283px;
	}

	.grid2 .grid2-1,
	.grid2 .grid2-2 {
		padding: 40px 25px 40px 25px;
	}

	.grid3 .grid3-1 {
		padding: 40px 25px 40px 25px;
	}

	.grid4 .grid4-1 {
		padding: 40px 25px 40px 25px;
	}

	.grid3 .grid3-2 .grid3-2-inner {
		height: 1200px;
	}

	.grid3 .grid3-2-1 {
		background: url("../img/overview-bg-img-4-mb.jpg") no-repeat center/cover;
		height: 50%;
		padding: 40px 25px 0px 25px;

	}

	.grid3 .grid3-2-2 {
		background: url("../img/overview-bg-img-5-mb.jpg") no-repeat center/cover;
		height: 50%;
		color: #fff;
		padding: 40px 25px 0px 25px;
	}

	.grid6 .grid6-inner .grid6-item .s3 {
		margin-bottom: 13px;
		font-size: 20px;
		line-height: 26px;
	}

	.CompBox .compCol1 ul li {
		padding: 5px 0px 5px 5px;
	}

	.CompBox .compCol2 ul li {
		padding: 5px 0px 5px 5px;
	}

	.CompBox .compCol1 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li img {
		width: 15px;
		height: auto;
	}

	.CompBox .compCol2 ul li p {
		padding-left: 5px;
	}
}

@media (max-width: 425px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 100px;
	}

	.hero .hero-inner .hero-right #logos img {
		max-width: 60px;
	}

	.hero .hero-inner .hero-right .hero-mob .badges {
		display: none;
	}

	.grid2 .grid2-2 {
		background: url("../img/grid2-bg-2-mob-mob-mob.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: left top;
	}

	.s1 .ring {
		top: 250px;
		right: -142px;
	}

	.s1 .container {
		gap: 20px;
	}

	.colors .colors-inner .colors-item img {
		width: 90px;
	}

}

@media (max-width: 350px) {
	.banner-inner {
		font-size: 0.8125rem;
	}

	.container {
		padding: 0 10px;
	}

	.hero .hero-inner .hero-right .hero-left .badges img {
		width: 70px;
	}

	.hero.hero2 .hero-inner .hero-left .badges img {
		width: 60px;
	}

	.btn-box .btn {
		padding: 12px 10px;
		font-size: 16px;
	}

	.btn-box .btn-text-row {
		padding: 0 10px;
	}

	.btn-box .btn-text-row {
		font-size: 8px;
		line-height: 8px;
	}

	.grid2-img {
		width: 150px;
	}

	.grid3-img {
		width: 150px;
	}

	.grid2 .grid2-2 {
		background: url("../img/grid2-bg-2-mob-mob-mob-mob.jpg");
		background-repeat: no-repeat;
		background-size: cover;
		background-position: left top;
	}

	.grid2 .grid2-2 {
		padding: 40px 5px 40px 25px;
	}

	.s1 .ring {
		top: 300px;
		right: -142px;
	}

	.grid4 .grid4-1 {
		height: 550px;
	}

	.grid4 .grid4-2-2 {
		height: 550px;
	}

	.grid4 {
		height: 1800px;
	}
	
	.label{
		width: 100px;
	}
}

@media (max-width: 320px) {
	header #menu-btn {
		width: 45px;
	}

	header .logo {
		width: 100px;
	}

	.colors .colors-inner .colors-item img {
		width: 80px;
	}
}