@font-face {
		font-family: 'Raleway';
		src: url('../fonts/Raleway-Medium.woff2') format('woff2');
		font-weight: 500;
		font-style: normal;
		font-display: swap;
}

@font-face {
		font-family: 'Raleway';
		src: url('../fonts/Raleway-Bold.woff2') format('woff2');
		font-weight: bold;
		font-style: normal;
		font-display: swap;
}

@font-face {
		font-family: 'Raleway';
		src: url('../fonts/Raleway-SemiBold.woff2') format('woff2');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
}

@font-face {
		font-family: 'NunitoSans';
		src: url('../fonts/NunitoSans-Regular.woff2') format('woff2');
		font-weight: normal;
		font-style: normal;
		font-display: swap;
}

@font-face {
		font-family: 'NunitoSans';
		src: url('../fonts/NunitoSans-Bold.woff2') format('woff2');
		font-weight: bold;
		font-style: normal;
		font-display: swap;
}

@font-face {
		font-family: 'NunitoSans';
		src: url('../fonts/NunitoSans-SemiBold.woff2') format('woff2');
		font-weight: 600;
		font-style: normal;
		font-display: swap;
}


* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body {
	background-color: #FCFCFC;
	font-family: 'NunitoSans', sans-serif;
	font-weight: normal;
	min-width: 320px;
	overflow-x: hidden;
	position: relative;
	margin: 0;
	-webkit-font-feature-settings: 'pnum' on, 'lnum' on;
					font-feature-settings: 'pnum' on, 'lnum' on; }

a {
	display: inline-block;
	text-decoration: none;
	color: #fff; }
	a:hover, a:focus, a:active {
		text-decoration: none;
		outline: none; }

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
	line-height: normal; }

ul {
	margin: 0;
	padding: 0; }

input,
button,
textarea,
select {
	-webkit-appearance: none;
		 -moz-appearance: none;
					appearance: none;
	outline: none; }

img {
	max-width: 100%;
	height: auto;
	vertical-align: top; }

.c-container {
	width: 1180px;
	margin: auto;
	position: relative; }

.s-title {
	font-size: 42px;
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	color: #444;
	text-align: center;
	margin-bottom: 70px; }

#callPopup {
	display: none;
}

/* политика */
.policy-checkbox {
  margin: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}

/* Обнуляем возможные странные стили для чекбоксов */
.policy-checkbox input[type="checkbox"] {
  all: unset; /* Сбрасываем все стили */
  appearance: checkbox; /* Возвращаем системный вид */
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  cursor: pointer;
  vertical-align: middle;
}
/* Оформление текста */
.policy-checkbox label {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

#cookie-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f8f8f8;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    z-index: 9999;
}
#cookie-notice a {
    color: blue;
    text-decoration: underline;
}
#cookie-buttons {
    display: flex;
    gap: 10px;
}
button {
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.accept {
    background-color: #4CAF50;
    color: white;
}
.decline {
    background-color: #ccc;
    color: #333;
}




/* Header */
.header {
	padding: 17px 0;
	position: relative;
	z-index: 11; }
	.header-wrapper {
		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-left {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center; }
	.header-mnu {
		margin-left: 70px; }
		.header-mnu li {
			display: inline-block;
			margin-right: 28px; }
			.header-mnu li:last-child {
				margin-right: 0; }
		.header-mnu a {
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.header-mnu a:hover {
				color: #FFB72F; }
	.header-right {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center; }
	.header-contacts {
		margin-right: 50px;
		text-align: right; }
	.header-phone {
		display: block;
		font-size: 18px;
		font-family: "Raleway", sans-serif;
		font-weight: bold;
		color: #FFB72F;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.header-phone:hover {
			color: #fff; }
	.header-email {
		font-size: 14px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.header-email:hover {
			color: #FFB72F; }
	.header-callback {
		background-color: #FFB72F;
		border-radius: 5px;
		padding: 10px 22px;
		font-weight: 600;
		color: #444;
		letter-spacing: 0.5px;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.header-callback:hover {
			background-color: #fff; }
	.header-fixed {
		background: -o-linear-gradient(6.22deg, rgba(25, 34, 38, 0.75) 17.22%, rgba(46, 60, 75, 0.75) 99.53%);
		background: linear-gradient(83.78deg, rgba(25, 34, 38, 0.75) 17.22%, rgba(46, 60, 75, 0.75) 99.53%);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: -1;
		opacity: 0;
		padding: 15px 0 0 0;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.header-fixed-wrapper {
			position: relative; }

.toggle-nav {
	width: 25px;
	height: 16px;
	background: url("../img/mnu.svg") no-repeat center;
	margin-left: 40px;
	display: none; }
	.toggle-nav.active {
		background: url("../img/mnu-close.svg") no-repeat center; }

.mnu li {
	display: block;
	text-align: center;
	margin-bottom: 20px; }
	.mnu li:last-child {
		margin-bottom: 0; }

.mnu a {
	font-size: 26px;
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	color: #444; }

.mnu-wrapper {
	width: 100%;
	background-color: #fff;
	position: fixed;
	top: 73px;
	z-index: 100;
	padding: 30px 20px 40px;
	display: none; }

.mnu-bg {
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	z-index: -1;
	opacity: 0;
	transition: .5s;
}
.mnu-bg.active {
	opacity: 1;
	z-index: 10;
}

.mnu-callback {
	width: 100%;
	padding: 12px;
	text-align: center;
	background-color: #FFB72F;
	border-radius: 5px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #444;
	margin-top: 40px;
	margin-bottom: 30px;
	display: none; }

.mnu-email {
	font-family: "Raleway", sans-serif;
	color: #444;
	text-align: center;
	display: none; }

/* Main section */
.main {
	background: url("../img/main-bg.png") no-repeat top;
	background-size: cover; }
	.main-content {
		padding-top: 70px;
		padding-bottom: 120px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
				-ms-flex-align: start;
						align-items: flex-start;
		-webkit-box-pack: justify;
				-ms-flex-pack: justify;
						justify-content: space-between; }
	.main-info {
		width: 500px; }
	.main-title {
		font-size: 54px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		color: #fff;
		margin-bottom: 50px; }
	.main-text {
		width: 300px;
		color: #fff;
		line-height: 1.4;
		margin-bottom: 20px; }
		.main-text:last-of-type {
			margin-bottom: 0; }
		.main-text-span {
			font-size: 20px;
			font-weight: bold;
			color: #FFB72F; }
		.main-text-span span {
			font-size: 16px;
		}
	.main-form {
		width: 380px;
		background: -o-radial-gradient(50.07% 50%, 50% 50%, rgba(50, 56, 71, 0.8) 53.82%, rgba(50, 56, 71, 0) 100%), rgba(40, 44, 55, 0.8);
		background: radial-gradient(50% 50% at 50.07% 50%, rgba(50, 56, 71, 0.8) 53.82%, rgba(50, 56, 71, 0) 100%), rgba(40, 44, 55, 0.8);
		padding: 25px 40px 40px;
		position: relative; }
		.main-form-title {
			font-size: 25px;
			color: #fff;
			font-family: 'Raleway', sans-serif;
			font-weight: 600;
			line-height: 1.5;
			margin-bottom: 25px; }
		.main-form-cost {
			color: #FFB72F; }
			.main-form-cost-old {
				font-size: 20px;
				text-decoration: line-through; }
		.main-form-input {
			width: 100%;
			background-color: transparent;
			padding-top: 5px;
			padding-bottom: 10px;
			border: none;
			border-bottom: 1px solid #fff;
			font: 600 16px 'NunitoSans', sans-serif;
			color: #fff;
			margin-bottom: 25px; }
			.main-form-input:last-of-type {
				margin-bottom: 0; }
		.main-form ::-webkit-input-placeholder {
			color: #fff; }
		.main-form-btn {
			width: 180px;
			text-align: center;
			margin-top: 40px;
			background-color: #FFB72F;
			border-radius: 5px;
			padding: 13px;
			font: 600 16px 'NunitoSans', sans-serif;
			color: #444;
			border: none;
			line-height: 1;
			letter-spacing: 0.5px;
			cursor: pointer;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.main-form-btn:hover {
				background-color: #fff; }
		.main-form-stock {
			position: absolute;
			top: 20px;
			right: -5px; }
		.main-form-stock-mob {
			display: none;
		}
	.main-img {
		display: none; }


.banner-wrapper {
	position: relative;
	background: #FF223E;
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
}

.banner-wrapper-fix {
	margin-top: 15px;
}

.banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 25px;
	line-height: 29px;
	color: #ffffff;
	box-sizing: border-box;
	height: 80px;
}

.banner-num {
	font-weight: 600;
	font-size: 28px;
}

.banner-close {
	position: absolute;
	right: -107px;
	cursor: pointer;
	opacity: 0.5;
	transition: .5s;
	width: 18px;
	height: 18px;
}

.banner-close:hover {
	opacity: 1;
}

.banner-btn-wrapper {
	width: 180px;
	height: 40px;
	background: #FFB72F;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .5s;
}

.banner-btn-wrapper:hover {
	background-color: #fff;
}

/* Стили для кнопки в правом нижнем углу */
.floating-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    z-index: 1000;
}

.floating-button img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Стили для всплывающего окна */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}

.popup-btn {
    display: block;
    margin: 10px 0;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
}

.whatsapp-btn {
    background-color: #25D366;
}

.telegram-btn {
    background-color: #0088cc;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


.banner-light-block {
	display: flex;
	align-items: center;
	height: 100%;
}

.banner-count-block {
	display: flex;
	align-items: center;
}

.banner-light {
	display: flex;
	position: relative;
	z-index: 2;
	align-items: center;
	justify-content: center;
	background-image: url(../img/lightning.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	color: #FF223E;
	margin-left: -6px;
	margin-right: -8px;
	height: 100%;
	width: 119px;
}

.banner-btn {
	display: block;
	letter-spacing: 0.03em;
	color: #444444;
	font-family: 'NunitoSans', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	padding: 8px 22px;
	box-sizing: border-box;
}

.timer__items, .timer__items-fix {
	display: flex;
	width: 175px;
}

.timer__items-action {
	display: flex;
	width: 175px;
	color: #FF223E;
}

.timer__item, .timer__items-fix {
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
	text-align: center;
}

.timer__item-action {
	position: relative;
	margin-left: 10px;
	margin-right: 10px;
	text-align: center;
	color: #FF223E;
}

.timer__days-num::after, .timer__days-num-fix::after {
	content: attr(data-title);
	margin-left: 10px;
}

.timer__days-num-action::after {
	content: attr(data-title);
	margin-left: 10px;
	font-size: 22px;
    line-height: 26px;
    color: #444444;
}

.timer__item:not(:last-child)::after, .timer__item-fix:not(:last-child)::after {
	content: ':';
	position: absolute;
	right: -15px;
}

.timer__item-action:not(:last-child)::after {
	content: ':';
	position: absolute;
	right: -15px;
	color: #FF223E;
}

.action-popup-wrapper {
	display: none;
	z-index: 1000;
	width: 100%;
	height: 100%;
	position: fixed;
	align-items: center;
	justify-content: center;
	background: rgba(25, 34, 38, 0.3);
}

.action-banner {
	width: 428px;
	padding: 47px 40px 50px;
	position: relative;
	background: #ffffff;
}

.action-banner-close {
	fill: #444444;
	position: absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}

.action-banner-close:hover {
	fill: #000000;
}

.action-banner-title {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 36px;
	line-height: 42px;
	text-align: center;
	color: #444444;
	margin-bottom: 20px;
}

.action-banner-subtitle {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 600;
	font-size: 22px;
	line-height: 26px;
	text-align: center;
	color: #444444;
	width: 100%;
	margin-bottom: 13px;
}

.action-banner-subtitle-red {
	color: #FF223E;
}

.action-banner-timer-block {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	color: #FF223E;
}

.action-banner-text {
	font-size: 22px;
	line-height: 26px;
	color: #444444;
	margin-right: 10px;
}

.action-bottom-inf {
	font-size: 12px;
	line-height: 16px;
	color: #666666;
	margin-top: 20px;
}

.footer-inf {
	color: #d0d0d0;
}


/* Tariffs section */
.tariffs {
	padding: 100px 0 70px; }
	.tariffs-item {
		background-color: #fff;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		border-radius: 5px;
		padding: 30px 40px;
		width: 32%;
		padding-bottom: 95px;
		position: relative;
		transition: .5s; }
		.tariffs-item:hover {
			box-shadow: 0 0 20px rgba(0,0,0,0.1);
		}
		.tariffs-item-title {
			font-size: 22px;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			color: #444;
			text-align: center;
			margin-bottom: 30px; }
		.tariffs-item-security {
			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;
			margin-bottom: 15px; }
			.tariffs-item-security-title {
				font-size: 16px;
				color: #666; }
			.tariffs-item-security-radios {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: center;
						-ms-flex-align: center;
								align-items: center; }
			.tariffs-item-security .radio-label {
				margin-right: 30px; }
				.tariffs-item-security .radio-label:last-of-type {
					margin-right: 0; }
		.tariffs-item-calc {
			margin-bottom: 20px; }
			.tariffs-item-calc-top {
				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;
				margin-bottom: 15px; }
			.tariffs-item-calc-title {
				font-size: 16px;
				color: #666; }
			.tariffs-item-calc-value {
				width: 80px;
				-ms-flex-negative: 0;
						flex-shrink: 0;
				text-align: center;
				border: none;
				border-bottom: 1px solid #FFB72F;
				padding-bottom: 5px;
				font: 600 16px 'NunitoSans', sans-serif;
				color: #444; }
			.tariffs-item-calc ::-webkit-input-placeholder {
				color: #444; }
		.tariffs-item-cost {
			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;
			text-align: center; }
			.tariffs-item-cost-value {
				font-size: 48px;
				font-family: "Raleway", sans-serif;
				font-weight: 600;
				color: #444; }
			.tariffs-item-cost-info {
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				font-weight: 600;
				color: #444;
				margin-left: 15px; }
			.tariffs-item-cost-info span {
				display: block;
				padding-bottom: 2px;
				border-bottom: 1px solid #000;
			}
		.tariffs-item-btn {
			width: 100%;
			padding: 10px;
			text-align: center;
			background-color: #FFE8BD;
			border-radius: 5px;
			font-weight: 600;
			font-size: 16px;
			color: #444;
			letter-spacing: 0.5px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.tariffs-item-btn:hover {
				background-color: #FFB72F; }
			.tariffs-item-btn-wrapper {
				position: absolute;
				bottom: 30px;
				left: 0;
				width: 100%;
				padding: 0 50px; }
		.tariffs-item-wrapper {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: justify;
					-ms-flex-pack: justify;
							justify-content: space-between; }

.ui-widget.ui-widget-content {
	border: none;
	border-radius: 0; }

.ui-slider-horizontal {
	height: 3px; }

.ui-widget-content {
	background-color: #FFE8BD; }

.ui-widget-header {
	background: #FFE8BD;
	border-radius: 0; }

.ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
	background: #FFB72F;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	margin-left: 0;
	font-size: 0;
	border: none; }

.ui-slider-horizontal .ui-slider-handle {
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(-44deg);
			-ms-transform: translateY(-50%) rotate(-44deg);
					transform: translateY(-50%) rotate(-44deg);
	cursor: pointer; }

.ui-button, .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, html .ui-button.ui-state-disabled:active, html .ui-button.ui-state-disabled:hover {
	outline: none; }

.ui-slider-handle {
	-ms-touch-action: none;
	touch-action: none; }

.radio {
	display: none; }
	.radio-label {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center;
		cursor: pointer; }
	.radio-custom {
		display: inline-block;
		position: relative;
		width: 18px;
		height: 18px;
		-ms-flex-negative: 0;
				flex-shrink: 0;
		border: 1px solid #FFB72F;
		border-radius: 50%;
		background-color: #fff;
		margin-right: 10px; }
		.radio-custom:before {
			content: '';
			width: 10px;
			height: 10px;
			background-color: #FFB72F;
			border-radius: 50%;
			position: absolute;
			top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
					-ms-transform: translate(-50%, -50%);
							transform: translate(-50%, -50%);
			opacity: 0;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
	.radio-text {
		color: #666; }

.radio:checked + .radio-custom:before {
	opacity: 1; }

/* Products section */
.products {
	padding: 70px 0; }
	.products-title {
		margin-bottom: 60px;
	}
	.products-item {
		background-color: #fff;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		width: 32%;
		border-radius: 5px;
		position: relative;
		text-align: center;
		padding: 40px;
		padding-bottom: 105px;
		transition: .5s; }
		.products-item:hover {
			box-shadow: 0 0 20px rgba(0,0,0,0.1);
		}
		.products-item:last-of-type .products-item-info img {
			-webkit-transform: translateX(1px);
					-ms-transform: translateX(1px);
							transform: translateX(1px); }
		.products-item-info {
			width: 22px;
			height: 22px;
			border-radius: 50%;
			background-color: #FFE8BD;
			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;
			position: absolute;
			top: 20px;
			right: 20px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.products-item-info:hover {
				background-color: #FFB72F; }
		.products-item-img {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			-webkit-box-align: end;
					-ms-flex-align: end;
							align-items: flex-end;
			height: 210px;
			margin-bottom: 25px; }
		.products-item-name {
			font-size: 22px;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			color: #444;
			margin-bottom: 15px; }
		.products-item-desc {
			color: #666;
			line-height: 1.4;
			margin-bottom: 15px; }
		.products-item-rent {
			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;
			margin-bottom: 20px; }
			.products-item-rent-title {
				font-family: "Raleway", sans-serif;
				font-weight: 600;
				color: #444;
				margin-right: 15px; }
		.products-item-cost {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: end;
					-ms-flex-align: end;
							align-items: flex-end;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			font-size: 16px;
			line-height: 1; }
			.products-item-cost-value {
				font-size: 48px;
				margin-right: 10px;
				margin-bottom: -7px; }
		.products-item-btn {
			width: 100%;
			padding: 10px;
			text-align: center;
			background-color: #FFE8BD;
			border-radius: 5px;
			font-weight: 600;
			font-size: 16px;
			color: #444;
			letter-spacing: 0.5px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.products-item-btn:hover {
				background-color: #FFB72F; }
			.products-item-btn-wrapper {
				position: absolute;
				bottom: 30px;
				left: 0;
				width: 100%;
				padding: 0 50px; }
		.products-item-wrapper {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: justify;
					-ms-flex-pack: justify;
							justify-content: space-between; }

.switch {
	display: none; }

.switch-label {
	cursor: pointer;
	width: 46px;
	height: 25px;
	background-color: #FFE8BD;
	display: block;
	border-radius: 100px;
	position: relative;
	padding: 0 15px; }

.switch-label span {
	position: relative;
	margin: 0 15px; }

.switch-label:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 21px;
	height: 21px;
	background: #fff;
	border-radius: 100px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	z-index: 0; }

.switch:checked + .switch-label {
	background-color: #FFB72F; }

.switch:checked + .switch-label:before {
	left: calc(100% - 2px);
	-webkit-transform: translateX(-100%);
			-ms-transform: translateX(-100%);
					transform: translateX(-100%); }

.switch-label:active:before {
	width: 42px; }

/* Products-more section */
.products-more {
	padding: 70px 0 120px; }
	.products-more-title {
		margin-bottom: 50px;
	}
	.products-more-slider {
		margin: 0 -10px; }
		.products-more-slider .slick-track {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex; }
			.products-more-slider .slick-track .slick-slide {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				height: auto; }
		.products-more-slider .slick-list {
			padding: 20px 0; }
	.products-more-item {
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
		background-color: #fff;
		border-radius: 5px;
		margin: 0 10px;
		padding-top: 30px;
		text-align: center;
		padding-bottom: 100px;
		position: relative;
		transition: .5s; }
		.products-more-item:hover {
			box-shadow: 0 0 20px rgba(0,0,0,0.1);
		}
		.products-more-item-content {
			width: 100%; }
		.products-more-item-info {
			width: 22px;
			height: 22px;
			border-radius: 50%;
			background-color: #FFE8BD;
			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;
			position: absolute;
			top: 20px;
			right: 20px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.products-more-item-info:hover {
				background-color: #FFB72F; }
			.products-more-item-info img {
				-webkit-transform: translateX(1px);
						-ms-transform: translateX(1px);
								transform: translateX(1px); }
		.products-more-item-img {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			-webkit-box-align: end;
					-ms-flex-align: end;
							align-items: flex-end;
			height: 220px; }
		.products-more-item-name {
			margin-top: 20px;
			font-size: 22px;
			font-family: "Raleway", sans-serif;
			padding: 0 30px;
			line-height: 1.4;
			font-weight: 600;
			color: #424242; }
		.products-more-item-cost {
			position: absolute;
			bottom: 30px;
			width: 100%;
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: end;
					-ms-flex-align: end;
							align-items: flex-end;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center;
			font-size: 16px;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			line-height: 1; }
			.products-more-item-cost-value {
				font-size: 40px;
				margin-right: 10px;
				margin-bottom: -5px; }
	.products-more-btn {
		background-color: #FFE8BD;
		border-radius: 5px;
		padding: 10px 30px;
		font-weight: 600;
		color: #424242;
		letter-spacing: 0.5px;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.products-more-btn:hover {
			background-color: #FFB72F; }
		.products-more-btn-wrapper {
			text-align: center;
			margin-top: 50px; }

.arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
					transform: translateY(-50%);
	cursor: pointer;
	z-index: 10; }
	.arrow-prev {
		left: -40px; }
	.arrow-next {
		right: -40px; }

.slick-dots {
	bottom: -20px;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
			-ms-flex-pack: end;
					justify-content: flex-end;
	padding-right: 10px; }
	.slick-dots li {
		width: 8px;
		height: 8px;
		margin: 0;
		margin-right: 15px;
		transition: .5s; }
		.slick-dots li:last-child {
			margin-right: 0; }
		.slick-dots li button {
			width: 8px;
			height: 8px;
			padding: 0;
			transition: .5s; }
			.slick-dots li button:before {
				content: '';
				width: 8px;
				height: 8px;
				background-color: #FFE8BD;
				font-size: 0;
				opacity: 1;
				border-radius: 50%;
				color: transparent;
				transition: .5s; }
		.slick-dots li.slick-active {
			width: 30px; }
			.slick-dots li.slick-active button {
				width: 30px; }
				.slick-dots li.slick-active button:before {
					width: 30px;
					opacity: 1;
					background-color: #FFB72F;
					color: transparent;
					border-radius: 10px; }

.slick-dotted.slick-slider {
	margin-bottom: 0; }

/* Request section */
.request {
	background: -o-radial-gradient(50.07% 50%, 50% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	background: radial-gradient(50% 50% at 50.07% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	padding: 100px 0 120px;
	position: relative; }
	.request-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
				-ms-flex-pack: end;
						justify-content: flex-end; }
	.request-form {
		width: 380px; }
		.request-form-title {
			font-size: 42px;
			font-family: "Raleway", sans-serif;
			font-weight: 500;
			color: #fff;
			margin-bottom: 30px; }
		.request-form-desc {
			color: #D0D0D0;
			margin-bottom: 40px;
			line-height: 1.6; }
		.request-form-input {
			width: 100%;
			background-color: transparent;
			border: none;
			border-bottom: 1px solid #fff;
			font: 600 16px 'NunitoSans', sans-serif;
			padding: 5px 0;
			color: #fff;
			margin-bottom: 25px; }
		.request-form ::-webkit-input-placeholder {
			color: #fff; }
		.request-form-text {
			margin-top: 0px;
			font-size: 14px;
			color: #D0D0D0;
			line-height: 1.4;
			margin-bottom: 0px; }
			.request-form-text a {
				text-decoration: underline;
				color: #D0D0D0; }
		.request-form-btn {
			width: 180px;
			background-color: #FFB72F;
			border-radius: 5px;
			padding: 12px;
			text-align: center;
			font: 600 16px 'NunitoSans', sans-serif;
			color: #444;
			cursor: pointer;
			border: none;
			letter-spacing: 0.5px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.request-form-btn:hover {
				background-color: #fff; }
	.request-img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 55%;
		-o-object-fit: cover;
			 object-fit: cover;
		-webkit-clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%);
						clip-path: polygon(0 0, 93% 0, 100% 100%, 0% 100%); }

/* Advantages section */
.advantages {
	background: -o-radial-gradient(50.07% 50%, 50% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	background: radial-gradient(50% 50% at 50.07% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	padding: 100px 0 120px;
	position: relative; }
	.advantages-info {
		width: 580px; }
	.advantages-title {
		font-size: 42px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		color: #fff;
		margin-bottom: 30px; }
	.advantages-desc {
		color: #D0D0D0;
		line-height: 1.6;
		margin-bottom: 40px; }
	.advantages-item {
		width: 480px;
		margin-bottom: 20px;
		border-bottom: 1px solid #D0D0D0;
		padding-bottom: 20px; }
		.advantages-item:first-of-type .advantages-item-desc {
			display: block; }
		.advantages-item:last-of-type {
			margin-bottom: 0; }
		.advantages-item-title {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: center;
					-ms-flex-align: center;
							align-items: center;
			font-size: 16px;
			font-weight: 600;
			color: #fff;
			padding-right: 20px;
			cursor: pointer;
			position: relative; }
			.advantages-item-title:after {
				content: '';
				width: 16px;
				height: 14px;
				background: url("../img/arrow-down.svg") no-repeat center;
				position: absolute;
				right: 0;
				top: 5px;
				-webkit-transition: .5s;
				-o-transition: .5s;
				transition: .5s; }
			.advantages-item-title img {
				-ms-flex-negative: 0;
						flex-shrink: 0;
				margin-right: 18px; }
			.advantages-item-title.active:after {
				-webkit-transform: rotate(-180deg);
						-ms-transform: rotate(-180deg);
								transform: rotate(-180deg); }
		.advantages-item-desc {
			margin-top: 15px;
			padding-left: 40px;
			line-height: 1.6;
			color: #D0D0D0;
			display: none; }
	.advantages-img {
		position: absolute;
		top: 0;
		right: 0;
		height: 100%;
		width: 51%;
		-o-object-fit: cover;
			 object-fit: cover;
		-webkit-clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
						clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%); }
		.advantages-img-mob {
			display: none; }

/* Partners section */
.partners {
	padding: 100px 0 40px; }
	.partners-slider {
		margin: 0 -10px; }
	.partners-item {
		background-color: #fff;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		border-radius: 5px;
		height: 90px;
		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;
		margin: 0 10px 30px; }

/* Trusted section */
.trusted {
	padding: 70px 0 30px; }
	.trusted-title {
		margin-bottom: 30px; }
	.trusted-desc {
		color: #666;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 40px; }
	.trusted-item {
		background-color: #fff;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		border-radius: 5px;
		height: 90px;
		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;
		margin: 0 10px 30px; }

/* Comparison section */
.comparison {
	padding: 60px 0 70px; }
	.comparison-title {
		margin-bottom: 30px; }
	.comparison-desc {
		color: #666;
		line-height: 1.6;
		text-align: center;
		margin-bottom: 40px; }
	.comparison-table {
		background-color: #fff;
		border-radius: 5px;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		padding: 45px 80px; }
		.comparison-table-top {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			margin-bottom: 7px; }
			.comparison-table-top .comparison-table-column-2 {
				padding-left: 10px;
				font-family: 'Raleway', sans-serif;
				font-weight: 600;
				color: #444; }
			.comparison-table-top .comparison-table-column-3 {
				font-weight: 600;
				font-family: 'Raleway', sans-serif;
				color: #444; }
		.comparison-table-row {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: center;
					-ms-flex-align: center;
							align-items: center;
			border-radius: 5px;
			padding: 10px 20px; }
			.comparison-table-row:nth-of-type(even) {
				background-color: #F7F7F7; }
		.comparison-table-column-1 {
			width: 23.5%;
			color: #444; }
		.comparison-table-column-2 {
			width: 16.3%;
			text-align: center;
			color: #666; }
		.comparison-table-column-3 {
			width: 19.3%;
			text-align: center;
			color: #666; }
		.comparison-table-column-4 {
			width: 40.9%;
			color: #666; }

.scrollbar-inner > .scroll-element .scroll-bar {
	background-color: #FFB72F; }

.scrollbar-inner > .scroll-element .scroll-element_track, .scrollbar-inner > .scroll-element .scroll-bar {
	opacity: 1; }

.scrollbar-inner > .scroll-element:hover .scroll-bar {
	background-color: #FFB72F; }

.scrollbar-inner > .scroll-element .scroll-element_track {
	background-color: #FFE8BD; }

.scroll-bar {
	width: 20% !important; }

/* Calc section */
.calc {
	padding: 70px 0 80px; }
	.calc-title {
		margin-bottom: 30px; }
	.calc-desc {
		line-height: 1.6;
		color: #666;
		text-align: center;
		margin-bottom: 40px; }
	.calc-content {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
				-ms-flex-pack: center;
						justify-content: center; }
	.calc-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
				-ms-flex-align: start;
						align-items: flex-start;
		-webkit-box-pack: justify;
				-ms-flex-pack: justify;
						justify-content: space-between;
		width: 980px; }
	.calc-form {
		width: 680px;
		background-color: #fff;
		border-radius: 5px;
		padding: 50px 80px;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); }
	.calc-item {
		margin-bottom: 40px; }
		.calc-item:last-of-type {
			margin-bottom: 0; }
		.calc-item-title {
			font-size: 22px;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			color: #444;
			margin-bottom: 20px; }
			.calc-item-title span {
				display: block;
				font-size: 16px;
				font-family: 'NunitoSans', sans-serif;
				font-weight: normal; }
		.calc-item-options .radio-label {
			-webkit-box-align: start;
					-ms-flex-align: start;
							align-items: flex-start; }
	.calc-radios {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center; }
		.calc-radios .radio-label {
			margin-right: 50px; }
			.calc-radios .radio-label:last-of-type {
				margin-right: 0; }
	.calc-switch {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center;
		width: 50%;
		margin-bottom: 10px;
		cursor: pointer; }
		.calc-switch .switch {
			-ms-flex-negative: 0;
					flex-shrink: 0; }
		.calc-switch-text {
			margin-left: 20px;
			color: #666;
			cursor: pointer; }
		.calc-switch-wrapper {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: start;
					-ms-flex-align: start;
							align-items: flex-start;
			-ms-flex-wrap: wrap;
					flex-wrap: wrap; }
	.calc-numbers {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center; }
		.calc-numbers .calc-item-title {
			width: 270px;
			margin-bottom: 0;
			margin-right: 50px; }
	.calc-quantity {
		background-color: #FFB72F;
		border-radius: 5px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 80px;
		height: 30px;
		padding: 1px; }
		.calc-quantity-minus {
			width: 23px;
			height: 100%;
			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;
			cursor: pointer; }
		.calc-quantity-plus {
			width: 23px;
			height: 100%;
			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;
			cursor: pointer; }
		.calc-quantity-input {
			background-color: #fff;
			width: 35px;
			height: 100%;
			border: none;
			text-align: center;
			padding: 0;
			margin: 0;
			font: 16px 'NunitoSans', sans-serif;
			color: #666; }
	.calc-slider {
		width: 260px; }
		.calc-slider-value {
			width: 100px;
			height: 30px;
			text-align: center;
			border: 1px solid #FFB72F;
			background-color: #fff;
			border-radius: 5px;
			padding: 0;
			margin: 0;
			margin-left: 40px;
			font: 16px 'NunitoSans', sans-serif;
			color: #444; }
		.calc-slider-wrapper {
			display: -webkit-box;
			display: -ms-flexbox;
			display: flex;
			-webkit-box-align: center;
					-ms-flex-align: center;
							align-items: center; }
	.calc-total {
		width: 280px;
		background-color: #FFE8BD;
		-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
						box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
		border-radius: 5px;
		padding: 30px 35px 40px;
		position: -webkit-sticky;
		position: sticky;
		right: 0;
		top: 80px; }
		.calc-total-item {
			margin-bottom: 30px; }
			.calc-total-item:last-of-type {
				margin-bottom: 0; }
			.calc-total-item-title {
				color: #696969;
				margin-bottom: 5px; }
			.calc-total-item-cost {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex;
				-webkit-box-align: end;
						-ms-flex-align: end;
								align-items: flex-end;
				font-size: 16px;
				font-family: "Raleway", sans-serif;
				font-weight: 600;
				color: #424242; }
				.calc-total-item-cost-value {
					font-size: 48px;
					margin-right: 10px;
					margin-bottom: -5px; }
		.calc-total-btn {
			width: 100%;
			text-align: center;
			padding: 12px;
			border-radius: 5px;
			font-weight: 600;
			letter-spacing: 1px;
			background-color: #FFB72F;
			color: #424242;
			margin-top: 30px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.calc-total-btn:hover {
				background-color: #fff; }

/* Contacts section */
.contacts {
	padding-top: 20px;
	height: 460px;
	position: relative; }
	.contacts-form {
		width: 380px;
		background: -o-radial-gradient(50.07% 50%, 50% 50%, rgba(50, 56, 71, 0.8) 53.82%, rgba(50, 56, 71, 0) 100%), rgba(40, 44, 55, 0.8);
		background: radial-gradient(50% 50% at 50.07% 50%, rgba(50, 56, 71, 0.8) 53.82%, rgba(50, 56, 71, 0) 100%), rgba(40, 44, 55, 0.8);
		border-radius: 5px;
		padding: 40px;
		text-align: center;
		position: relative;
		z-index: 11; }
		.contacts-form-title {
			font-size: 25px;
			font-family: "Raleway", sans-serif;
			font-weight: 600;
			color: #fff;
			margin-bottom: 25px; }
		.contacts-form-input {
			width: 100%;
			background-color: transparent;
			border: none;
			border-bottom: 1px solid #fff;
			font: 600 16px 'NunitoSans', sans-serif;
			padding: 5px 0;
			color: #fff;
			margin-bottom: 30px; }
		.contacts-form ::-webkit-input-placeholder {
			color: #fff; }
		.contacts-form-btn {
			width: 100%;
			padding: 12px;
			border: none;
			font: 600 16px 'NunitoSans', sans-serif;
			letter-spacing: 0.5px;
			border-radius: 5px;
			background-color: #FFB72F;
			cursor: pointer;
			color: #444;
			margin-top: 10px;
			-webkit-transition: .5s;
			-o-transition: .5s;
			transition: .5s; }
			.contacts-form-btn:hover {
				background-color: #fff; }
	.contacts-map {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 460px; }

.contacts-map .ymaps-2-1-79-events-pane,
		.contacts-map .ymaps-2-1-79-ground-pane,
		.contacts-map .ymaps-2-1-79-copyrights-pane,
		.contacts-map .ymaps-2-1-79-controls-pane {
			-webkit-filter: invert(0) hue-rotate(-190deg) grayscale(100%);
							filter: invert(0) hue-rotate(-190deg) grayscale(100%); }
		.contacts-map ymaps.ymaps-2-1-79-image {
			-webkit-filter: invert(0) hue-rotate(0deg) grayscale(0%);
							filter: invert(0) hue-rotate(0deg) grayscale(0%); }

/* Footer */
.footer {
	background: -o-radial-gradient(50.07% 50%, 50% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	background: radial-gradient(50% 50% at 50.07% 50%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
	padding: 40px 0 25px; }
	.footer-wrapper {
		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; }
	.footer-mnu li {
		display: inline-block;
		margin-right: 50px; }
		.footer-mnu li:last-child {
			margin-right: 0; }
	.footer-mnu a {
		font-size: 14px;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.footer-mnu a:hover {
			color: #FFB72F; }
	.footer-contacts {
		text-align: right;
		width: 21.5%; }
	.footer-phone {
		display: block;
		font-size: 18px;
		font-family: "Raleway", sans-serif;
		font-weight: bold;
		color: #FFB72F;
		line-height: 1;
		margin-bottom: 2px;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.footer-phone:hover {
			color: #fff; }
	.footer-email {
		font-size: 14px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.footer-email:hover {
			color: #FFB72F; }
	.footer-copy {
		margin-top: 15px;
		text-align: center;
		font-size: 14px;
		color: #D0D0D0;
		line-height: 1.6; }

/* Popup */
.popup {
	display: none; }

.callback-popup {
	max-width: 420px;
	margin: auto;
	background-color: #fff;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
					box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	padding: 50px 40px;
	position: relative; }
	.callback-popup-title {
		font-size: 36px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		color: #444;
		text-align: center;
		margin-bottom: 40px; }
	.callback-popup-input, .action-form-input, .callback-popup-input2, .action-form-input2 {
		width: 100%;
		border: none;
		border-bottom: 1px solid #DDD;
		padding-bottom: 10px;
		font: 500 16px 'NunitoSans', sans-serif;
		color: #666;
		margin-bottom: 25px; }
	.callback-popup ::-webkit-input-placeholder, .action-form-input::-webkit-input-placeholder {
		color: #666; }
	.callback-popup-text, .action-form-text {
		font-size: 14px;
		color: #666;
		line-height: 1.4;
		margin-bottom: 0px; }
		.callback-popup-text a {
			color: #666;
			text-decoration: underline; 
		}
		.action-form-text a {
			color: #666;
			text-decoration: underline; 
		}

	.callback-popup-btn, .action-form-btn {
		width: 100%;
		background-color: #FFB72F;
		text-align: center;
		padding: 12px;
		border-radius: 5px;
		border: none;
		font: 600 16px 'NunitoSans', sans-serif;
		letter-spacing: 1px;
		cursor: pointer;
		color: #444;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; 
	}
	.callback-popup-btn:hover {
		background-color: #FF223E;
		color: #fff;
	}

	.action-form-btn:hover {
		background-color: #FF223E;
		color: #fff;
	}


.success-popup {
	max-width: 420px;
	margin: auto;
	background-color: #fff;
	padding: 50px 40px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
					box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
	position: relative;
	text-align: center; }
	.success-popup-title {
		font-size: 36px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		color: #444;
		margin-bottom: 40px; }
	.success-popup-desc {
		color: #666;
		margin-bottom: 35px; }
	.success-popup-btn {
		display: block;
		text-align: center;
		padding: 12px;
		background-color: #FFB72F;
		border-radius: 5px;
		font-weight: 600;
		letter-spacing: 1px;
		color: #444;
		-webkit-transition: .5s;
		-o-transition: .5s;
		transition: .5s; }
		.success-popup-btn:hover {
			background-color: #FF223E;
			color: #fff; }

.products-info {
	max-width: 680px;
	margin: auto;
	background-color: #fff;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
					box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
	padding: 80px;
	position: relative; }
	.products-info-title {
		font-size: 42px;
		font-family: "Raleway", sans-serif;
		font-weight: 500;
		color: #444;
		margin-bottom: 35px; }
	.products-info-text {
		color: #666;
		line-height: 1.5;
		margin-bottom: 20px; }
	.products-info-detail-title {
		font-family: "Raleway", sans-serif;
		font-weight: 600;
		font-size: 16px;
		color: #444;
		margin-bottom: 20px; }
	.products-info-detail-items {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
				-ms-flex-align: center;
						align-items: center;
		-ms-flex-wrap: wrap;
				flex-wrap: wrap; }
	.products-info-detail-item {
		padding-left: 15px;
		color: #666;
		position: relative;
		margin-right: 20px;
		margin-bottom: 15px; }
		.products-info-detail-item:last-of-type {
			margin-right: 0; }
		.products-info-detail-item:before {
			content: '';
			width: 6px;
			height: 6px;
			background-color: #FFB72F;
			border-radius: 50%;
			position: absolute;
			top: 50%;
			-webkit-transform: translateY(-50%);
					-ms-transform: translateY(-50%);
							transform: translateY(-50%);
			left: 0; }

.mfp-close-btn-in .mfp-close {
	font-size: 0;
	width: 17px;
	height: 17px;
	background: url("../img/popup-close.svg") no-repeat center;
	opacity: 1;
	top: 20px;
	right: 20px; }

.mfp-bg {
	opacity: 1;
	background: rgba(25, 34, 38, 0.3); }

.my-mfp-zoom-in .zoom-anim-dialog {
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	-webkit-transform: scale(0.8);
			-ms-transform: scale(0.8);
					transform: scale(0.8); }

.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: scale(1);
			-ms-transform: scale(1);
					transform: scale(1); }

.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
	-webkit-transform: scale(0.8);
			-ms-transform: scale(0.8);
					transform: scale(0.8);
	opacity: 0; }

/* Media(Adaptive) */
@media only screen and (max-width: 1350px) {
	.arrow-prev {
		left: 20px; }
	.arrow-next {
		right: 20px; } }

@media only screen and (max-width: 1250px) {
	.c-container {
		width: 100%;
		padding: 0 3%; }
	.header-mnu {
		display: none; }
	.toggle-nav {
		display: block; }
	.main-content {
		padding-top: 50px; }
	.tariffs-item {
		padding: 30px 20px;
		padding-bottom: 95px; }
		.tariffs-item-security {
			display: block; }
			.tariffs-item-security-title {
				margin-bottom: 5px; }
		.tariffs-item-calc-top {
			-ms-flex-wrap: wrap;
					flex-wrap: wrap;
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center; }
		.tariffs-item-calc-title {
			width: 100%;
			margin-bottom: 5px; }
	.advantages-img {
		width: 40%; }
	.partners {
		padding-top: 60px; }
		.partners .slick-dots {
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center; }
	.trusted .slick-dots {
		-webkit-box-pack: center;
				-ms-flex-pack: center;
						justify-content: center; }
	.comparison {
		padding-bottom: 20px; }
	.calc {
		padding-top: 60px; }
		.calc-form {
			width: 69%; } }

@media only screen and (max-width: 1024px) {

	.banner-wrapper {
		height: auto;
		padding: 0px 0 20px 0;
	}

	.banner {
		flex-wrap: wrap;
		height: auto;
	}

	.banner-btn-block {
		width: 100%;
		margin-top: 25px;
	}

	.banner-btn-wrapper {
		width: 100%;
	}

	.banner-close {
		right: 10px;
    	top: 10px;
	}

	.banner-light-block {
		height: 80px;
	}

	.banner-light {
		background-position: top;
		box-sizing: border-box;
	}
	


	.main-content {
		padding-bottom: 100px; }
	.main-info {
		width: 55%; }
	.main-form {
		width: 44%; }
		.main-form-stock {
			width: 100px; }
	.main-title {
		font-size: 46px; }
	.s-title {
		font-size: 38px;
		margin-bottom: 50px; }
	.tariffs {
		padding: 50px 0; }
		.tariffs-item {
			width: 48%;
			margin-bottom: 20px; }
			.tariffs-item-security {
				display: -webkit-box;
				display: -ms-flexbox;
				display: flex; }
			.tariffs-item-calc-top {
				-ms-flex-wrap: nowrap;
						flex-wrap: nowrap; }
			.tariffs-item-wrapper {
				-ms-flex-wrap: wrap;
						flex-wrap: wrap; }
	.products {
		padding: 20px 0 50px; }
		.products-item {
			width: 48%;
			margin-bottom: 20px; }
			.products-item-wrapper {
				-ms-flex-wrap: wrap;
						flex-wrap: wrap; }
	.products-more {
		padding: 20px 0 50px; }
	.request-img {
		width: 40%; }
	.trusted-title {
		margin-bottom: 30px; }
	.trusted-item {
		margin-bottom: 10px; }
	.comparison-title br {
		display: none; }
	.comparison-desc br {
		display: none; }
	.comparison-table {
		width: 1020px;
		padding: 0;
		padding-top: 20px;
		padding-bottom: 10px; }
		.comparison-table-wrapper {
			overflow-y: scroll; }
	.calc-wrapper {
		display: block;
		width: 100%; }
	.calc-form {
		width: 100%; }
	.calc-title {
		margin-bottom: 30px; }
	.calc-total {
		width: 100%;
		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; }
		.calc-total-item {
			width: 33%;
			margin-bottom: 0; }
		.calc-total-btn {
			width: 33%; }
	.footer-mnu li {
		margin-right: 10px; } }

@media only screen and (max-width: 768px) {
	.header {
		background: -o-linear-gradient(6.22deg, #192226 17.22%, #2E3C4B 99.53%);
		background: linear-gradient(83.78deg, #192226 17.22%, #2E3C4B 99.53%); }
		.header-email {
			display: none; }
		.header-contacts {
			margin-right: 0; }
		.header-callback {
			display: none; }
		.header-phone {
			font-weight: 600;
	}

	.banner-btn-block {
		width: 178px;
		margin-top: 0;
	}

	.timer__days-num::after, .timer__days-num-fix::after {
		font-size: 25px;
    	line-height: 29px;
	}


	/* .banner-wrapper {
		position: relative;
		height: auto;
		padding: 0 0 26px;
	}

	.banner {
		flex-direction: column;
		height: auto;
		gap: 0;
		align-items: flex-start;
	}

	.banner-block {
		width: 100%;
	}

	.banner-close {
		right: 6px;
		top: 6px;
		width: 12px;
		height: 12px;
	}

	.banner-text {
		font-weight: 500;
		font-size: 21px;
		line-height: 25px;
	}

	.banner-text-first {
		margin-top: -35px;
	}

	.banner-light-block {
		width: 100%;
		flex-wrap: wrap;
		font-size: 21px;
	}

	.banner-light {
		margin-left: 6px;
		margin-right: 0;
		width: 108px;
		height: 118px;
		background-position: 0 -55px;
		background-size: 100% 165%;
		padding-bottom: 30px;
		box-sizing: border-box;
		font-weight: 800;
	}

	.banner-text-second {
		margin-top: -78px;
	}

	.banner-num-second {
		margin-top: -80px;
	}

	.banner-num {
		font-size: 21px;
		line-height: 25px;
	}

	.banner-btn-wrapper {
		width: 100%;
		margin-top: 17px;
	}

	.timer__items-fix {
		font-size: 21px;
		line-height: 25px;
		width: 105px;
	} */
	
	.mnu-wrapper {
		top: 71px;
	}
	.main {
		background: -o-radial-gradient(50.07% 51.55%, 50% 38.31%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
		background: radial-gradient(50% 38.31% at 50.07% 51.55%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37; }
		.main-content {
			display: block;
			padding-top: 60px;
			padding-bottom: 0; }
		.main-wrapper {
			position: relative; }
			.main-wrapper .c-container {
				padding: 0; }
		.main-info {
			width: 100%;
			margin-bottom: 30px;
			padding: 0 3%; }
		.main-form {
			width: 100%;
			padding: 60px 3% 40px;
			-webkit-clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
							clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
			background: -o-radial-gradient(50.07% 51.55%, 50% 38.31%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37;
			background: radial-gradient(50% 38.31% at 50.07% 51.55%, #323847 53.82%, rgba(50, 56, 71, 0) 100%), #282C37; }
			.main-form-btn {
				margin-top: 5px;
			}
			.main-form-stock {
				display: none; }
			.main-form-stock-mob {
				display: block;
				position: absolute;
				top: 85px;
				right: 0;
			}
		.main-img {
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%; }
	.mnu-callback {
		display: block; }
	.mnu-email {
		display: block; }
	.s-title {
		font-size: 34px; }
	.tariffs-item {
		width: 80%; }
		.tariffs-item-wrapper {
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center; }
	.products-item {
		width: 80%; }
		.products-item-wrapper {
			-webkit-box-pack: center;
					-ms-flex-pack: center;
							justify-content: center; }
	.products-more .c-container {
		padding-right: 0; }
	.products-more-title {
		padding-right: 3%; }
	.products-more-slider {
		margin: 0; }
		.products-more-slider .slick-list {
			padding-right: 25%; }
	.products-more-btn {
		margin-top: 30px; }
		.products-more-btn-wrapper {
			padding-right: 3%; }
	.slick-dots {
		padding-right: 3%;
		-webkit-box-pack: center;
				-ms-flex-pack: center;
						justify-content: center; }
	.request {
		padding-top: 0;
		padding-bottom: 35px; }
		.request-img {
			width: 100%;
			position: static;
			-webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
							clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%); }
		.request-form {
			width: 100%;
			padding-top: 30px; }
			.request-form-title {
				font-size: 36px; }
	.advantages {
		padding-top: 0;
		padding-bottom: 60px; }
		.advantages-img {
			display: none; }
			.advantages-img-mob {
				display: block;
				-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
								clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
				width: 100%; }
		.advantages-info {
			width: 100%;
			padding-top: 20px; }
		.advantages-title {
			font-size: 36px; }
		.advantages-item {
			width: 100%; }
	.partners-item {
		margin-bottom: 10px;
		padding: 0 10px; }
	.comparison-title {
		font-size: 30px;
		margin-bottom: 30px; }
	.calc-form {
		padding: 30px 20px; }
	.calc-total {
		-webkit-box-align: start;
				-ms-flex-align: start;
						align-items: flex-start;
		-ms-flex-wrap: wrap;
				flex-wrap: wrap; }
		.calc-total-item {
			width: 45%; }
			.calc-total-item-cost-value {
				font-size: 40px; }
		.calc-total-btn {
			width: 100%; }
	.contacts {
		padding: 0;
		height: auto; }
		.contacts .c-container {
			padding: 0; }
		.contacts-form {
			width: 100%; }
		.contacts-map {
			height: 300px;
			position: static;
		}
	.footer-mnu {
		display: none; }
	.products-info {
		padding: 50px 30px; }
		.products-info-title {
			font-size: 36px; } }

@media only screen and (max-width: 479px) {
	.footer-inf {
		margin-top: 0;
	}
	.c-container {
		padding: 0 20px; }
	.header-logo {
		width: 90px; }
	.header-phone {
		font-size: 16px;
	}

	.banner-wrapper {
		position: relative;
		height: auto;
		padding: 0 0 26px;
	}

	.banner {
		flex-direction: column;
		height: auto;
		gap: 0;
		align-items: flex-start;
		flex-wrap: nowrap;
	}

	.banner-btn-block {
		width: 100%;
	}

	.banner-close {
		right: 6px;
		top: 6px;
		width: 12px;
		height: 12px;
	}

	.banner-text {
		font-weight: 500;
		font-size: 21px;
		line-height: 25px;
	}

	.banner-text-first {
		margin-top: -35px;
	}

	.banner-light-block {
		width: 100%;
		flex-wrap: wrap;
		font-size: 21px;
		height: auto;
	}

	.banner-light {
		margin-left: 6px;
		margin-right: 5%;
		width: 108px;
		height: 118px;
		background-position: 0 -55px;
		background-size: 100% 165%;
		padding-bottom: 30px;
		box-sizing: border-box;
		font-weight: 800;
	}

	.banner-text-second {
		margin-top: -78px;
	}

	.banner-num-second {
		margin-top: -80px;
	}

	.banner-num {
		font-size: 21px;
		line-height: 25px;
	}

	.banner-btn-wrapper {
		width: 100%;
		margin-top: 17px;
	}

	.timer__items, .timer__items-fix {
		font-size: 21px;
		line-height: 25px;
		width: 105px;
		margin-left: 5px;
		width: 125px;
	}

	.action-banner {
		width: 100%;
		padding: 54px 37px 30px;
	}

	.action-banner-text {
		font-size: 20px;
		line-height: 21px;
	}

	.action-banner-timer-block {
		font-size: 23px;
		line-height: 26px;
	}

	.action-banner-subtitle {
		font-size: 23px;
		line-height: 26px;
	}

	.timer__days-num-action::after {
		font-size: 20px;
		line-height: 20px;
		margin-left: 8px;
		margin-right: 10px;
	}

	.action-banner-timer-block {
		font-size: 23px;
		line-height: 26px;
	}

	.timer__item-action:not(:last-child)::after {
		right: -10px;
	}

	.timer__item-action {
		margin-left: 5px;
		margin-right: 10px;
	}

	.timer__item:not(:last-child)::after, .timer__item-fix:not(:last-child)::after {
		content: ':';
		position: absolute;
		right: -10px;
	}


	.mnu-wrapper {
		top: 54px;
	}
	.main-title {
		font-size: 36px;
		margin-bottom: 30px; }
	.main-text {
		margin-bottom: 15px;
		font-size: 14px; }
		.main-text-span {
			font-size: 18px; }
		.main-text-span span {
			font-size: 14px;
		}
	.main-img {
		height: 55%;
		-o-object-fit: cover;
			 object-fit: cover; }
	.main-info {
		padding: 0 20px; }
	.main-form {
		padding: 60px 20px 40px; }
		.main-form-title {
			font-size: 22px;
			width: 70%; }
		.main-form-cost-old {
			font-size: 18px; }
		.main-form-btn {
			width: 100%;
			text-align: center; }
	.s-title {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 30px; }
	.tariffs {
		padding: 60px 0 20px; }
		.tariffs-item {
			width: 100%; }
			.tariffs-item-cost-value {
				font-size: 44px; }
			.tariffs-item-btn {
				background-color: #FFB72F;
				width: 100%; }
				.tariffs-item-btn-wrapper {
					padding: 0 20px; }
	.products {
		padding-bottom: 20px; }
		.products-item {
			width: 100%;
			padding: 30px 20px;
			padding-bottom: 105px; }
			.products-item-name {
				font-size: 20px; }
			.products-item-desc {
				font-size: 14px; }
			.products-item-cost-value {
				font-size: 44px; }
			.products-item-btn {
				background-color: #FFB72F; }
				.products-item-btn-wrapper {
					padding: 0 20px; }
	.products-more {
		padding: 20px 0 60px; }
		.products-more-title {
			padding-right: 20px; }
		.products-more-item {
			padding-bottom: 70px; }
			.products-more-item-img {
				height: 190px; }
			.products-more-item-name {
				margin-top: 10px;
				font-size: 20px;
				padding: 0 20px;
				margin-bottom: 15px; }
		.products-more-btn {
			background-color: #FFB72F;
			padding: 12px 20px; }
			.products-more-btn-wrapper {
				padding-right: 20px; }
	.request-form-title {
		font-size: 26px;
		width: 80%;
		line-height: 1.4;
		margin-bottom: 25px; }
	.request-form-desc {
		font-size: 14px;
		margin-bottom: 25px; }
	.request-form-text {
		margin-top: 0;
		margin-bottom: 0px; }
	.request-form-btn {
		width: 100%;
		text-align: center; }
	.advantages-title {
		font-size: 26px;
		margin-bottom: 25px; }
	.advantages-desc {
		font-size: 14px;
		margin-bottom: 45px; }
	.advantages-item-title {
		font-size: 14px;
		padding-right: 20px; }
		.advantages-item-title img {
			width: 18px;
			margin-right: 15px; }
	.advantages-item-desc {
		font-size: 14px;
		padding-left: 35px; }
	.trusted {
		padding-top: 60px; }
		.trusted-title {
			margin-bottom: 20px; }
		.trusted-desc {
			font-size: 14px;
			margin-bottom: 20px; }
		.trusted-item {
			padding: 0 10px; }
	.comparison-title {
		font-size: 26px;
		margin-bottom: 20px; }
	.comparison-desc {
		font-size: 14px;
		margin-bottom: 20px; }
	.calc {
		padding-bottom: 60px; }
		.calc-title {
			font-size: 26px;
			margin-bottom: 20px; }
		.calc-desc {
			font-size: 14px;
			margin-bottom: 10px; }
		.calc-radios .radio-label {
			margin-right: 30px; }
		.calc-item {
			margin-bottom: 30px; }
			.calc-item-title {
				font-size: 20px; }
				.calc-item-title span {
					font-size: 14px; }
			.calc-item-options .calc-radios {
				display: block; }
			.calc-item-options .radio-label {
				margin-right: 0;
				margin-bottom: 20px; }
				.calc-item-options .radio-label:last-of-type {
					margin-bottom: 0; }
			.calc-item-options-2 .calc-radios {
				display: block; }
			.calc-item-options-2 .radio-label {
				margin-right: 0;
				margin-bottom: 20px; }
				.calc-item-options-2 .radio-label:last-of-type {
					margin-bottom: 0; }
		.calc-switch {
			width: 100%; }
		.calc-numbers {
			display: block; }
			.calc-numbers .calc-item-title {
				width: 100%;
				margin-right: 0;
				margin-bottom: 20px; }
		.calc-slider-value {
			margin-left: 10px; }
		.calc .radio-text {
			font-size: 14px; }
		.calc-total {
			display: block;
			padding: 30px 20px; }
			.calc-total-item {
				width: 100%;
				margin-bottom: 20px;
				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; }
				.calc-total-item-title {
					width: 100px;
					font-size: 14px;
					margin-bottom: 0; }
	.contacts-form {
		padding: 35px 20px; }
		.contacts-form-title {
			font-size: 26px;
			font-weight: 500;
			margin-bottom: 25px; }
	.footer {
		padding: 22px 0; }
		.footer-phone {
			font-size: 16px; }
		.footer-copy {
			margin-top: 25px; }
			.footer-contacts {
				width: 45%;
			}
	.callback-popup {
		padding: 50px 30px 30px; }
		.callback-popup-title {
			font-size: 26px; }
	.success-popup {
		padding: 50px 30px 30px; }
		.success-popup-title {
			font-size: 26px;
			margin-bottom: 20px; }
		.success-popup-desc {
			margin-bottom: 20px; }
	.products-info-title {
		font-size: 26px;
		margin-bottom: 20px; }
	.products-info-text {
		font-size: 14px; } 
	}

@media only screen and (max-width: 375px) {

	.banner-light {
		margin-right: 0;
	}

	.toggle-nav {
		margin-left: 20px; }
	.tariffs-item-security {
		display: block; }
	.tariffs-item-calc-top {
		-ms-flex-wrap: wrap;
				flex-wrap: wrap; }
	.calc-radios {
		display: block; }
		.calc-radios .radio-label {
			margin-bottom: 10px; }
			.calc-radios .radio-label:last-of-type {
				margin-bottom: 0; }
	.calc-total-item {
		display: block; }
		.calc-total-item-title {
			width: auto;
			margin-bottom: 5px; }
	.footer-wrapper {
		-ms-flex-wrap: wrap;
				flex-wrap: wrap;
		-webkit-box-pack: center;
				-ms-flex-pack: center;
						justify-content: center; }
	.footer-contacts {
		text-align: center;
		width: 100%;
		margin-top: 25px;
	} 
}