/*------------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;
}

.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.container-full {
	padding: 60px 0 70px;
}

/*------------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;
}

/*  ----------------------- buttons ---------------------  */
.navbtn {
	color: #fff;
	font-size: 1rem;
	text-align: center;
	width: 165px;
	height: 45px;
	line-height: 48px;
	border-radius: 5px;
	font-weight: bold;
	letter-spacing: 0.2px;
	text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
	-webkit-text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
	background: rgb(52, 189, 1);
	background: -moz-linear-gradient(180deg, rgba(52, 189, 1, 1) 0%, rgba(23, 180, 0, 1) 49%, rgba(8, 175, 0, 1) 100%);
	background: -webkit-linear-gradient(180deg, rgba(52, 189, 1, 1) 0%, rgba(23, 180, 0, 1) 49%, rgba(8, 175, 0, 1) 100%);
	background: linear-gradient(180deg, rgba(52, 189, 1, 1) 0%, rgba(23, 180, 0, 1) 49%, rgba(8, 175, 0, 1) 100%);
}

.btn-box {
	display: inline-block;
	max-width: 485px;
	width: 100%;
	text-align: center;
}

.btn-box.centered {
	display: block;
	margin: 0 auto;
	margin-top: 50px;
}

.btn-box.text-dark .btn-text {
	color: black;
}

.btn-box .btn-box-btn {
	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;
	gap: 5px;
	width: 100%;
	color: #fff;
	font-size: 23px;
	line-height: 72px;
	height: 72px;
	border-radius: 6px;
	font-weight: 700;
	text-shadow: 2px 2px 2px #178924;
	margin-top: 5px;
	text-transform: uppercase;
	text-decoration: none;
	overflow: hidden;
	background: rgb(52, 189, 1);
	background: -webkit-gradient(linear, left top, left bottom, from(rgb(52, 189, 1)), color-stop(49%, rgb(23, 180, 0)), to(rgb(8, 175, 0)));
	background: linear-gradient(180deg, rgb(52, 189, 1) 0%, rgb(23, 180, 0) 49%, rgb(8, 175, 0) 100%);

}

.btn-box .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: 7px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: white;
	margin-top: 12px;
}

.btn-box .btn-text span {
	color: #f00;
}

.btn-box .btn-text .btn-text1:before {
	display: inline-block;
	margin: -2px 5px 0 0;
	width: 9px;
	height: 9px;
	background: #6fb620;
	border-radius: 50%;
	content: "";
	-webkit-animation: fade 1s ease-in-out infinite;
	animation: fade 1s ease-in-out infinite;
}

.btn-box .btn-text p {
	display: inline-block;
	vertical-align: top;
	padding: 0 8px;
	letter-spacing: 0.3px;
}

.btn-box .btn-text .btn-text2 img {
	margin: -4px 3px 0 0;
	-webkit-animation: rotate 2.5s ease-in-out forwards infinite;
	animation: rotate 2.5s ease-in-out forwards infinite;
}

.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;
}

.title h2 {
	background: url(../img/bdr-btm1.png) no-repeat center bottom;
	font-weight: bold;
	padding-bottom: 55px;
	position: relative;
	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;
	text-align: center;
	font-size: 55px;
	line-height: 60px;
	color: #000;
}

.title h2 span {
	color: #db011c;
	display: block;
}

.title p {
	margin: 0 auto;
	text-align: center;
	margin-top: 20px;
}
header nav a.active-section, header nav a:hover {
  color: #db011c;
}
/* -----------------------  animations ----------------------- */
@-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 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%;
	}
}

@-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 headerScrolled {
	0% {
		top: -100px;
	}

	100% {
		top: 0;
	}
}

@keyframes headerScrolled {
	0% {
		top: -100px;
	}

	100% {
		top: 0;
	}
}
/*-------------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;
}
/* ------------------- Header ------------------- */
header {
	padding: 15px 0;
	-webkit-box-shadow: 0px 3px 8px 0px #bbbbbb;
	box-shadow: 0px 3px 8px 0px #bbbbbb;
	position: sticky;
	top: 0;
	background-color: white;
	z-index: 1000;
}

header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

header nav .btn {
	margin-left: 15px;
}

header nav a {
	text-decoration: none;
	color: #000000;
	font-size: 1.125rem;
	line-height: 1.5rem;
	letter-spacing: 1px;
}

header .logo {
	width: 18.75rem;
}

#menu-open {
	display: none;
	cursor: pointer;
	width: 100px;
}

.red-strip {
	width: 100%;
	background: #db011c;
	padding: 6px 0;
	position: relative;
	z-index: 1005;
	position: sticky;
	top: 60px;
}

.red-strip p {
	text-align: center;
	color: #fff;
	font-size: 1rem;
	line-height: 1.375rem;
}

/* ------------------- Hero ------------------- */
.hero {
	position: relative;
	background: url(../img/sec1.jpg) center top repeat;
	margin-top: -85px;
	padding-top: 120px;
	padding-bottom: 30px;
	overflow: hidden;
}

.hero:before {
	position: absolute;
	display: block;
	width: 367px;
	height: 4000px;
	content: "";
	left: 5%;
	right: 0;
	bottom: 0px;
	top: 0px;
	background: url(../img/s1-scroll-image.png) center top repeat-y;
	background-size: 100%;
	animation: 30s linear infinite scrollBgGridLinks;
	z-index: 4;
}

@keyframes scrollBgGridLinks {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 0 -100%;
	}
}

.hero:after {
	content: "";
	position: absolute;
	background: url(../img/s1-top.jpg) center top repeat-x;
	background-size: cover;
	height: 546px;
	left: 0;
	right: 0;
	top: 0px;
	z-index: 3;
}

.hero .hero-main {
	position: relative;
	z-index: 10;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hero .hero-main-img {
	width: 100%;
	position: relative;
	z-index: 2;
	margin-top: 50px;
}

.hero .hero-main-img img {
	position: absolute;
	right: 17px;
	top: -40px;
	max-width: 100%;
}

.hero .hero-main-content .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;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 10px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	row-gap: 1px;
}

.hero .hero-main-content .hero-rating p {
	color: white;
}

.hero .hero-main-content .hero-rating img {
	height: 16px;
}

.hero .hero-main-content .hero-main-strip {
	position: relative;
	width: calc(100% + 150px);
	margin-left: -150px;
	margin-top: 22px;
}

.hero .hero-main-content .hero-main-strip .strip-icn {
	position: absolute;
	left: 140px;
	top: 50%;
	margin-top: -42px;
	z-index: 1;
}

.hero .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
	font-size: 24px;
	line-height: 26px;
	font-weight: 800;
	color: #fff;
	background: #db011c;
	padding: 10px 6px;
	position: relative;
	padding-left: 230px;
}

.hero .hero-main-content .hero-main-strip .hero-main-strip-tx1:after {
	content: "";
	position: absolute;
	background: #db011c;
	right: -1000%;
	width: 1000%;
	top: 0px;
	bottom: 0;
}

.hero .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
	font-size: 18px;
	line-height: 20px;
	background: #0d0d0d;
	border-bottom: 1px solid #db011c;
	padding: 15px 10px;
	position: relative;
	color: #fff;
	padding-left: 230px;
	letter-spacing: 0.5px;
}

.hero .hero-main-content .hero-main-strip .hero-main-strip-tx2:after {
	content: "";
	position: absolute;
	background: #0d0d0d;
	border-bottom: 1px solid #f15f17;
	right: -1000%;
	width: 1000%;
	top: 0px;
	bottom: -1px;
}

.hero .hero-main-content h1 {
	font-size: 55px;
	line-height: 66px;
	font-weight: bold;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .hero-main-content h1 span {
	color: #db011c;
}

.hero .hero-main-content .hero-mobile {
	display: none;
}

.hero .hero-main-content .hero-list {
	width: 100%;
	position: relative;
	margin-top: 20px;
	list-style-type: none;
}

.hero .hero-main-content .hero-list li {
	float: left;
	width: 100%;
	position: relative;
	margin: 10px 0;
	padding-left: 75px;
}

.hero .hero-main-content .hero-list li h3 {
	font-size: 17px;
	line-height: 20px;
	color: #db011c;
	font-weight: 700;
	text-transform: uppercase;
}

.hero .hero-main-content .hero-list li p {
	font-size: 17px;
	line-height: 28px;
	font-weight: 500;
	color: #fff;
	margin-top: 2px;
}

.hero .hero-main-content .hero-list li .hero-list-icon {
	position: absolute;
	left: 0;
	top: 0;
}

.hero .btn-box {
	margin-top: 20px;
}

.banner-scroll-mobile {
	display: none;
}

/* -------------------  Quote -------------------  */
.quote-container {
	border-top: 3px solid #cfac4c;
	border-bottom: 2px solid #c7c7c7;
}

.quote {
	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: 20px;
	line-height: 26px;
	color: #000;
	margin-top: 10px;
	text-transform: uppercase;
}

.quote .quote-text p {
	font-size: 17px;
	line-height: 22px;
	color: #000;
	letter-spacing: 0.3px;
	font-style: italic;
	margin-top: 10px;
}

.quote .quote-text small {
	display: block;
	font-size: 18px;
	line-height: 20px;
	color: #db011c;
	font-weight: bold;
	margin-top: 12px;
}

/* -------------------  Upgrade Vest -------------------  */
.upgrade-vest-mobile {
	display: none;
}

.upgrade-vest {
	display: grid;
	grid-template-columns: 4.5fr 3fr 4.5fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
	-webkit-transform: scale(1.05) translateY(10px);
	transform: scale(1.05) translateY(10px);
}

.upgrade-vest .upgrade-vest-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.upgrade-vest .upgrade-vest-middle {
	width: 100%;
}

.upgrade-vest .upgrade-vest-item {
	display: grid;
	grid-template-columns: auto auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 15px;
}

.upgrade-vest .upgrade-vest-item .upgrade-vest-img {
	position: relative;
}

.upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
	width: 100%;
	width: 249px;
	margin: 0 auto 0;
	display: block;
	border: 1px solid #ff272c;
	border-radius: 10px;
	background: #fff;
	padding: 5px;
}

.upgrade-vest .upgrade-vest-item .upgrade-vest-img .checkmark {
	position: absolute;
	top: -15px;
	left: 50%;
	margin-left: -15px;
}

.upgrade-vest .upgrade-vest-item .upgrade-vest-end {
	text-align: end;
}

.upgrade-vest .upgrade-vest-item p {
	font-size: 18px;
	line-height: 28px;
	color: #000;
	font-weight: 600;
}

/* -------------------  Overview -------------------  */
.overview {
	display: grid;
	grid-template-columns: auto 57%;
	background-color: #fdf7f4;
}

.overview .overview-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	background-color: #280d02;
}

.overview .overview-img.mobile-only {
	display: none;
}

.overview .overview-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: 20px;
	padding: 40px 40px 40px 50px;
	max-width: 720px;
	width: 100%;
}

.overview .overview-text .title h2 {

	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	text-align: start !important;
	background: url(../img/bdr-btm2.png) no-repeat left bottom;
}

.overview .overview-text .title p {
	text-align: start;
	font-size: 18px;
	line-height: 26px;
	color: #000;
	letter-spacing: 0.5px;
	margin-top: 20px;
}

.overview .experience .experience-list {
	float: left;
	width: calc(100% - 200px);
	list-style-type: none;
}

.overview .experience .experience-list li {
	float: left;
	width: 100%;
	position: relative;
	margin-top: 12px;
}

.overview .experience .experience-list li:before {
	content: "";
	position: absolute;
	top: 0;
	left: -83px;
	width: 68px;
	height: 59px;
}

.overview .experience .experience-list li:after {
	content: "";
	position: absolute;
	top: 50%;
	height: 15px;
	margin-top: -7px;
}

.overview .experience .experience-list li:nth-child(1):before {
	background: url(../img/s3-rgt-icn1.png) no-repeat;
}

.overview .experience .experience-list li:nth-child(1):after {
	background: url(../img/s3-rgt-ln1.png) no-repeat;
	width: 150px;
	left: -224px;
}

.overview .experience .experience-list li:nth-child(2):before {
	background: url(../img/s3-rgt-icn2.png) no-repeat;
}

.overview .experience .experience-list li:nth-child(2):after {
	background: url(../img/s3-rgt-ln2.png) no-repeat;
	width: 120px;
	left: -194px;
}

.overview .experience .experience-list li:nth-child(3):before {
	background: url(../img/s3-rgt-icn3.png) no-repeat;
}

.overview .experience .experience-list li:nth-child(3):after {
	background: url(../img/s3-rgt-ln3.png) no-repeat;
	width: 100px;
	left: -174px;
}

.overview .experience .experience-list li div {
	font-size: 24px;
	line-height: 28px;
	color: #000;
	font-weight: 700;
	border: 2px solid #000;
	padding: 13px 16px;
}

.overview .experience-box {
	float: right;
	width: 185px;
	background: #db011c;
	text-align: center;
	padding: 4px 0 0;
	border: 2px solid #db011c;
	margin-top: 11px;
}

.overview .experience-box .top-bx-t1 {
	font-size: 26px;
	line-height: 30px;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
}

.overview .experience-box .btm-bx-list {
	float: left;
	width: 100%;
	list-style-type: none;
	background: #fff;
	margin-top: 5px;
	padding: 8px 10px;
}

.overview .experience-box .btm-bx-list li {
	float: left;
	width: 100%;
	font-size: 15px;
	line-height: 22px;
	color: #000;
	margin-top: 5px;
}

/* -------------------  Features -------------------  */
.features-container {
	background-color: #151517;
	color: white;
}

.features-container .title h2 {
	color: white;
}

.features-container .features-grid {
	display: grid;
	grid-template-columns: 3fr 6fr 3fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px auto;
}

.features-container .features-grid .features-mobile-only {
	display: none;
}

.features-container .features-grid .features-img {
	width: 100%;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.features-container .features-grid .features-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 40px;
}

.features-container .features-grid .features-item {
	display: grid;
	grid-template-columns: 114px auto;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.features-container .features-grid .features-item.reverse {
	grid-template-columns: auto 114px;
}

.features-container .features-grid .features-item.reverse p {
	text-align: end;
}

.features-container .features-grid .features-item.reverse img {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.features-container .features-grid .features-item img {
	width: 100%;
}

.features-container .features-grid .features-item p {
	font-size: 22px;
	line-height: 28px;
	color: #fff;
	font-weight: 500;
	text-align: start;
}

.features-container .features-icons-title {
	width: 100%;
	background: url(../img/s4-txt-line.png) no-repeat center top;
	font-size: 24px;
	line-height: 32px;
	color: #fff;
	font-weight: 700;
	margin-top: 80px;
	text-align: center;
	margin-bottom: 10px;
}

.features-container .features-icons-title p {
	display: inline-block;
	background: #151517;
	padding: 0 15px;
}

.features-container .features-icons {
	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-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	max-width: 880px;
	margin: 20px auto;
}

.features-container .features-icons .icon-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

/* -------------------  Cards -------------------  */
.cards {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin: 20px auto;
	gap: 30px;
}

.card {
	border: 2px solid #db011c;
	border-radius: 15px;
	overflow: hidden;
	aspect-ratio: 352/422;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.card .card-top {
	position: relative;
	flex: 1;
}

.card .card-top .card-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 1;
}

.card .card-top .card-top-row {
	display: grid;
	grid-template-columns: auto 39px;
	gap: 10px;
	z-index: 5;
	position: relative;
	padding: 20px;
}

.card .card-top .card-top-row h3 {
	font-size: 22px;
	line-height: 30px;
	font-weight: 900;
	color: #fff;
}

.card .card-top .card-top-row h3 span {
	color: #db011c;
}

.card .card-top .card-top-row img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}

.card .card-bottom {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 1px;
	background-color: #db011c;
}

.card .card-bottom p {
	text-align: center;
	font-size: 14px;
	line-height: 20px;
	color: #000;
	padding: 10px 0;
	font-weight: 500;
	background-color: #fff;
}

/* -------------------  Application Areas -------------------  */
.application-areas {
	background-color: #151517;
	color: white;
}

.application-areas .title h2 {
	color: white;
}

.application-areas .a-a-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 20px auto;
	max-width: 1010px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;
}

.application-areas .a-a-grid .a-a-grid-img {
	width: 100%;
	transform: rotate(338deg);

}

.application-areas .a-a-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.application-areas .a-a-col .a-a-col-item {
	aspect-ratio: 510/155;
	width: 100%;
	position: relative;


}

.application-areas .a-a-col .a-a-col-item:before {
	content: "";
	position: absolute;
	top: 45%;
	left: -120px;
	border-bottom: 1px dashed #db011c;
	width: 120px;
	z-index: 10;
}

.application-areas .a-a-col .a-a-col-item img {
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 12px;
}

.application-areas .a-a-col .a-a-col-item p {
	position: absolute;
	left: 0;
	bottom: 0;
	background: #db011c;
	padding: 14px 14px 10px 20px;
	font-size: 18px;
	line-height: 20px;
	color: #fff;
	font-weight: 800;
	text-transform: uppercase;
	border-radius: 0 0 0 12px;
}

.application-areas .a-a-col .a-a-col-item p:after {
	content: "";
	position: absolute;
	top: 0;
	right: -15px;
	width: 0;
	height: 0;
	border-bottom: 44px solid #db011c;
	border-right: 15px solid transparent;
}

/* -------------------  Vest vs Vortex -------------------  */
.compare {
	display: grid;
	grid-template-columns: 1fr 1fr;
	max-width: 968px;
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
	aspect-ratio: 968/703;
}

.compare .compare-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;
	padding: 30px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.compare .compare-item h3 {
	font-size: 42px;
	line-height: 46px;
	color: #e0e0e0;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
}

.compare .compare-item.compare-bg-1 {
	background-image: url("../img/comp-bg1.jpg");
}

.compare .compare-item.compare-bg-1:after {
	content: "";
	position: absolute;
	top: 35%;
	right: -60px;
	background: url(../imgs/vs-img.png) no-repeat;
	width: 122px;
	height: 122px;
	z-index: 20;
}

.compare .compare-item.compare-bg-2 {
	background-image: url("../img/comp-bg2.jpg");
}

.compare .compare-item ul {
	list-style-type: none;
}

.compare .compare-item li {
	background: url(../img/comp-cross.png) no-repeat left 2px;
	float: left;
	width: 100%;
	text-align: left;
	font-size: 20px;
	line-height: 26px;
	color: #fff;
	font-weight: 600;
	padding-left: 40px;
	margin-top: 16px;
}

.compare .compare-item .checkmark-list {
	margin-left: 40px;
}

.compare .compare-item .checkmark-list li {
	background: url(../img/comp-tike.png) no-repeat left 0px;
	background-size: contain;
	background-size: 22px;
}

/* -------------------  Specifications -------------------  */
.spec-grid {
	display: grid;
	grid-template-columns: 6fr 3fr 3fr;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 30px auto;
	max-width: 1170px;
	
}

.spec-grid .spec-grid-img {
	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;
	gap: 20px;
	padding-right: 50px;
	max-width: 500px;
	margin: 0 auto;
}

.spec-grid .spec-grid-img img {
	max-width: 500px;
	width: 100%;
}

.spec-grid .spec-grid-img .spec-grid-title {
	background: url(../imgs/incld-ln.png) no-repeat center center;
	text-align: center;
	width: 100%;
	font-size: 18px;
	line-height: 22px;
	color: #000;
	font-weight: 600;
	padding: 7px 0;
}

.spec-grid .spec-grid-img .spec-grid-title span {
	background: #fdf7f4;
	padding: 0 10px;
}

.spec-grid .mobile-only {
	display: none;
}

.spec-grid p {
	font-size: 20px;
	line-height: 22px;
	padding: 25px 0;
}

.spec-grid .spec-col div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #dedfe0;
}

.spec-grid .spec-col:nth-child(1) {
	text-align: start;
}

.spec-grid .spec-col:last-child {
	text-align: end;
}

.spec-grid .spec-col:last-child p {
	font-weight: bold;
	border-bottom: 1px solid #dedfe0;
}
.faq-container {
  background: #fdf7f4;
}
/* -------------------  Reviews -------------------  */
.rating {
  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: 40px;
  max-width: 800px;
  margin: 40px auto;
}
.rating .star-review {
  padding-right: 30px;
}
.rating .star-review span {
  color: #023d7f;
  text-decoration: underline;
}
.rating .percent {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.rating .percent span {
  display: inline-block;
  vertical-align: top;
  font-size: 50px;
  line-height: 45px;
  color: #db011c;
  font-weight: 800;
  margin-bottom: 12px;
}
.rating .stars {
  width: 100%;
  max-width: 300px;
}
.rating .star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.rating .star .bar {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #efefef;
  height: 8px;
}
.rating .star .bar span {
  background-color: #000;
  height: 100%;
  width: 0;
  display: block;
}
.rating .star p {
  min-width: 35px;
  text-align: start;
}

.reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px -20px;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.reviews .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;
  width: 269px;
  width: calc(25% - 30px);
}
.reviews .reviews-item {
  background: #fff;
  border-radius: 12px;
  margin-top: 30px;
  overflow: hidden;
  box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 6px 9px 1px rgba(0, 0, 0, 0.1);
}
.reviews .reviews-item .reviews-item-img {
  display: block;
  max-width: 100%;
  
  
}
.reviews .reviews-item .reviews-item-desc {
  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;
  width: 100%;
  text-align: left;
  padding: 20px 15px;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title {
  font-size: 18px;
  line-height: 18px;
  color: #000000;
  font-weight: 600;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: #6fb620;
  font-weight: 400;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-title span img {
  display: inline-block;
  vertical-align: middle;
  margin: -4px 6px 0;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-stars {
  width: 92px;
}
.reviews .reviews-item .reviews-item-desc .reviews-item-text {
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}
/* -------------------  Faq -------------------  */
.faq-container {
  background: #fdf7f4;
}

.accordion-container {
  width: 100%;
  -webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  max-width: 940px;
  margin: 0 auto;
  margin-top: 20px;
}

.accordion {
  width: 100%;
  text-align: left;
  padding: 22px 45px 22px 25px;
  font-size: 18px;
  line-height: 26px;
  color: #000000;
  letter-spacing: 0.2px;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  border: none;
  background: none;
}

.active {
  border-bottom: 1px solid #e1e1e1;
}

.accordion:after {
  content: "+";
  color: #f83e05;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 30px;
}

.active:after {
  content: "−";
}

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
}
.panel p {
  width: 100%;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.5px;
  padding: 18px;
  color: #000;
  margin-bottom: 15px;
}
/*-------------footer----------------*/
.mobile-order-now {
  display: none;
  position: sticky;
  bottom: 0;
  background-color: black;
  padding: 10px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.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: 15rem;
	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;
}
.mobile-order-now {
  display: none;
  background-color: #ffffff;
  -webkit-box-shadow: 0px -3px 8px 0px #bbbbbb;
          box-shadow: 0px -3px 8px 0px #bbbbbb;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 7px 10px;
  z-index: 1000;
}
.mobile-order-now .btn-box {
  margin: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hidden {
  display: none !important;
}
/*------------media queries-----------------*/
@media screen and (max-width: 1500px) {
	.hero:after {
		background: url(../img/s1-top.jpg) -430px 0px no-repeat;
	}

	.hero .hero-main-img img {
		right: 6px;
		top: -40px;
		width: 663px;
	}

}

@media screen and (max-width: 1200px) {
	.container {
		width: 1010px;
	}

	.hero .hero-main-content h1 {
		font-size: 50px;
		line-height: 56px;
	}

	header .logo {
		width: 16rem;
	}

	header nav {
		gap: 20px;
	}

	.hero:before {
		position: absolute;
		display: block;
		width: 230px;
		height: 4000px;
		content: "";
		left: 12%;
		right: 0;
		bottom: 0px;
		top: 0px;
		background: url(../img/s1-scroll-image.png) center top repeat-y;
		background-size: 100%;
		animation: 30s linear infinite scrollBgGridLinks;
		z-index: 4;
	}

	.upgrade-vest {
		-webkit-transform: none;
		transform: none;
	}

	.upgrade-vest .upgrade-vest-item {
		grid-template-columns: auto auto;
	}

	.upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
		width: 200px;
	}

	.overview {
		grid-template-columns: 1fr;
	}

	.overview .overview-img {
		display: none;
		width: 100%;
		height: 100%;
		-o-object-fit: contain;
		object-fit: contain;
		-o-object-position: center;
		object-position: center;
		background-color: #280d02;
	}

	.overview .overview-img.mobile-only {
		display: block;
		margin: 0 auto;
	}

	.overview .overview-text {
		margin: 0 auto;
		padding: 30px;
	}

	.overview .overview-text .title h2 {
		font-size: 28px;
		line-height: 34px;
		background-size: 373px;
		padding-bottom: 33px;
	}

	.overview .btn-box {
		display: none;
	}

	.overview .experience .experience-list {
		width: 100%;
	}

	.overview .experience .experience-list li:before {
		position: static;
		float: left;
	}

	.overview .experience .experience-list li:after {
		display: none;
	}

	.overview .experience .experience-list li div {
		padding: 18px 5px 17px 74px;
		font-size: 15px;
		line-height: 20px;
	}

	.overview .experience-box {
		width: 100%;
	}

	.overview .experience-box .btm-bx-list li {
		font-size: 18px;
		line-height: 25px;
	}

	.card .card-top .card-top-row h3 {
		font-size: 19px;
	}

	.spec-grid {
		grid-template-columns: 5fr 4fr 4fr;
	}

	.features-container .features-grid .features-img {
		-webkit-transform: scale(1.6);
		transform: scale(1.6);
	}

	.features-container .features-grid .features-item p {
		font-size: 20px;
		line-height: 28px;
	}
	.spec-grid {
	  grid-template-columns: 5fr 4fr 4fr;
	}
}

@media screen and (max-width: 1024px) {
	.container {
		width: 750px;
	}

	header .logo {
		width: 12.5rem;
	}

	header nav {
		gap: 10px;
	}

	.navbtn {
		display: none;
	}

	header nav a {
		font-size: 0.9375rem;
	}

	.hero .hero-main-content h1 {
		font-size: 38px;
		line-height: 44px;
	}

	.hero .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
		font-size: 19px;
		line-height: 23px;
		padding-left: 195px;
	}

	.hero .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
		font-size: 13px;
		padding-top: 12px;
		padding-bottom: 12px;
		padding-left: 195px;
	}

	.hero .hero-main-content .hero-main-strip .strip-icn {
		width: 60px;
		left: 128px;
		-o-object-fit: contain;
		object-fit: contain;
	}

	.hero .hero-main-img img {
		width: 520px;
		right: 73px;
		top: 148px;
		transform: scale(1.2);
	}

	.upgrade-vest {
		grid-template-columns: 4fr 4fr 4fr;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		gap: 15px;
	}

	.upgrade-vest .upgrade-vest-middle {
		margin-top: 100px;
	}

	.upgrade-vest .upgrade-vest-item {
		grid-template-columns: 1fr;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center !important;
	}

	.upgrade-vest .upgrade-vest-item .upgrade-vest-end {
		text-align: center !important;
	}

	.upgrade-vest .upgrade-vest-item.reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
		width: 100%;
	}

	.features-container .features-grid .features-img {
		-webkit-transform: scale(2);
		transform: scale(2);
	}

	.features-container .features-grid .features-col {
		gap: 25px;
	}

	.features-container .features-grid .features-item {
		grid-template-columns: 90px auto;
		gap: 15px;
	}

	.features-container .features-grid .features-item.reverse {
		grid-template-columns: auto 90px;
	}

	.features-container .features-grid .features-item img {
		width: 90px;
		height: auto;
	}

	.features-container .features-grid .features-item p {
		font-size: 18px;
		line-height: 26px;
	}

	.compare {
		aspect-ratio: 750/703;
	}

	.compare .compare-item.compare-bg-1:after {
		content: "";
		position: absolute;
		top: 35%;
		right: -60px;
		background: url(../imgs/vs-img.png) no-repeat;
		width: 122px;
		height: 122px;
		z-index: 20;
	}

	.cards {
		grid-template-columns: 1fr 1fr;
	}

	.card .card-top .card-top-row h3 {
		font-size: 19px;
	}

	.card .card-bottom p {
		font-size: 10px;
		line-height: 16px;
	}

	.spec-grid p {
		font-size: 15px;
		line-height: 18px;
		padding: 18px 0;
	}
	.reviews {
	  margin: 20px auto;
	}
	.reviews .reviews-col {
	  width: 269px;
	}
	.reviews .reviews-item .reviews-item-img {
	  width: 100%;
	}

}

@media only screen and (max-width: 790px) {
	.title h2 {
		font-size: 28px !important;
		line-height: 34px !important;
		background-size: 373px;
		padding-bottom: 33px;
	}

	.container {
		width: 100%;
		padding: 0 15px;
	}

	.hero:after {
		height: 280px;
	}

	.hero .hero-main-img {
		display: none;
	}

	.hero .hero-main {
		grid-template-columns: 1fr;
	}

	.hero .hero-main .hero-main-content h1 {
		text-align: center;
		font-size: 30px;
		line-height: 38px;
		max-width: 380px;
		margin: 0 auto;
	}

	.hero .hero-main .hero-main-content .hero-rating {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.hero .hero-main .hero-main-content .btn-box {
		display: none;
	}

	.hero .hero-main .hero-main-content ul {
		max-width: 380px;
		margin: 0 auto;
	}

	.hero .hero-main .hero-main-content .hero-mobile {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		max-width: 380px;
		margin: 50px auto;
		gap: 30px;
	}

	.hero .hero-main .hero-main-content .hero-mobile .hero-mobile-left-img {
		width: 8.75rem;
		height: auto;
	}


	.hero .hero-main .hero-main-content .hero-mobile .hero-mobile-right img {
		width: 60px;
		margin: 0 auto 5px;
	}

	.hero .hero-main .hero-main-content .hero-mobile .hero-mobile-right {
		display: flex;
		flex-direction: column;
		gap: 15px;
		align-items: center;
		justify-content: center;
		color: #fff;
	}

	.hero-mobile-right-item {
		display: flex;
		flex-direction: column;
		gap: 1px;
		align-items: center;
		justify-content: center;
		text-align: center;

	}


	.hero .hero-main .hero-main-content .hero-main-strip {
		width: calc(100% + 30px);
		margin: 0;
		margin-left: -30px;
		margin-bottom: 30px;
	}

	.hero .hero-main .hero-main-content .hero-main-strip .hero-main-strip-tx1 {
		padding-left: 0;
		font-size: 20px;
		text-align: center;
		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-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding-left: 30px;
		gap: 10px;
	}

	.hero .hero-main .hero-main-content .hero-main-strip .hero-main-strip-tx2 {
		padding: 5px 0;
		text-align: center;
		font-size: 14px;
		padding-left: 30px;
	}

	.hero .hero-main .hero-main-content .hero-main-strip .strip-icn {
		display: none;
	}

	.hero .hero-main .hero-main-content .hero-main-strip .strip-icn-mobile {
		display: block !important;
		width: 30px;
		-o-object-fit: contain;
		object-fit: contain;
	}

	.hero:before {
		display: none;
	}

	.quote {
		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;
	}

	.upgrade-vest-mobile {
		display: block;
		max-width: 230px;
		width: 100%;
		margin: 0 auto;
	}

	.upgrade-vest {
		margin: 0 auto;
		margin-top: 40px;
		display: grid;
		grid-template-columns: 1fr 1fr;
		justify-items: center;
	}

	.upgrade-vest .upgrade-vest-middle {
		display: none;
	}

	.upgrade-vest .upgrade-vest-col {
		max-width: 270px;
		width: 100%;
	}

	.upgrade-vest .upgrade-vest-item {
		min-height: 220px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center !important;
	}

	.upgrade-vest .upgrade-vest-item p {
		font-size: 13px;
		line-height: 20px;
	}

	.upgrade-vest .upgrade-vest-item .upgrade-vest-end {
		text-align: center !important;
	}

	.upgrade-vest .upgrade-vest-item.reverse {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.upgrade-vest .upgrade-vest-item .upgrade-vest-img .upgrade-vest-image {
		width: 100%;
	}

	.features-container .features-grid {
		grid-template-columns: 1fr;
		max-width: 570px;
		width: 100%;
		padding: 20px;
		margin-bottom: 0;
	}

	.features-container .features-grid .features-mobile-only {
		display: block;
		width: 100%;
	}

	.features-container .features-grid .features-img {
		display: none;
	}

	.features-container .features-grid .features-col {
		gap: 25px;
		margin-bottom: 25px;
	}

	.features-container .features-grid .features-item {
		grid-template-columns: 90px auto;
		gap: 15px;
	}

	.features-container .features-grid .features-item.reverse {
		grid-template-columns: 90px auto;
	}

	.features-container .features-grid .features-item.reverse p {
		text-align: start;
	}

	.features-container .features-grid .features-item.reverse img {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0;
	}

	.features-container .features-grid .features-item img {
		width: 90px;
		height: auto;
	}

	.features-container .features-grid .features-item p {
		font-size: 18px;
		line-height: 26px;
	}

	.features-container .features-icons-title {
		margin-top: 0;
	}

	.features-container .features-icons-title p {
		font-size: 17px;
	}

	.features-container .features-icons {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		max-width: 420px;
		gap: 20px;
	}

	.features-container .features-icons .icon-item p {
		font-size: 13px;
		line-height: 19px;
	}

	.cards {
		grid-template-columns: 1fr;
		max-width: 360px;
	}

	.card .card-top .card-top-row h3 {
		font-size: 22px;
		line-height: 30px;
	}

	.card .card-bottom p {
		font-size: 14px;
		line-height: 20px;
	}

	.application-areas .a-a-grid {
		grid-template-columns: 1fr;
		max-width: 510px;
	}

	.application-areas .a-a-grid .a-a-grid-img {
		max-width: 300px;
		margin: 0 auto;
	}

	.application-areas .a-a-col .a-a-col-item:before {
		display: none;
	}
	.compare {
	  display: grid;
	  grid-template-columns: 1fr;
	  max-width: 570px;
	  aspect-ratio: unset;
	}
	.compare .compare-item {
	  aspect-ratio: 570/623;
	}
	.compare .compare-item.compare-bg-1:after {
	  top: auto;
	  bottom: -10%;
	  right: 50%;
	  width: 100px;
	  height: 100px;
	  background-size: 100px;
	  margin-right: -50px;
	}
	.compare .compare-item h3 {
	  font-size: 24px;
	  line-height: 30px;
	}
	.compare .compare-item h3 .hide-mob {
	  display: none;
	}
	.compare .compare-item li {
	  font-size: 16px;
	  line-height: 22px;
	  padding-left: 30px;
	  margin-top: 14px;
	  background-size: 18px;
	}
	.compare .compare-item.compare-bg-2 h3 {
	  margin-top: 50px;
	}
	.compare .compare-item.compare-bg-2 ul {
	  margin: 0;
	}
	.spec-grid {
	  grid-template-columns: 4fr 4fr 4fr;
	}
	.spec-grid .spec-grid-img {
	  display: none;
	}
	.spec-grid .mobile-only {
	  display: block;
	  width: 100%;
	}
	.spec-grid p {
	  font-size: 15px;
	  line-height: 17px;
	  padding: 15px 0;
	}
	.rating {
	  -webkit-box-orient: vertical;
	  -webkit-box-direction: normal;
	      -ms-flex-direction: column;
	          flex-direction: column;
	  -webkit-box-align: center;
	      -ms-flex-align: center;
	          align-items: center;
	  gap: 20px;
	  margin: 10px auto;
	}
	.rating .star-review {
	  padding: 0;
	  -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;
	}
	.footer-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}
	
	.footer-inner img {
		margin: auto;
	}
	
	.footer nav a {
		display: inline;
		text-align: center;
	}
	
	.mobile-order-now {
	  display: block;
	}
	.mobile-order-now .btn-box {
	  display: -webkit-box !important;
	  display: -ms-flexbox !important;
	  display: flex !important;
	}
	
	.footer nav a:nth-child(3)::after {
		content: none;
	}
	
	.footer-inner p {
		text-align: center;
	}
}

@media screen and (max-width: 767px) {
	.container {
		width: 100%;
		max-width: 600px;
		padding: 0 15px;
	}

	#menu-open {
		display: block;
	}

	header nav {
		display: none;
	}

	.red-strip {
		display: none;
	}

	.banner-scroll-mobile {
		display: block;
	}

	.banner-scroll-mobile {
		width: calc(100% + 30px);
		margin: 20px 0 0 -15px;
		height: 240px;
		position: relative;
		overflow: hidden;
		transform: translate3d(0, 0, 0);
	}

	.banner-scroll-mobile:before {
		position: absolute;
		display: block;
		width: 1000px;
		height: 100%;
		content: "";
		background: url(../img/banner-image-scroll.png) center top repeat-X;
		background-size: 800px;
		transform: translate3d(0, 0, 0);
		transition: opacity 0.5s ease-out;
		animation: moveSlideshow 10s linear infinite;
	}

	@keyframes moveSlideshow {
		from {
			background-position: 0 0;
		}

		to {
			background-position: -100% 0;
		}
	}


}

@media only screen and (max-width: 600px) {
	.hero .hero-main-content .hero-rating {
		margin-bottom: 10px;
	}

	.hero .hero-main-content .hero-rating p {
		font-size: 13px;
		line-height: 20px;
	}

	.hero .hero-main-content .hero-list {
		padding: 0 20px;
	}

	.hero .hero-main-content .hero-list li {
		padding-left: 55px;
		margin: 8px 0;
		text-align: left;
	}

	.hero .hero-main-content .hero-list li p {
		font-size: 18px;
		line-height: 22px;
	}

	.hero .hero-main-content .hero-list li .hero-list-icon {
		width: 45px;
		height: auto;
	}

	.hide-mob {
		display: none;
	}
	.spec-grid {
	  grid-template-columns: 1fr 1fr;
	  row-gap: 20px;
	}
	.spec-grid .spec-grid-img {
	  display: -webkit-box;
	  display: -ms-flexbox;
	  display: flex;
	  grid-column: 1/span 2;
	  padding: 0;
	}
	.spec-grid .mobile-only {
	  display: none;
	}
	.spec-grid p {
	  font-size: 15px;
	  line-height: 17px;
	  padding: 15px 0;
	}
	.reviews {
	  gap: 0;
	  padding: 5px;
	}
	.reviews .reviews-col {
	  width: 100%;
	}
	 
	.reviews .reviews-item .reviews-item-img {
	  width: 100%;
		
	}
}

@media screen and (max-width: 420px) {
	.banner-inner {
		font-size: 0.9375rem;
	}

	.application-areas .a-a-col .a-a-col-item p {
		font-size: 14px;
		padding: 8px;
	}

	.application-areas .a-a-col .a-a-col-item p:after {
		display: none;
	}
	.spec-grid p {
	  font-size: 12px;
	  padding: 10px 0;
	}
	.faq-container .title {
	  margin-bottom: 20px;
	}
	.accordion-container {
	  margin-top: 10px;
	}
	.accordion {
	  font-size: 17px;
	  line-height: 20px;
	  padding: 15px;
	}
	.panel p {
	  font-size: 14px;
	  line-height: 22px;
	}
}

@media screen and (max-width: 350px) {
	.banner-inner {
		font-size: 0.8125rem;
	}

	header .logo {
		width: 10rem;
	}

	#menu-open {
		width: 80px;
	}
	.spec-grid p {
	  font-size: 3vw;
	  padding: 10px 0;
	}
}