@charset "UTF-8";
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Italic.woff2") format("woff2"), url("../fonts/Poppins-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2"), url("../fonts/Inter-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Italic.woff2") format("woff2"), url("../fonts/Inter-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
.container {
  width: 100%;
  max-width: 1620px;
  padding: 0 50px;
  margin: 0 auto;
}

@media only screen and (max-width: 1599px) {
  .container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
:root {
  --blue: #2B4666;
  --text-color: #000;
  --body-color: #FFF;
  --red: #D92C2C;
  --green: #416B63;
  --grey: #78716B;
  --bg-color: #EEF3F9;
  --dark: #0D0B06;
  --hover: #7E98BA;
  --brs: 10px;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 16px;
  min-width: 320px;
  line-height: 1.5;
  color: var(--text-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-color);
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

button:active, button:focus {
  outline: none;
}

button::-moz-focus-inner {
  border: 0;
}

ul, li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wow {
  visibility: hidden;
}

.wrap {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 150px;
}

.format-text-p p {
  margin: 25px 0;
}
.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}

.section {
  padding: 120px 0;
}
.section-title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  color: var(--blue);
}
.section-block {
  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;
  position: relative;
  z-index: 2;
}
.section-info {
  width: 316px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 70px;
}
.section-text {
  margin-top: 30px;
  font-weight: 500;
}
.section-content {
  width: 100%;
}
.section-content + .section-info {
  margin-right: 0;
  margin-left: 70px;
}

.page-section {
  padding: 50px 0 100px;
}
.page-hero {
  padding: 40px 0 90px;
}
.page-hero--dark {
  background-color: var(--dark);
  color: #fff;
}
.page-hero--dark .page-title {
  color: #fff;
}
.page-hero--dark .breadcrumbs a {
  color: #fff;
}
.page-hero--dark .breadcrumbs a:before {
  color: #fff;
}
.page-hero--dark .breadcrumbs a:hover {
  text-decoration-color: #fff;
}
.page-title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  color: var(--blue);
}
.page-title + .breadcrumbs {
  margin-top: 16px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  border-radius: 10em;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 60px;
  color: var(--blue);
  background-color: #fff;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  line-height: normal;
}
.btn:hover {
  background-color: #932B2B;
  color: #fff;
}
.btn--grey {
  background-color: #CCC4BE;
}
.btn--dark {
  background-color: #4B4634;
  color: #fff;
}
.btn--red {
  background-color: var(--red);
  color: #fff;
}
.btn--green {
  background-color: #4FA052;
  color: #fff;
}
.btn--green:hover {
  background-color: #366d38;
}
.btn--bdr {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.btn--bdr:hover {
  background-color: var(--red);
  border-color: var(--red);
}
.btn--bdr.btn--dark {
  border-color: var(--blue);
  color: var(--blue);
}
.btn--bdr.btn--dark:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: #fff;
}

.back,
.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: 1px solid var(--red);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
  width: 68px;
  height: 68px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s, background-color 0.3s;
  transition: opacity 0.3s, background-color 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.back:focus-visible,
.next:focus-visible {
  outline: none;
}
.back.swiper-button-disabled,
.next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}
.back:active,
.next:active {
  background-color: var(--red);
}
.back:active svg path,
.next:active svg path {
  stroke: #fff;
}

.next {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.popup-close {
  width: 66px;
  height: 66px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 50%;
  cursor: pointer;
  background-color: #96B7D2;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
}
.popup-close:hover {
  background-color: #537398;
}
.popup-close:before, .popup-close:after {
  position: absolute;
  top: 50%;
  left: calc(50% - 15px);
  width: 30px;
  height: 2px;
  content: "";
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.popup-close:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.breadcrumbs {
  font-size: 16px;
}
.breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  padding-left: 23px;
}
.breadcrumbs a:before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  content: "/";
  pointer-events: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue);
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.breadcrumbs a:first-child {
  padding-left: 0;
}
.breadcrumbs a:first-child:before {
  display: none;
}

.breadcrumb_last {
  color: #8C97A6;
  display: inline-block;
  position: relative;
  padding-left: 23px;
}
.breadcrumb_last:before {
  position: absolute;
  left: 0;
  top: 0;
  color: #8C97A6;
  content: "/";
  pointer-events: none;
}

.up {
  width: 76px;
  height: 76px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #698EAB;
  position: fixed;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50%;
  right: 20px;
  bottom: 20px;
  -webkit-transform: translateX(200%);
          transform: translateX(200%);
}
.up svg {
  width: 16px;
  height: 16px;
}
.up.visible {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media (hover) {
  .wow {
    visibility: hidden;
  }
  .back:hover,
  .next:hover {
    background-color: var(--red);
  }
  .back:hover svg path,
  .next:hover svg path {
    stroke: #fff;
  }
  .up.open-popup.visible {
    right: 37px;
  }
}
@media only screen and (max-width: 1599px) {
  .section-info {
    margin-right: 50px;
    width: 26%;
  }
  .section-content + .section-info {
    margin-right: 0;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .main {
    margin-top: 85px;
  }
  .section {
    padding: 70px 0;
  }
  .section-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-info {
    width: 100%;
    margin-right: 0px;
  }
  .section-content {
    width: 100%;
  }
  .section-content + .section-info {
    margin-left: 0px;
  }
  .page-section {
    padding: 40px 0 70px;
  }
  .page-hero {
    padding: 50px 0 70px;
  }
  .up {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .main {
    margin-top: 65px;
  }
  .section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 36px;
  }
  .section-text {
    margin-top: 20px;
  }
  .page-section {
    padding: 25px 0 50px;
  }
  .page-hero {
    padding: 30px 0 40px;
  }
  .page-title {
    font-size: 40px;
  }
  .page-title + .breadcrumbs {
    margin-top: 20px;
  }
  .popup-close {
    width: 50px;
    height: 50px;
  }
  .popup-close:before, .popup-close:after {
    width: 16px;
    left: calc(50% - 8px);
  }
  .up {
    bottom: 10px;
    right: 10px;
  }
}
.moveCar {
  -webkit-animation-name: moveCar;
          animation-name: moveCar;
}

@-webkit-keyframes moveCar {
  0% {
    -webkit-transform: translate(500px, 500px);
            transform: translate(500px, 500px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@keyframes moveCar {
  0% {
    -webkit-transform: translate(500px, 500px);
            transform: translate(500px, 500px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.logo__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logo__text {
  margin-left: 12px;
  color: #9AAFCA;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -15px;
}
.social__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 34px;
  height: 34px;
  margin-right: 15px;
  border-radius: 50%;
  background-color: #DCE6F3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.social__link:hover {
  background-color: var(--hover);
}

.languages {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  height: 34px;
  position: relative;
  border-radius: 17px;
  background-color: transparent;
}
.languages:hover {
  background-color: var(--hover);
}
.languages.is-active {
  height: auto;
  background-color: #9AAFCA;
  border-radius: 17px 17px 0 0;
}
.languages.is-active .languages__drop-down {
  opacity: 1;
  visibility: visible;
}
.languages.is-active .languages__active {
  color: var(--blue);
}
.languages.is-active .languages__active svg path {
  fill: var(--blue);
}
.languages__active {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  padding-right: 14px;
  color: #fff;
  padding: 5px 30px 5px 15px;
  background-color: transparent;
}
.languages__active svg {
  position: absolute;
  width: 9px;
  height: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  -webkit-transform-origin: center;
          transform-origin: center;
  pointer-events: none;
}
.languages__drop-down {
  position: absolute;
  background-color: #9AAFCA;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  padding: 5px 15px;
  border-radius: 0 0 17px 17px;
  z-index: 2;
}
.languages__item {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.languages__item + .languages__item {
  margin-top: 10px;
}
.languages__item:hover {
  color: #fff;
}

.login-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.login-btn__icon {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #DCE6F3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.login-btn__icon img, .login-btn__icon svg {
  width: 15px;
  height: 15px;
  margin-right: 2px;
}
.login-btn__title {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #DCE6F3;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.login-btn:hover .login-btn__icon {
  background-color: var(--hover);
}
.login-btn:hover .login-btn__title {
  color: var(--hover);
}

.header {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--blue);
  color: #fff;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.fixed {
  position: fixed;
  background-color: var(--bg-color);
  height: 64px;
  border-color: #CFDAE8;
}
.header.fixed .header__nav {
  display: none;
}
.header.fixed .header__logo--fixed {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 70px;
}
.header.fixed .sub-menu {
  padding-top: 25px;
  top: calc(100% - 2px);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__nav {
  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;
  height: 85px;
}
.header__phone {
  font-size: 18px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1;
  white-space: nowrap;
  margin-left: auto;
  color: #fff;
}
.header__phone:hover {
  color: var(--hover);
}
.header__social {
  margin-left: 50px;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo--fixed {
  display: none;
}
.header__languages {
  margin-left: 35px;
}
.header__login-btn {
  margin-left: 35px;
}

.menu {
  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;
}
.menu__list {
  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;
}
.menu__list > .menu__item {
  height: 100%;
  width: 100%;
  margin-right: 30px;
}
.menu__list > .menu__item:last-child {
  margin-right: 0;
}
.menu__list > .menu__item.current_page_item > .menu__link, .menu__list > .menu__item.current_page_parent > .menu__link {
  color: var(--hover);
  border-color: #8BA2BE;
}
.menu__list > .menu__item.has-submenu {
  position: relative;
}
.menu__list > .menu__item.has-submenu.current_page_item .menu__toggle, .menu__list > .menu__item.has-submenu.current_page_parent .menu__toggle {
  border-color: var(--hover);
}
.menu__list > .menu__item.has-submenu .menu__link {
  position: relative;
}
.menu__list > .menu__item.has-submenu .menu__toggle {
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: none;
  border-left: none;
  margin-left: 10px;
}
.menu__list > .menu__item.has-submenu:hover > .menu__link {
  z-index: 3;
  -webkit-transition: none;
  transition: none;
  border-color: transparent;
}
.menu__list > .menu__item.has-submenu:hover > .menu__link:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  z-index: -1;
}
.menu__list > .menu__item.has-submenu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.menu__list > .menu__item.has-submenu:hover .sub-menu .menu__item {
  opacity: 1;
}
.menu__list > .menu__item > .menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 65px;
  font-weight: 500;
  color: #FFF;
  font-size: 18px;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-transition: color 0.3s, border-color 0.3s;
  transition: color 0.3s, border-color 0.3s;
}
.menu__list > .menu__item > .menu__link:hover {
  color: var(--hover);
  border-color: #8BA2BE;
}
.menu__login-btn {
  display: none;
}
.menu__languages {
  display: none;
}
.menu__social {
  display: none;
}

.sub-menu {
  padding: 20px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 350px;
  position: absolute;
  top: 65px;
  left: 0px;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.sub-menu:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-color);
  border-radius: 0 var(--brs) var(--brs) var(--brs);
  z-index: -1;
}
.sub-menu .menu__item {
  opacity: 0;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}
.sub-menu .menu__item + .menu__item {
  margin-top: 25px;
}
.sub-menu .menu__item.current_page_item .menu__link, .sub-menu .menu__item.current_page_parent .menu__link {
  text-decoration: underline;
  text-decoration-color: var(--blue);
}
.sub-menu .menu__link {
  color: var(--blue);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.sub-menu .menu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue);
}

.hamburger {
  display: none;
}

.header--is-dark {
  background-color: var(--dark);
  border-color: #29261F;
}
.header--is-dark.fixed {
  background-color: var(--dark);
  border-color: #29261F;
}

@media (hover: hover) {
  .header.open-popup {
    right: 17px;
  }
}
@media only screen and (min-width: 1200px) {
  .menu__list > .menu__item.has-submenu:hover > .menu__link {
    color: var(--blue);
  }
  .menu__list > .menu__item.has-submenu:hover > .menu__link .menu__toggle {
    border-color: var(--blue);
  }
  .header.fixed .menu__list {
    margin-left: auto;
    width: auto;
  }
  .header.fixed .menu__list > .menu__item {
    margin-right: 40px;
    width: auto;
  }
  .header.fixed .menu__list > .menu__item:last-child {
    margin-right: 0;
  }
  .header.fixed .menu__list > .menu__item:hover > .menu__link {
    color: var(--hover);
  }
  .header.fixed .menu__list > .menu__item > .menu__link {
    color: var(--blue);
    border-top: none;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
  }
  .header.fixed .menu__list > .menu__item.current_page_item > .menu__link, .header.fixed .menu__list > .menu__item.current_page_parent > .menu__link {
    color: var(--hover);
    border-color: #8BA2BE;
  }
  .header.fixed .menu__list > .menu__item.current_page_item > .menu__link .menu__toggle, .header.fixed .menu__list > .menu__item.current_page_parent > .menu__link .menu__toggle {
    border-color: #8BA2BE;
  }
  .header.fixed .menu__list > .menu__item.has-submenu .menu__toggle {
    border-color: var(--blue);
  }
  .header.fixed .menu__list > .menu__item.has-submenu:hover > .menu__link .menu__toggle {
    border-color: #8BA2BE;
  }
  .header--is-dark.fixed .menu__list > .menu__item:hover > .menu__link {
    color: var(--hover);
  }
  .header--is-dark.fixed .menu__list > .menu__item > .menu__link {
    color: #fff;
  }
  .header--is-dark.fixed .menu__list > .menu__item.current_page_item > .menu__link, .header--is-dark.fixed .menu__list > .menu__item.current_page_parent > .menu__link {
    color: var(--hover);
    border-color: var(--hover);
  }
  .header--is-dark.fixed .menu__list > .menu__item.current_page_item > .menu__link .menu__toggle, .header--is-dark.fixed .menu__list > .menu__item.current_page_parent > .menu__link .menu__toggle {
    border-color: var(--hover);
  }
  .header--is-dark.fixed .menu__list > .menu__item.has-submenu .menu__toggle {
    border-color: #fff;
  }
  .header--is-dark.fixed .menu__list > .menu__item.has-submenu:hover > .menu__link {
    color: var(--blue);
  }
  .header--is-dark.fixed .menu__list > .menu__item.has-submenu:hover > .menu__link .menu__toggle {
    border-color: var(--blue);
  }
}
@media only screen and (max-width: 1399px) {
  .header.fixed .menu__list > .menu__item {
    margin-right: 10px;
  }
  .sub-menu {
    width: 290px;
  }
}
@media only screen and (max-width: 1199px) {
  .overlay {
    background-color: rgba(43, 70, 102, 0.75);
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    position: fixed;
    top: 0;
    height: 100vh;
    left: 0;
    right: 0;
    z-index: 11;
  }
  .overlay.visible {
    opacity: 1;
    visibility: visible;
  }
  .header {
    position: fixed;
  }
  .header__social {
    margin-left: 30px;
  }
  .header__logo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header__languages {
    margin-left: 30px;
  }
  .header__login-btn {
    display: none;
  }
  .header.fixed {
    height: 85px;
  }
  .header.fixed .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header.fixed .header__logo--fixed {
    display: none;
  }
  .header.fixed:not(.header--is-dark) .header__logo .logo__text {
    color: var(--blue);
  }
  .header.fixed:not(.header--is-dark) .header__social .social__link {
    background-color: #96B7D2;
  }
  .header.fixed:not(.header--is-dark) .header__social .social__link svg path {
    fill: #fff;
  }
  .header.fixed:not(.header--is-dark) .header__social .social__link:hoverW {
    background-color: var(--hover);
  }
  .header.fixed:not(.header--is-dark) .header__phone {
    color: var(--blue);
  }
  .header.fixed:not(.header--is-dark) .header__languages .languages__active {
    color: var(--blue);
  }
  .header.fixed:not(.header--is-dark) .header__languages .languages__active svg path {
    fill: var(--blue);
  }
  .header.opened .menu {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header__hamburger {
    margin-left: 30px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0;
    width: 375px;
    padding-top: 125px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: var(--bg-color);
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 12;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .menu__list {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .menu__list > .menu__item {
    margin: 0;
    padding: 0;
    height: auto;
    border: none;
  }
  .menu__list > .menu__item + .menu__item {
    margin-top: 40px;
  }
  .menu__list > .menu__item > .menu__link {
    margin: 0;
    padding: 0;
    color: var(--blue);
    font-weight: 500;
    font-size: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: auto;
    border: none;
  }
  .menu__list > .menu__item.has-submenu > .menu__link:hover {
    color: var(--hover);
  }
  .menu__list > .menu__item.has-submenu > .menu__link:hover .menu__toggle {
    border-color: var(--hover);
  }
  .menu__list > .menu__item.has-submenu .menu__toggle {
    border-color: var(--blue);
  }
  .menu__hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  .menu__login-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 50px;
  }
  .menu__login-btn .login-btn__icon {
    background-color: #96B7D2;
  }
  .menu__login-btn .login-btn__title {
    color: var(--blue);
  }
  .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    top: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding: 0;
    margin: 0;
    margin-top: 25px;
    display: none;
  }
  .sub-menu.visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-menu .menu__link {
    color: var(--blue);
  }
  .sub-menu .menu__item {
    opacity: 1;
  }
  .header.fixed .menu__list > .menu__item {
    margin-right: 0;
  }
  .header.fixed .sub-menu {
    padding-top: 0;
    top: auto;
  }
  .hamburger {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: 15px 14px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    background-color: #96B7D2;
    z-index: 12;
  }
  .hamburger .hamburger-box {
    width: 16px;
    height: 14px;
  }
  .hamburger .hamburger-inner,
  .hamburger .hamburger-inner::after,
  .hamburger .hamburger-inner::before {
    background-color: #FFF;
    height: 2px;
    width: 16px;
    border-radius: 0;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger .hamburger-inner::before {
    top: 6px;
  }
  .hamburger .hamburger-inner::after {
    top: 12px;
  }
  .hamburger.is-active .hamburger-inner {
    width: 16px;
    top: -2px;
  }
  .hamburger.is-active .hamburger-inner::after {
    top: 20px;
  }
}
@media (hover) {
  .languages:hover:before {
    opacity: 1;
  }
  .languages:hover .languages__active {
    color: var(--blue);
  }
  .languages:hover .languages__active svg path {
    fill: var(--blue);
  }
}
@media only screen and (max-width: 991px) {
  .header__languages {
    display: none;
  }
  .header__social {
    display: none;
  }
  .menu__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: 20px;
    top: 25px;
  }
  .menu__social .social__link {
    background-color: #96B7D2;
  }
  .menu__social .social__link:hover {
    background-color: var(--hover);
  }
  .menu__languages {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 50px;
  }
  .menu__languages .languages__active {
    color: var(--blue);
  }
  .menu__languages .languages__active svg path {
    fill: var(--blue);
  }
}
@media only screen and (max-width: 767px) {
  .header__logo .logo__text {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .header__logo {
    margin-right: 20px;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .header__nav {
    height: 65px;
  }
  .header.fixed {
    height: 65px;
  }
  .header__phone {
    font-size: 14px;
  }
  .header__hamburger {
    margin-left: 20px;
  }
  .menu {
    padding-top: 105px;
    width: 100%;
  }
}
.page-content {
  color: var(--text-color);
  font-size: 15px;
}
.page-content p {
  margin: 40px 0;
}
.page-content img {
  height: auto;
  border-radius: var(--brs);
  background-color: #ccc;
}
.page-content b, .page-content strong {
  font-weight: 700;
}
.page-content i {
  font-style: italic;
}
.page-content small {
  font-size: 14px;
}
.page-content h2,
.page-content h3 {
  margin: 0;
  font-weight: 700;
  color: var(--blue);
}
.page-content h2 {
  font-size: 48px;
  margin-top: 60px;
  font-weight: 600;
}
.page-content h2:first-child {
  margin-top: 0;
}
.page-content h3 {
  font-size: 32px;
  margin-top: 30px;
}
.page-content .alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.page-content .alignright {
  float: right;
  margin: 5px 0px 20px 20px;
}
.page-content .aligncenter,
.page-content div.aligncenter {
  display: block;
  margin: 0 auto;
}
.page-content .image-popup {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-content .image-popup.aligncenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-content a:not(.btn) {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--red);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.page-content a:not(.btn):hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.page-content blockquote {
  margin: 50px 0;
  padding: 40px 40px 40px 100px;
  font-size: inherit;
  position: relative;
  font-style: normal;
  background-color: var(--bg-color);
  border-radius: var(--brs);
}
.page-content blockquote:before {
  position: absolute;
  width: 32px;
  height: 32px;
  background-image: url("../img/quotes.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 70px;
  left: 45px;
  content: "";
}
.page-content ul, .page-content ol {
  margin: 30px 0;
  padding: 0;
  font-size: 16px;
}
.page-content ul p, .page-content ol p {
  margin-bottom: 30px;
}
.page-content ul p b, .page-content ul p strong, .page-content ol p b, .page-content ol p strong {
  font-weight: 500;
}
.page-content ul li, .page-content ol li {
  position: relative;
  padding-left: 27px;
}
.page-content ul li + li, .page-content ol li + li {
  margin-top: 10px;
}
.page-content ul li::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  width: 17px;
  height: 13px;
  background-size: contain;
  background-image: url("../img/check.svg");
}
.page-content ul li + li {
  margin-top: 10px;
}
.page-content ul li > ul {
  margin: 10px 0;
  position: relative;
}
.page-content ul li > ul:before {
  position: absolute;
  content: "";
  left: -20px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background-color: #D5DFEB;
}
.page-content ol {
  counter-reset: item;
}
.page-content ol li:before {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  text-align: center;
  content: "";
  content: counter(item);
  counter-increment: item;
  font-weight: 700;
  color: var(--red);
}
.page-content ol li > ol {
  margin: 10px 0;
  position: relative;
}
.page-content ol li > ol:before {
  position: absolute;
  content: "";
  left: -20px;
  top: 5px;
  bottom: 5px;
  width: 1px;
  background-color: #D5DFEB;
}
.page-content .table-wrap {
  overflow: hidden;
  overflow-x: auto;
}
.page-content table {
  width: auto;
  min-width: 100%;
  color: var(--blue);
  border-collapse: collapse;
}
.page-content table th {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  padding: 20px;
  background-color: var(--bg-color);
}
.page-content table td {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 20px;
  border-bottom: 1px solid #D5DFEB;
}

@media only screen and (max-width: 1199px) {
  .page-content p {
    margin: 30px 0;
  }
  .page-content h2 {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .page-content .alignleft,
  .page-content .alignright,
  .page-content .aligncenter,
  .page-content .alignnone {
    width: 100%;
    float: none;
    margin: 0 0 20px;
  }
  .page-content .alignleft img,
  .page-content .alignright img,
  .page-content .aligncenter img,
  .page-content .alignnone img {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .page-content {
    font-size: 14px;
  }
  .page-content p {
    margin: 20px 0;
  }
  .page-content h2 {
    font-size: 36px;
    margin-top: 40px;
  }
  .page-content h3 {
    margin-top: 20px;
  }
  .page-content h3 {
    font-size: 32px;
  }
  .page-content ul, .page-content ol {
    margin: 20px 0;
    font-size: 14px;
  }
  .page-content ul p, .page-content ol p {
    font-size: 15px;
  }
  .page-content ol li:before {
    top: -2px;
  }
  .page-content .table-wrap {
    margin-right: -20px;
    padding-right: 20px;
  }
  .page-content table th {
    font-size: 16px;
  }
  .page-content table td {
    font-size: 14px;
  }
  .page-content blockquote {
    margin: 40px 0;
    padding: 70px 20px 20px;
  }
  .page-content blockquote:before {
    width: 16px;
    height: 16px;
    top: 35px;
    left: 20px;
  }
}
.fancybox-bg {
  background-color: #2B4666;
}

.fancybox-is-open .fancybox-bg {
  background-color: #2B4666;
  opacity: 0.75;
}

/* Custom animation */
.fancybox-fx-slide-in-right.fancybox-slide--previous {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--next {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.fancybox-fx-slide-in-right.fancybox-slide--current {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  text-align: center;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  text-align: center;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::-ms-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  text-align: center;
  -ms-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form *::placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  text-align: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=number],
.form textarea {
  width: 100%;
  text-align: center;
  font-size: 16px;
  height: 64px;
  font-weight: 500;
  background-color: #FFF;
  padding: 0 50px;
  color: #70839A;
  border: 1px solid #CFDAE8;
  border-radius: 10em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form input[type=text]:focus::-webkit-input-placeholder, .form input[type=tel]:focus::-webkit-input-placeholder, .form input[type=url]:focus::-webkit-input-placeholder, .form input[type=email]:focus::-webkit-input-placeholder, .form input[type=number]:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder, .form input[type=tel]:focus::-moz-placeholder, .form input[type=url]:focus::-moz-placeholder, .form input[type=email]:focus::-moz-placeholder, .form input[type=number]:focus::-moz-placeholder, .form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder, .form input[type=tel]:focus:-ms-input-placeholder, .form input[type=url]:focus:-ms-input-placeholder, .form input[type=email]:focus:-ms-input-placeholder, .form input[type=number]:focus:-ms-input-placeholder, .form textarea:focus:-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-ms-input-placeholder, .form input[type=tel]:focus::-ms-input-placeholder, .form input[type=url]:focus::-ms-input-placeholder, .form input[type=email]:focus::-ms-input-placeholder, .form input[type=number]:focus::-ms-input-placeholder, .form textarea:focus::-ms-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::placeholder,
.form input[type=tel]:focus::placeholder,
.form input[type=url]:focus::placeholder,
.form input[type=email]:focus::placeholder,
.form input[type=number]:focus::placeholder,
.form textarea:focus::placeholder {
  opacity: 0;
}
.form input[type=text].location-input,
.form input[type=tel].location-input,
.form input[type=url].location-input,
.form input[type=email].location-input,
.form input[type=number].location-input,
.form textarea.location-input {
  background-image: url("./img/location.svg");
  background-repeat: no-repeat;
  background-position: center left 25px;
  padding-left: 60px;
  padding-right: 60px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 80px #FFF;
  -webkit-text-fill-color: #70839A;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form textarea {
  resize: none;
  height: 180px;
  padding: 20px 50px;
  border-radius: 50px;
  line-height: normal;
}
.form-label {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 10px;
}
.form label {
  width: 100%;
  text-align: center;
  font-size: 18px;
  color: var(--blue);
  font-weight: 600;
}
.form label + label {
  margin-top: 30px;
}
.form .wpcf7-form-control-wrap {
  margin-top: 10px;
  width: 100%;
  display: block;
  position: relative;
}
.form .form-control-wrap {
  width: 100%;
  display: block;
  position: relative;
}
.form .form-control-wrap + .form-control-wrap {
  margin-top: 30px;
}
.form__btn {
  margin-top: 30px;
}

.wpcf7 form .wpcf7-spinner {
  display: none;
}

.form .wpcf7-list-item-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  cursor: pointer;
  padding-left: 39px;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #959DA9;
}
.form .wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 5px;
  height: 24px;
  width: 24px;
  top: calc(50% - 12px);
  left: 0px;
  border: none;
  background-color: #DCE6F3;
}
.form .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: 0px;
  background-image: url("../img/check-icon.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.form .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.custom-date {
  background-image: url("./img/date-icon.svg");
  background-repeat: no-repeat;
  background-size: 25px 24px;
  background-position: center left calc(50% - 50px);
  text-indent: 30px;
}

.jq-selectbox {
  width: 100%;
  font-family: "Poppins", "Inter", sans-serif;
}
.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.jq-selectbox__select {
  width: 100%;
  height: 64px;
  padding: 0 100px 0 50px;
  border: 1px solid #CFDAE8;
  border-radius: 10em;
  background-image: none;
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  line-height: 1;
}
.jq-selectbox__select-text {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", "Inter", sans-serif;
  color: #70839A;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  white-space: normal;
  text-align: left;
}
.jq-selectbox__select:hover {
  background-image: none;
  background-color: #FFF;
}
.jq-selectbox__select:active {
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #CFDAE8;
}
.jq-selectbox.focused.opened .jq-selectbox__select {
  background-color: #FFF;
}
.jq-selectbox__trigger {
  border: none;
  position: absolute;
  right: 50px;
  top: 19px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #DCE6F3;
  background-image: url("./img/select-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}
.jq-selectbox__trigger-arrow {
  display: none;
}
.jq-selectbox__dropdown {
  background-color: #FFF;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: 1px solid #CFDAE8;
  margin-top: 0px;
  overflow: hidden;
  padding: 0;
  top: auto !important;
}
.jq-selectbox__dropdown ul {
  max-height: 245px;
}
.jq-selectbox__dropdown ul::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.jq-selectbox__dropdown ul::-webkit-scrollbar-thumb {
  background: #537398;
  border-radius: 2px;
}
.jq-selectbox__dropdown ul::-webkit-scrollbar-track {
  background: #DCE6F3;
}
.jq-selectbox__dropdown li {
  font-size: 16px;
  padding: 10px 30px;
  font-weight: 500;
  font-family: "Poppins", "Inter", sans-serif;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  white-space: normal;
  color: var(--blue);
  line-height: 1;
}
.jq-selectbox__dropdown li.selected {
  color: var(--blue);
  background-color: rgba(0, 0, 0, 0.05);
}
.jq-selectbox__dropdown li:hover {
  color: var(--blue);
  background-color: rgba(0, 0, 0, 0.05);
}
.jq-selectbox__dropdown li.disabled, .jq-selectbox__dropdown li:disabled {
  pointer-events: none;
}

.select-time .jq-selectbox__select {
  padding: 0 50px;
}
.select-time .jq-selectbox__select-text {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("./img/clock-icon.svg");
  background-repeat: no-repeat;
  background-size: 25px 24px;
  background-position: center left calc(50% - 25px);
  text-indent: 30px;
}
.select-time .jq-selectbox__trigger {
  display: none;
}

.iti {
  width: 100%;
}
.iti__selected-dial-code {
  font-weight: 500;
  font-size: 16px;
  color: #70839A;
}
.iti .iti__selected-flag {
  border-radius: 10em 0 0 10em;
  padding-left: 30px;
  padding-right: 10px;
  background-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  outline: none;
}
.iti__arrow {
  border: none;
  width: 9px;
  height: 6px;
  background-image: url("./img/caret.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.iti__country-list {
  z-index: 10;
  margin-top: 10px;
  max-height: 250px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #CFDAE8;
  white-space: normal;
  color: var(--blue);
  font-weight: 500;
  font-size: 16px;
}
.iti__country-list::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.iti__country-list::-webkit-scrollbar-thumb {
  background: #537398;
  border-radius: 2px;
}
.iti__country-list::-webkit-scrollbar-track {
  background: #DCE6F3;
}
.iti__dial-code {
  color: var(--blue);
}
.iti-mobile .iti--container {
  z-index: 100000;
  top: -1px;
  bottom: 0;
  left: -1px;
  right: 0;
}
.iti-mobile .iti__country-list {
  margin: 0;
  width: 100%;
}

.popup {
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  margin: 40px auto 10px;
  width: 100%;
  max-width: 900px;
  border-radius: var(--brs);
  overflow: visible;
  padding: 85px 155px;
  background-color: var(--bg-color);
  color: var(--blue);
}
.popup__title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 600;
}
.popup .fancybox-close-small {
  display: none;
}
.popup-form__popup-close {
  position: absolute;
  top: -33px;
  right: -33px;
}
.popup-form__btn {
  margin-top: 40px;
}
.popup .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}
.popup .form-row .form-control-wrap,
.popup .form-row label {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 0;
}
.popup .iti__country-list {
  width: 590px;
}

.popup-calculate {
  padding-left: 70px;
  padding-right: 70px;
  max-width: 960px;
}
.popup-calculate__btn {
  margin-top: 35px;
  font-size: 16px;
}
.popup-calculate .iti__country-list {
  width: 400px;
}

.form-calculate textarea {
  height: 150px;
}
.form-calculate .form-row {
  margin-top: 0;
  margin-bottom: 30px;
}
.form-calculate .wpcf7-form-control-wrap {
  margin-top: 0px;
}

.popup-thanks {
  text-align: center;
  padding: 40px;
  max-width: 550px;
}
.popup-thanks__icon {
  margin-bottom: 20px;
  width: 90px;
  height: 90px;
}
.popup-thanks__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}
.popup-thanks__text {
  font-size: 16px;
  margin-top: 20px;
}

.ui-datepicker {
  border-radius: 6px;
}
.ui-datepicker.ui-widget.ui-widget-content {
  border: 1px solid #7D8286;
}
.ui-datepicker-header {
  color: #FFF;
  background: var(--blue);
  border-radius: 6px;
}
.ui-datepicker-calendar {
  color: var(--blue);
  font-family: "Poppins", "Inter", sans-serif;
}
.ui-datepicker-calendar .ui-datepicker-today .ui-state-default {
  background-color: var(--red);
  color: #fff;
  font-weight: 600;
}
.ui-datepicker-calendar .ui-datepicker-today .ui-state-default:hover, .ui-datepicker-calendar .ui-datepicker-today .ui-state-default.ui-state-active {
  background-color: var(--red);
}
.ui-datepicker-calendar .ui-state-default {
  text-align: center;
  font-weight: 600;
  color: var(--blue);
  background-color: var(--bg-color);
  border-color: transparent;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.ui-datepicker-calendar .ui-state-default:hover {
  background-color: rgba(148, 181, 208, 0.5);
}
.ui-datepicker-calendar .ui-state-default.ui-state-active {
  background-color: var(--blue);
  color: #fff;
  font-weight: 600;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: center;
  cursor: pointer;
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: transparent;
  border: none;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}

.ui-datepicker .ui-datepicker-prev {
  background-image: url("./img/datepicker-prev.svg");
}
.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-next {
  background-image: url("./img/datepicker-next.svg");
}
.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
  top: 2px;
}

.form-checkbox {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px -15px;
}
.form-checkbox .wpcf7-list-item {
  margin: 0 20px 15px;
}

@media only screen and (max-width: 991px) {
  .popup {
    width: calc(100% - 80px);
    padding-left: 70px;
    padding-right: 70px;
  }
  .iti__country-list {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .popup {
    padding-left: 50px;
    padding-right: 50px;
  }
  .popup .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    margin-top: 0;
  }
  .popup .form-row label,
  .popup .form-row .form-control-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
  }
  .popup .form-row .form-control-wrap {
    margin-top: 0;
  }
  .form-calculate .form-row label {
    margin-top: 0;
  }
  .form-calculate .form-row label + label {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .form *::-webkit-input-placeholder {
    font-size: 14px;
  }
  .form *::-moz-placeholder {
    font-size: 14px;
  }
  .form *:-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::-ms-input-placeholder {
    font-size: 14px;
  }
  .form *::placeholder {
    font-size: 14px;
  }
  .form input[type=text],
  .form input[type=tel],
  .form input[type=url],
  .form input[type=email],
  .form input[type=number],
  .form textarea {
    font-size: 14px;
    height: 54px;
    padding: 0 30px;
    text-align: center;
  }
  .form input[type=text].location-input,
  .form input[type=tel].location-input,
  .form input[type=url].location-input,
  .form input[type=email].location-input,
  .form input[type=number].location-input,
  .form textarea.location-input {
    padding-left: 40px;
    padding-right: 40px;
    background-position: center left 15px;
  }
  .form textarea {
    height: 180px;
    padding: 20px 50px;
  }
  .form label {
    font-size: 16px;
  }
  .form label + label {
    margin-top: 20px;
  }
  .form-label {
    font-size: 16px;
  }
  .form .form-control-wrap + .form-control-wrap {
    margin-top: 20px;
  }
  .form__btn {
    width: 100%;
  }
  .form .wpcf7-list-item-label {
    font-size: 14px;
  }
  .iti__selected-dial-code {
    font-size: 14px;
  }
  .jq-selectbox__select {
    height: 54px;
    padding: 0 60px 0 30px;
  }
  .jq-selectbox__select-text {
    font-size: 14px;
  }
  .jq-selectbox__trigger {
    top: 13px;
    right: 30px;
  }
  .custom-date {
    background-position: center left calc(50% - 45px);
  }
  .popup {
    padding: 30px 20px;
    margin: 30px auto 10px;
    width: calc(100% - 60px);
  }
  .popup__title {
    font-size: 24px;
  }
  .popup-form__popup-close {
    top: -25px;
    right: -25px;
  }
  .popup-form__btn {
    width: 100%;
    margin-top: 30px;
  }
  .popup .form-row label {
    margin-top: 20px;
  }
  .popup-calculate__btn {
    margin-top: 25px;
    width: 100%;
  }
  .form-calculate textarea {
    height: 210px;
  }
  .form-calculate .form-row {
    margin-bottom: 20px;
  }
  .form-calculate .form-row label {
    margin-top: 0;
  }
  .form-calculate .form-row label + label {
    margin-top: 20px;
  }
  .popup-thanks__icon {
    margin-bottom: 10px;
    width: 60px;
    height: 60px;
  }
  .popup-thanks__title {
    font-size: 20px;
  }
  .popup-thanks__text {
    font-size: 13px;
    margin-top: 10px;
  }
}
.footer {
  background-color: var(--blue);
  color: #fff;
  padding: 70px 0 80px;
}
.footer-block {
  position: relative;
}
.footer-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;
  width: calc(100% - 200px - 285px);
}
.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-menu__item + .footer-menu__item {
  margin-left: 58px;
}
.footer-menu__link {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
}
.footer-menu__link:before, .footer-menu__link:after {
  position: absolute;
  content: "";
  height: 1px;
  left: 50%;
  right: 50%;
  background-color: #fff;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer-menu__link:hover:before {
  left: 0;
  opacity: 1;
}
.footer-menu__link:hover:after {
  right: 0;
  opacity: 1;
}
.footer__languages {
  margin-left: 50px;
  height: 44px;
  background-color: #9AAFCA;
  border-radius: 22px;
}
.footer__languages.is-active {
  border-radius: 22px 22px 0 0;
}
.footer__languages .languages__active {
  color: var(--blue);
  padding: 10px 35px 10px 20px;
}
.footer__languages .languages__active svg {
  right: 20px;
}
.footer__languages .languages__drop-down {
  padding: 10px 20px;
  border-radius: 0 0 22px 22px;
}
.footer__languages .languages__item + .languages__item {
  margin-top: 10px;
}
.footer-contacts {
  position: absolute;
  top: 0;
  right: 0;
  width: 285px;
}
.footer-phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-phones a {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-phones a:hover {
  color: var(--hover);
}
.footer-emails {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.footer-emails a {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-emails a:hover {
  color: var(--hover);
}
.footer__social {
  margin-top: 30px;
}
.footer__social .social__link {
  background-color: #9AAFCA;
}
.footer__social .social__link:hover {
  background-color: var(--hover);
}
.footer-address {
  font-size: 16px;
  margin-top: 30px;
}
.footer-info {
  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;
  margin-top: 130px;
  width: calc(100% - 200px - 285px);
}
.footer-copy {
  font-size: 16px;
  color: #94A9BA;
}
.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 30px;
}
.footer-links a {
  color: #94A9BA;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--hover);
}
.footer--is-dark {
  background-color: var(--dark);
}
.footer--is-dark .footer__logo .logo__text {
  color: #8B8980;
}
.footer--is-dark .footer__languages {
  background-color: #19160B;
}
.footer--is-dark .footer__languages .languages__active {
  color: #8B8980;
}
.footer--is-dark .footer__languages .languages__active svg path {
  fill: #8B8980;
}
.footer--is-dark .footer__languages .languages__drop-down {
  background-color: #19160B;
}
.footer--is-dark .footer__languages .languages__item {
  color: #8B8980;
}
.footer--is-dark .footer__languages .languages__item:hover {
  color: #fff;
}
.footer--is-dark .footer__social .social__link {
  background-color: #19160B;
}
.footer--is-dark .footer__social .social__link:hover {
  background-color: var(--hover);
}
.footer--is-dark .footer__social .social__link:hover svg path {
  fill: #2B4666;
}
.footer--is-dark .footer__social .social__link svg path {
  fill: #8B8980;
}
.footer--is-dark .footer-copy {
  color: #8B8980;
}
.footer--is-dark .footer-links a {
  color: #8B8980;
}
.footer--is-dark .footer-links a:hover {
  color: var(--hover);
}

@media only screen and (max-width: 1599px) {
  .footer {
    padding: 60px 0;
  }
  .footer-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-top {
    width: 100%;
    margin-bottom: 50px;
  }
  .footer-contacts {
    width: auto;
    position: relative;
    top: auto;
    right: auto;
  }
  .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .footer__logo {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
  }
  .footer-links {
    margin: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-menu__item + .footer-menu__item {
    margin-left: 40px;
  }
  .footer-menu__link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin: 0;
  }
  .footer-menu {
    display: none;
  }
  .footer-contacts {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
  .footer__languages {
    margin-left: 0;
  }
  .footer-info {
    width: 100%;
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 40px;
  }
  .footer-links {
    margin-top: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-copy {
    margin-top: 40px;
    text-align: center;
  }
  .footer-address {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .footer {
    padding: 50px 0;
  }
}
.banner-mobile-slider {
  display: none;
}
.banner-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.banner-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  height: 42vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center left;
  -webkit-clip-path: polygon(7.5% 0, 100% 0, 92.5% 100%, 0 100%);
          clip-path: polygon(7.5% 0, 100% 0, 92.5% 100%, 0 100%);
  width: 72%;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.banner-slide__header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 1;
  pointer-events: none;
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.banner-slide__title {
  font-weight: 600;
  text-align: left;
  color: #fff;
  font-size: 1vw;
  margin-left: 6%;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.banner-slide:nth-child(1) {
  -webkit-clip-path: polygon(0 0, 100% 0, 92.5% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 92.5% 100%, 0 100%);
}
.banner-slide:nth-child(1) .banner-slide__title {
  margin-left: 2%;
}
.banner-slide:nth-child(1) .banner-slide__info {
  width: 75%;
}
.banner-slide:last-child {
  -webkit-clip-path: polygon(7.5% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(7.5% 0, 100% 0, 100% 100%, 0 100%);
}
.banner-slide:nth-child(2) {
  margin-left: -7.5%;
}
.banner-slide:nth-child(2).banner-slide-visible {
  -webkit-transform: translateX(-81%);
          transform: translateX(-81%);
}
.banner-slide:nth-child(2) .banner-slide__info {
  margin-left: 7%;
}
.banner-slide:nth-child(3) {
  margin-left: -64%;
}
.banner-slide:nth-child(3).banner-slide-visible {
  -webkit-transform: translateX(-81%);
          transform: translateX(-81%);
}
.banner-slide:nth-child(4) {
  margin-left: -64%;
}
.banner-slide:nth-child(4).banner-slide-visible {
  -webkit-transform: translateX(-81%);
          transform: translateX(-81%);
}
.banner-slide:nth-child(4) .banner-slide__info {
  margin-left: 2%;
}
.banner-slide:nth-child(5) {
  margin-left: -64%;
}
.banner-slide:nth-child(5).banner-slide-visible {
  -webkit-transform: translateX(-81%);
          transform: translateX(-81%);
}
.banner-slide-active {
  cursor: auto;
}
.banner-slide-active .banner-slide__header-bg {
  opacity: 1;
}
.banner-slide-active .banner-slide__title {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}
.banner-slide-active .banner-slide__info {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.banner-slide__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 67.5%;
  margin-top: auto;
  margin-left: 4%;
  margin-bottom: 4vw;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.banner-slide__text {
  font-weight: 500;
  font-size: 1vw;
  color: #DAE3EB;
}
.banner-slide__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 25%;
  padding: 30px 60px;
}

@media only screen and (max-width: 1199px) {
  .banner-slider {
    display: none;
  }
  .banner-mobile-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: calc(100svh - 85px);
    min-height: 683px;
    max-height: 850px;
    position: relative;
  }
  .banner-mobile-slider__back, .banner-mobile-slider__next {
    position: absolute;
    bottom: 55px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-color: #fff;
  }
  .banner-mobile-slider__back:active, .banner-mobile-slider__next:active {
    background-color: transparent;
  }
  .banner-mobile-slider__back {
    left: calc(50% - 460px);
  }
  .banner-mobile-slider__next {
    left: calc(50% - 415px);
  }
  .banner-mobile-slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center left;
    color: #fff;
    padding: 10vh 0 126px;
    height: auto;
  }
  .banner-mobile-slide .container {
    height: 100%;
  }
  .banner-mobile-slide-block {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner-mobile-slide__title {
    margin: 0;
    font-weight: 600;
    font-size: 128px;
    line-height: 1.2;
  }
  .banner-mobile-slide__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: auto;
    position: relative;
  }
  .banner-mobile-slide__text {
    font-size: 16px;
    font-weight: 500;
    margin-right: 17%;
    color: #DAE3EB;
  }
}
@media (hover) {
  .banner-mobile-slider__back:hover, .banner-mobile-slider__next:hover {
    background-color: transparent;
  }
}
@media only screen and (max-width: 991px) {
  .banner-mobile-slider {
    height: 850px;
    min-height: 850px;
    max-height: 850px;
  }
  .banner-mobile-slider__back {
    left: calc(50% - 340px);
  }
  .banner-mobile-slider__next {
    left: calc(50% - 295px);
  }
  .banner-mobile-slide {
    padding-top: 85px;
    background-position: top left;
  }
  .banner-mobile-slide__title {
    font-size: 96px;
  }
  .banner-mobile-slide__text {
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .banner-mobile-slider {
    height: 800px;
    min-height: 800px;
    max-height: 800px;
  }
  .banner-mobile-slider__back {
    left: calc(50% - 250px);
  }
  .banner-mobile-slider__next {
    left: calc(50% - 205px);
  }
  .banner-mobile-slide {
    background-position: top left -100px;
  }
}
@media only screen and (max-width: 575px) {
  .banner-section {
    height: calc(100svh - 65px);
    min-height: calc(100svh - 65px);
    max-height: calc(100svh - 65px);
  }
  .banner-mobile-slider {
    height: calc(100svh - 65px);
    min-height: calc(100svh - 65px);
    max-height: calc(100svh - 65px);
  }
  .banner-mobile-slider__back {
    left: 20px;
    bottom: 50px;
  }
  .banner-mobile-slider__next {
    left: 65px;
    bottom: 50px;
  }
  .banner-mobile-slide {
    background-position: top left -100px;
    padding-top: 50px;
  }
  .banner-mobile-slide:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    content: "";
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(12, 18, 17, 0.3)), color-stop(30%, rgba(12, 18, 17, 0)), to(rgba(12, 18, 17, 0)));
    background-image: linear-gradient(180deg, rgba(12, 18, 17, 0.3) 0%, rgba(12, 18, 17, 0) 30%, rgba(12, 18, 17, 0) 100%);
  }
  .banner-mobile-slide__title {
    font-size: 64px;
  }
  .banner-mobile-slide__info {
    margin-top: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .banner-mobile-slide__text {
    margin-right: 0;
    font-size: 13px;
    margin-top: 0;
    max-width: 315px;
  }
  .banner-mobile-slide__btn {
    margin-left: 0;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 500;
    padding: 20px 40px;
  }
}
.sales-section {
  overflow: hidden;
  position: relative;
  color: #CDDBE7;
}
.sales-section .section-title {
  color: #fff;
}
.sales-bg {
  position: absolute;
  top: -2px;
  left: 0;
  bottom: -2px;
  content: "";
  right: calc(50% + 195px);
  background-color: var(--blue);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 115px) 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 115px) 50%, 100% 100%, 0 100%);
}
.sales-info__bottom {
  margin-top: 22px;
}
.sales__text {
  margin-top: 22px;
}
.sales-count__value {
  font-size: 20px;
  font-weight: 600;
}
.sales-count__value strong {
  font-weight: 600;
  font-size: 48px;
}
.sales-count__value span {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-left: 3px;
}
.sales-count__value span.visible {
  opacity: 1;
  visibility: visible;
}
.sales-count__text {
  display: inline-block;
  margin-left: 13px;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.sales-count__text.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.sales__btn {
  margin-top: 43.5px;
}
.sales__btn--mobile {
  display: none;
}
.sales-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}
.sales-item {
  width: calc(33.33% - 20px);
  margin: 0 10px;
  background-color: var(--bg-color);
  border-radius: 10px;
  overflow: hidden;
  background-image: url("../img/decor.svg");
  background-size: 76% auto;
  background-position: top right;
  background-repeat: no-repeat;
  padding: 40px 30px;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  aspect-ratio: 0.795;
}
.sales-item__title {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
}
.sales-item__img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0px;
}

@media (hover) {
  .sales-item {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .sales-item:hover {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media only screen and (max-width: 1599px) {
  .sales {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sales-bg {
    right: calc(50% + 80px);
  }
}
@media only screen and (max-width: 1199px) {
  .sales-section {
    background-color: var(--blue);
  }
  .sales-bg {
    display: none;
  }
  .sales-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sales-info__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sales-info__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 60px;
    margin-top: 0;
    min-height: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .sales__text {
    margin-top: 40px;
  }
  .sales__btn {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-top: 0;
    margin-bottom: 30px;
  }
  .sales-count {
    margin-top: auto;
  }
  .sales-items {
    margin-top: 50px;
    margin-right: -10px;
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  .sales-item {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sales-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .sales-info__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sales-info__bottom {
    margin-left: 0;
    margin-top: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sales__text {
    width: 100%;
  }
  .sales__btn {
    display: none;
    margin: 0;
  }
  .sales__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: auto;
  }
  .sales-items {
    overflow-x: auto;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .sales-item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 295px;
    aspect-ratio: 0;
    height: 372px;
    margin-left: 0;
    margin-right: 0;
  }
  .sales-item + .sales-item {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .sales {
    margin-left: -20px;
    margin-right: -20px;
  }
  .sales__text {
    margin-top: 25px;
  }
  .sales-info {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sales-info__bottom {
    margin-top: 15px;
  }
  .sales__btn {
    padding: 15px 40px;
  }
  .sales-items {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
  }
}
.rent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.rent-section {
  overflow: hidden;
  position: relative;
  color: #CDEAE4;
}
.rent-section .section-title {
  color: #fff;
}
.rent-bg {
  position: absolute;
  top: -2px;
  right: 0;
  bottom: -2px;
  content: "";
  left: calc(50% + 195px);
  background-color: var(--green);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 150px 50%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 150px 50%, 0 0);
}
.rent-info {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rent-info__bottom {
  margin-top: 30px;
}
.rent__text {
  margin-top: 22px;
}
.rent-count .sales-count__value {
  color: #fff;
}
.rent__btn {
  margin-top: 48.5px;
}
.rent__btn--mobile {
  display: none;
}
.rent-form {
  width: 100%;
  text-align: center;
  background-color: var(--bg-color);
  border-radius: var(--brs);
  -webkit-clip-path: polygon(0 0, calc(100% - 115px) 0, 100% 50%, calc(100% - 115px) 100%, 0 100%, 0 0);
          clip-path: polygon(0 0, calc(100% - 115px) 0, 100% 50%, calc(100% - 115px) 100%, 0 100%, 0 0);
  padding: 67px 158px 82px 80px;
}
.rent-form .jq-selectbox__dropdown ul {
  max-height: 160px;
}
.rent-form .form-row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rent-form .form-column {
  width: calc(50% - 8.5px);
  text-align: center;
}
.rent-form .form-column .wpcf7-form-control-wrap {
  margin-top: 7px;
}
.rent-form__btn {
  font-size: 16px;
  margin-top: 40px;
}
.rent-form__return-input {
  display: none;
}
.rent-form__return-input.visible {
  display: block;
}

@media only screen and (max-width: 1599px) {
  .rent-bg {
    left: calc(50% + 60px);
  }
  .rent-form {
    padding: 67px 138px 82px 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .rent-section {
    background-color: var(--green);
  }
  .rent-bg {
    display: none;
  }
  .rent-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .rent-info__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .rent-info__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 60px;
    margin-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .rent-count {
    margin-top: 40px;
  }
  .rent__btn {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
  }
  .rent .section-title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .rent__text {
    margin-top: 40px;
    width: 100%;
  }
  .rent-form {
    margin-top: 50px;
    -webkit-clip-path: none;
            clip-path: none;
    padding: 50px 50px 65px;
  }
  .rent-form__btn {
    margin-top: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .rent-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rent-info__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .rent-info__bottom {
    margin-left: 0;
    margin-top: 30px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .rent__text {
    width: 100%;
  }
  .rent__btn {
    display: none;
  }
  .rent__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-left: auto;
  }
  .rent-count {
    margin-top: 0;
  }
  .rent-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rent-form .form-column {
    width: 100%;
  }
  .rent-form .form-column + .form-column {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .rent__text {
    margin-top: 25px;
  }
  .rent-info__bottom {
    margin-top: 15px;
  }
  .rent__btn {
    padding: 15px 40px;
  }
  .rent-form {
    margin-top: 30px;
    padding: 30px 20px;
  }
  .rent-form__return-checkbox .wpcf7-list-item-label {
    font-size: 12px;
  }
  .rent-form .form-column .wpcf7-form-control-wrap {
    margin-top: 10px;
  }
  .rent-form__btn {
    margin-top: 30px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) {
  .rent-form .form input[type=text],
  .rent-form .form input[type=tel],
  .rent-form .form input[type=url],
  .rent-form .form input[type=email],
  .rent-form .form input[type=number],
  .rent-form .form textarea {
    height: 79px;
  }
  .rent-form .jq-selectbox__select {
    height: 79px;
  }
  .rent-form .jq-selectbox__trigger {
    top: 26px;
  }
}
.order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.order-info {
  width: calc(50% - 65px);
}
.order__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  max-width: 315px;
  line-height: 1.4;
}
.order__text strong, .order__text b {
  font-weight: 700;
  font-size: 32px;
}
.order-section {
  background-color: var(--blue);
  color: #fff;
}
.order-section .section-title {
  color: #fff;
}
.order-steps {
  margin-top: 40px;
  width: 100%;
  position: relative;
}
.order-steps:before {
  position: absolute;
  content: "";
  width: 20px;
  background-color: #203855;
  left: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40px;
  bottom: 40px;
  pointer-events: none;
}
.order-steps:after {
  position: absolute;
  content: "";
  width: 2px;
  left: 40px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 40px;
  bottom: 40px;
  pointer-events: none;
  background-image: url("./img/track-marker.svg");
  background-repeat: repeat-y;
}
.order-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.order-step + .order-step {
  margin-top: 40px;
}
.order-step__number {
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #537398;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  width: 80px;
  height: 80px;
  cursor: pointer;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  line-height: 1;
}
.order-step__number strong {
  font-weight: 700;
  font-size: 36px;
  margin-top: 3px;
}
.order-step__number:hover {
  background-color: #425D7D;
}
.order-step__text {
  font-size: 20px;
  font-weight: 500;
}
.order__btn {
  font-size: 16px;
  font-weight: 500;
  margin-top: 60px;
  padding-left: 85px;
  padding-right: 85px;
}
.order-popup {
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translate(100%);
          transform: translate(100%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  height: 100dvh;
  width: 900px;
  background-color: var(--bg-color);
  z-index: 15;
  padding: 150px 130px 0px 80px;
}
.order-popup.visible {
  -webkit-transform: translate(0);
          transform: translate(0);
}
.order-popup__overlay {
  background-color: rgba(43, 70, 102, 0.75);
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  position: fixed;
  top: 0;
  height: 100vh;
  left: 0;
  right: 0;
  z-index: 14;
}
.order-popup__overlay.visible {
  opacity: 1;
  visibility: visible;
}
.order-popup__slider {
  overflow: hidden;
}
.order-popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.order-popup__back, .order-popup__next {
  position: absolute;
  top: 12px;
  bottom: auto;
  z-index: 2;
  width: 76px;
  height: 76px;
  border-color: #9AAFCA;
}
.order-popup__back:active, .order-popup__next:active {
  background-color: #9AAFCA;
}
.order-popup__back:active svg path, .order-popup__next:active svg path {
  fill: #FFF;
  stroke: transparent;
}
.order-popup__back {
  left: 0;
  right: auto;
}
.order-popup__next {
  left: 276px;
  right: auto;
}
.order-popup__slider {
  position: relative;
}
.order-popup__slide {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.order-popup__slide.swiper-slide-active {
  opacity: 1;
  visibility: visible;
}
.order-popup__slide-number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #537398;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  width: 100px;
  height: 100px;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  margin-left: 126px;
}
.order-popup__slide-number strong {
  font-weight: 700;
  font-size: 48px;
  margin-top: 3px;
}
.order-popup__slide-content {
  margin-top: 60px;
  overflow-y: auto;
  max-height: calc(100dvh - 390px);
  padding-right: 10px;
}
.order-popup__slide-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.order-popup__slide-content::-webkit-scrollbar-thumb {
  background: #537398;
  border-radius: 2px;
}
.order-popup__slide-content::-webkit-scrollbar-track {
  background: #DCE6F3;
}

.special-offer {
  width: calc(50% - 65px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #395576;
  border-radius: var(--brs);
  padding: 70px 50px 580px 70px;
  background-image: url("./img/decor-2.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 84% auto;
}
.special-offer__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  font-weight: 600;
}
.special-offer__text {
  margin-top: 50px;
  font-weight: 600;
  font-size: 20px;
}
.special-offer__text strong, .special-offer__text b {
  font-weight: 700;
}
.special-offer__btn {
  margin-top: 70px;
}
.special-offer__car {
  position: absolute;
  bottom: -280px;
  left: calc(50% + 20px);
  pointer-events: none;
}

@media (hover) {
  .order-popup__back:hover, .order-popup__next:hover {
    background-color: #9AAFCA;
  }
  .order-popup__back:hover svg path, .order-popup__next:hover svg path {
    fill: #FFF;
    stroke: transparent;
  }
}
@media only screen and (max-width: 1599px) {
  .order-info {
    width: calc(50% - 50px);
  }
  .order-popup {
    padding-right: 80px;
  }
  .special-offer {
    width: calc(50% - 50px);
    padding: 50px 65px 530px 50px;
  }
  .special-offer__car {
    width: 73%;
    bottom: -22%;
  }
}
@media only screen and (max-width: 1199px) {
  .order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .order-info {
    width: 100%;
  }
  .order__text {
    max-width: 100%;
  }
  .order__btn {
    margin-top: 30px;
  }
  .order-popup {
    width: 100%;
  }
  .special-offer {
    width: 100%;
    margin-top: 50px;
    padding-bottom: 60px;
    background-image: url("./img/decor-3.svg");
    background-size: 50% auto;
  }
  .special-offer__text {
    max-width: 300px;
  }
  .special-offer__btn {
    margin-top: 60px;
  }
  .special-offer__car {
    width: 600px;
    bottom: -150px;
    left: calc(50% + 30px);
  }
}
@media only screen and (max-width: 991px) {
  .special-offer__car {
    width: 450px;
    bottom: -120px;
    left: calc(50% + 20px);
  }
}
@media only screen and (max-width: 767px) {
  .special-offer {
    background-size: 130% auto;
    padding-bottom: 400px;
  }
  .special-offer__car {
    min-width: 650px;
    bottom: -120px;
    left: 0;
    right: auto;
  }
}
@media only screen and (max-width: 575px) {
  .order__text {
    margin-top: 20px;
    font-size: 16px;
  }
  .order-step__text {
    font-size: 14px;
  }
  .order-popup {
    padding: 100px 30px 0px 40px;
  }
  .order-popup__close {
    top: 20px;
    right: 20px;
  }
  .order-popup__slide {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .order-popup__slide-content {
    margin-top: 40px;
    max-height: calc(100dvh - 290px);
  }
  .order-popup__slide-number {
    margin-left: 0;
  }
  .order-popup__back, .order-popup__next {
    position: absolute;
    top: 12px;
    bottom: auto;
    z-index: 2;
    width: 76px;
    height: 76px;
    border-color: #9AAFCA;
  }
  .order-popup__back:active, .order-popup__next:active {
    background-color: #9AAFCA;
  }
  .order-popup__back:active svg path, .order-popup__next:active svg path {
    fill: #FFF;
    stroke: transparent;
  }
  .order-popup__back {
    left: 0;
    right: auto;
  }
  .order-popup__next {
    left: auto;
    right: 0;
  }
  .special-offer {
    background-size: 500px auto;
    background-position: bottom center;
    padding: 30px 30px 350px;
    margin-top: 40px;
  }
  .special-offer__title {
    font-size: 24px;
  }
  .special-offer__text {
    font-size: 15px;
    margin-top: 30px;
  }
  .special-offer__btn {
    margin-top: 40px;
    width: 100%;
  }
  .special-offer__car {
    min-width: 650px;
    bottom: -160px;
    left: calc(50% - 240px);
    right: auto;
  }
}
.service {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.service-section {
  overflow: hidden;
  position: relative;
  color: #F2E9E1;
}
.service-section .section-title {
  color: #fff;
}
.service-bg {
  position: absolute;
  top: -2px;
  right: 0;
  bottom: -2px;
  content: "";
  left: calc(50% + 195px);
  background-color: var(--grey);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
}
.service-info {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 55px;
  margin-bottom: 30px;
}
.service__btns .btn + .btn {
  margin-top: 30px;
}
.service__btn {
  margin-top: auto;
}
.service__btn.btn--bdr {
  padding-top: 25px;
  padding-bottom: 25px;
  border-width: 2px;
}
.service__btn--mobile {
  display: none;
}
.service__item {
  width: 100%;
  background-color: var(--bg-color);
  border-radius: 10px;
}
.service__item + .service__item {
  margin-top: 20px;
}
.service__item.is-open .service__item-toggle:before {
  opacity: 0;
}
.service__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 23.5px 30px;
  cursor: pointer;
}
.service__item-icon {
  margin-right: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 53px;
  height: 53px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service__item-title {
  color: var(--blue);
  font-size: 18px;
  font-weight: 600;
  margin-right: 30px;
}
.service__item-toggle {
  width: 26px;
  height: 26px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-left: auto;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.service__item-toggle:before, .service__item-toggle:after {
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 2px;
  content: "";
  background-color: var(--blue);
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.service__item-toggle:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16.5px 30px 30px;
  display: none;
  color: var(--blue);
}
.service__list-item {
  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;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
}
.service__list-item strong {
  margin-left: 30px;
  font-weight: 600;
}
.service__list-item + .service__list-item {
  margin-top: 40px;
}
.service__list-item.open .service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1599px) {
  .service-bg {
    left: calc(50% + 80px);
  }
}
@media only screen and (max-width: 1199px) {
  .service {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .service-section {
    background-color: var(--grey);
  }
  .service-bg {
    display: none;
  }
  .service-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service__btns {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .service__btns .btn + .btn {
    margin: 0;
    margin-left: 20px;
  }
  .service__btn {
    display: none;
  }
  .service__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 55px;
  }
  .service .section-title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .service__text {
    margin-top: 60px;
    width: 100%;
  }
  .service__items {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .service__text {
    margin-top: 30px;
  }
  .service__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 50px;
  }
  .service__btns .btn + .btn {
    margin-left: 0;
    margin-top: 17px;
  }
}
@media only screen and (max-width: 575px) {
  .service__text {
    margin-top: 20px;
  }
  .service__btns {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 30px;
  }
  .service__items {
    margin-top: 30px;
  }
  .service__item-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
  .service__item-title {
    margin-right: 20px;
  }
  .service__list {
    padding: 6.5px 30px 30px;
  }
  .service__list-item {
    font-size: 15px;
  }
  .service__list-item strong {
    margin-left: 20px;
    font-size: 18px;
  }
  .service__list-item + .service__list-item {
    margin-top: 30px;
  }
  .service__btn {
    margin-top: 30px;
    width: 100%;
  }
}
.detailing {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.detailing .section-title {
  color: #fff;
}
.detailing-section {
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  color: #C7C1BC;
}
.detailing-bg {
  position: absolute;
  top: -2px;
  left: 0;
  bottom: -2px;
  content: "";
  right: calc(50% + 195px);
  background-color: #19160B;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 115px) 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 115px) 50%, 100% 100%, 0 100%);
}
.detailing__text {
  margin-top: 40px;
}
.detailing__text strong, .detailing__text b {
  font-weight: 700;
}
.detailing__btns {
  margin-top: 60px;
  margin-bottom: 30px;
}
.detailing__btns .btn + .btn {
  margin-top: 30px;
}
.detailing__btn {
  margin-top: auto;
}
.detailing__btn.btn--bdr {
  padding-top: 25px;
  padding-bottom: 25px;
  border-width: 2px;
}
.detailing__btn--mobile {
  display: none;
}
.detailing-info {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.detailing-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -20px;
}
.detailing__link {
  width: calc(33.33% - 20px);
  margin: 0 10px 20px;
  aspect-ratio: 0.9865;
  background-color: #ccc;
  border-radius: var(--brs);
  overflow: hidden;
  padding: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.detailing__link:before {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.82;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(85%, rgb(0, 0, 0)));
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 85%);
}
.detailing__link:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  background-color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.detailing__title {
  margin-top: auto;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

@media (hover) {
  .detailing__link:hover:before {
    opacity: 0.2;
  }
}
@media only screen and (max-width: 1599px) {
  .detailing-bg {
    right: calc(50% + 80px);
  }
  .detailing__title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1199px) {
  .detailing {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .detailing-section {
    background-color: #19160B;
  }
  .detailing-bg {
    display: none;
  }
  .detailing-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .detailing__btns {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .detailing__btns .btn + .btn {
    margin: 0;
    margin-left: 20px;
  }
  .detailing__btn {
    display: none;
  }
  .detailing__btn--mobile {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-top: 55px;
  }
  .detailing .section-title {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .detailing__title {
    font-size: 16px;
  }
  .detailing__text {
    margin-top: 40px;
    width: 100%;
  }
  .detailing-grid {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .detailing__text {
    margin-top: 30px;
  }
  .detailing__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: 50px;
  }
  .detailing__btns .btn + .btn {
    margin-left: 0;
    margin-top: 17px;
  }
  .detailing__link {
    width: calc(50% - 20px);
  }
  .detailing__title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .detailing__text {
    margin-top: 20px;
  }
  .detailing__btns {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 30px;
  }
  .detailing-grid {
    margin-top: 30px;
    margin-bottom: -30px;
  }
  .detailing__link {
    width: calc(100% - 20px);
    margin-bottom: 30px;
  }
  .detailing__btn {
    margin-top: 30px;
    width: 100%;
  }
}
.washing-section {
  overflow: hidden;
  position: relative;
  color: #fff;
  min-height: 840px;
}
.washing-section .section-title {
  color: #fff;
}
.washing-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 74%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
}
.washing-bg {
  position: absolute;
  top: -2px;
  right: 0;
  bottom: -2px;
  content: "";
  left: calc(50% + 195px);
  background-color: #94B5D0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
}
.washing__btn {
  margin-top: 40px;
}
.washing-form {
  background-color: var(--bg-color);
  border-radius: var(--brs);
  padding: 70px 82px;
}
.washing-form .form .wpcf7-form-control-wrap {
  margin-top: 7px;
}
.washing-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}
.washing-form .form-row + .form-row {
  margin-top: 30px;
}
.washing-form .form-row label {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-right: 15px;
}
.washing-form .form-row label + label {
  margin-top: 0;
}
.washing-form .iti__country-list {
  width: 470px;
}
.washing-form__btn {
  margin-top: 40px;
  font-size: 16px;
}

@media only screen and (min-width: 2000px) {
  .washing-image {
    width: 70%;
  }
}
@media only screen and (min-width: 3000px) {
  .washing-image {
    width: 65%;
  }
}
@media only screen and (max-width: 1599px) {
  .washing-bg {
    left: calc(50% + 80px);
  }
  .washing-form {
    padding-left: 60px;
    padding-right: 60px;
  }
  .washing-form .iti__country-list {
    width: 370px;
  }
}
@media only screen and (max-width: 1199px) {
  .washing-section {
    background-color: #94B5D0;
    min-height: auto;
  }
  .washing-image {
    width: 100%;
    background-position: center;
  }
  .washing-image:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(25, 22, 11, 0.3);
  }
  .washing-bg {
    display: none;
  }
  .washing-form {
    margin-top: 50px;
    padding: 50px 50px 65px;
  }
  .washing-form__btn {
    margin-top: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .washing-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .washing-form .form-row + .form-row {
    margin-top: 20px;
  }
  .washing-form .form-row label {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .washing-form .form-row label + label {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .washing-form {
    padding: 30px 20px;
    margin-top: 30px;
  }
  .washing-form .form .wpcf7-form-control-wrap {
    margin-top: 10px;
  }
  .washing-form__btn {
    margin-top: 30px;
    width: 100%;
  }
}
.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 750px;
}
.about-section .container {
  position: relative;
}
.about-section .section-title span {
  color: #476981;
}
.about-section .section-title span:nth-child(2) {
  color: var(--red);
}
.about__text {
  margin-top: 40px;
}
.about-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 50px -10px -17px;
  width: calc(100% + 20px);
}
.about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 10px 17px;
  width: calc(50% - 20px);
  background-color: #F8FAFE;
  border-radius: var(--brs);
  padding: 30px;
}
.about-item__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
}
.about-item__text {
  margin: 20px 0 40px;
  font-size: 14px;
  color: #5F5F5F;
}
.about-item__icon {
  margin-top: auto;
  width: 72px;
  height: 72px;
}
.about__photo {
  position: absolute;
  width: 570px;
  aspect-ratio: 0.814;
  top: 0;
  right: 50px;
  border-radius: var(--brs);
  overflow: hidden;
}
.about__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-total {
  padding: 270px 0 80px 165px;
  background-repeat: no-repeat;
  background-size: 68% auto;
  background-position: top right;
  margin-top: -190px;
  margin-bottom: -85px;
}
.about-total__value {
  color: #D92C2C;
  font-size: 400px;
  font-weight: 500;
}
.about-total__text {
  width: 400px;
  color: var(--blue);
  margin-left: 20px;
  margin-top: -85px;
}
.about-total__text strong, .about-total__text b {
  font-weight: 700;
}

@media only screen and (max-width: 1599px) {
  .about {
    width: 55%;
  }
  .about__photo {
    width: 35%;
  }
  .about-total {
    padding-top: 20%;
    margin-top: -150px;
    background-size: 66% auto;
  }
  .about-total__value {
    font-size: 25vw;
  }
}
@media only screen and (max-width: 1199px) {
  .about {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .about__text {
    width: 100%;
  }
  .about-items {
    width: calc(100% - 295px);
  }
  .about-item__text {
    margin-bottom: 20px;
  }
  .about__photo {
    position: relative;
    top: auto;
    right: auto;
    width: 295px;
    height: 370px;
    margin-top: 50px;
    margin-left: 20px;
  }
  .about-total {
    margin-top: -100px;
    padding-left: 100px;
    padding-top: 200px;
    background-size: 690px auto;
  }
  .about-total__value {
    font-size: 300px;
  }
  .about-total__text {
    margin-top: -30px;
  }
}
@media only screen and (max-width: 991px) {
  .about-items {
    width: auto;
  }
  .about__photo {
    display: none;
  }
  .about-total {
    margin-top: 0;
    padding-left: 0px;
    padding-top: 120px;
    background-size: 530px auto;
  }
  .about-total__value {
    font-size: 270px;
  }
  .about-total__text {
    margin-top: -30px;
  }
}
@media only screen and (max-width: 767px) {
  .about-total {
    padding-top: 100px;
    background-size: 400px auto;
  }
  .about-total__value {
    font-size: 200px;
  }
}
@media only screen and (max-width: 575px) {
  .about__text {
    margin-top: 20px;
  }
  .about-items {
    margin: 30px 0 0;
  }
  .about-item {
    width: 100%;
    margin: 0;
  }
  .about-item + .about-item {
    margin-top: 10px;
  }
  .about-total {
    padding-top: 20%;
    background-size: 80% auto;
  }
  .about-total__value {
    font-size: 36vw;
  }
  .about-total__text {
    margin-top: -20px;
    margin-left: 0;
    width: 100%;
    max-width: 400px;
  }
}
@media only screen and (min-width: 1200px) {
  .reviews-section {
    padding: 180px 0;
  }
}
.reviews {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.reviews-section {
  overflow: hidden;
  position: relative;
}
.reviews-section .section-title {
  color: #fff;
}
.reviews-bg {
  position: absolute;
  top: -2px;
  right: 0;
  bottom: -2px;
  content: "";
  left: calc(50% + 195px);
  background-color: #94B5D0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 115px 50%, 0 0);
}
.reviews-content {
  width: calc(79.3% - 70px);
}
.reviews-info {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.reviews__btn {
  margin-top: 30px;
}
.reviews__btn.btn--bdr {
  padding-top: 25px;
  padding-bottom: 25px;
  border-width: 2px;
}
.reviews-slider {
  overflow: hidden;
  width: 100%;
}
.reviews-slider__back {
  margin-right: 15px;
}
.reviews-slider.swiper-initialized .review {
  opacity: 1;
}
.reviews-foot {
  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;
  width: 61%;
  margin-top: 50px;
  position: absolute;
  left: 0;
  top: 100%;
}
.reviews-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.review {
  overflow: hidden;
  border-radius: var(--brs);
  position: relative;
  aspect-ratio: 0.8795;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.review:after {
  pointer-events: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#EEF3F9), color-stop(28%, #EEF3F9), color-stop(70%, rgba(238, 243, 249, 0)));
  background: linear-gradient(0deg, #EEF3F9 0%, #EEF3F9 28%, rgba(238, 243, 249, 0) 70%);
}
.review > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review__link {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: #9AAFCA;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  z-index: 2;
}
.review__link:hover {
  background-color: var(--red);
}

.leave-review-btn {
  border: 1px solid var(--red);
  color: var(--red);
}

@media only screen and (max-width: 1599px) {
  .reviews-bg {
    left: calc(50% + 80px);
  }
  .reviews-content {
    width: calc(74% - 50px);
  }
  .reviews-foot {
    width: 55%;
  }
}
@media only screen and (max-width: 1199px) {
  .reviews-section {
    background-color: #94B5D0;
  }
  .reviews-bg {
    display: none;
  }
  .reviews-content {
    margin-top: 50px;
    width: 100%;
  }
  .reviews-foot {
    width: 100%;
    position: relative;
  }
  .reviews-info {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .reviews__btn {
    margin-left: 30px;
    margin-top: 0;
  }
  .reviews-slider__back, .reviews-slider__next {
    border-color: #fff;
  }
  .reviews-slider__back svg path, .reviews-slider__next svg path {
    stroke: #fff;
  }
  .reviews-slider__back:active, .reviews-slider__next:active {
    border-color: var(--red);
  }
  .leave-review-btn {
    border: none;
    background-color: #fff;
    color: var(--blue);
  }
}
@media only screen and (max-width: 1199px) and (hover) {
  .reviews-slider__back:hover, .reviews-slider__next:hover {
    border-color: var(--red);
  }
}
@media only screen and (max-width: 767px) {
  .review:after {
    background: -webkit-gradient(linear, left bottom, left top, from(#EEF3F9), color-stop(10%, #EEF3F9), color-stop(50%, rgba(238, 243, 249, 0)));
    background: linear-gradient(0deg, #EEF3F9 0%, #EEF3F9 10%, rgba(238, 243, 249, 0) 50%);
  }
  .review__link {
    width: 48px;
    height: 48px;
    right: 25px;
    bottom: 25px;
  }
}
@media only screen and (max-width: 575px) {
  .reviews-slider {
    overflow: visible;
  }
  .reviews-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .reviews__btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .reviews-content {
    margin-top: 30px;
  }
  .reviews-nav {
    display: none;
  }
  .reviews-foot {
    margin-top: 30px;
  }
  .review {
    width: 300px;
  }
  .leave-review-btn {
    width: 100%;
  }
}
.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
  position: relative;
}
.catalog-section .breadcrumbs {
  margin-top: 20px;
  padding-right: 300px;
}
.catalog-content {
  position: relative;
}
.catalog-content:after {
  position: fixed;
  content: "";
  top: calc(50% + 100px);
  left: 50%;
  margin-left: 195px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-image: url("./img/preloader.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-content.is-overlay:after {
  opacity: 1;
  visibility: visible;
}
.catalog-content.is-overlay .catalog-cars:after {
  opacity: 1;
  visibility: visible;
}
.catalog-aside {
  width: 335px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 50px;
}
.catalog-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-bottom: -20px;
  position: absolute;
  top: -75px;
  right: 0;
}
.catalog-filter {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  border-radius: 10em;
  background-color: transparent;
  border: 1px solid #70839A;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #70839A;
  font-size: 13px;
  font-weight: 500;
  margin-left: 20px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  text-transform: lowercase;
}
.catalog-filter svg {
  width: 25px;
  height: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 10px;
}
.catalog-filter.checked {
  background-color: #70839A;
  color: #fff;
}
.catalog-filter.checked svg path, .catalog-filter.checked svg line {
  stroke: #fff;
}
.catalog-filter.reverse svg {
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.catalog-cars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -50px;
  position: relative;
}
.catalog-cars:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (hover) {
  .catalog-filter:hover {
    background-color: var(--hover);
    border-color: var(--hover);
    color: #fff;
  }
  .catalog-filter:hover svg path, .catalog-filter:hover svg line {
    stroke: #fff;
  }
}
.car {
  width: calc(25% - 20px);
  margin: 0 10px 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-radius: var(--brs);
  overflow: hidden;
  border: 1px solid #CFDAE8;
}
.car-slider {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.car-slider .swiper-pagination {
  position: absolute;
  z-index: 3;
  bottom: 10px;
}
.car-slider .swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: transparent;
  opacity: 1;
  outline: none;
  position: relative;
  margin: 0;
}
.car-slider .swiper-pagination .swiper-pagination-bullet:before {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.car-slider .swiper-pagination .swiper-pagination-bullet-active {
  pointer-events: none;
}
.car-slider .swiper-pagination .swiper-pagination-bullet-active:before {
  background-color: var(--red);
  -webkit-transform: scale(1.66);
          transform: scale(1.66);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.car__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.car__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.car__info {
  padding: 20px 20px 24px;
}
.car__chars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: -20px;
  margin-bottom: -10px;
}
.car__char {
  margin-right: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #8994A0;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.car__char img {
  margin-right: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.car__price {
  color: var(--blue);
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
  margin-top: 15px;
}
.car__title {
  color: var(--blue);
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
  display: block;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.car__title:hover {
  text-decoration: underline;
  text-decoration-color: var(--blue);
}
.car__photo-hovers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  display: none;
  z-index: 2;
}
.car__photo-hover {
  width: 100%;
}

@media (hover) {
  .car__photo-hovers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 1599px) {
  .car {
    width: calc(33.33% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .catalog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
  .catalog-section .breadcrumbs {
    margin-top: 0px;
    margin-bottom: 40px;
    padding-right: 0px;
  }
  .catalog-content {
    margin-top: 30px;
  }
  .catalog-content:after {
    margin-left: 0;
  }
  .catalog-aside {
    width: 606px;
    margin-right: 0;
    background-color: #EEF3F9;
    border-radius: 20px;
  }
  .catalog-filters {
    top: 0;
  }
}
@media only screen and (max-width: 991px) {
  .catalog-aside {
    width: 100%;
    margin-bottom: 30px;
  }
  .catalog-filters {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
  }
  .car {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .catalog-content {
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .catalog-cars {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -30px;
  }
  .catalog-aside {
    margin-bottom: 20px;
  }
  .catalog-filters {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    margin-left: -10px;
    margin-bottom: -10px;
  }
  .catalog-filter {
    margin-left: 10px;
    margin-bottom: 10px;
  }
  .car {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 30px;
    width: 269px;
  }
}
.filters {
  width: 100%;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: var(--brs);
  color: var(--blue);
}
.filters-head {
  display: none;
}
.filters__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.filters__btns .btn {
  width: 100%;
  font-size: 15px;
}
.filters__btns .btn + .btn {
  margin-top: 20px;
}
.filters__show-btn.disabled {
  pointer-events: none;
}

.filter {
  border-bottom: 1px solid #CFDAE8;
  padding-bottom: 20px;
}
.filter + .filter {
  margin-top: 40px;
}
.filter-head {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding-right: 45px;
}
.filter-head::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(-1, -1);
          transform: translateY(-50%) scale(-1, -1);
  right: 0;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #DCE6F3;
  background-image: url("../img/arrow-up.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
}
.filter-head.active::after {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.filter-head.active + .filter-body {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.filter-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.filter-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
  position: relative;
}
.filter-checkbox input[type=checkbox],
.filter-checkbox input[type=radio] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  z-index: 2;
}
.filter-checkbox input[type=checkbox]:checked + .custom-checkbox::before, .filter-checkbox input[type=checkbox]:checked + .custom-radio::before,
.filter-checkbox input[type=radio]:checked + .custom-checkbox::before,
.filter-checkbox input[type=radio]:checked + .custom-radio::before {
  opacity: 1;
}
.filter-range {
  margin-top: 20px;
  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;
}
.filter-range *::-webkit-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-align: left;
}
.filter-range *::-moz-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  text-align: left;
}
.filter-range *:-ms-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
  text-align: left;
}
.filter-range *::-ms-input-placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  -ms-transition: color 0.3s;
  transition: color 0.3s;
  text-align: left;
}
.filter-range *::placeholder {
  font-size: 16px;
  color: #70839A;
  font-weight: 500;
  opacity: 1;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-align: left;
}
.filter-range input[type=text],
.filter-range input[type=tel],
.filter-range input[type=url],
.filter-range input[type=email],
.filter-range input[type=number] {
  width: calc(50% - 5px);
  text-align: left;
  font-size: 16px;
  height: 54px;
  font-weight: 500;
  background-color: #FBFDFF;
  padding: 0 25px;
  color: var(--blue);
  border: 1px solid #CFDAE8;
  border-radius: 10em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.filter-range input[type=text]:focus::-webkit-input-placeholder, .filter-range input[type=tel]:focus::-webkit-input-placeholder, .filter-range input[type=url]:focus::-webkit-input-placeholder, .filter-range input[type=email]:focus::-webkit-input-placeholder, .filter-range input[type=number]:focus::-webkit-input-placeholder {
  color: transparent;
}
.filter-range input[type=text]:focus::-moz-placeholder, .filter-range input[type=tel]:focus::-moz-placeholder, .filter-range input[type=url]:focus::-moz-placeholder, .filter-range input[type=email]:focus::-moz-placeholder, .filter-range input[type=number]:focus::-moz-placeholder {
  color: transparent;
}
.filter-range input[type=text]:focus:-ms-input-placeholder, .filter-range input[type=tel]:focus:-ms-input-placeholder, .filter-range input[type=url]:focus:-ms-input-placeholder, .filter-range input[type=email]:focus:-ms-input-placeholder, .filter-range input[type=number]:focus:-ms-input-placeholder {
  color: transparent;
}
.filter-range input[type=text]:focus::-ms-input-placeholder, .filter-range input[type=tel]:focus::-ms-input-placeholder, .filter-range input[type=url]:focus::-ms-input-placeholder, .filter-range input[type=email]:focus::-ms-input-placeholder, .filter-range input[type=number]:focus::-ms-input-placeholder {
  color: transparent;
}
.filter-range input[type=text]:focus::placeholder,
.filter-range input[type=tel]:focus::placeholder,
.filter-range input[type=url]:focus::placeholder,
.filter-range input[type=email]:focus::placeholder,
.filter-range input[type=number]:focus::placeholder {
  color: transparent;
}
.filter-range input:-webkit-autofill,
.filter-range input:-webkit-autofill:hover,
.filter-range input:-webkit-autofill:focus,
.filter-range input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 80px #FBFDFF;
  -webkit-text-fill-color: var(--text-color);
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.custom-checkbox, .custom-radio {
  width: 24px;
  height: 24px;
  border: none;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #DCE6F3;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  position: relative;
  border-radius: 5px;
}
.custom-checkbox::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("../img/check.svg");
  background-repeat: no-repeat;
  background-size: 16px 12px;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.custom-radio {
  border-radius: 50%;
}
.custom-radio::before {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  background-color: var(--red);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.checkbox-text {
  font-size: 16px;
  font-weight: 500;
}

@media (hover) {
  .filter-checkbox:hover .custom-checkbox, .filter-checkbox:hover .custom-radio {
    background-color: #DCE6F3;
  }
}
@media only screen and (max-width: 1199px) {
  .filters {
    display: none;
    background-color: transparent;
  }
  .filters-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 11px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 100%;
    cursor: pointer;
  }
  .filters-head::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) scale(-1, -1);
            transform: translateY(-50%) scale(-1, -1);
    right: 20px;
    content: "";
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #DCE6F3;
    background-image: url("../img/arrow-up.svg");
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center;
  }
  .filters-head.active:after {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .filters-head.active + .filters {
    display: block;
  }
  .filters-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  .filters-title {
    font-weight: 500;
    font-size: 13px;
    color: var(--blue);
  }
  .filters__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .filters__btns .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .filters__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .filters__btns .btn + .btn {
    margin-top: 20px;
    margin-left: 0px;
  }
}
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 40px;
}
.card-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.card-gallery {
  width: calc(100% - 336px - 50px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-gallery-slider {
  width: 100%;
  position: relative;
}
.card-gallery-slider.swiper-initialized .card-gallery-slide {
  opacity: 1;
}
.card-gallery-slider__back, .card-gallery-slider__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
  width: 34px;
  height: 34px;
  border-color: #fff;
  display: none;
}
.card-gallery-slider__back:active, .card-gallery-slider__next:active {
  background-color: transparent;
}
.card-gallery-slider__back {
  left: 20px;
}
.card-gallery-slider__next {
  right: 20px;
}
.card-gallery-slide {
  opacity: 0;
  width: 100%;
  aspect-ratio: 1.74;
  position: relative;
  overflow: hidden;
  border-radius: var(--brs);
}
.card-gallery-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-mini-slider {
  width: 100%;
  overflow: hidden;
  display: none;
}
.card-mini-slider.swiper-initialized .card-mini-slide {
  opacity: 1;
}
.card-mini-slider__back, .card-mini-slider__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 2;
  width: 34px;
  height: 34px;
}
.card-mini-slider__back {
  left: 0;
}
.card-mini-slider__next {
  right: 0;
}
.card-mini-slider-wrap {
  width: 100%;
  padding-left: 53px;
  padding-right: 53px;
  position: relative;
  margin-top: 20px;
}
.card-mini-slide {
  opacity: 0;
  width: 100%;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--brs);
  cursor: pointer;
}
.card-mini-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-mini-slide:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--blue);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.card-mini-slide.swiper-slide-thumb-active:after {
  opacity: 0.6;
}
.card-info {
  width: 336px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-align: center;
}
.card-info-block {
  width: 100%;
  border-radius: var(--brs);
  background-color: var(--bg-color);
  padding: 30px;
  color: var(--blue);
}
.card__name {
  font-size: 18px;
  font-weight: 500;
}
.card__price {
  white-space: nowrap;
  font-size: 32px;
  font-weight: 700;
  margin-top: 30px;
}
.card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}
.card-actions .btn {
  width: 100%;
}
.card-actions .btn + .btn {
  margin-top: 20px;
}
.card-location {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 64px;
}
.card-location__icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.card-location__name {
  font-weight: 500;
  font-size: 18px;
  color: #8994A0;
}
.card-content {
  width: calc(100% - 336px - 50px);
}
.card-block {
  margin-top: 80px;
}
.card__title {
  font-weight: 600;
  margin: 0;
  font-size: 32px;
  color: var(--blue);
}
.card-table {
  padding: 30px 40px;
  border-radius: var(--brs);
  background-color: var(--bg-color);
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}
.card-table__col {
  width: calc(50% - 47px);
}
.card-table__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-table__row + .card-table__row {
  border-top: 1px solid #D5DFEB;
}
.card-table__th {
  font-weight: 400;
  position: relative;
  padding-left: 39px;
  height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.card-table__th:before {
  position: absolute;
  content: "";
  left: 0;
  top: 21px;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("./img/check-green.svg");
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: center;
}
.card-table__td {
  font-weight: 600;
  margin-left: 30px;
  height: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.card__text {
  margin-top: 20px;
}
.card__catalog-cars {
  margin-top: 36px;
  width: 1156px;
}

@media (hover) {
  .card-gallery-slider__back:hover, .card-gallery-slider__next:hover {
    background-color: transparent;
  }
}
@media only screen and (min-width: 576px) {
  .card__text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1599px) {
  .card__catalog-cars {
    width: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .card__catalog-cars .car {
    width: calc(25% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .card-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-info {
    margin-left: 0;
    position: absolute;
    left: calc(50% + 124px);
    top: 1014px;
  }
  .card-gallery {
    width: 100%;
  }
  .card-mini-slider-wrap {
    padding-left: 44px;
    padding-right: 44px;
  }
  .card-content {
    width: calc(100% - 336px - 40px);
  }
  .card-block {
    margin-top: 50px;
  }
  .card-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-table__col {
    width: 100%;
  }
  .card-table__col:first-child .card-table__row:first-child {
    border-top: none;
  }
  .card-table__row {
    border-top: 1px solid #D5DFEB;
  }
  .card__catalog-cars {
    margin-top: 20px;
  }
  .card__catalog-cars .car:nth-child(4) {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .card-info {
    width: 100%;
    margin-top: 50px;
    position: relative;
    left: auto;
    top: auto;
  }
  .card-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .card-actions .btn + .btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .card-location {
    margin-top: 54px;
  }
  .card-content {
    width: 100%;
  }
  .card__catalog-cars .car:nth-child(3) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .card-mini-slider-wrap {
    margin-top: 10px;
  }
  .card-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-actions .btn + .btn {
    margin-top: 20px;
    margin-left: 0px;
  }
}
@media only screen and (max-width: 575px) {
  .card-info {
    margin-top: 40px;
  }
  .card-gallery-slider__back, .card-gallery-slider__next {
    width: 20px;
    height: 20px;
  }
  .card-gallery-slider__back svg, .card-gallery-slider__next svg {
    width: 6px;
  }
  .card-gallery-slider__back {
    left: 10px;
  }
  .card-gallery-slider__next {
    right: 10px;
  }
  .card-mini-slider-wrap {
    padding-left: 28px;
    padding-right: 28px;
  }
  .card-mini-slider__back, .card-mini-slider__next {
    width: 20px;
    height: 20px;
  }
  .card-mini-slider__back svg, .card-mini-slider__next svg {
    width: 6px;
    height: 6px;
  }
  .card-block {
    margin-top: 40px;
  }
  .card-table {
    padding: 10px 20px;
    font-size: 15px;
  }
  .card-table__th {
    padding-left: 0;
    height: 63px;
  }
  .card-table__th:before {
    display: none;
  }
  .card-table__td {
    margin-left: 20px;
    height: 63px;
  }
  .card__catalog-cars .car:nth-child(3), .card__catalog-cars .car:nth-child(4) {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
.steps__btn {
  margin-top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 50px;
  position: relative;
}
.step:before {
  position: absolute;
  content: "";
  left: 47px;
  top: 50px;
  width: 6px;
  border-left: 6px dashed var(--bg-color);
  bottom: 0;
  z-index: -1;
}
.step:last-child {
  padding-bottom: 0;
}
.step__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: #537398;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  width: 100px;
  height: 100px;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 100px;
  margin-bottom: 40px;
}
.step__number strong {
  font-weight: 700;
  font-size: 48px;
  margin-top: 3px;
}
.step:last-child:before {
  display: none;
}
.step:last-child .step__number {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  .steps {
    max-width: 100%;
    margin-top: 40px;
  }
  .steps__btn {
    margin-top: 60px;
  }
  .step__number {
    margin-right: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .steps__btn {
    margin-top: 40px;
    width: 100%;
  }
  .step:before {
    left: 29px;
    width: 6px;
    border-left: 6px dashed var(--bg-color);
  }
  .step__number {
    margin-right: 20px;
    font-size: 12px;
    width: 64px;
    height: 64px;
  }
  .step__number strong {
    font-size: 32px;
    margin-top: 0px;
  }
}
.detailing-page-section {
  padding-top: 0;
}
.detailing-page-hero {
  padding-bottom: 270px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.detailing-page-hero__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 90px;
}
.detailing-page-hero__text {
  font-weight: 500;
  color: #C7C1BC;
  font-size: 16px;
  width: calc(25% - 20px);
}
.detailing-page-hero__text strong, .detailing-page-hero__text b {
  font-weight: 700;
}
.detailing-page-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.detailing-page-hero__btns .btn {
  font-size: 18px;
}
.detailing-page-hero__btns .btn + .btn {
  margin-left: 30px;
}
.detailing-page-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -10px -20px;
}
.detailing-page-grid-section {
  margin-top: -185px;
}

@media only screen and (max-width: 1599px) {
  .detailing-page-hero {
    padding-bottom: 18%;
  }
  .detailing-page-grid-section {
    margin-top: -12%;
  }
}
@media only screen and (min-width: 1200px) {
  .detailing-page-grid .detailing__link {
    width: calc(25% - 20px);
  }
}
@media only screen and (max-width: 1199px) {
  .detailing-page-hero {
    padding-bottom: 200px;
  }
  .detailing-page-hero__info {
    margin-top: 60px;
  }
  .detailing-page-hero__text {
    display: none;
  }
  .detailing-page-grid-section {
    margin-top: -140px;
  }
}
@media only screen and (max-width: 991px) {
  .detailing-page-hero {
    padding-bottom: 225px;
  }
  .detailing-page-grid-section {
    margin-top: -165px;
  }
}
@media only screen and (max-width: 767px) {
  .detailing-page-hero {
    padding-bottom: 175px;
  }
  .detailing-page-hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .detailing-page-hero__btns .btn {
    width: 100%;
  }
  .detailing-page-hero__btns .btn + .btn {
    margin-left: 0;
    margin-top: 17px;
  }
  .detailing-page-grid-section {
    margin-top: -115px;
  }
}
@media only screen and (max-width: 575px) {
  .detailing-page-hero {
    padding-bottom: 52%;
  }
  .detailing-page-hero__info {
    margin-top: 30px;
  }
  .detailing-page-grid-section {
    margin-top: -42%;
  }
}
.detailing-single {
  padding: 100px 0;
}
.detailing-single-hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 90px;
}
.detailing-single-hero__btns .btn {
  font-size: 18px;
}
.detailing-single-hero__btns .btn + .btn {
  margin-left: 30px;
}
.detailing-single-hero__image {
  width: 100%;
  height: 500px;
  margin-top: 90px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.detailing-single-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detailing-single-hero.has-image {
  padding-bottom: 0;
  background-color: transparent;
  position: relative;
}
.detailing-single-hero.has-image:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 340px;
  content: "";
  background-color: var(--dark);
  z-index: -1;
}
.detailing-single-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.detailing-single__photo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 80px;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: var(--brs);
  width: 37.5%;
}
.detailing-single__pretext {
  font-size: 20px;
}
.detailing-single__content {
  margin-top: 60px;
}

@media only screen and (max-width: 1599px) {
  .detailing-single__photo {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .detailing-single {
    padding: 70px 0;
  }
  .detailing-single-hero.has-image:before {
    bottom: 150px;
  }
  .detailing-single-hero__btns {
    margin-top: 60px;
  }
  .detailing-single-hero__image {
    height: 300px;
    margin-top: 60px;
  }
  .detailing-single__content {
    margin-top: 50px;
  }
  .detailing-single__photo {
    margin-right: 40px;
    width: 295px;
  }
}
@media only screen and (max-width: 991px) {
  .detailing-single-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .detailing-single__photo {
    margin-right: 0;
    width: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .detailing-single-hero__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .detailing-single-hero__btns .btn {
    width: 100%;
  }
  .detailing-single-hero__btns .btn + .btn {
    margin-left: 0;
    margin-top: 17px;
  }
}
@media only screen and (max-width: 575px) {
  .detailing-single {
    padding: 40px 0;
  }
  .detailing-single-hero__btns {
    margin-top: 30px;
  }
  .detailing-single-hero__image {
    margin-top: 40px;
  }
  .detailing-single__content {
    margin-top: 40px;
  }
  .detailing-single__pretext {
    font-size: 16px;
  }
}
.detailing-hero__text {
  max-width: 940px;
  font-size: 18px;
  margin: 60px 0;
}
.detailing-prices-hero .detailing-prices__h2 {
  margin-top: 60px;
}
.detailing-prices-block {
  margin: 100px 0;
}
.detailing-prices-block--bg {
  margin: 0;
  padding: 100px 0;
  background-color: #E3E2DE;
}
.detailing-prices-block__text {
  font-size: 18px;
  color: var(--dark);
  max-width: 940px;
  margin-bottom: 90px;
}
.detailing-prices__h2 {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
}
.detailing-table {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.detailing-table--white .detailing-tr {
  background-color: #fff;
}
.detailing-table--dark .detailing-tr {
  background-color: #19160B;
}
.detailing-table--dark .detailing-td, .detailing-table--dark .detailing-th {
  color: #fff;
}
.detailing-table--information .detailing-tbody .detailing-th {
  width: 330px;
}
.detailing-table--information .detailing-th, .detailing-table--information .detailing-td {
  min-height: 100px;
}
.detailing-table--information .detailing-td {
  width: 250px !important;
}
.detailing-table--information .detailing-td--text {
  font-size: 15px;
  width: calc(100% - 250px) !important;
}
.detailing-thead {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.detailing-thead .detailing-tr {
  background-color: transparent;
}
.detailing-thead .detailing-td {
  color: #8C8A82;
  font-weight: 500;
  font-size: 13px;
}
.detailing-thead .detailing-td,
.detailing-thead .detailing-th {
  min-height: 66px;
}
.detailing-tr {
  background-color: #E3E2DE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1px;
}
.detailing-td, .detailing-th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  padding: 20px;
  min-height: 79px;
}
.detailing-td.nowrap, .detailing-th.nowrap {
  white-space: nowrap;
}
.detailing-th {
  font-weight: 600;
  width: 380px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detailing-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 380px);
}
.detailing-dropdown .detailing-th,
.detailing-dropdown .detailing-td {
  width: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

@media only screen and (max-width: 1199px) {
  .detailing-hero__text {
    margin: 50px 0;
  }
  .detailing-prices-block {
    margin: 70px 0;
  }
  .detailing-prices-block--bg {
    margin: 0;
    padding: 70px 0;
  }
  .detailing-prices-block__text {
    max-width: 100%;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .detailing-tr {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .detailing-thead {
    display: none;
  }
  .detailing-dropdown {
    width: auto;
  }
  .detailing-td, .detailing-th {
    width: auto !important;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    min-height: 75px;
  }
  .detailing-th {
    font-size: 16px;
  }
  .is-toggle-table .detailing-tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .is-toggle-table .detailing-th {
    position: relative;
    -webkit-transition: color 0.3s;
    transition: color 0.3s;
    padding-right: 55px;
  }
  .is-toggle-table .detailing-th:before, .is-toggle-table .detailing-th:after {
    position: absolute;
    content: "";
    right: 20px;
    width: 17px;
    height: 2px;
    background-color: var(--dark);
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .is-toggle-table .detailing-th:after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .is-toggle-table .detailing-th.active {
    color: #932B2B;
  }
  .is-toggle-table .detailing-th.active:after {
    opacity: 0;
  }
  .is-toggle-table .detailing-th.active + .detailing-dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .is-toggle-table .detailing-dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: none;
  }
  .is-toggle-table .detailing-dropdown .detailing-td {
    position: relative;
    min-height: 60px;
  }
  .is-toggle-table .detailing-dropdown .detailing-td:before {
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    content: attr(data-category);
    color: #8C8A82;
    font-weight: 500;
    font-size: 13px;
  }
  .is-toggle-table.detailing-table--dark .detailing-th:before {
    background-image: url("./img/table-arrow.svg");
    background-repeat: no-repeat;
    background-color: transparent;
    background-size: contain;
    width: 19px;
    height: 19px;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .is-toggle-table.detailing-table--dark .detailing-th:after {
    display: none;
  }
  .is-toggle-table.detailing-table--dark .detailing-th.active {
    color: #fff;
  }
  .is-toggle-table.detailing-table--dark .detailing-th.active:before {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .is-toggle-table.detailing-table--information .detailing-tbody .detailing-th {
    width: auto;
  }
  .is-toggle-table.detailing-table--information .detailing-th, .is-toggle-table.detailing-table--information .detailing-td {
    min-height: 75px;
  }
  .is-toggle-table.detailing-table--information .detailing-td {
    width: auto !important;
  }
  .is-toggle-table.detailing-table--information .detailing-td--text {
    width: auto !important;
    text-align: left;
    font-size: 13px;
  }
  .is-toggle-table.detailing-table--information .detailing-dropdown {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .is-toggle-table.detailing-table--information .detailing-dropdown .detailing-td {
    min-height: 60px;
  }
}
@media only screen and (max-width: 575px) {
  .detailing-hero__text {
    font-size: 14px;
    margin: 30px 0;
  }
  .detailing-prices-hero .detailing-prices__h2 {
    margin-top: 40px;
  }
  .detailing-prices-block {
    margin: 40px 0;
  }
  .detailing-prices-block--bg {
    margin: 0;
    padding: 40px 0;
  }
  .detailing-prices-block__text {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .detailing-prices__h2 {
    font-size: 24px;
  }
}
.detailing-scroll-links {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.detailing-scroll-links .btn {
  background-color: #4B4634;
  color: #fff;
}
.detailing-scroll-links .btn:active {
  background-color: #932B2B;
}
.detailing-scroll-links .btn + .btn {
  margin-left: 20px;
}
.detailing-top-text {
  font-size: 18px;
  margin-top: 90px;
}
.detailing-top-text p {
  margin: 40px 0;
}
.detailing-scroll-content {
  margin-top: 90px;
}
.detailing-scroll-content h3 {
  color: var(--dark);
}
.detailing-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 60px;
}
.detailing-gallery__photo {
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--brs);
  overflow: hidden;
  width: calc(25% - 20px);
}
.detailing-gallery__photo + .detailing-gallery__photo {
  margin-left: 20px;
}
.detailing-gallery__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.detailing-gallery__photo:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0;
  background-color: #000;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

@media (hover) {
  .detailing-scroll-links .btn:hover {
    background-color: #932B2B;
  }
  .detailing-gallery__photo:hover:after {
    opacity: 0.75;
  }
}
@media only screen and (max-width: 1199px) {
  .detailing-scroll-links {
    margin-top: 50px;
  }
  .detailing-scroll-content {
    margin-top: 70px;
  }
  .detailing-top-text {
    margin-top: 70px;
  }
  .detailing-gallery {
    overflow-x: auto;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
  }
  .detailing-gallery__container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .detailing-gallery__photo {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 365px;
  }
}
@media only screen and (max-width: 991px) {
  .detailing-scroll-links .btn {
    padding-left: 40px;
    padding-right: 40px;
  }
  .detailing-gallery {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .detailing-scroll-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .detailing-scroll-links .btn {
    width: 100%;
  }
  .detailing-scroll-links .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .detailing-gallery {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .detailing-scroll-links {
    margin-top: 30px;
  }
  .detailing-scroll-content {
    margin-top: 40px;
  }
  .detailing-top-text {
    margin-top: 40px;
    font-size: 15px;
  }
  .detailing-top-text p {
    margin: 20px 0;
  }
  .detailing-gallery {
    margin-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .detailing-gallery__photo {
    width: 320px;
  }
  .detailing-gallery__photo + .detailing-gallery__photo {
    margin-left: 10px;
  }
}
.about-single {
  width: 100%;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}
.about-single-section {
  padding-top: 0;
}
.about-single-block {
  margin-top: 50px;
  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;
}
.about-single-block .about-single {
  max-width: 100%;
}
.about-single-gallery {
  width: 37.5%;
  margin-right: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: -80px;
}
.about-single-content {
  width: 100%;
}
.about-single--full-width {
  max-width: 100%;
}
.about-single-photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-bottom: 80px;
}
.about-single-photo {
  border-radius: var(--brs);
  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;
  overflow: hidden;
}
.about-single-photo img {
  width: 100%;
}
.about-single-photo + .about-single-photo {
  margin-top: 30px;
}
.about-hero {
  background-color: #395576;
}
.about-hero.has-image {
  padding-bottom: 0;
  background-color: transparent;
  position: relative;
}
.about-hero.has-image:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 340px;
  content: "";
  background-color: #395576;
  z-index: -1;
}
.about-hero__image {
  width: 100%;
  height: 500px;
  margin-top: 70px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.about-hero__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-slider {
  margin-bottom: 80px;
  width: 100%;
}
.gallery-slider.swiper-initialized .gallery-slide {
  opacity: 1;
}
.gallery-slider__photo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  aspect-ratio: 0.814;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
}
.gallery-slider__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-slider__nav {
  width: 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;
  margin: 30px auto 0;
}
.gallery-slider__back, .gallery-slider__next {
  margin: 0 7.5px;
}

@media only screen and (max-width: 1599px) {
  .about-single-gallery {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .about-single {
    max-width: 100%;
  }
  .about-single-block {
    margin-top: 10px;
  }
  .about-single-gallery {
    width: 295px;
    margin-right: 20px;
    margin-bottom: -65px;
  }
  .about-single-photos {
    margin-bottom: 65px;
  }
  .about-hero.has-image:before {
    bottom: 150px;
  }
  .about-hero__image {
    height: 300px;
    margin-top: 50px;
  }
  .gallery-slider {
    margin-bottom: 65px;
  }
  .gallery-slider__nav {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .about-single-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-single-gallery {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-right: 0px;
    margin-bottom: 0;
  }
  .about-single-photos {
    margin-bottom: 0px;
    margin-top: 50px;
  }
  .gallery-slider {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .about-hero__image {
    margin-top: 40px;
  }
  .about-hero-single-block {
    margin-top: 0;
  }
  .about-hero-single-gallery {
    margin-bottom: -40px;
  }
  .about-hero-single-photos {
    margin-top: 40px;
  }
  .gallery-slider {
    margin-top: 40px;
  }
}
.total-price, .total-duration {
  display: none;
  font-size: 16px;
  color: var(--blue);
  margin-top: 40px;
}
.total-price__value, .total-duration__value {
  white-space: nowrap;
  margin-left: 5px;
  font-weight: 600;
  font-size: 18px;
}
.total-price small, .total-duration small {
  font-weight: 400;
  font-size: 14px;
  display: block;
}
.total-duration {
  margin-top: 20px;
}

.select-text {
  font-size: 16px;
  font-weight: 600;
}
.select-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
  position: relative;
}
.select-checkbox input[type=checkbox],
.select-checkbox input[type=radio] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  cursor: pointer;
  z-index: 2;
}
.select-checkbox input[type=checkbox]:checked + .custom-checkbox::before, .select-checkbox input[type=checkbox]:checked + .custom-radio::before,
.select-checkbox input[type=radio]:checked + .custom-checkbox::before,
.select-checkbox input[type=radio]:checked + .custom-radio::before {
  opacity: 1;
}
.select-checkbox .custom-checkbox, .select-checkbox .custom-radio {
  margin-right: 0px;
  margin-left: 10px;
}
.select-checkbox-price {
  font-size: 18px;
  text-align: left;
}
.select-checkbox-info {
  font-size: 14px;
  text-align: left;
  position: relative;
  padding-right: 40px;
}
.select-checkbox-info__more, .select-checkbox-info__hide {
  display: inline-block;
  font-weight: 500;
  text-decoration: underline;
  color: var(--blue);
}
.select-checkbox-info__hide {
  display: none;
}
.select-checkbox-info ul {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.select-checkbox-info ul li {
  margin-right: 0px;
  position: relative;
  display: inline;
}
.select-checkbox-info ul li:before {
  width: 3px;
  height: 3px;
  content: "• ";
  color: var(--blue);
}
.select-checkbox-info ul li ul {
  margin-left: 20px;
}
.select-checkbox-info.visible ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.select-checkbox-info.visible .select-checkbox-info__more {
  display: none;
}
.select-checkbox-info.visible .select-checkbox-info__hide {
  display: inline-block;
}

.services-form {
  width: 100%;
}
.services-form .form-row {
  margin-top: 0;
}
.services-form__step {
  width: 100%;
  display: none;
}
.services-form__step.visible {
  display: block;
}
.services-form__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.services-form__btns .btn + .btn {
  margin-left: 20px;
}

.next-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.booking-form {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.booking-form.visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.booking-form .jq-selectbox {
  z-index: 1 !important;
}
.booking-section {
  background-color: var(--bg-color);
  text-align: center;
  padding-top: 50px;
}
.booking__title {
  margin: 0;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 600;
  color: var(--blue);
}
.booking-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  width: calc(100% + 30px);
}
.booking-form .form-row .form-control-wrap {
  width: calc(50% - 15px);
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 0;
}
.booking-tabs {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 20px;
}
.booking-tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 20px;
  border-radius: 10em;
  background-color: transparent;
  border: 1px solid #70839A;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #70839A;
  font-size: 13px;
  font-weight: 500;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.booking-tab:hover, .booking-tab.active {
  background-color: #70839A;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .services-form .form-row .form-control-wrap + .form-control-wrap {
    margin-top: 30px;
  }
  .services-form__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .services-form__btns .btn + .btn {
    margin-left: 0;
    margin-top: 20px;
  }
  .booking-form .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .booking-form .form-row .form-control-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .booking-form .form-row .form-control-wrap + .form-control-wrap {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .total-price, .total-duration {
    font-size: 14px;
  }
  .total-price__value, .total-duration__value {
    font-size: 16px;
  }
  .total-price small, .total-duration small {
    font-size: 12px;
  }
  .services-form__btns {
    margin-top: 40px;
  }
  .services-form__btns .btn {
    font-size: 16px;
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .services-form__btns .btn--bdr {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .services-form__btns .btn + .btn {
    margin-top: 15px;
  }
  .services-form .form-row .form-control-wrap + .form-control-wrap {
    margin-top: 20px;
  }
  .booking-section {
    padding-top: 30px;
  }
  .booking-form .form-row .form-control-wrap + .form-control-wrap {
    margin-top: 20px;
  }
  .booking__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .booking-tabs {
    margin-left: -5px;
    margin-right: -5px;
  }
  .booking-tab {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 10px;
    padding: 10px 15px;
  }
}