@font-face {
    font-family: 'icon';
    src: url('../fonts/FontAwesome/fa-brands-400.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icon';
    src: url('../fonts/FontAwesome/fa-light-300.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
.fa-light,
.fa-brands {
  font-family: icon !important;
}



/* Montserrat START */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2'),
        url('../fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Montserrat END */

/* Grid START */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  flex: 0 0 75%;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.jc-center {
  justify-content: center;
}
.jc-right {
  justify-content: right;
}
.jc-space {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.content-center {
  align-content: center;
}
.tl-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%,-50%);
}


.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,
.col-7,.col-8,.col-9,.col-10,.col-11,.col-12 {
  width: 100%;
  padding: 0 15px;
}
.col-1 {
  max-width: 8.333333%;
}
.col-2 {
  max-width: 16.666667%;
}
.col-3 {
  max-width: 25%;
}
.col-4 {
  max-width: 33.333333%;
}
.col-5 {
  max-width: 41.666667%;
}
.col-6 {
  max-width: 50%;
}
.col-7 {
  max-width: 58.333333%;
}
.col-8 {
  max-width: 66.666667%;
}
.col-9 {
  max-width: 75%;
}
.col-10 {
  max-width: 83.333333%;
}
.col-11 {
  max-width: 91.666667%;
}
.col-12 {
  max-width: 100%;
}

/* Grid END */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--body-bg);
  font-family: var(--body-font);
  font-size: var(--font-size);
  color: var(--body-color);
  line-height: 130%;
  font-weight: 400;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  display: block;
  text-decoration: none;
  color: var(--link-color);
  transition: var(--transition);
}
a.line {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}

.icon {
  display: inline-block;
  align-content: center;
  text-align: center;
}

.relative {
  position: relative;
}

/* Heading Titles START */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--titlefont);
  line-height: 130%;
}

.page__header,
.heading__title {
	margin-bottom: 40px;
}
.heading__title.center {
  text-align: center;
}
.heading__title.row {
	justify-content: space-between;
}
.heading__title.row .title {
	width: 100%;
	max-width: 90%;
	padding-right: 20px;
}
.heading__title.row .slick-buttons {
	width: 100%;
	max-width: 80px;
}

/* Heading Titles END */

/* Paragraph START */

p {
	line-height: 140%;
	margin: 0;
}
p:not(:last-child) {
	margin-bottom: 12px;
}

/* Paragraph END */


/* Buttons START */

button,
input.button {
  transition: var(--transition);
  cursor: pointer;
}

.custom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  width: auto;
  height: 45px;
  padding: 0 60px;
  background: var(--color-1);
  border: 1px solid var(--color-1);
  color: #fff;
  transition: var(--transition);
}
.custom__btn:hover {
  background: var(--color-2);
  border-color: var(--color-2);
}
.custom__btn.white {
  background: #fff;
  border-color: #fff;
  color: var(--color-1);
}
.custom__btn.white:hover {
  background: var(--color-1);
  color: #fff;
  border-color: var(--color-1);
}
.custom__btn.transparent {
  background: transparent;
  border-color: var(--color-1);
  color: var(--color-1);
}


/* Buttons END */


/* Custom Form START */

input, button, textarea, select {
  font-family: var(--body-font);
  outline: none;
  background: none;
  border: none;
  color: var(--body-color);
  width: 100%;
}

input::placeholder {
  opacity: 1 !important;
}

/* Убираем кнопки для всех input[type="number"] */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Для Firefox */
}

.field__group {
  margin-bottom: 16px;
}
.field__group input,
.field__group select {
  width: 100%;
  height: 55px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
}
.field__group textarea {
	width: 100%;
	border: 1px solid #d4d4d4;
  padding: 0 15px;
}

/* Custom Form END */

/* Slick START */
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);    
  color: var(--body-color);
  background: none;
  font-size: 55px;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  z-index: 10;
}
.slick-slider:hover .slick-arrow {
  opacity: 1;
}
.slick-next {
  right: -35px;
}
.slick-prev {
  left: -35px;
}
.slick-slider:hover .slick-prev {
  left: -25px;
}
.slick-slider:hover .slick-next {
  right: -25px;
}
.slick-dots {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 30px;    
}
.slick-dots li {
  background: #fff;
  width: 60px;
  height: 7px;
  border-radius: 10px;
  color: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slick-dots li:hover,
.slick-dots .slick-active {
  background: var(--color-2);
}

.slick-dots li button {
  display: none;
}
.slick-dots li:not(:last-child) {
  margin-right: 5px;  
}
/* Slick END */  

/* Icons START */

.fa {
  font-family: icon;
}

/* Icons END */

/* Images START */

img {
  display: block;
  width: 100%;
  height: auto;
}
img.center {
  margin: 0 auto;
}
img.object {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Images END */

/* Mobile menu START */

@media screen and (max-width: 992px) {
  .mobnav {
    display: block !important;
  }
.burger {
  position: relative;
  display: block !important;  
  width: 43px;
  height: 43px;
  border-radius: 6px;
  background-color: none;
  z-index: 90;  
}
.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 59.8%;
  margin-left: -15px;
  margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
  position: absolute;
  content: "";
}
.burger span::before {
  top: -9px;
}
.burger span::after {
  top: 9px;
}
.burger.clicked span {
  background-color: transparent;
}
.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after {
  background-color: #fff;
}
.burger:hover {
  cursor: pointer;
}

/*  NAV
========================================== */
.nav__burger {
  background: transparent;
  position: fixed;
  z-index: 90;
  top: 100px;
  right: 0;
  height: 100%;
  max-width: 100%;
  width: 100%;
  padding: 30px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.nav__burger.top-position {
  top: 72px;
}
.nav__burger.show {
  display: block;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #272727f0;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  opacity: 1;
  z-index: 89;
  visibility: visible;
}

.mobnav .row {
  display: block;
}
.mobnav li:not(:last-child) {
  margin-bottom: 24px;
}
.mobnav li a {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

} /* Mobile menu END */

/* Modal START */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 17, 17, 0.83);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: #fff;
    padding: 50px 70px;
    max-width: 670px;
    width: 100%;
    transform: scale(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}
.modal-content .subtitle {
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    margin-bottom: 30px;
}
#queston-modal .modal-content {
    max-width: 540px;
}
#queston-modal .check {
    max-width: 76% !important;
}
.heading-modal__title {
    font-weight: 400;
    font-size: 30px;
    line-height: 130%;
    margin-bottom: 20px;
}

.modal-window__close {
  position: absolute;
  top: 45px;
  right: 45px;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.modal-window__close:hover {
  transform: rotate(90deg);
}
.modal-window__close:before,
.modal-window__close:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 2.4em;
  width: 1px; 
  background-color: var(--body-color);
}
.modal-window__close:before {
  transform: rotate(45deg);
}
.modal-window__close:after {
  transform: rotate(-45deg);
}

/* Modal END */

    .modal .row-controls {
        gap: 20px;
    }
    .modal .row-controls:not(:last-child) {
        margin-bottom: 15px;
    }
    .modal .row-controls .control {
        max-width: 48.1%;
    }
    .modal .row-controls .control:only-child {
        max-width: 100%;
    }
    .modal .control {
        position: relative;
        width: 100%;
    }
    .modal .textarea {
        margin: 10px 0;
    }
    .modal .textarea textarea {
        border: 1px solid #a2a2a2;
        border-radius: 3px;
        padding: 15px;
    }
    .modal .control .reguired-field {
        display: none;
        position: absolute;
        font-size: 10px;
        top: 32px;
        right: 10px;
        color: #f40041;
    }
    .modal .control.error .reguired-field {
        display: block;
    }
    .modal .control.error input {
        border-color: #f40041;
    }
    .modal .control .name {
        max-width: 100%;
    }
    
    .modal .control:only-child {
        max-width: 100% !important;
    }
    
    .modal .control label {
        display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #a2a2a2;
    }
    .modal .control input {
        width: 100%;
        height: 60px;
  font-size: 15px;
  border: 1px solid #a2a2a2;
  padding: 0 15px;
  border-radius: 3px;
  color: #272727;
    }
    .modal .control input::placeholder {
        opacity: 1;
        color: #272727;
    }
    .modal .control.active label {
        color: #272727;
    }
    .modal .control.active input {
        border-color: #272727;
    }
    .modal .check-box {
        max-width: 73.3%;
    }
    .modal .check-box label {
      display: block;
        position: relative;
        color: #272727;
        cursor: pointer;
        font-size: 13px;
        line-height: 14px;
        padding-left: 24px;
    }
    .modal .check-box label:after {
        position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #272727;
  border-radius: 3px;
  content: "";
    }
    .modal .check-box label:before {
        position: absolute;
  top: 4px;
  left: 3px;
  color: #272727;
  width: 11px;
  height: 11px;
  z-index: 10;
    }
    .modal .check-box input {
        display: none;
    }
    .modal .check-box input:checked + label::before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");       
    }    
    .modal .check-box a {
        display: inline;
        text-decoration: underline;
        text-underline-position: under;
        text-decoration-style: dotted;
    }
    .check-row {
        gap: 20px;
        margin: 0;
        margin-top: 20px;
    }
    .modal-button {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 100%;
        max-width: 36.8%;
        border-radius: 3px;
        background: #000;
        color: #fff;
        padding: 0 15px;
        font-size: 16px;
        text-transform: uppercase;
        font-size: 500;
    }
    .modal .custom__btn {
      padding: 0 15px;
    }

    @media screen and (max-width: 767px) {
        .modal-content {
            width: 90%;
            padding: 30px;
        }
        .modal .control:not(:first-child) {
            max-width: 47.5% !important;
        }
        .modal .control input {
            padding: 0 15px;
        }
        .modal .custom__btn {
            max-width: 35.7%;
        }
        .modal-window__close {
            top: 20px;
            right: 20px;
        }
        .heading-modal__title {
            font-size: 24px;
            line-break: 130%;
        }
    }
    @media screen and (max-width: 526px) {
        .modal-content {
            height: 100%;
            width: 100%;
            border-radius: 0;
        }
        .modal .control:not(:first-child),
        .modal .check {
            max-width: 100% !important;
        }
        .modal .custom__btn {
            margin-left: auto;
            max-width: 195px !important;
        }
        .heading-modal__title {
            font-size: 20px;
            max-width: 85%;
        }
    }