/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	scroll-margin-top: 60px;
}

body {
	font-family: "Poppins", sans-serif;
	overflow-x: hidden;
}

html {
	font-size: 16px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}
/*------------button-----------------*/
#header-btn {
	display: block;
	font-size: 1.125rem;
	line-height: 1.5;
	font-weight: bold;
	margin-left: 1rem;
	padding: 0.3125rem 1.375rem;
	background-color: #2196F3;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
}

.header-btn:hover {
	background-color: #2a8be6;
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	-webkit-transition: 0.3s;
}

.btn-box {
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.btn-box .btn {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 1.5rem;
	letter-spacing: 0.5px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.3125rem;
}

.btn-box .btn img {
	width: 3.4rem;
	height: 3.4rem;
	margin-bottom: 0.3125rem;
}

.btn {
	max-width: 25rem;
	background-color: #2196F3;
	border-radius: 1.4375rem;
	padding: 0.1rem 5rem;
}
.btn:hover{
	color: #fff;
	transform: scale(1.02);
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	transition: 0.1s;
	-webkit-transition: 0.1s;
}
.btn-text-row {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	display: flex;
	flex-direction: row;
	margin-top: 0.625rem;
}

.btn-text-row .btn-text {
	display: flex;
	flex-direction: row;
}

.btn-text-row .btn-text::before {
	content: "";
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background-color: #95df89;
	margin-right: 0.5rem;
	position: relative;
	top: 25%;
	-webkit-animation: fade 1s ease-in-out infinite;
	animation: fade 1s ease-in-out infinite;
}

@-webkit-keyframes fade {
	0% {
		opacity: 100%;
	}

	50% {
		opacity: 30%;
	}

	70% {
		opacity: 100%;
	}

	100% {
		opacity: 100%;
	}
}

@keyframes fade {
	0% {
		opacity: 100%;
	}

	50% {
		opacity: 30%;
	}

	70% {
		opacity: 100%;
	}

	100% {
		opacity: 100%;
	}
}

.btn-stock {
	margin: 0.0525rem 0.4rem;
}

.btn-stock span {
	background-color: rgba(255, 255, 255, 0.9);
	display: inline-block;
	height: 8px;
	width: 8px;
}

.overview .btn-stock span,
.whyBreezeBox .btn-stock span,
.faq .btn-stock span {
	background-color: rgba(217, 217, 217, 0.6);
}

.btn-stock span:first-child {
	background-color: #fc2201;
}

.features .btn-box,
.features3 .btn-box,
.steps-section .btn-box,
.faq .btn-box {
	margin-top: 0.9375rem;
	align-items: center;
}

.reviews .btn-box {
	margin-top: 1.5rem;
	align-items: center;
}
.btn.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.7s;
  -webkit-animation-duration: 1.7s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
/*------------header-----------------*/
header {
	background: #fff;
	position: sticky;
	top: -70px;
	box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	z-index: 1000;
}

header.sticky {
	position: sticky;
	top: 0;
	transition: 0.5s;
}

header .header-content {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0.625rem 2.5rem;
	height: 70px;
}

.logo {
	max-width: 18.125rem;
	height: auto;
}

#menu-btn {
	display: none;
	cursor: pointer;
	width: 100%;
}

header .header-content nav {
	display: -webkit-box;
	display: flex;
	gap: 20px;
	align-items: center;
	-webkit-box-align: center;
}

header .header-content nav a {
	color: #888888;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
}

/*-------------hero----------------*/
.hero {
	background: linear-gradient(128deg, rgba(190, 229, 255, 0.6), rgba(255, 255, 255, 0)),
		url("../img/trybge.png") no-repeat right bottom/ auto;
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin: 0 auto;
	max-width: 1180px;
	align-items: center;
	padding: 2rem;

}

.hero .hero-inner .hero-img {
	max-width: 300px;
	width: 100%;
	height: auto;
	position: relative;
	top: -36px;
	left: -30px;
	transform: scale(1.2);
}

.hero-text {
	display: flex;
	flex-direction: column;
	gap: 1.25rem
}

h1 {
	font-size: 3.075rem;
	line-height: 3.2rem;
	color: #0A1E42;
	font-weight: bold;
}

h1 span {
	color: #169FFF;
}

.sub-title {
	font-size: 1.125rem;
	line-height: 1.5rem;
	letter-spacing: 0.2px;

	font-style: italic;
	font-weight: 500;
}

.strip {
	background: linear-gradient(90deg, rgba(190, 229, 255, 0.6) 0%, rgba(140, 209, 255, 0.6) 100%);
	max-width: 530px;
	padding: 0.375rem;
}

.hero ul {
	list-style: none;
	margin-top: 0.625rem;

}

.hero ul li {
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 600;
	background: url("../img/icon-wind 1.svg") no-repeat top left / 1.5rem auto;
	padding-left: 2.25rem;
	margin-top: 0.4rem;
}

.hero-text .mobile-hero-img {
	display: none;
}

/*-------------AsSeenOn----------------*/
.container {
	max-width: 1180px;
	margin: 0 auto;
	width: 100%;
	padding: 2rem;
}

.grey-border-bottom {
	border-bottom: 1px solid #D8D5D5;
}

.seen-on {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.625rem;
}

.seen-on p {
	font-size: 1.3rem;
	line-height: 2rem;
	font-weight: 600;
}

.seen-on .news {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 2.2rem;
	align-items: center;
	justify-content: center;
}

.seen-on .news img {
	height: 3.75rem;
	width: auto;
}

/*-------------overview----------------*/
.overview .title p {
	font-size: 2rem;
	line-height: 2.5rem;
	font-weight: 600;
	letter-spacing: 0.2px;
	text-align: start;
}

.overview .title p span {
	color: #2196F3;
}

.overview-inner .overview-img {
	width: 100%;
	height: auto;
	padding: 0.5rem 0;
}

.overview-inner {
	display: grid;
	grid-template-columns: 4.5fr 5.5fr;
	gap: 2rem;
	padding: 2rem 0;
}

.overview-text {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	max-width: 550px;
	height: auto;
}

.overview-text .text {
	font-size: 1.2rem;
	line-height: 2.0rem;
	letter-spacing: 0.5px;
	color: #888888;
	margin-bottom: 1rem;
}

.overview-text p span {
	color: #000;
	font-weight: 600;
}

/*-------------features----------------*/
.features {
	background-color: #E9F5FF;
}

.features .title {
	text-align: center;
	font-size: 1.5rem;
	margin-bottom: 1.875rem;
}

.features .title .sub {
	color: #1F88DB;
}

.features .features-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
}

.features .features-img {
	transform: scale(1);
	position: relative;
}


.features-col {
	display: flex;
	flex-direction: column;
	gap: 7.5rem;
	padding: 0.3125rem 0;
}

.features-item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	position: relative;
	gap: 0.625rem;
}

.features-item img {
	width: 3.75rem;
	height: auto;
}

.features-text p {
	font-size: 1rem;
	line-height: 1.3rem;
	font-weight: 300;
}

.features-text .features-text-title {
	font-size: 1.2rem;
	line-height: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.6rem;

}

.features-col.reverse .features-item {
	flex-direction: row-reverse;
}

.features-col.reverse .features-item .features-text {
	text-align: end;
}

.features-col.reverse .features-item.center {
	position: relative;
	left: -80px;
}

.features-col .features-item.center {
	position: relative;
	left: 80px;
}

.mobile-ac-img img {
	display: none;
}

/*-------------tech----------------*/
.testimonial-card {
	max-width: 1080px;
	margin: 2.5rem auto;
	padding: 1.25rem 1.25rem;
	border: 1px solid #ddd;
	border-radius: 10px;
	position: relative;
	text-align: center;
	background: #fff;
}

.testimonial-card::before,
.testimonial-card::after {
	content: "";
	width: 10px;
	height: 10px;
	border: 1px solid #ccc;
	border-radius: 50%;
	position: absolute;
	background: #fff;
}

.testimonial-card::before {
	top: 10px;
	left: 10px;
}

.testimonial-card::after {
	bottom: 10px;
	right: 10px;

}

.testimonial-card h2 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: bold;
}

.stars img {
	margin: 0 auto;
	margin-bottom: 20px;
}

.quote {
	font-style: italic;
	font-size: 1.2rem;
	line-height: 1.8rem;
	color: #444;
	letter-spacing: 0.5px;
	margin-bottom: 1.25rem;
}

.user-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.user-info img {
	width: 6.25rem;
	height: 6.25rem;
}

.user-info .name {
	font-weight: bold;
	margin: 0;
}

.user-info .title {
	color: gray;
	font-size: 0.875rem;
	margin: 0;
}

/*-------------features3----------------*/
.features3 {
	background: linear-gradient(0deg, rgba(192, 233, 253, 60%), rgba(244, 249, 255, 0.6));
}

.features3-inner .title {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
}

.features3-inner .gif {
	max-width: 37.5rem;
	margin: 0 auto;
	position: relative;
}

.features3-inner .gif::before {
	content: "Cold Air";
	position: absolute;
	width: 9rem;
	height: 3rem;
	top: 0.625rem;
	left: 0.625rem;
	color: #fff;
	background-color: #2196F3;
	border-radius: 0.625rem;
	font-weight: bold;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.features3-inner .gif::after {
	content: "Hot Air";
	position: absolute;
	width: 9rem;
	height: 3rem;
	top: 0.625rem;
	right: 0.625rem;
	color: #fff;
	background-color: #A40202;
	border-radius: 0.625rem;
	font-weight: bold;
	font-size: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card {
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	margin-top: 1.5625rem;
	margin-bottom: 1.5625rem;
}

.card-item {
	width: 25rem;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 1rem;
	background: #fff;
	border-radius: 1.6875rem;
	gap: 0.9375rem;
	box-shadow: 0.25rem 0.25rem 0.125rem 0 rgba(0, 0, 0, 0.25);
}

.card-item img {
	width: 3.75rem;
	height: auto;
}

.card-item .card-title {
	color: #1A2A4F;
	font-size: 1.2rem;
	font-weight: 600;
	text-align: center;
}

.card-item .card-text {
	font-size: 1.1rem;
	line-height: 2rem;
	font-weight: 300;
	text-align: center;
	padding: 0 0.625rem;

}

/*-------------whyBreezeBox----------------*/
.whyBreezeBox .title {
	font-size: 1.5rem;
	margin-bottom: 2.5rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
}

.whyBreezeBox-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.2rem;
}

.whyBreezeBox-inner .whyBreezeBox-img {
	width: 35rem;
	height: auto;
}

.whyBreezeBox-text .text {
	font-size: 1.2rem;
	line-height: 2;
	letter-spacing: 0.5px;
	margin-bottom: 2rem;
	font-weight: 300;
	max-width: 30rem;
}

/*-------------steps----------------*/
.steps-section {
	background: url("../img/use-bg.png") no-repeat top center/ cover;
	position: relative;
}

.steps-section::after {
	content: "";
	display: inline-block;
	width: 4.375rem;
	height: 4.375rem;
	background: url("../img/right-star.png") no-repeat center/cover;
	position: absolute;
	top: 16%;
	right: 10%;
	z-index: 100;
}

.steps-section::before {
	content: "";
	display: inline-block;
	width: 4.375rem;
	height: 3.375rem;
	background: url("../img/left-star.png") no-repeat center/cover;
	position: absolute;
	bottom: 16%;
	left: 10%;
	z-index: 100;
}

.steps-section .title {
	font-size: 1.6rem;
	margin-bottom: 2.5rem;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
	-webkit-text-stroke: 1px #20C0D4;
	text-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.steps {
	display: flex;
	flex-direction: row;
	gap: 0.9375rem;
	justify-content: center;
	margin-bottom: 2.5rem;
}

.step-card {
	background: #fff;
	border-radius: 0.9375rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	width: 13.75rem;
	box-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.step-card p {
	color: #133B74;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	padding: 0rem 1.5rem 0.9375rem 1.5rem;
}

.step-card img {
	width: 100%;
	margin-bottom: 1.875rem;
	box-shadow: 0rem 0.25rem 2.1875rem 0.1875rem rgba(78, 199, 204, 0.42);
}

.steps-section .card1 {
	position: relative;
}

.steps-section .card1::after {
	content: "";
	display: inline-block;
	width: 3.125rem;
	height: 3.125rem;
	background: url("../img/1.png") no-repeat center/cover;
	position: absolute;
	top: 63%;
	left: 38%;
}

.steps-section .card2 {
	position: relative;
}

.steps-section .card2::after {
	content: "";
	display: inline-block;
	width: 3.125rem;
	height: 3.125rem;
	background: url("../img/2.png") no-repeat center/cover;
	position: absolute;
	top: 63%;
	left: 38%;
}

.steps-section .card3 {
	position: relative;
}

.steps-section .card3::after {
	content: "";
	display: inline-block;
	width: 3.125rem;
	height: 3.125rem;
	background: url("../img/3.png") no-repeat center/cover;
	position: absolute;
	top: 63%;
	left: 38%;
}

/*-------------moneyback----------------*/
.moneyback {
	background: #2E3A4B;
}

.moneyback-img {
	width: 10rem;
	height: auto;
}

.moneyback .moneyback-inner {
	display: flex;
	flex-direction: row;
	gap: 1.25rem;
	justify-content: center;
	max-width: 37.5rem;
	margin: 0 auto;
}

.moneyback .moneyback-inner .moneyback-text {
	color: #fff;
}

.moneyback .moneyback-inner .moneyback-text .title {
	font-size: 1.3rem;
	line-height: 1.5rem;
	font-weight: 500;
	color: #2196F3;
	margin-bottom: 1rem;
}

/*-------------reviews----------------*/
.reviews {
	background: url("../img/reviews-bg.png") no-repeat top center/cover;
}

.reviews .title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: bold;
	text-align: center;
	color: #1E415F;
}

.reviews-rate {
	background: #fff;
	border-radius: 0.9375rem;
	margin: 0 auto;
	padding: 1.5rem 4rem;
	max-width: 31.25rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 5rem;
}

.reviews-rate-left img {
	display: inline-block;
	width: 7.5rem;
	height: auto;
}

.reviews-rate-left {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.reviews-rate-left-line {
	display: flex;
	gap: 0.625rem;
	align-items: center;
}

.reviews-rate-right {
	margin-top: -20px;
}

.reviews-rate-right .rate {
	color: #1E415F;
	font-size: 4.5rem;
	font-weight: 600;
}

.reviews-rate-right .rate-text {
	margin-top: -20px;
	padding: 0.3125rem;
}

.reviews-card {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: center;
	margin-top: 1.875rem;
	padding: 0 2rem;
}

.reviews-card-item {
	background: #fff;
	box-shadow: 0rem 0.4375rem 1rem 0.1rem rgba(0, 0, 0, 0.2);
	border-radius: 2.6875rem;
	width: 20rem;
	height: auto;
	overflow: hidden;

	object-fit: cover;

}

.reviews-product {
	width: 20rem;
	height: 20rem;
	object-fit: cover;
}

.reviews-card-user {
	padding: 0.9375rem 1rem 1.2rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	align-items: flex-start;
}

.reviews-card-user-info {
	display: flex;
	flex-direction: row;
	gap: 0.9375rem;
}

.verified img {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	position: relative;
	top: 0.125rem;
}

.reviews-user-name {
	font-size: 1.25rem;
	font-weight: 500;
}

.verified span {
	font-weight: 300;
	font-size: 0.8rem;
}

.stars5 {
	width: 5.5rem;
	height: auto;
}

/*-------------faq----------------*/
.faq {
	background: #fff;
}

.faq .title {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	font-weight: bold;
	text-align: center;
	color: #1A2A4F;
}

.faq-accordion-inner {
	max-width: 50rem;
	margin: 1.875rem auto;
}

.faq-accordion {
	border-radius: 0.9375rem;
	box-shadow: 0rem 0.25rem 0.625rem 0 rgba(0, 0, 0, 0.1);
	background-color: #fff;
	margin-bottom: 15px;
	width: 100%;
}

.accordion {
	background-color: #fff;
	border: none;
	color: #000;
	cursor: pointer;
	font-size: 1rem;
	letter-spacing: 0.3px;
	line-height: 28px;
	font-weight: 600;
	outline: none;
	padding: 18px;
	text-align: left;
	-webkit-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	position: relative;
}

.panel {
	background-color: #fff;
	max-height: 0;
	overflow: hidden;
	padding: 0 18px;
	text-align: left;
	-webkit-transition: max-height 0.4s ease-out;
	transition: max-height 0.4s ease-out;
}

.panel p {
	color: #545454;
	font-size: 16px;
	line-height: 30px;
	padding-bottom: 20px;
	padding-top: 0;
}

.accordion:after {
	content: "";
	display: inline-block;
	background: url("../img/left-triangle.svg") no-repeat center/cover;
	width: 0.6rem;
	height: 1.2rem;
	position: absolute;
	left: 95%;
	top: 40%;
}

.active:after {
	background: url("../img/bottom-triangle.svg") no-repeat center/cover;
	width: 1.2rem;
	height: 0.6rem;
}

/*-------------footer----------------*/
.footer {
	background: url("../img/reviews-bg.png") no-repeat top center/cover;
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
	justify-content: space-between;
}

.footer nav a {
	display: block;
	text-decoration: none;
	color: #000;
	text-align: center;
}

.footer img {
	width: 15rem;
	height: auto;
	margin-left: 3.75rem;
}

.footer nav a:hover {
	color: #1F88DB;
	text-decoration: underline;
}
/*-------------others html----------------*/
.container-full{
	padding: 0.625rem 1.875rem;
}
.container-full h3{
	text-align: center;
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}
.container-full p{
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 1.25rem;
	font-weight: 300;
}
.container-full .highlight{
	font-weight: 600;
}

/*-------------media queries----------------*/
@media (max-width: 1301px) {
	.features-item.center .features-text p {
		max-width: 12rem;
	}
}

@media (max-width: 1024px) {

	html {
		font-size: 15px;
	}

	#menu-btn {
		display: block;
		width: 1.9375rem;
		height: 1.625rem;
	}

	header .header-content nav {
		position: fixed;
		top: 70px;
		left: 0;
		right: 0;
		flex-direction: column;
		gap: 0;
		max-height: 0;
		overflow: hidden;

	}

	header .header-content nav a {
		background: #2196f3;
		width: 100%;
		text-align: start;
		color: #fff;
		padding: 1rem;
		border-bottom: 1px solid #fff;
	}

	#header-btn {
		display: none;
	}

	header .header-content nav.nav-open {
		max-height: 200px;
	}

	body.menu-open::before {
		content: "";
		background: rgba(0, 0, 0, 0.2);
		position: fixed;
		top: 200px;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 999;
	}

	body.menu-open {
		overflow: hidden;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.hero-inner .hero-img {
		display: none;
	}

	.hero-text .mobile-hero-img {
		margin: 0 auto;
		margin-top: 0.5rem;
		display: block;
		max-width: 18.75rem;
	}

	.hero {
		background: linear-gradient(128deg, rgba(190, 229, 255, 0.6), rgba(255, 255, 255, 0.6)),
			url("../img/trybgi.png") no-repeat right bottom/ cover;
	}

	h1 {
		text-align: center;

	}

	.btn-box {
		margin: 0 auto;
	}

	.sub-title {
		font-size: 18px;
		line-height: 24px;


	}

	.hero ul li {
		font-size: 16px;
		margin-top: 22px;
	}

	.overview .title p {
		text-align: center;
	}

	.overview-inner {
		grid-template-columns: 1fr;
	}

	.overview-img {
		max-width: 31.25rem;
		margin: 0 auto;
	}

	.overview-text {
		margin: 0 auto;
	}

	.features .features-inner {
		grid-template-columns: 1fr;

	}

	.features-col .features-item {
		flex-direction: row;
		margin-bottom: 1.25rem;
	}

	.features-col.reverse .features-item {
		flex-direction: row;
		margin-bottom: 1.25rem;
	}

	.features-col.reverse .features-item .features-text {
		text-align: start;
	}

	.features-col.reverse .features-item.center {
		position: relative;
		left: 0px;
	}

	.features-col .features-item.center {
		position: relative;
		left: 0px;
	}

	.features-col {
		gap: 0.625rem;
	}

	.features-img img {
		display: none;
	}

	.mobile-ac-img img {
		display: block;
		margin: 0 auto;
		max-width: 30rem;
	}

	.features .title {
		text-align: center;
		font-size: 1.4375rem;
		margin-bottom: -1.25rem;
	}

	.features-item.center .features-text p {
		max-width: 18.75rem;
	}

	.features-inner {
		max-width: 28.125rem;
		margin: 0 auto;
	}

	.testimonial-card {
		margin: 2.5rem 1.5rem;
	}

	.card {
		flex-direction: column;
	}

	.card-item {
		margin: 0 auto;
	}

	.whyBreezeBox-inner {
		grid-template-columns: 1fr;
		gap: 1.2rem;
	}

	.whyBreezeBox-img {
		margin: 0 auto;
	}

	.whyBreezeBox-text {
		margin: 0 auto;
	}

	.footer-inner {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
	}

	.footer-inner img {
		margin: auto;
	}

	.footer nav a {
		display: inline;
		text-align: center;
	}

	.footer nav a::after {
		content: "|";
		margin: 0 0.3125rem;
	}

	.footer nav a:nth-child(3)::after {
		content: none;
	}

	.footer-inner p {
		text-align: center;
	}
    .moneyback .container{
		padding: 1rem;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 14px;
	}

	.steps-section .steps {
		flex-direction: column;
		gap: 1.25rem;
	}

	.steps-section .steps .step-card {
		margin: 0 auto;
		width: 22rem;
	}

	.steps-section .card1::after {
		width: 3.75rem;
		height: 3.75rem;
		position: absolute;
		top: 77%;
		left: 42%;
	}

	.steps-section .card2::after {
		width: 3.75rem;
		height: 3.75rem;
		position: absolute;
		top: 77%;
		left: 42%;
	}

	.steps-section .card3::after {
		width: 3.75rem;
		height: 3.75rem;
		position: absolute;
		top: 72%;
		left: 42%;
	}

	.step-card p {
		font-size: 1.1rem;
	}

	.steps-section::after {
		top: 16%;
		right: 4%;
	}

	.steps-section::before {
		bottom: 16%;
		left: 4%;
	}

	.moneyback .moneyback-inner {
		display: flex;
		flex-direction: column;
		gap: 1.25rem;
		align-items: center;
	}

	.moneyback .moneyback-text {
		text-align: center;
	}

	.reviews-rate {
		padding: 1.5rem 3rem;
	}

	.reviews-card {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}

	.reviews-card-item {
		margin: 0 auto;
	}

	.reviews-text {
		font-size: 1rem;
	}

	.btn-box {
		display: none;
	}

	.mobile-btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		background-color: #fafafa;
		position: fixed;
		bottom: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		left: 0;
		width: 100%;
		padding-top: 0.9375rem;
		padding-bottom: 0.5rem;
		z-index: 10;
	}

	.mobile-btn .btn-box {
		margin: 0;
		display: -webkit-box !important;
		display: -ms-flexbox !important;
		display: flex !important;

	}

	.mobile-btn.btn-default {
		position: relative;
		background-color: white;
	}

	.mobile-btn.btn-default .btn-box {
		-webkit-animation: none;
		animation: none;
	}
    h1{
		font-size: 2.6rem;
	}
}

@media (max-width: 480px) {
	html {
		font-size: 14px;
	}
}

@media (max-width: 420px) {
	html {
		font-size: 12px;
	}
}

@media (max-width: 360px) {
	html {
		font-size: 11px;
	}
}