/* styles */

body {
	min-width: 320px;
	background: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 15px;
	line-height: 22px;
	color: #222;
	cursor: default;
}

header, section, footer {
	margin: 0 auto;
	max-width: 1920px;
}

.wrapper {
	margin: 0 auto;
	padding: 0 10px;
	width: 960px;
	position: relative;
}

.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

img {
	max-width: 100%;
	height: auto;
}

b {
	font-weight: 700;
}

/* price */

.price_block {
	width: 300px;
	position: relative;
}

.price_block:before {
	display: block;
	content: '';
	border-left: 20px solid #3c3f53;
	border-top: 39px solid #77c300;
	border-bottom: 39px solid #77c300;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -10px;
}

.price_block .price_item {
	float: left;
	width: 50%;
	height: 78px;
	color: #fff;
}

.price_block .price_item.old {
	padding: 17px 0 0 15px;
	-webkit-border-radius: 4px 0 0 4px;
	-moz-border-radius: 4px 0 0 4px;
	border-radius: 4px 0 0 4px;
	background: #3c3f53;
}

.price_block .price_item.new {
	padding: 17px 0 0 25px;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
	background: #77c300;
}

.price_block .price_item .text {
	margin: 0 0 6px;
	font-size: 14px;
	line-height: 14px;
}

.price_block .price_item .value {
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	position: relative;
}

.price_block .price_item.old .value {
	text-decoration: line-through;
}

/* button */

.button {
	display: block;
	width: 300px;
	height: 76px;
	border: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: var(--land-cta-from, #ffc000);
	background-image: -webkit-gradient(linear, left bottom, left top, from(var(--land-cta-from, #ffc000)), to(var(--land-cta-to, #fddc40)));
	background-image: -webkit-linear-gradient(bottom, var(--land-cta-from, #ffc000) 0%, var(--land-cta-to, #fddc40) 100%);
	background-image: -moz-linear-gradient(bottom, var(--land-cta-from, #ffc000) 0%, var(--land-cta-to, #fddc40) 100%);
	background-image: -o-linear-gradient(bottom, var(--land-cta-from, #ffc000) 0%, var(--land-cta-to, #fddc40) 100%);
	background-image: linear-gradient(to top, var(--land-cta-from, #ffc000) 0%, var(--land-cta-to, #fddc40) 100%);
	-webkit-box-shadow: 0 2px 0 var(--land-cta-shadow, #d7a200);
	-moz-box-shadow: 0 2px 0 var(--land-cta-shadow, #d7a200);
	box-shadow: 0 2px 0 var(--land-cta-shadow, #d7a200);
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 20px;
	line-height: 76px;
	color: var(--land-cta-text, #222);
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.button:hover {
	background-color: var(--land-cta-hover-from, #f5b800);
	background-image: -webkit-gradient(linear, left bottom, left top, from(var(--land-cta-hover-from, #f5b800)), to(var(--land-cta-hover-to, #f4d43d)));
	background-image: -webkit-linear-gradient(bottom, var(--land-cta-hover-from, #f5b800) 0%, var(--land-cta-hover-to, #f4d43d) 100%);
	background-image: -moz-linear-gradient(bottom, var(--land-cta-hover-from, #f5b800) 0%, var(--land-cta-hover-to, #f4d43d) 100%);
	background-image: -o-linear-gradient(bottom, var(--land-cta-hover-from, #f5b800) 0%, var(--land-cta-hover-to, #f4d43d) 100%);
	background-image: linear-gradient(to top, var(--land-cta-hover-from, #f5b800) 0%, var(--land-cta-hover-to, #f4d43d) 100%);
}

.button:active {
	-webkit-box-shadow: 0 1px 0 var(--land-cta-hover-shadow, #d7a200);
	-moz-box-shadow: 0 1px 0 var(--land-cta-hover-shadow, #d7a200);
	box-shadow: 0 1px 0 var(--land-cta-hover-shadow, #d7a200);
	top: 1px;
}

/* titles */

h2 {
	font-weight: 700;
	font-size: 44px;
	line-height: 54px;
	text-transform: uppercase;
	text-align: center;
}

h2 span {
	padding: 0 5px;
	background: url(../images/title_bg.jpg) left 85% repeat-x;
}

/* offer */

.offer_section {
	padding: 25px 0 0;
	height: 875px;
	background-color: #445a89;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(../images/desctop__offer_bg.jpg?v=20260427);
}

@supports (background-image: image-set(url("x") type("image/webp"))) {
	.offer_section {
		background-image: image-set(
			url(../images/desctop__offer_bg.webp?v=20260427q92) type("image/webp"),
			url(../images/desctop__offer_bg.jpg?v=20260427) type("image/jpeg")
		);
	}
}


.offer_section .title_block {
	margin: 0 0 20px;
	width: 460px;
	font-weight: 700;
	color: #fff;
}

.offer_section .title_block .subtitle {
	margin: 0 5px 5px;
	font-size: 34px;
	line-height: 40px;
}

.offer_section .title_block .main_title {
	font-size: 66px;
	line-height: 66px;
	text-transform: uppercase;
}

.offer_section .title_block .main_title span {
	padding: 0 5px;
	background: url(../images/title_bg.jpg) left 85% repeat-x;
}

.offer_section .description {
	margin: 0 0 20px;
	width: 460px;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
}

.offer_section ul {
	margin: 0 0 30px;
	width: 300px;
}

.offer_section ul li {
	margin: 0 0 15px;
	padding: 0 0 0 18px;
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	position: relative;
}

.offer_section ul li:last-child {
	margin: 0;
}

.offer_section ul li:after {
	display: block;
	content: '';
	width: 8px;
	height: 8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background: #f5ca16;
	position: absolute;
	top: 8px;
	left: 0;
}

.offer_section .price_block {
	margin: 0 0 20px;
}

.offer_section .products_count {
	margin: 25px 0 0;
	width: 300px;
	color: #fff;
	text-align: center;
}

.offer_section .products_count b {
	margin: 0 6px;
	padding: 4px 8px;
	background: #77c300;
	font-size: 18px;
}

/* video */

.video_section {
	margin-top: -225px;
}


.video_section .video_wrapper {
	padding: 40px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	background: #fff;
	-webkit-box-shadow: 0 0 51px rgba(0, 0, 1, 0.2);
	-moz-box-shadow: 0 0 51px rgba(0, 0, 1, 0.2);
	box-shadow: 0 0 51px rgba(0, 0, 1, 0.2);
}

.video_section .video_block {
	width: 860px;
	height: 484px;
	background-color: #000;
	overflow: hidden;
	position: relative;
}

.video_section .video_block .youtube {
	width: 100%;
	height: 100%;
	position: relative;
	cursor: pointer;
	background: #000;
}

.video_section .video_block .youtube .thumb {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video_section .video_block .youtube .play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 86px;
	height: 86px;
	margin-left: -43px;
	margin-top: -43px;
	background: rgba(33, 33, 33, 0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video_section .video_block .youtube .play:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 18px 0 18px 30px;
	border-color: transparent transparent transparent #fff;
	margin-left: 6px;
}

.video_section .video_block .youtube:hover .play {
	background: rgba(33, 33, 33, 0.95);
	transform: scale(1.03);
	transition: transform .15s ease, background-color .15s ease;
}

.video_section .video_block iframe, 
.video_section .video_block object, 
.video_section .video_block embed {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* about */

.about_section {
	padding: 40px 0;
}

.about_section h2 {
	margin: 0 0 30px;
}

.about_section .description {
	margin: 0 0 40px;
	text-align: center;
}

.about_section .images_block {
	margin: 0 0 40px;
	position: relative;
}

.about_section .images_block img {
	display: block;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	float: left;
}

.about_section .images_block .image1, 
.about_section .images_block .image3 {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 0 25px rgba(2, 2, 2, 0.12);
	-moz-box-shadow: 0 0 25px rgba(2, 2, 2, 0.12);
	box-shadow: 0 0 25px rgba(2, 2, 2, 0.12);
}

.about_section .images_block .image3 {
	float: right;
}

.about_section .images_block .image2 {
	position: absolute;
	top: 50%;
	margin-top: -92px;
	left: 50%;
	margin-left: -165px;
}

.about_section .text {
	float: left;
	margin: 20px 0 0;
	width: 470px;
}

.about_section .image {
	display: block;
	float: right;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

/* benefits */

.benefits_section {
	padding: 40px 0;
	background: #445a89 url(../images/dark_bg.jpg);
}

.benefits_section h2 {
	margin: 0 0 40px;
	color: #fff;
}

.benefits_section .benefits_list {
	margin: 0 0 40px;
	font-size: 0;
	line-height: 0;
	letter-spacing: -1px;
	text-align: center;
}

.benefits_section .benefit_item {
	display: inline-block;
	vertical-align: top;
	margin: 0 20px 0 0;
	width: 210px;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: normal;
	color: #fff;
}

.benefits_section .benefit_item:last-child {
	margin: 0;
}

.benefits_section .benefit_item img {
	display: block;
	margin: 0 auto 15px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.benefits_section .description {
	margin: 0 0 40px;
	color: #fff;
	text-align: center;
}

.benefits_section .timer_block {
	float: left;
	padding: 8px 10px 0;
	width: 280px;
	height: 78px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	background: #3c3f53;
	text-align: center;
}

.benefits_section .timer_block p {
	margin: 0 0 4px;
	color: #fff;
}

.benefits_section .timer_block .timer_item {
	float: left;
	width: 33.333333%;
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	color: #fec104;
	position: relative;
}

.benefits_section .timer_block .timer_item:before {
	display: block;
	content: ':';
	width: 10px;
	font-size: 30px;
	position: absolute;
	top: 0;
	right: -5px;
}

.benefits_section .timer_block .timer_item:last-child:before {
	display: none;
}

.benefits_section .price_block {
	float: left;
	margin: 0 30px;
}

.benefits_section .button {
	float: left;
}

/* info */

.info_section {
	padding: 40px 0;
}

.info_section h2 {
	margin: 0 0 40px;
}

.info_section .text_block {
	float: left;
	margin: 20px 20px 0 0;
	width: 340px;
}

.info_section .text_block p {
	margin: 0 0 15px;
}

.info_section .text_block p:last-child {
	margin: 0;
}

.info_section .image {
	display: block;
	float: left;
}

.info_section .list_block {
	float: right;
	margin: 20px 0 0;
	width: 380px;
}

.info_section .list_block h4 {
	margin: 0 0 15px;
	font-size: 16px;
	text-transform: uppercase;
}

.info_section .list_block .list_item {
	float: left;
	margin: 0 0 20px;
	width: 210px;
}

.info_section .list_block .list_item:nth-child(even) {
	width: 170px;
}

.info_section .list_block .list_item img {
	display: block;
	float: left;
	margin: 0 10px 0 0;
	width: 60px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.info_section .list_block .list_item p {
	padding: 8px 0 0 0;
	font-weight: 700;
}

.info_section .list_block .list_item:first-child p {
	padding: 8px 20px 0 0;
}

/* reviews */

.reviews_section {
	padding: 40px 0;
	background: #445a89 url(../images/dark_bg.jpg);
}

.reviews_section h2 {
	margin: 0 0 40px;
	color: #fff;
}

.review_item{
	
}

.reviews_section .review_item {
	padding: 15px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #fff;
	margin-bottom: 10px
}

.reviews_section .author_block {
	margin: 20px 0 15px;
	background: url(../images/reviews__quote_icon.png) right center no-repeat;
	line-height: 20px;
}

.reviews_section .author_block img {
	float: left;
	margin: 0 15px 0 0;
	width: 40px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}

.reviews_section .author_block .name {
	font-weight: 700;
}

.reviews_section p {
	min-height: 220px;
	text-align: center;
}

/* order steps */

.order_steps_section {
	padding: 40px 0;
}

.order_steps_section h2 {
	margin: 0 0 40px;
}

.order_steps_section .step_item {
	float: left;
	margin: 0 20px 0 0;
	width: 300px;
	position: relative;
}

.order_steps_section .step_item:last-child {
	margin: 0;
}

.order_steps_section .step_item:before {
	display: block;
	content: '';
	width: 56px;
	height: 13px;
	background: center no-repeat;
	position: absolute;
}

.order_steps_section .step_item:first-child:before {
	background-image: url(../images/order_steps__arrow1.png);
	right: -30px;
	top: 20px;
}

.order_steps_section .step_item:nth-child(2):before {
	background-image: url(../images/order_steps__arrow2.png);
	right: -50px;
	top: 115px;
}

.order_steps_section .step_item:last-child:before {
	display: none;
}

.order_steps_section .step_item img {
	display: block;
	margin: 0 auto;
}

.order_steps_section .number_block {
	margin: 15px auto;
	padding: 0 0 8px;
	width: 200px;
	border-bottom: 2px solid #ececec;
	text-align: center;
	position: relative;
}

.order_steps_section .number_block:before {
	display: block;
	content: '';
	width: 40px;
	height: 2px;
	background: #fec104;
	position: absolute;
	bottom: -2px;
}

.order_steps_section .step_item:first-child .number_block:before {
	left: 0;
}

.order_steps_section .step_item:nth-child(2) .number_block:before {
	left: 50%;
	margin-left: -20px;
}

.order_steps_section .step_item:last-child .number_block:before {
	right: 0;
}

.order_steps_section .number_block .number {
	display: inline-block;
	vertical-align: bottom;
	margin: 0 10px 0 0;
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	color: #77c300;
}

.order_steps_section .number_block .text {
	display: inline-block;
	vertical-align: bottom;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
}

.order_steps_section .step_item p {
	margin: 0 25px;
	text-align: center;
}

/* order */

.order_section {
	padding: 30px 0 40px;
	background-color: #445a89;
	background-position: center top;
	background-repeat: no-repeat;
	background-image: url(../images/desctop__order_bg.jpg?v=20260427);
}

@supports (background-image: image-set(url("x") type("image/webp"))) {
	.order_section {
		background-image: image-set(
			url(../images/desctop__order_bg.webp?v=20260427q90) type("image/webp"),
			url(../images/desctop__order_bg.jpg?v=20260427) type("image/jpeg")
		);
	}
}

.order_section.order_section--lead.order_form_lead--buster,
.order_section.order_section_bottom_cta {
	background-image: none;
	background: var(--order-lead-bg, linear-gradient(180deg, #41577f 0%, #35486b 100%));
}

.order_section .title_block {
	margin: 0 0 5px;
	font-weight: 700;
	font-size: 46px;
	line-height: 56px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
}

.order_section .subtitle {
	display: inline-block;
	vertical-align: top;
}

.order_section .main_title {
	display: inline-block;
	vertical-align: top;
}

.order_section .main_title span {
	padding: 0 5px;
	background: url(../images/title_bg.jpg) left 85% repeat-x;
}

.order_section .description {
	margin: 0 0 30px;
	font-size: 22px;
	line-height: 30px;
	color: #fff;
	text-align: center;
}

.order_section .discount {
	padding: 15px 0 0;
	width: 120px;
	height: 120px;
	border: 3px solid #fc0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	background-color: rgba(34, 34, 34, 0.7);
	font-size: 16px;
	line-height: 24px;
	color: #fff;
	text-transform: uppercase;
	text-align: center;
	position: absolute;
	top: 122px;
	left: 428px;
}

.order_section .discount b {
	display: block;
	font-size: 38px;
	line-height: 38px;
}

.order_section .form_block {
	padding: 25px 30px;
	width: 360px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	background: #fff;
}

.order_section .price_block {
	margin: 0 auto 20px;
}

.order_section .timer_block {
	margin: 0 auto 15px;
	width: 260px;
	text-align: center;
}

.order_section .timer_block p {
	margin: 0 0 4px;
}

.order_section .timer_block .timer_item {
	float: left;
	width: 33.333333%;
	font-weight: 700;
	font-size: 40px;
	line-height: 40px;
	color: #fec104;
	position: relative;
}

.order_section .timer_block .timer_item:before {
	display: block;
	content: ':';
	width: 10px;
	font-size: 30px;
	position: absolute;
	top: 0;
	right: -5px;
}

.order_section .timer_block .timer_item:last-child:before {
	display: none;
}

.order_section .field {
	display: block;
	margin: 0 auto 20px;
	padding: 0 20px;
	width: 300px;
	height: 68px;
	border: 1px solid #e2e2e2;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #fafafa;
	-webkit-box-shadow: inset 0 2px 3px rgba(2, 2, 2, 0.09);
	-moz-box-shadow: inset 0 2px 3px rgba(2, 2, 2, 0.09);
	box-shadow: inset 0 2px 3px rgba(2, 2, 2, 0.09);
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #222;
	text-align: center;
}

.order_section .field::-webkit-input-placeholder {
	opacity: 1;
	color: #222;
}

.order_section .field:-moz-placeholder {
	opacity: 1;
	color: #222;
}

.order_section .field::-moz-placeholder {
	opacity: 1;
	color: #222;
}

.order_section .field:-ms-input-placeholder {
	opacity: 1;
	color: #222;
}

.order_section .field:focus::-webkit-input-placeholder {
	opacity: 0;
}

.order_section .field:focus:-moz-placeholder {
	opacity: 0;
}

.order_section .field:focus::-moz-placeholder {
	opacity: 0;
}

.order_section .field:focus:-ms-input-placeholder {
	opacity: 0;
}

.order_section .products_count {
	margin: 25px 0 0;
	text-align: center;
}

.order_section .products_count b {
	margin: 0 6px;
	padding: 4px 8px;
	background: #77c300;
	font-size: 18px;
	color: #fff;
}

@media screen and (max-width: 959px) {

	/* styles */

	.wrapper {
		width: 640px;
	}

	/* titles */

	h2 {
		font-size: 34px;
		line-height: 44px;
	}

	/* offer */

	.offer_section {
		padding: 25px 0 40px;
		height: auto;
		background-image: url(../images/tablet__offer_bg.jpg?v=20260427);
	}

	@supports (background-image: image-set(url("x") type("image/webp"))) {
		.offer_section {
			background-image: image-set(
				url(../images/tablet__offer_bg.webp?v=20260427q92) type("image/webp"),
				url(../images/tablet__offer_bg.jpg?v=20260427) type("image/jpeg")
			);
		}
	}

	/* video */

	.video_section {
		margin-top: 40px;
	}

	.video_section .video_wrapper {
		padding: 20px;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
		-webkit-box-shadow: 0 0 30px rgba(0, 0, 1, 0.2);
		-moz-box-shadow: 0 0 30px rgba(0, 0, 1, 0.2);
		box-shadow: 0 0 30px rgba(0, 0, 1, 0.2);
	}

	.video_section .video_block {
		width: 580px;
		height: 326px;
	}

	/* about */

	.about_section .description {
		margin: 0 0 30px;
	}

	.about_section .images_block {
		margin: 0 0 30px;
	}

	.about_section .images_block .image1, 
	.about_section .images_block .image3 {
		display: none;
	}

	.about_section .images_block .image2 {
		float: none;
		margin: 0 auto;
		position: static;
	}

	.about_section .text {
		float: none;
		margin: 0 0 30px;
		width: 100%;
		text-align: center;
	}

	.about_section .image {
		float: none;
		margin: 0 auto;
	}

	/* benefits */

	.benefits_section .benefits_list {
		margin: 0;
	}

	.benefits_section .benefit_item {
		margin: 0 40px 40px;
	}

	.benefits_section .benefit_item:last-child {
		margin: 0 40px 40px;
	}

	.benefits_section .timer_block {
		float: none;
		margin: 0 auto 30px;
	}

	.benefits_section .price_block {
		margin: 0 20px 0 0;
	}

	/* info */

	.info_section {
		padding: 40px 0;
	}

	.info_section h2 {
		margin: 0 0 30px;
	}

	.info_section .text_block {
		float: none;
		margin: 0 0 30px;
		width: 100%;
		text-align: center;
	}

	.info_section .image {
		float: none;
		margin: 0 auto 30px;
	}

	.info_section .list_block {
		float: none;
		margin: 0;
		width: 100%;
	}

	.info_section .list_block h4 {
		margin: 0 0 30px;
		text-align: center;
	}

	.info_section .list {
		font-size: 0;
		line-height: 0;
		letter-spacing: -1px;
		text-align: center;
	}

	.info_section .list_block .list_item {
		margin: 0;
		width: 25%;
	}

	.info_section .list_block .list_item:nth-child(even) {
		width: 25%;
	}

	.info_section .list_block .list_item img {
		float: none;
		margin: 0 auto 15px;
	}

	.info_section .list_block .list_item p {
		padding: 0 10px;
		font-size: 15px;
		line-height: 22px;
		letter-spacing: normal;
	}

	.info_section .list_block .list_item:first-child p {
		padding: 0 30px;
	}

	/* reviews */

	.reviews_section .owl-prev, 
	.reviews_section .owl-next {
		width: 54px;
		height: 54px;
		background: url(../images/reviews__arrows.png) no-repeat;
		position: absolute;
		top: 70px;
	}

	.reviews_section .owl-prev {
		background-position: left center;
		left: 10px;
	}

	.reviews_section .owl-next {
		background-position: right center;
		right: 10px;
	}

	/* order steps */

	.order_steps_section .step_item {
		margin: 0 10px 0 0;
		width: 200px;
	}

	.order_steps_section .step_item:before {
		display: none;
	}

	.order_steps_section .step_item img {
		width: auto;
		height: 100px;
	}

	.order_steps_section .step_item p {
		margin: 0;
	}

	/* order */

	.order_section {
		padding: 25px 0 30px;
		background-image: url(../images/tablet__order_bg.jpg?v=20260427);
	}

	@supports (background-image: image-set(url("x") type("image/webp"))) {
		.order_section {
			background-image: image-set(
				url(../images/tablet__order_bg.webp?v=20260427q90) type("image/webp"),
				url(../images/tablet__order_bg.jpg?v=20260427) type("image/jpeg")
			);
		}
	}

	.order_section .title_block {
		margin: 0 0 20px;
		text-align: left;
	}

	.order_section .subtitle {
		display: block;
		margin: 0 5px 5px;
		font-size: 34px;
		line-height: 40px;
		text-transform: none;
	}

	.order_section .main_title {
		display: block;
		font-size: 66px;
		line-height: 66px;
	}

	.order_section .description {
		width: 320px;
		text-align: left;
	}

	.order_section .discount {
		display: none;
	}

	.order_section_bottom_cta h2.order_bottom_cta__title {
		font-size: 22px;
	}

}

@media screen and (max-width: 639px) {
	
	/* styles */

	.wrapper {
		width: 320px;
	}

	/* titles */

	h2 {
		font-size: 22px;
		line-height: 30px;
	}

	h2 span {
		padding: 0;
		background: none;
	}

	/* offer */

	.offer_section {
		padding: 20px 0 30px;
		background-image: url(../images/mobile__offer_bg.jpg?v=20260513m3);
	}

	@supports (background-image: image-set(url("x") type("image/webp"))) {
		.offer_section {
			background-image: image-set(
				url(../images/mobile__offer_bg.webp?v=20260513m3) type("image/webp"),
				url(../images/mobile__offer_bg.jpg?v=20260513m3) type("image/jpeg")
			);
		}
	}

	.offer_section .title_block {
		margin: 0 0 15px;
		width: 100%;
		text-align: center;
	}

	.offer_section .title_block .subtitle {
		margin: 0;
		font-size: 24px;
		line-height: 30px;
	}

	.offer_section .title_block .main_title {
		font-size: 42px;
		line-height: 42px;
	}

	.offer_section .description {
		margin: 0 0 355px;
		width: 100%;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
	}

	.offer_section ul {
		margin: 0 0 20px;
	}

	/* video */

	.video_section {
		margin-top: 30px;
	}

	.video_section .video_wrapper {
		padding: 5px;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
	}

	.video_section .video_block {
		width: 290px;
		height: 163px;
	}

	/* about */

	.about_section {
		padding: 30px 0;
	}

	.about_section h2 {
		margin: 0 0 20px;
	}

	/* benefits */

	.benefits_section {
		padding: 30px 0 32px;
	}

	.benefits_section h2 {
		margin: 0 0 30px;
	}

	.benefits_section .benefit_item {
		margin: 0 0 30px;
	}

	.benefits_section .benefit_item:last-child {
		margin: 0 0 30px;
	}

	.benefits_section .description {
		margin: 0 0 30px;
	}

	.benefits_section .timer_block {
		margin: 0 auto 20px;
	}

	.benefits_section .price_block {
		float: none;
		margin: 0 0 20px;
	}

	.benefits_section .button {
		float: none;
	}

	/* info */

	.info_section {
		padding: 30px 0 0;
	}

	.info_section h2 {
		margin: 0 0 20px;
	}

	.info_section .list_block .list_item {
		margin: 0 0 30px;
		width: 50%;
	}

	.info_section .list_block .list_item:nth-child(even) {
		width: 50%;
	}

	.info_section .list_block .list_item p {
		padding: 0 10px;
	}

	.info_section .list_block .list_item:first-child p {
		padding: 0 20px;
	}

	/* reviews */

	.reviews_section {
		padding: 30px 0;
	}

	.reviews_section h2 {
		margin: 0 0 30px;
	}

	/* order steps */

	.order_steps_section {
		padding: 30px 0;
	}

	.order_steps_section h2 {
		margin: 0 0 30px;
	}

	.order_steps_section .step_item {
		margin: 0 0 30px;
		width: 100%;
	}

	.order_steps_section .step_item img {
		height: auto;
	}

	.order_steps_section .step_item p {
		margin: 0 25px;
	}

	/* order */

	.order_section {
		padding: 20px 0 30px;
		background-image: url(../images/mobile__offer_bg.jpg?v=20260513m3);
	}

	/* У макеті для «нижньої» форми був mobile__offer_bg + великий margin у .description; для lead/нижнього CTA це дає накладання — суцільний фон замість арт-хедера. */
	.order_section.order_section--lead.order_form_lead--buster,
	.order_section.order_section_bottom_cta {
		background-image: none;
		background: var(--order-lead-bg, linear-gradient(180deg, #41577f 0%, #35486b 100%));
	}

	.order_section .title_block {
		margin: 0 0 15px;
		text-align: center;
	}

	.order_section .subtitle {
		margin: 0;
		font-size: 24px;
		line-height: 30px;
	}

	.order_section .main_title {
		font-size: 42px;
		line-height: 42px;
	}

	.order_section .description {
		margin: 0 0 355px;
		width: 100%;
		font-size: 16px;
		line-height: 24px;
		text-align: center;
	}

	.order_section .form_block {
		margin-left: -10px;
		padding: 10px 10px 25px;
		width: 320px;
	}

	.order_section--lead .form_block,
	.order_section_bottom_cta .form_block {
		margin-left: auto;
		margin-right: auto;
	}

	.order_section_bottom_cta h2.order_bottom_cta__title {
		font-size: 19px;
	}

	.order_section_bottom_cta .order_bottom_cta__sub {
		font-size: 14px;
	}

	/* Нижній CTA: inner + картка на всю доступну ширину між padding (перекриває .wrapper width:320 + form 320) */
	.order_section_bottom_cta .wrapper.order_section_bottom_cta__inner {
		width: 100%;
		max-width: 100%;
		padding-left: 14px;
		padding-right: 14px;
	}

	.order_section_bottom_cta .form_block {
		width: 100%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

}


/* Раніше −225px тягнуло відео вгору під «нижню» форму; при формі під хедером потрібен звичайний відступ. */
.main--order-first .video_section {
	margin-top: 44px;
}

.offer_section .buster-stock-line {
	box-sizing: border-box;
	max-width: 300px;
	width: 100%;
	margin: 0 auto 20px;
	padding: 8px 12px;
	text-align: center;
	font-size: 15px;
	line-height: 1.35;
	color: #2f3339;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.13);
}


.order_section_bottom_cta .form_block .button {
	margin-left: auto;
	margin-right: auto;
}

.order_section_bottom_cta .button.button--cta-scroll {
	width: 100%;
	max-width: 300px;
	height: auto;
	min-height: 52px;
	line-height: 1.28;
	padding: 14px 16px;
	box-sizing: border-box;
	white-space: normal;
}

.order_section_bottom_cta {
	padding-top: 26px;
	padding-bottom: 40px;
}

.order_section_bottom_cta .order_section_bottom_cta__inner.wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 16px;
	padding-right: 16px;
}

.order_section_bottom_cta h2.order_bottom_cta__title {
	margin: 0 0 10px;
	padding: 0 10px;
	max-width: 640px;
	font-size: 26px;
	line-height: 1.25;
	color: #fff;
	text-transform: none;
	text-align: center;
}

.order_section_bottom_cta .order_bottom_cta__sub {
	margin: 0 0 20px;
	padding: 0 14px;
	max-width: 520px;
	font-size: 16px;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.order_section_bottom_cta .form_block {
	float: none;
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
	margin-inline: auto;
	box-shadow: 0 14px 44px rgba(0, 0, 0, 0.2);
}

.order_section_bottom_cta .form_block .price_block {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.order_section_bottom_cta .buster-stock-line {
	box-sizing: border-box;
	max-width: 300px;
	width: 100%;
	margin: 0 auto 14px;
	padding: 8px 12px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.35;
	color: #334155;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

/* Прямий нащадок inner: вища специфічність + явна ширина, щоб легасі `p`/float не зсували рядок */
.order_section_bottom_cta .order_section_bottom_cta__inner > .products_count--footer-cta {
	display: block;
	box-sizing: border-box;
	width: 100%;
	max-width: 360px;
	margin: 16px auto 0;
	margin-inline: auto;
	padding: 0 12px;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.95);
	text-align: center;
	align-self: center;
}

.order_section_bottom_cta .products_count--footer-cta b {
	margin: 0;
	padding: 0;
	background: none;
	font-weight: 700;
	color: #fff;
}

.order_section_bottom_cta .products_count--footer-cta u {
	text-decoration: underline;
	text-underline-offset: 2px;
	font-weight: 600;
}

/* === Upsell Product Image Slider === */
.product-image .slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.product-image .slider .slider-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.product-image .slider-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.product-image .slider-nav .item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
}
.product-image .slider-nav .item.slick-current img {
    border-color: #007bff;
}
