@font-face {
    font-family: Nunito;
    src: url(../assets/fonts/Nunito/Nunito-Regular.ttf);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: Nunito;
    src: url(../assets/fonts/Nunito/Nunito-SemiBold.ttf);
    font-style: normal;
    font-weight: 600;
}

@font-face {
    font-family: Raleway;
    src: url(../assets/fonts/Raleway/Raleway-Regular.ttf);
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: Raleway;
    src: url(../assets/fonts/Raleway/Raleway-SemiBold.ttf);
    font-style: normal;
    font-weight: 600;
}

:root {
    --colorGrey: #F5F8FA;
    --colorDarkGrey: #696969;
    --colorLightGrey: #DEE5EB;
    --colorOrange: #FD591E;
    --colorRed: #FD3913;
    --colorLightOrange: #FED5C7;
    --colorBlack: #424242;
    --colorWhite: #FFFFFF;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--colorBlack);
    box-sizing: border-box;
    padding: 0;
    margin: 0 auto;
}

h1, h2, h3, p, a, ul, li, button, img {
    margin: 0;
    padding: 0;
}

h1, h2 {
    font-family: Raleway;
    font-weight: 400;
}

h3 {
    font-family: Raleway;
    font-weight: 600; 
}

p, a, ul {
    font-family: Nunito;
    font-weight: 400;
}

a, a:visited {
    text-decoration: none;
}

input:focus {
    outline: none;
}

.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: 99;
}
#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;
}

button {
    border: 1px solid var(--colorOrange);
    font-family: Nunito;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    line-height: 22px;
    height: 40px;
    border-radius: 10px;
    transition: 0.5s;
}

.container {
    width: 1440px;
    margin: 0 auto;
    padding: 0 130px;
    box-sizing: border-box;
}




.price-block .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0px 120px 0px;
}

.price-table-block {
    background: #FFFFFF;
    border: 1px solid #DEE5EB;
    border-radius: 10px;
    padding: 32px 50px 29px 50px;
    box-sizing: border-box;
    overflow: auto;
}

.price-table {
    width: 100%;
    border: none;
    border-collapse: collapse;
}

.price-table tr {
    min-height: 40px;
    box-sizing: border-box;
    border-bottom: 1px solid #DEE5EB;
}

.price-table tr:nth-child(1) {
    border-bottom: 1px solid #DEE5EB;
}

.price-table tr:last-child {
    border-bottom: none;
}

.price-table tr td {
    font-family: Nunito;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    padding-top: 10px;
    padding-bottom: 10px;
    box-sizing: border-box;
}

.price-table tr td:first-child {
    color: #424242;
    border-right: 1px solid #DEE5EB;
    /* border-bottom: 1px solid #DEE5EB; */
    padding-left: 50px;
    width: 750px;
}

.price-table tr td:last-child {
    /* border-bottom: 1px solid #DEE5EB; */
    padding-left: 50px;
    padding-right: 30px;
    color: #696969;
}
.price-equip-title {
    margin-bottom: 70px;
}





.btn-main {
    background: var(--colorWhite);
    color: var(--colorOrange);
}

.btn-main:hover {
    background: var(--colorRed);
    color: var(--colorWhite);
}

.btn-orange {
    background: var(--colorOrange);
    color: var(--colorWhite);
}

.btn-orange:hover {
    background: var(--colorRed);
    color: var(--colorWhite);
}

.section-title {
    font-size: 48px;
    line-height: 56px;
    color: var(--colorBlack)
}

.error {
    text-align: center;
    font-family: Nunito;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--colorOrange);
    height: 30px;
}


.modal-contact-block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    /* perspective: 500px; */
}

.modal-contact-window {
    position: relative;
    border-radius: 10px;
    background-color: var(--colorWhite);
    padding: 68px 41px 40px 41px;
    /* transform: rotateX(0deg); */
    animation-name: modal;
    animation-timing-function: cubic-bezier(0.6,0,0.4,1);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.modal-contact-close {
    position: absolute;
    top: 30px;
    right: 30px;
    fill: var(--colorBlack);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-contact-close:hover {
    fill: var(--colorOrange);
}

.modal-contact-text-block {
    width: 338px;
}

.modal-contact-title {
    text-align: center;
    font-family: Raleway;
    font-weight: 400;
    font-size: 34px;
    line-height: 40px;
    color: var(--colorBlack);
    margin-bottom: 50px;
}

.modal-contact-form input, .action-banner-form input {
    border: none;
    border-bottom: 1px solid var(--colorLightGrey);
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    color: var(--colorBlack);
    margin-bottom: 30px;
    box-sizing: border-box;
}

.modal-contact-form input:nth-child(2), .action-banner-form input:nth-child(2) {
    margin-bottom: 0;
}

/* Стили для кнопки в правом нижнем углу */
.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;
}


.modal-contact-form input:nth-child(2), .action-banner-form input:nth-child(2) {
    margin-bottom: 0;
}

input[type="checkbox"]:checked,
input[type="checkbox"]:not(:checked) {
   /* position: absolute;
    left: -9999px;*/
}

input[type="checkbox"]:checked + label,
input[type="checkbox"]:not(:checked) + label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    line-height: 20px;
    cursor: pointer;
}

input[type="checkbox"]:checked + label:before,
input[type="checkbox"]:not(:checked) + label:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 3px;
    width: 15px;
    height: 15px;
    border: 1.4px solid var(--colorOrange);
    border-radius: 5px;
    background-color: var(--colorWhite);
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after {
    content: "";
    position: absolute;
}

input[type="checkbox"]:checked + label:after, 
input[type="checkbox"]:not(:checked) + label:after {
    left: 3px;
    top: 6px;
    width: 8px;
    height: 4px;
    border-radius: 2px;
    border-left: 3px solid var(--colorOrange);
    border-bottom: 3px solid var(--colorOrange);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

input[type="checkbox"]:not(:checked) + label:after {
    display: none;
}

input[type="checkbox"]:checked + label:after {
    display: block;
}

.contact-checkbox-label {
    font-family: Nunito;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--colorBlack);
}

.modal-contact-btn,
.modal-contact-back-btn {
    width: 338px;
    margin-top: 30px;
}

.form-policy-text {
    color: var(--colorDarkGrey);
}

.form-policy-link {
    text-decoration: underline;
    color: var(--colorDarkGrey);
}

.form-policy-link:hover {
    color: var(--colorOrange);
}

.action-bottom-inf {
    font-size: 12px;
    line-height: 16px;
    color: var(--colorDarkGrey);
    margin-top: 20px;
}

.action-banner-btn {
    width: 100%;
}

.modal-equipment-block {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-equipment-window {
    position: relative;
    border-radius: 10px;
    background-color: var(--colorWhite);
    padding: 80px 100px 94px 100px;
    animation-name: modal;
    animation-timing-function: cubic-bezier(0.6,0,0.4,1);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.modal-equipment-close {
    position: absolute;
    top: 30px;
    right: 30px;
    fill: var(--colorBlack);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.modal-equipment-close:hover {
    fill: var(--colorOrange);
}

.modal-equipment-items-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-equipment-text-block {
    width: 480px;
    margin-right: 20px;
}

.modal-equipment-title {
    font-family: Raleway;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px;
    color: var(--colorBlack);
    margin-bottom: 30px;
}

.modal-equipment-text {
    font-family: Nunito;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
    margin-bottom: 22px;
    width: 480px;
}

.modal-equipment-subtitle {
    font-family: Raleway;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
    color: var(--colorBlack);
    margin-bottom: 20px;
}

.modal-equipment-items-block .section-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 10px;
    width: 480px;
}

.modal-equipment-items-block .section-list .section-list-item {
    padding: 0 0 0 25px;
    min-width: 179px;
}

.modal-equipment-img-block {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 480px;
}

.modal-equipment-img-block-mob {
    display: none;
}

.modal-equipment-img-window {
    /* background-image: url(../assets/img/equipment/ajax_1.jpg); */
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0 0;
    width: 100%;
    height: 260px;
    border-radius: 10px;
}

.modal-equipment-img-slider {
    display: flex;
    align-items: center;
    gap: 20px;
}

.modal-equipment-img-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    cursor: pointer;
    filter: brightness(0.5);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    height: 90px;
    background: var(--colorWhite);
    padding-top: 24px;
    box-sizing: border-box;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.logo-block {
    width: 112px;
}

.logo-link {
    display: block;
}

.logo-img {
    display: block;
    width: 100%;
}

.menu-btn-block {
    display: none;
    padding: 0;
    width: 25px;
    height: 25px;
}

.hamburger .line{
    width: 100%;
    height: 2px;
    display: block;
    margin: 5px auto;
    border-radius: 1px;
    background-color: var(--colorOrange);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover{
    cursor: pointer;
}

#hamburger-6.is-active{
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition-delay: 0.6s;
    -o-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
  
#hamburger-6.is-active .line:nth-child(2){
    width: 0px;
}
  
#hamburger-6.is-active .line:nth-child(1),
#hamburger-6.is-active .line:nth-child(3){
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
  
#hamburger-6.is-active .line:nth-child(1){
    -webkit-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    transform: translateY(1px);
}
  
#hamburger-6.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
}

.menu-block {
    width: 481px;
    margin-left: 20px;
}

.menu-list {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.menu-item-link {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: var(--colorBlack);
}

.menu-item-link:hover {
    color: var(--colorOrange);
}

.nav-btn-mob {
    display: none;
}

.call-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 382px;
}

.call-number {
    display: block;
    font-size: 18px;
    line-height: 25px;
    color: var(--colorOrange);
}

.call-btn {
    width: 180px;
}

.banner-wrapper, .banner-wrapper-fix {
	position: relative;
	background: var(--colorLightOrange);
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
}

.banner-wrapper-fix {
    display:none;
	margin-top: 15px;
}

.banner, .banner-fix {
	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: var(--colorOrange);
	box-sizing: border-box;
    height: 80px;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
}

.banner-num, .banner-num-fix {
	font-weight: 600;
	font-size: 28px;
}

.banner-close, .banner-close-fix {
	position: absolute;
	right: 20px;
	cursor: pointer;
	opacity: 0.5;
	transition: .5s;
	width: 18px;
	height: 18px;
}

.banner-close:hover, .banner-close-fix:hover {
	opacity: 1;
}

.banner-light-block, .banner-light-block-fix {
	display: flex;
	align-items: center;
	height: 100%;
}

.banner-count-block, .banner-count-block-fix {
	display: flex;
	align-items: center;
}

.banner-light, .banner-light-fix {
    margin-left: 10px;
    margin-right: 10px;
}

.banner-btn, .banner-btn-fix {
    border: 1px solid var(--colorOrange);
    font-family: Nunito;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    line-height: 22px;
    height: 40px;
    border-radius: 10px;
    transition: 0.5s;
    width: 180px;
    height: 40px;
    display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.timer__items, .timer__items-fix {
	display: flex;
    width: 175px;
    color: var(--colorOrange);
    font-weight: 600;
    font-size: 28px;
}

.timer__items-action {
	display: flex;
	width: 175px;
	color: var(--colorOrange);
}

.timer__item, .timer__item-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;
}

.timer__days-num::after, .timer__days-num-fix::after {
	content: attr(data-title);
    margin-left: 10px;
    font-size: 25px;
    line-height: 29px;
}

.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;
}

.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;
    -webkit-font-feature-settings: "lnum";
    -moz-font-feature-settings: "lnum";
    font-feature-settings: "lnum";
    border-radius: 10px;
    box-sizing: border-box;
}

.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: flex-end;
	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;
}

.banner-modal-reply {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-banner-text {
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
}

.main {
    padding-top: 90px;
    box-sizing: border-box;
}

.hero {
    position: relative;
    width: 100%;
    padding: 117px 0;
    box-sizing: border-box;
    background-image: url(../assets/img/hero.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-background {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(84.22deg, rgba(3, 81, 118, 0.95) 19.19%, rgba(58, 138, 172, 0.5) 100%);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 28px;
}

.hero-text-block {
    width: 60%;
}

.hero-title, .hero-benefits-block , .hero-btn {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 54px;
    line-height: 63px;
    color: var(--colorWhite);
    width: 85%;
    margin-bottom: 50px;
}

.hero-benefits-block {
    display: flex;
    /* width: 70%; */
    /* height: 51px; */
    margin-bottom: 52px;
}

.hero-benefits-item {
    font-family: Nunito;
    font-size: 16px;
    line-height: 24px;
    color: var(--colorWhite);
    box-sizing: border-box;

}

.hero-benefits-item:nth-child(1) {
    padding-right: 24px;
    width: 166px;
}

.hero-benefits-item:nth-child(2) {
    padding: 0 24px;
    width: 355px;
    border-left: 2px solid var(--colorWhite);
    border-right: 2px solid var(--colorWhite);
}

.hero-benefits-item:nth-child(3) {
    padding-left: 25px;
    width: 183px;
}

.hero-benefits-text {
    font-weight: 600;
    background: var(--colorWhite);
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 20px;
    line-height: 28px;
    color: var(--colorOrange);
    height: 24px;
    padding: 0 7px;
}

.hero-btn {
    width: 190px;
}

.hero-form {
    position: relative;
    z-index: 2;
    background: var(--colorWhite);
    padding: 27px 81px 37px 39px;
    box-sizing: border-box;
    position: relative;
    width: 380px;
    height: fit-content;
    border-radius: 10px;
}

.hero-form-stock {
    position: absolute;
    top: -6px;
    right: -8px;
}

.hero-form-title {
    color: var(--colorBlack);
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 21px;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.hero-form-cost-old {
    text-decoration: line-through;
    color: var(--colorBlack);
    font-size: 25px;
    line-height: 32px;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.hero-form-cost {
    color: var(--colorOrange);
    font-size: 30px;
    line-height: 39px;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.hero-form-btn {
    margin-top: 25px;
}


/* .banner {
    position: relative;
    background: var(--colorLightOrange);
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.banner-block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.banner-item:nth-child(1) {
    font-family: Raleway;
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;
    color: var(--colorOrange);
    margin-right: 40px;
}

.banner-item:nth-child(2) {
    width: 132px;
}

.timer {
    display: flex;
    align-items: center;
    font-family: Raleway;
    font-weight: 600;
    font-size: 28px;
    line-height: 33px;
    color: var(--colorBlack);
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.timer-item {
    position: relative;
}

.timer-item:not(:last-child) {
    margin-right: 16px;
}

.timer-item:not(:last-child)::after {
    content: ':';
    position: absolute;
    right: -12px;
}

.banner-item:nth-child(3) {
    margin-right: 28px;
    width: 105px;
    position: relative;
}
.banner-item:nth-child(3) > img {
    position: absolute;
    top: -51px;
    width: 105px;
    height: 105px;
}

.banner-item:nth-child(3) > img {
    display: block;
}

.banner-item:nth-child(4), .banner-item:nth-child(6) {
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorBlack);
    text-align: center;
}

.banner-item:nth-child(4) {
    width: 102px;
}

.banner-item:nth-child(6) {
    width: 120px;
}

.banner-item:nth-child(5) {
    margin: 0 22px;
}

.banner-plus {
    width: 18px;
    height: 18px;
    fill: var(--colorBlack);
    transform: rotate(45deg);
}

.banner-item:nth-child(7) {
    margin-left: 68px;
}

.banner-btn {
    width: 233px;
}

.banner-close {
    position: absolute;
    top: 31px;
    right: 29px;
    width: 18px;
    height: 18px;
    fill: var(--colorBlack);
    cursor: pointer;
}

.banner-close:hover {
    fill: var(--colorOrange);
} */

.price {
    text-align: center;
    padding: 100px 0 120px 0;
}

#price {
    text-align: center;
    padding: 100px 0 0 0;
}

.price-title {
    margin-bottom: 69px;
}

.price-items-block {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
    width: 100%;
}

.price-item-prices {
    background: var(--colorGrey);
    border: 1px solid var(--colorLightGrey);
    border-radius: 10px;
    text-align: center;
    width: 280px;
    height: 233px;
    padding: 31px 0 30px 0;
    box-sizing: border-box;
    cursor: pointer;
}

.price-item-prices:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.price-item-prices:hover .price-item-btn {
    background: var(--colorRed);
    color: var(--colorWhite);
}

.price-item-title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 20px;
}

.price-item-number-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.price-item-number {
    font-family: Raleway;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    color: var(--colorBlack);
    margin-right: 12px;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.price-number-text {
    border: none;
    border-collapse: collapse;
    font-family: Raleway;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: var(--colorBlack);
}

tr:nth-child(1) {
    border-bottom: 1px solid var(--colorBlack);
    box-sizing: border-box;
}

.price-item-btn {
    width: 190px;
}

.price-item:nth-child(4) {
    width: 279px;
}

.section-list {
    text-align: left;
    list-style-type: none;
    font-family: Nunito;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
}

.section-list-item {
    position: relative;
    padding: 0 0 14px 25px;
}

.section-list-item::before {
    padding: 0;
    content: "";
    width: 6px;
    height: 6px;
    background: var(--colorOrange);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 5px;
}

.equipment {
    text-align: center;
    background: var(--colorGrey);
    padding: 98px 0 120px 0;
    box-sizing: border-box;
}

.equipment-title {
    margin-bottom: 69px;
}

.equipment-items-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.equipment-item {
    position: relative;
    text-align: center;
    background: var(--colorWhite);
    padding: 38px 30px 30px 30px;
    border: 1px solid var(--colorLightGrey);
    border-radius: 10px;
    box-sizing: border-box;
    width: 380px;
    height: 526px;
}

.equipment-item:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.equipment-info {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    fill: var(--colorOrange);
    cursor: pointer;
}

.equipment-info:hover {
    border-radius: 50%;
    fill: var(--colorWhite);
    background-color: var(--colorOrange);
}

.equipment-item-img {
    display: block;
    margin: 0 auto;
    margin-bottom: 27px;
    height: 210px;
}

.equipment-item-title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 15px;
}

.equipment-item-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 15px;
    color: var(--colorDarkGrey);
}

.equipment-item-price {
    display: inline;
    font-family: Raleway;
    font-weight: 600;
    font-size: 48px;
    line-height: 56px;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.equipment-item-currency {
    display: inline;
    font-family: Raleway;
    font-weight: 600;
    font-size: 16px;
    line-height: 19px;
}

.equipment-btn {
    margin-top: 25px;
    width: 280px;
}

.benefits-icons {
    padding: 120px 0;
    box-sizing: border-box;
}

.benefits-items-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.benefits-item {
    text-align: center;
    background: var(--colorGrey);
    border: 1px solid var(--colorLightGrey);
    border-radius: 10px;
    width: 380px;
    height: 380px;
    padding: 30px 30px;
    box-sizing: border-box;
    cursor: pointer;
}

.benefits-item-img {
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    width: 120px;
    height: 120px;
}

.benefits-item-title {
    font-size: 22px;
    line-height: 26px;
    margin-bottom: 30px;
}

.benefits-item-text {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 30px;
    color: var(--colorDarkGrey);
}

.benefits-item-btn {
    width: 240px;
}

.benefits-item:hover {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}

.benefits-item:hover .benefits-item-btn {
    background: var(--colorRed);
    color: var(--colorWhite);
}

.benefits {
    background: var(--colorGrey);
    text-align: center;
    padding: 100px 0 84px 0;
    box-sizing: border-box;
}

.benefits-title {
    margin-bottom: 31px;
}

.section-text {
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
    width: 820px;
    margin: 0 auto;
}

.benefits-table-block {
    background: var(--colorWhite);
    width: 100%;
    padding: 29px 70px 32px 30px;
    box-sizing: border-box;
    border-radius: 10px;
    margin-top: 76px;
    margin-bottom: 42px;
}

.benefits-table {
    font-family: Raleway;
    font-size: 16px;
    line-height: 19px;
    border: none;
    border-collapse: collapse;
    width: 980px;
    margin: 0 auto;
}

.benefits-table th {
    font-weight: 600;
    text-align: center;
    color: var(--colorBlack);
    border-right: 1px solid var(--colorLightGrey);
    padding: 13px 0 17px 0;
    box-sizing: border-box;
    width: 20%;
}

.benefits-table th:last-child {
    border: none;
}

.benefits-table tr {
    font-weight: 400;
    border-bottom: 1px solid var(--colorLightGrey);
}

.benefits-table td {
    font-family: Nunito;
    color: var(--colorDarkGrey);
    border-right: 1px solid var(--colorLightGrey);
    padding: 13px 0 17px 0;
    box-sizing: border-box;
    width: 20%;
}

.benefits-table td:last-child {
    border: none;
}

.benefits-table .first-column {
    color: var(--colorBlack);
    text-align: left;
    padding-left: 59px;
    box-sizing: border-box;
    width: 40%;
}

.smart-main-block {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.smart-text-block {
    padding: 100px 0 119px 0;
    box-sizing: border-box;
    width: 580px;
}

.smart-title {
    margin-bottom: 40px;
}

.smart-icons-block {
    display: flex;
    gap: 27px;
    align-items: center;
    margin-top: 26px;
}

.smart-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
    border: 1px solid #FD591E;
    border-radius: 10px;    
    width: 190px;
    padding: 12px 29px 11px 30px;
    box-sizing: border-box;
    cursor: pointer;
}

.clients {
    text-align: center;
    background: var(--colorGrey);
    padding: 100px 0 120px 0;
    box-sizing: border-box;
}

.clients-title {
    margin-bottom: 31px;
}

.clients-items-slider {
    display: none;
}

.clients-items-block {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    row-gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.clients-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--colorWhite);
    border: 1px solid var(--colorLightGrey);
    border-radius: 10px;
    box-sizing: border-box;
    width: 180px;
    height: 90px;
}

.call-form-main {
    padding: 120px 0;
    box-sizing: border-box;
}

.call-form-main-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--colorGrey);
    border: 1px solid var(--colorLightGrey);
    border-radius: 10px;
    box-sizing: border-box;
    padding: 35px 80px 70px 80px;
    margin: 0 auto;
    width: 980px;
}

.call-form-text-block {
    width: 400px;
}

.call-form-title {
    margin-bottom: 34px;
    width: 100%;
}

.call-form-text-block .section-text {
    width: 100%;
}

.call-form-block {
    padding-top: 30px;
    width: 320px;
    box-sizing: border-box;
}

.call-form input, .hero-form input {
    border: none;
    background: none;
    border-bottom: 1px solid var(--colorLightGrey);
    margin-bottom: 35px;
    width: 100%;
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorBlack);
}

.call-form input:nth-child(2), .hero-form input:nth-child(2) {
    margin-bottom: 0;
}

::placeholder {
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
}

.call-form-policy-text {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--colorDarkGrey);
}

.call-form-policy-link {
    text-decoration: underline;
    color: var(--colorDarkGrey);
}

.call-form-policy-link:hover {
    color: var(--colorOrange);
}

.call-form-btn {
    margin-top: 36px;
    width: 170px;
}

.faq {
    text-align: center;
    background: var(--colorGrey);
    padding: 98px 0 120px 0;
    box-sizing: border-box;
}

.faq-title {
    margin-bottom: 60px;
}

.faq-items-block {
    text-align: left;
    width: 980px;
    margin: 0 auto;
}

.faq-item {
    position: relative;
    border-bottom: 1px solid var(--colorLightGrey);
    padding-bottom: 20px;
    box-sizing: border-box; 
    width: 100%;
    /* min-height: 60px; */
}

.faq-item-img-close {
    position: absolute;
    top: 5px;
    right: 0;
    cursor: pointer;
}

.faq-item-img-show{
    position: absolute;
    top: 5px;
    right: 0;
    transform: rotate(180deg);
    cursor: pointer;
}

.faq-item-title {
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorBlack);
    margin-top: 18px;
}

.faq-item-text {
    font-family: Nunito;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorDarkGrey);
    padding-left: 20px;
    padding-right: 60px;
    box-sizing: border-box;
    max-height: 0;
    overflow: hidden;
    transition: 0.7s;
}

.about {
    padding: 100px 0 200px 0;
    box-sizing: border-box;
}

.about-items-block {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0 auto;
    
}

.about-item-text-block {
    width: 580px;
}

.about-title {
    margin-bottom: 34px;
    width: 90%;
}

.about-item-text-block .section-text {
    width: 100%;
    margin-bottom: 40px;
}
 
.about-item-icons-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 340px;
    height: 315px;
    padding-top: 22px;
    box-sizing: border-box;
}

.about-icon {
    background: var(--colorGrey);
    border: 1px solid var(--colorLightGrey);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding-top: 35px;
    box-sizing: border-box;
}

.about-icon:nth-child(1) {
    margin-left: 25%;
}

.about-icon-number {
    text-align: center;
    font-family: Raleway;
    font-weight: 400;
    font-size: 35px;
    line-height: 48px;
    color: var(--colorOrange);
    width: 80%;
    margin: 0 auto;
    -webkit-font-feature-settings: "lnum"; 
    -moz-font-feature-settings: "lnum"; 
    font-feature-settings: "lnum";
}

.about-icon-text {
    text-align: center;
    font-family: Raleway;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: var(--colorOrange);
    width: 80%;
    margin: 0 auto;
}

.contacts {
    position: relative;
}

.contacts-map-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

ymaps {
	filter: grayscale(100%);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}

.contacts-map-block iframe {
	filter: grayscale(100%);
	-ms-filter: grayscale(1);
	-webkit-filter: grayscale(1);
	-moz-filter: grayscale(1);
	-o-filter: grayscale(1);
}

.contacts {
    height: 460px;
}

.contacts .container {
    position: absolute;
    top: -145px;
    left: 0;
    right: 0;
}

.contacts-form-block {
    background: var(--colorGrey);
    padding: 19px 80px 25px 80px;
    text-align: center;
    border: 1px solid var(--colorLightGrey);
    box-sizing: border-box;
    border-radius: 10px;
    width: 1180px;
    margin: 0 auto;
}

.contacts-title {
    margin-bottom: 40px;
}

.contacts-form {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 33px;
    flex-wrap: wrap;
}

.contacts-form input {
    border: none;
    background: none;
    width: 250px;
    height: 28px;
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    border-bottom: 1px solid var(--colorLightGrey);
    box-sizing: border-box;
}

.contacts-form .error {
    position: absolute;
    top: 40px;
    left: 270px;
}

.mobile-policy {
    display: none;
}

.desctop-policy {
    display: block;
}

.contacts-btn {
    margin-left: 10px;
    width: 199px;
}

.footer {
    padding: 31px 0 39px 0;
    box-sizing: border-box;
    background-color: var(--colorWhite);
}

.footer-items-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-logo {
    width: 100px;
    margin-bottom: 22px;
}

.footer-phone {
    font-family: Nunito;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: var(--colorOrange);
}

.footer-rights {
    font-family: Nunito;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--colorDarkGrey);
}

.footer-menu-block {
    width: 518px;
    padding-top: 16px;
    box-sizing: border-box;
}

.footer-menu-list {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-menu-link {
    font-family: Nunito;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: var(--colorBlack);
}

.footer-menu-link:hover {
    color: var(--colorOrange);
}

.footer-details {
    text-align: center;
    font-family: Nunito;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
    color: var(--colorDarkGrey);
}

.ya-policy-link {
    font-family: Nunito;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: var(--colorDarkGrey);
}

.ya-policy-link:hover {
    text-decoration: underline;
}

.footer-items-second-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-rights-block {
    width: 30%;
}

.footer-policy-block {
    width: 21%;
}

.policy-text {
    width: 100%;
    margin-top: 20px;
}

.policy-block {
    margin-bottom: 50px;
}

@keyframes modal {
    from {
        opacity: 0;
        transform: scale3d(0, 0, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(0.90, 0.9, 0.9);
    }
}

@keyframes modal-close {
    from {
        opacity: 1;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    to {
        opacity: 0;
        transform: scale3d(0, 0, 1);
    }
}

@media (max-width: 1400px) {
    .container {
        width: auto;
        margin: 0 auto;
        padding: 0 130px;
        box-sizing: border-box;
    }

    .banner-light-block, .banner-light-block-fix {
        margin-right: 20px;
    }

    .hero-title {
        /* width: 50%; */
    }
}

@media (max-width: 1350px) {

    .container {
        width: auto;
        margin: 0 auto;
        padding: 0 100px;
        box-sizing: border-box;
    }

    .equipment-item {
        padding: 38px 15px 30px 15px;
    }

    .benefits-item {
        padding: 30px 20px;
    }
}

@media (max-width: 1270px) {
    
    .price-table-block {
        padding: 32px 30px 29px 30px;
        width: 90%;
    }
    .price-table tr td:first-child {
        padding-left: 20px;
        width: 75%;
    }

    .price-table tr td:last-child {
        padding-left: 20px;
    }

    .container {
        padding: 0 80px;
    }

    .equipment-items-block {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .equipment-item {
        width: 45%;
        padding: 38px 15px 30px 15px;
    }

    .benefits-items-block {
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
    }

    .benefits-item {
        width: 45%;
        padding: 30px 20px;
    }

    .contacts-form-block {
        padding: 19px 60px 25px 60px;
        width: 90%;
    }
}

@media (max-width: 1140px) {

    .container {
        padding: 0 65px;
    }

    .call-number {
        margin-left: 20px;
    }

    .menu-block {
        width: 420px;
        margin-left: 0;
    }
    
    .banner, .banner-fix {
        font-size: 21px;
        height: auto;
    }
    
    .banner-num, .banner-num-fix {
        font-size: 24px;
    }
    
    .banner-close, .banner-close-fix {
        position: absolute;
        right: 20px;
        cursor: pointer;
        opacity: 0.5;
        transition: .5s;
        width: 18px;
        height: 18px;
    }

    .banner-light-block, .banner-light-block-fix {
        margin-right: 20px;
    }
    
    .timer__items, .timer__items-fix {
        width: auto;
        font-size: 24px;
    }
    
    .timer__item, .timer__item-fix {
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .timer__item-action {
        margin-left: 8px;
        margin-right: 8px;
    }
    
    .timer__days-num::after, .timer__days-num-fix::after {
        margin-left: 8px;
        font-size: 24px;
    }
    
    .timer__days-num-action::after {
        margin-left: 8px;
        font-size: 22px;
    }
    
    .timer__item:not(:last-child)::after, .timer__item-fix:not(:last-child)::after {
        right: -10px;
    }
    
    .timer__item-action:not(:last-child)::after {
        right: -10px;
    }

    .smart-text-block {
        width: 43%;
    }

    .smart-img-block {
        width: 53%;
    }

    .smart-img-block img {
        width: 100%;
    }

    .faq-items-block {
        width: 90%;
    }

    .call-form-main-block {
        padding: 35px 60px 70px 60px;
        width: 90%;
    }

    .contacts-form-block {
        padding: 19px 50px 25px 50px;
        width: 95%;
    }

    .clients-items-block {
        column-gap: 10px;
        row-gap: 20px;
    }
}

@media (max-width: 1090px) {

    .container {
        padding: 0 15px;
    }

    .call-number {
        margin-left: 10px;
    }

    .benefits-table {
        width: 90%;
    }

    .price-items-block {
        flex-wrap: wrap;
    }

    .price-item:last-child {
        margin-top: 30px;
    }

    .benefits-table-block {
        padding: 29px 0 32px 0;
    }

    .about-item-text-block {
        width: 53%;
    }

    .contacts-form {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contacts-form input {
        width: 200px;
    }

    .section-text {
        width: 90%;
    }

    .footer-menu-block {
        width: 360px;
        padding-top: 0;
    }

    .footer-details {
        margin-bottom: 15px;
        width: 380px;
    }
}

@media (max-width: 980px) {

    .banner, .banner-fix {
        font-size: 18px;
        line-height: 26px;
    }
    
    .banner-num, .banner-num-fix {
        font-size: 20px;
    }
    
    .banner-close, .banner-close-fix {
        position: absolute;
        right: 20px;
        cursor: pointer;
        opacity: 0.5;
        transition: .5s;
        width: 18px;
        height: 18px;
    }

    .banner-light-block, .banner-light-block-fix {
        margin-right: 10px;
    }

    .banner-btn, .banner-btn-fix {
        width: 160px;
        height: 35px;
        margin-left: 10px;
    }
    
    .timer__items, .timer__items-fix {
        font-size: 20px;
    }
    
    .timer__item, .timer__item-fix {
        margin-left: 6px;
        margin-right: 6px;
    }
    
    .timer__item-action {
        margin-left: 6px;
        margin-right: 6px;
    }
    
    .timer__days-num::after, .timer__days-num-fix::after {
        margin-left: 6px;
        font-size: 20px;
    }
    
    .timer__days-num-action::after {
        margin-left: 6px;
        font-size: 18px;
    }
    
    .timer__item:not(:last-child)::after, .timer__item-fix:not(:last-child)::after {
        right: -8px;
    }
    
    .timer__item-action:not(:last-child)::after {
        right: -8px;
    }

    .smart-icon {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 13px;
        border: 1px solid #FD591E;
        border-radius: 10px;
        width: 200px;
        padding: 12px 13px 11px 13px;
        box-sizing: border-box;
        cursor: pointer;
    }

    .about-item-icons-block {
        width: 40%;
    }

    .about-icon {
        width: 150px;
        height: 150px;
        padding-top: 30px;
    }

    .contacts-form-block {
        padding: 19px 25px 25px 25px;
        width: 97%;
    }

    .benefits-table .first-column {
        padding-left: 39px;
    }

    .smart-main-block {
        gap: 0px;
    }
}

@media (max-width: 812px) {
    
    .price-table-block {
        padding: 20px 20px 20px 20px;
        width: 100%;
    }

    .contacts-form .error {
        position: inherit;
        width: 100%;
        height: 30px;
        top: 0;
        left: 0;
        padding-top: 10px;
        box-sizing: border-box;
    }

    .modal-contact-window {
        padding: 54px 32px 41px 33px;
    }

    .modal-contact-title {
        font-size: 26px;
        line-height: 31px;
        margin-bottom: 31px;
    }

    .modal-contact-form input {
        margin-bottom: 20px;
    }

    input[type="checkbox"]:checked + label:after, input[type="checkbox"]:not(:checked) + label:after {
        left: 5px;
        top: 8px;
        height: 6px;
    }

    .modal-contact-text-block .section-text {
        text-align: center;
    }

    .modal-equipment-window {
        padding: 54px 20px;
        width: 94%;
    }

    .modal-equipment-text-block {
        width: 100%;
        margin-right: 0;
    }

    .modal-equipment-title {
        font-size: 26px;
        line-height: 31px;
        margin-bottom: 22px;
    }

    .modal-equipment-items-block .section-list {
        width: 60%;
    }

    .modal-equipment-img-block {
        display: none;
    }

    .modal-equipment-text {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 20px;
        width: 100%;
    }

    .modal-equipment-items-block {
        flex-wrap: wrap;
    }

    .section-title {
        font-size: 26px;
        line-height: 31px;
    }

    .logo-block {
        display: flex;
        align-items: center;
    }

    .menu-btn-block {
        display: block;
    }

    .menu-block {
        display: none;
        position: absolute;
        top: 89px;
        left: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background-color: var(--colorWhite);
        box-shadow: 0px 0px 6px rgb(0 0 0 / 15%);
        opacity: 0;
        transition: 0.5s;
    }

    .menu-list {
        margin-top: 33px;
        flex-direction: column;
        gap: 20px;
    }

    .menu-item-link {
        font-size: 26px;
        line-height: 31px;
    }

    .nav-btn {
        display: none;
        position: absolute;
        top: 378px;
    }

    .call-number {
        font-size: 16px;
        line-height: 19px;
    }

    .banner-wrapper, .banner-wrapper-fix {
        height: auto;
        padding: 15px 0;
    }

    .banner, .banner-fix {
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-btn, .banner-btn-fix {
        margin-left: 0px;
        margin-top: 10px;
    }

    .call-block {
        margin-left: auto;
        margin-right: 40px;
        width: auto;
    }

    .hero-title {
        width: 100%;
    }

    .hero-benefits-block {
        width: 100%;
    }

    .hero-benefits-item:nth-child(2) {
        width: 365px;
    }

    .price {
        padding: 50px 0 45px 0;
    }

    .price-item-title {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 20px;
    }

    .price-item-number {
        font-size: 44px;
        line-height: 52px;
    }

    .price-number-text {
        font-size: 14px;
        line-height: 16px;
    }

    .section-list {
        font-size: 14px;
        line-height: 19px;
    }

    .equipment {
        padding: 39px 0 50px 0;
    }

    .equipment-item {
        padding: 38px 20px 30px 20px;
    }

    .equipment-item-img {
        height: 190px;
    }

    .equipment-item-title {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 12px;
    }

    .equipment-item-text {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 13px;
    }

    .equipment-item-price {
        font-size: 44px;
        line-height: 52px;
    }

    .equipment-btn {
        margin-top: 14px;
    }

    .benefits-icons {
        padding: 50px 0;
        box-sizing: border-box;
    }

    .benefits-item-title {
        font-size: 20px;
        line-height: 23px;
        margin-bottom: 15px;
    }

    .benefits-item-text {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 15px;
    }

    .benefits {
        background: var(--colorGrey);
        text-align: center;
        padding: 39px 0 45px 0;
        box-sizing: border-box;
    }

    .benefits-table-block {
        margin-top: 30px;
    }

    .benefits-table {
        font-size: 14px;
        line-height: 16px;
        width: 95%;
    }

    .smart-icons-block {
        gap: 20px;
    }

    .clients {
        text-align: center;
        background: var(--colorGrey);
        padding: 39px 0 50px 0;
        box-sizing: border-box;
    }

    .call-form-main {
        padding: 50px 0;
    }

    .call-form-main-block {
        padding: 35px 30px 70px 30px;
        gap: 20px;
    }

    .faq {
        padding: 27px 0 50px 0;
    }

    .faq-item-title {
        font-size: 14px;
        line-height: 19px;
        margin-top: 15px;
    }

    .faq-item-text {
        font-size: 14px;
        line-height: 19px;
    }

    .about {
        padding: 38px 0 200px 0;
    }

    .about-icon-number {
        font-size: 32px;
        line-height: 38px;
    }

    .about-icon-text {
        font-size: 14px;
        line-height: 20px;
    }

    .section-text {
        font-size: 14px;
        line-height: 19px;
        width: 97%;
    }

    .contacts-form-block {
        padding: 19px 45px 25px 45px;
        width: 97%;
    }

    .contacts-form {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }

    .contacts-form input {
        width: 100%;
        margin-bottom: 30px;

    }

    .contacts-form input:nth-child(2) {
        margin-bottom: 0;
    }

    .contacts-btn {
        margin-top: 30px;
    }

    .about-item-text-block .section-text {
        margin-bottom: 30px;
    }

    .about-items-block {
        flex-wrap: wrap;
        gap: 0;
    }

    .about-item-icons-block {
        width: 50%;
        padding: 0;
    }

    .about-icon {
        width: 156px;
        height: 156px;
        padding-top: 33px;
    }

    .ya-policy-text {
        text-align: center;
    }

}

@media (max-width: 414px) {
    
    .smart-img-block{
        display:none;
    }
    
    .price-table-block {
        padding: 30px 10px 24px 10px;
        width: 100%;
    }

    .price-table tr td {
        font-size: 12px;
        line-height: 16px;
    }

    .price-table tr td:first-child {
        padding-left: 0;
        width: 65%;
    }

    .price-table tr td:last-child {
        padding-left: 7px;
        padding-right: 0;
    }

    .price-table tr td {
        padding: 8px 0;
    }

    .modal-contact-window {
        width: 95%;
    }

    .modal-contact-text-block {
        width: 100%;
    }

    .modal-contact-btn, .modal-contact-back-btn {
        width: 100%;
        margin-top: 25px;
    }

    .modal-equipment-window {
        padding: 54px 20px 29px 20px;
        width: 94%;
    }

    .modal-equipment-items-block {
        justify-content: center;
    }

    .modal-equipment-items-block .section-list {
        width: 100%;
    }

    .modal-equipment-items-block .section-list .section-list-item {
        padding: 0 0 0 14px;
    }

    .equipment-list .section-list-item::before {
        left: 0;
    }

    .modal-equipment-img-block {
        display: none;
    }

    .modal-equipment-img-block-mob {
        display: block;
        width: 100%;
    }

    .modal-equipment-slider {
        width: 100%;
        position: relative;
        width: 100%;
        height: auto;
        margin: 20px 0 0 0;
        user-select: none;
        touch-action: pan-y;
    }

    .modal-equipment-slider-list {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .modal-equipment-slider-list.grab {
        cursor: grab;
    }

    .modal-equipment-slider-list.grabbing {
        cursor: grabbing;
    }

    .modal-equipment-slider-track {
        width: 100%;
        display: flex;
        align-items: flex-start;
    }

    .modal-slide {
        width: 100%;
        height: 158px;
        flex-shrink: 0;
        font-size: 50px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        border-radius: 10px;
    }

    .modal-slider-pag-block {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .modal-slider-pag-item {
        width: 5px;
        height: 5px;
        border-radius: 11px;
        background-color: rgba(253, 89, 30, 0.2);;
    }

    .action-banner {
        width: 95%;
        margin-top: 90px;
    }

    .nav-btn-mob {
        display: block;
        margin-top: 40px;
        width: 100%;
    }

    .container {
        padding: 0 21px 0 22px;
    }

    .hero {
        padding: 66px 0;
    }

    .hero-text-block {
        width: 100%;
    }

    .hero-title {
        font-size: 36px;
        line-height: 40px;
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-benefits-block {
        flex-wrap: wrap;
        width: 95%;
        height: auto;
        margin-bottom: 15px;
    }

    .hero-benefits-item {
        font-weight: 400;
        font-size: 14px;
        line-height: 26px;
        min-width: 100%;
        margin-bottom: 15px;
    }

    .hero-benefits-item:nth-child(1) {
        padding-right: 0;
    }

    .hero-benefits-item:nth-child(2) {
        padding: 0;
        border: none;
    }

    .hero-benefits-item:nth-child(3) {
        padding-left: 0;
    }

    .hero-btn {
        width: 100%;
    }

    .hero-form {
        padding: 25px 20px 24px 20px;
        width: 100%;
    }

    .hero-form-title {
        width: 209px;
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 23px;
    }
    
    .hero-form-cost-old {
        font-size: 22px;
        line-height: 28px;
    }
    
    .hero-form-cost {
        font-size: 22px;
        line-height: 28px;
    }

    .hero-form-btn {
        width: 100%;
    }

    .banner-light-block, .banner-light-block-fix {
        flex-wrap: wrap;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .banner-text-first, .banner-text-first-fix {
        width: 80%;
        text-align: center;
    }

    .banner-close, .banner-close-fix {
        right: 20px;
        top: 20px;
    }
    
    .action-banner-timer-block {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .timer__items-action {
        justify-content: center;
    }

    .price-title {
        margin-bottom: 30px;
    }

    .price-item {
        width: 100%;
    }

    .price-item-prices {
        padding: 31px 24px 34px 23px;
    }

    .price-item:last-child {
        margin-top: 20px;
        width: 90%;
    }

    .price-item-btn {
        width: 100%;
    }

    .section-list-item {
        padding: 0 0 14px 0;
    }

    .section-list-item::before {
        left: -13px;
    }

    .equipment-title {
        margin-bottom: 30px;
    }

    .equipment-item {
        width: 100%;
        padding: 33px 24px 25px 22px;
        height: auto;
    }

    .equipment-item-img {
        margin-bottom: 23px;
        height: 183px;
    }

    .benefits-items-block {
        gap: 20px;
    }

    .benefits-item {
        width: 100%;
        height: auto;
        padding: 30px 24px 24px 23px;
    }

    .benefits-item-img {
        margin-bottom: 12px;
        width: 100px;
        height: 100px;
    }

    .benefits-title {
        margin-bottom: 20px;
    }

    .section-text {
        width: 100%;
    }

    .benefits-scrollbar-block {
        width: 100%;
        overflow: auto;
        margin-bottom: 30px;
    }

    .benefits-table-block {
        width: 670px;
    }

    ::-webkit-scrollbar {
        height: 5px;
        background: rgba(253, 89, 30, 0.2);
        border-radius: 11px;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--colorOrange);
        border-radius: 11px;
    }

    .benefits-table {
        width: 670px;
        margin-bottom: 20px;
    }

    .smart-main-block {
        position: relative;
        flex-wrap: wrap;
    }

    .smart-text-block {
        width: 100%;
        padding: 0 0 50px 0;
        margin-top: 39px;
    }

    .smart-title {
        margin-bottom: 30px;
    }

    .smart-text-block .section-list .section-list-item {
        padding: 0 0 14px 16px;
    }

    .smart-text-block .section-list .section-list-item::before {
        left: 0;
    }

    .smart-icons-block {
        gap: 14px;
        margin-top: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .smart-icon {
        width: 156px;
        padding: 6px 13px 9px 13px;
        box-sizing: border-box;
    }

    .smart-icon-img {
        width: 20px;
    }

    .smart-icon-text {
        font-size: 14px;
        line-height: 19px;
        color: var(--colorBlack);
    }

    .smart-img-block {
        position: absolute;
        top: 285px;
        right: -14px;
        width: 175px;
    }

    .clients-title {
        margin-bottom: 20px;
    }

    .clients-items-block {
        display: none;
    }

    .clients-items-slider {
        display: block;
        position: relative;
        width: 100%;
        height: auto;
        margin: 45px 0 0 0;
        user-select: none;
        touch-action: pan-y;
    }

    .clients-slider-list {
        width: 100%;
        height: auto;
        overflow: hidden;
    }

    .clients-slider-list.grab {
        cursor: grab;
    }

    .clients-slider-list.grabbing {
        cursor: grabbing;
    }

    .clients-slider-track {
        display: flex;
        align-items: flex-start;
    }

    .slide {
        width: 100%;
        height: auto;
        flex-shrink: 0;
        font-size: 50px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .clients-slider-item {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 10px;
    }

    .clients-item {
        width: 156px;
        height: 78px;
    }

    .slider-pag-block {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 20px;
    }

    .slider-pag-item {
        width: 5px;
        height: 5px;
        border-radius: 11px;
        background-color: rgba(253, 89, 30, 0.2);;
    }

    .slider-pag-item-active {
        background-color: var(--colorOrange);
    }

    .call-form-main-block {
        flex-wrap: wrap;
        width: 100%;
        gap: 0;
    }

    .call-form-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .call-form-text-block .section-text {
        text-align: center;
    }

    .call-form input {
        margin-bottom: 30px;
    }

    .call-form-btn {
        margin-top: 30px;
        width: 100%;
    }

    .faq-title {
        margin-bottom: 39px;
    }

    .faq-items-block {
        width: 100%;
    }

    .faq-item-text {
        padding-right: 0;
    }

    .about {
        padding: 38px 0 340px 0;
    }

    .about-title {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    .about-item-text-block .section-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-item-text-block {
        width: 100%;
    }

    .about-item-icons-block {
        width: 100%;
    }

    .about-icon:nth-child(1) {
        margin-left: 25%;
    }

    .contacts .container {
        top: -285px;
    }

    .contacts-form-block {
        padding: 38px 20px 30px 25px;
        width: 100%;
    }

    .contacts-form {
        margin-bottom: 0;
    }
    
    .mobile-policy {
        display: block;
    }
    
    .desctop-policy {
        display: none;
    }

    .call-form-policy-text {
        text-align: left;
    }

    .contacts-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .footer {
        padding: 50px 0 24px 0;
        box-sizing: border-box;
        background-color: var(--colorWhite);
    }

    .footer-items-block {
        flex-wrap: wrap;
    }

    .footer-menu-block {
        display: none;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-items-second-block {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .footer-rights-block {
        width: 90%;
    }

    .footer-inf-block {
        width: 90%;
    }

    .footer-policy-block {
        width: 90%;
    }

    .footer-details-block {
        order: -1;
    }

    .footer-details {
        margin-bottom: 10px;
        width: 100%;
    }


    
}

@media (max-height: 668px) {

    .action-banner {
        padding: 20px 10px;
    }

    .header {
        height: 70px;
        padding-top: 14px;
    }

    .main {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 30px;
        line-height: 38px;
    }
}

@media (max-height: 569px) {
    
    .container {
        padding: 0 11px 0 12px;
    }

    .call-block {
        margin-right: 10px;
    }

    .action-banner-timer-block {
        margin-bottom: 15px;
    }

    .action-banner-subtitle {
        font-size: 18px;
    }

    .action-banner-text {
        font-size: 20px;
    }

    .action-banner-text {
        font-size: 20px;
    }
}