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

html {
  font-family: 'Raleway', sans-serif;
  font-feature-settings: 'pnum' on, 'lnum' on;
  line-height: 1.2;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  color: #353535;
  background-color: #F4F4F4;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

h1 {
  font-weight: 900;
  font-size: 34px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.25);
}

h1.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  h1 {
    font-size: 48px;
    line-height: 1.09;
  }
}

@media (min-width: 960px) {
  h1 {
    font-size: 64px;
    transform: translateY(30px);
  }
}

@media (min-width: 1250px) {
  h1 {
    font-size: 90px;
    transform: translateY(50px);
  }
}

@media (min-width: 1800px) {
  h1 {
    font-size: 110px;
  }
}

h2 {
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

h2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  h2 {
    font-size: 34px;
  }
}

@media (min-width: 960px) {
  h2 {
    font-size: 50px;
    transform: translateY(30px);
  }
}

@media (min-width: 1250px) {
  h2 {
    font-size: 60px;
    transform: translateY(50px);
  }
}

@media (min-width: 1800px) {
  h2 {
    font-size: 80px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  outline: none;
}

input {
  border-radius: 0;
  border: none;
  outline: none;
  font-family: inherit;
  color: inherit;
  background: none;
}

img, video {
  display: block;
  width: 100%;
}

.page {
  position: relative;
}

.section {
  position: relative;
}

.section__lines {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.section__container {
  position: relative;
}

.container {
  padding: 0 20px;
}

@media (min-width: 760px) {
  .container {
    padding: 0 40px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.col {
  padding: 0 10px;
}

.col-1 {
  width: 8.33333%;
}

.col-2 {
  width: 16.66667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333%;
}

.col-5 {
  width: 41.66667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33333%;
}

.col-8 {
  width: 66.66667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333%;
}

.col-11 {
  width: 91.66667%;
}

.col-12 {
  width: 100%;
}

@media (min-width: 370px) {
  .col-xs-1 {
    width: 8.33333%;
  }
  .col-xs-2 {
    width: 16.66667%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.33333%;
  }
  .col-xs-5 {
    width: 41.66667%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 58.33333%;
  }
  .col-xs-8 {
    width: 66.66667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.33333%;
  }
  .col-xs-11 {
    width: 91.66667%;
  }
  .col-xs-12 {
    width: 100%;
  }
}

@media (min-width: 530px) {
  .col-sm-1 {
    width: 8.33333%;
  }
  .col-sm-2 {
    width: 16.66667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.33333%;
  }
  .col-sm-5 {
    width: 41.66667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.33333%;
  }
  .col-sm-8 {
    width: 66.66667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.33333%;
  }
  .col-sm-11 {
    width: 91.66667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .col-md-1 {
    width: 8.33333%;
  }
  .col-md-2 {
    width: 16.66667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.33333%;
  }
  .col-md-5 {
    width: 41.66667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.33333%;
  }
  .col-md-8 {
    width: 66.66667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.33333%;
  }
  .col-md-11 {
    width: 91.66667%;
  }
  .col-md-12 {
    width: 100%;
  }
}

@media (min-width: 960px) {
  .col-lg-1 {
    width: 8.33333%;
  }
  .col-lg-2 {
    width: 16.66667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.33333%;
  }
  .col-lg-5 {
    width: 41.66667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.33333%;
  }
  .col-lg-8 {
    width: 66.66667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.33333%;
  }
  .col-lg-11 {
    width: 91.66667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}

@media (min-width: 1250px) {
  .col-xl-1 {
    width: 8.33333%;
  }
  .col-xl-2 {
    width: 16.66667%;
  }
  .col-xl-3 {
    width: 25%;
  }
  .col-xl-4 {
    width: 33.33333%;
  }
  .col-xl-5 {
    width: 41.66667%;
  }
  .col-xl-6 {
    width: 50%;
  }
  .col-xl-7 {
    width: 58.33333%;
  }
  .col-xl-8 {
    width: 66.66667%;
  }
  .col-xl-9 {
    width: 75%;
  }
  .col-xl-10 {
    width: 83.33333%;
  }
  .col-xl-11 {
    width: 91.66667%;
  }
  .col-xl-12 {
    width: 100%;
  }
}

@media (min-width: 1800px) {
  .col-xxl-1 {
    width: 8.33333%;
  }
  .col-xxl-2 {
    width: 16.66667%;
  }
  .col-xxl-3 {
    width: 25%;
  }
  .col-xxl-4 {
    width: 33.33333%;
  }
  .col-xxl-5 {
    width: 41.66667%;
  }
  .col-xxl-6 {
    width: 50%;
  }
  .col-xxl-7 {
    width: 58.33333%;
  }
  .col-xxl-8 {
    width: 66.66667%;
  }
  .col-xxl-9 {
    width: 75%;
  }
  .col-xxl-10 {
    width: 83.33333%;
  }
  .col-xxl-11 {
    width: 91.66667%;
  }
  .col-xxl-12 {
    width: 100%;
  }
}

.h-outlined {
  color: #F4F4F4;
  text-shadow: -1px -1px 0 #353535, 1px -1px 0 #353535, -1px 1px 0 #353535, 1px 1px 0 #353535;
}

.h-outlined_black {
  color: #353535;
  text-shadow: -1px -1px 0 #FFFFFF, 1px -1px 0 #FFFFFF, -1px 1px 0 #FFFFFF, 1px 1px 0 #FFFFFF;
}

@media (min-width: 1250px) {
  .d-mobile {
    display: none;
  }
}

.d-desktop {
  display: none;
}

@media (min-width: 1250px) {
  .d-desktop {
    display: block;
  }
}

.js-anim {
  pointer-events: none;
}

.js-anim.is-visible {
  pointer-events: all;
}

.btn {
  display: inline-block;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  font-size: 10px;
  color: #4C4C4C;
  background-color: #FFD600;
  transition: color .3s ease, background-color .3s ease;
}

.btn:hover {
  color: #FFD600;
  background-color: #4C4C4C;
}

.btn_lg {
  padding: 15px;
  font-size: 12px;
}

@media (min-width: 1800px) {
  .btn {
    padding: 15px;
    font-size: 14px;
  }
}

.line-btn {
  position: relative;
  padding: 5px 0;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #FFD600;
  color: #4C4C4C;
  overflow: visible;
}

.line-btn:hover .line-btn__arrow {
  transform: translateX(20px);
}

.line-btn__arrow {
  position: absolute;
  left: 100%;
  top: 50%;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  margin-left: 20px;
  transition: transform .3s ease;
  pointer-events: none;
}

@media (min-width: 760px) and (max-width: 959px) {
  .line-btn {
    padding: 8px 0;
    font-size: 12px;
  }
  .line-btn:hover .line-btn__arrow {
    transform: translateX(10px);
  }
  .line-btn__arrow {
    width: 12px;
    height: 12px;
    margin-top: -4px;
    margin-left: 12px;
  }
}

@media (min-width: 1800px) {
  .line-btn {
    font-size: 18px;
  }
}

.field {
  border-bottom: 1px solid #AEAEAE;
  padding: 12px 7px;
  font-size: 12px;
  transition: border-color .3s ease;
}

.field::-moz-placeholder {
  color: #AEAEAE;
  -moz-transition: color .3s ease;
  transition: color .3s ease;
}

.field:-ms-input-placeholder {
  color: #AEAEAE;
  -ms-transition: color .3s ease;
  transition: color .3s ease;
}

.field::placeholder {
  color: #AEAEAE;
  transition: color .3s ease;
}

.field.is-error {
  border-color: #ff0000;
}

.field.is-error::-moz-placeholder {
  color: #ff0000;
}

.field.is-error:-ms-input-placeholder {
  color: #ff0000;
}

.field.is-error::placeholder {
  color: #ff0000;
}

@media (min-width: 1800px) {
  .field {
    padding: 16px 8px;
    font-size: 14px;
  }
}

.lines__container, .lines__row, .lines__col, .lines__item {
  height: 100%;
}

.lines__spacer-md {
  display: none;
}

.lines__item {
  width: 1px;
  background-color: rgba(150, 150, 150, 0.15);
}

.lines__item-1 {
  margin-right: auto;
}

.lines__item-2 {
  margin-left: auto;
}

.lines__item-3 {
  margin-left: auto;
}

@media (min-width: 760px) {
  .lines__spacer {
    display: none;
  }
  .lines__spacer-md {
    display: block;
  }
  .lines__item-1 {
    margin-left: auto;
    margin-right: 0;
  }
  .lines__item-2 {
    margin-left: 0;
    margin-right: auto;
  }
}

@media (min-width: 960px) {
  .lines__spacer-md {
    display: none;
  }
  .lines__item-2 {
    margin-left: auto;
    margin-right: 0;
  }
}

.way {
  position: relative;
}

.way__graphic {
  position: relative;
  padding-top: 47%;
}

.way__graphic svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ie .way__plane {
  display: none;
}

.way__desc {
  position: absolute;
  top: 9px;
  left: 41.9%;
  right: 35px;
  max-width: 160px;
  font-weight: 900;
  font-size: 10px;
  line-height: 1.52;
}

.way__direction {
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.way__point {
  font-weight: 900;
  font-size: 24px;
  color: #FFD600;
}

.way__icon {
  width: 10px;
  height: 7px;
  margin: -3px 3px 0;
}

@media (min-width: 960px) {
  .way__desc {
    top: 29px;
    right: 20px;
    max-width: 200px;
    font-size: 12px;
  }
  .way__icon {
    width: 12px;
    height: 8px;
    margin: -3px 6px 0;
  }
}

@media (min-width: 1250px) {
  .way__desc {
    top: 44px;
    right: 35px;
    max-width: 250px;
    font-size: 14px;
  }
  .way__direction {
    margin-top: 10px;
  }
  .way__icon {
    width: 18px;
    height: 12px;
    margin: 0 12px;
  }
}

@media (min-width: 1800px) {
  .way__desc {
    top: 52px;
    max-width: 300px;
    font-size: 18px;
  }
  .way__icon {
    width: 20px;
    height: 14px;
    margin: 0 16px;
  }
}

.v-map {
  position: relative;
  padding-top: 71%;
}

.v-map.is-active .v-map__train-mask-path {
  stroke-dashoffset: 2000;
  opacity: 1;
  transition: stroke-dashoffset 3s linear 1.3s;
}

.v-map.is-active .v-map__ship-mask-path {
  stroke-dashoffset: 310;
  opacity: 1;
  transition: stroke-dashoffset 1s linear .3s;
}

.v-map.is-active .v-map__train {
  -webkit-animation: m-train 3s linear 1.3s;
          animation: m-train 3s linear 1.3s;
}

.v-map.is-active .v-map__ship {
  -webkit-animation: m-ship 1s linear .3s;
          animation: m-ship 1s linear .3s;
}

.v-map.is-active .v-map__label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.v-map.is-active .v-map__label_l {
  transform: translate(0, -50%);
}

.v-map.is-active .v-map__point {
  transform: scale(1);
  transition: transform .3s linear .3s;
}

.v-map.is-active .v-map__location_spb .v-map__label {
  transition-delay: 3.7s;
}

.v-map.is-active .v-map__location_spb .v-map__point {
  transition-delay: 4s;
}

.v-map.is-active .v-map__location_east .v-map__label {
  transition-delay: 0.7s;
}

.v-map.is-active .v-map__location_east .v-map__point {
  transition-delay: 1s;
}

.v-map__svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.v-map__train-mask-path {
  stroke-dashoffset: 1000;
  opacity: 0;
  transition: stroke-dashoffset 0s linear .3s, opacity .3s ease;
}

.ie .v-map__train-mask-path {
  stroke-dashoffset: 0;
  opacity: 1;
}

.v-map__ship-mask-path {
  stroke-dashoffset: 155;
  opacity: 0;
  transition: stroke-dashoffset 0s linear .3s, opacity .3s ease;
}

.ie .v-map__ship-mask-path {
  stroke-dashoffset: 0;
  opacity: 1;
}

@-webkit-keyframes m-train {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes m-train {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes m-ship {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes m-ship {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.v-map__train {
  opacity: 0;
}

.ie .v-map__train {
  display: none;
}

.v-map__ship {
  opacity: 0;
}

.ie .v-map__ship {
  display: none;
}

.v-map__location {
  position: absolute;
}

.v-map__location_spb {
  left: 3.7%;
  top: 49.0%;
}

.v-map__location_east {
  left: 78%;
  top: 67.2%;
}

.v-map__location_sha {
  left: 72.8%;
  top: 87.5%;
}

.v-map__point {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: -8px;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D39800;
  transform: scale(0);
  transition: transform .3s linear;
}

.v-map__point::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFD600;
}

.v-map__point_inv {
  background-color: #FFD600;
}

.v-map__point_inv::after {
  background-color: #D39800;
}

.ie .v-map__point {
  transform: scale(1);
  transition: none;
}

.v-map__label {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, -20px);
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 9px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s linear, transform .3s linear;
  background: #929292;
}

@supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) {
  .v-map__label {
    padding-bottom: 5px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 5px), calc(50% + 5px) calc(100% - 5px), 50% 100%, calc(50% - 5px) calc(100% - 5px), 0% calc(100% - 5px));
            clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 5px), calc(50% + 5px) calc(100% - 5px), 50% 100%, calc(50% - 5px) calc(100% - 5px), 0% calc(100% - 5px));
  }
}

@supports ((-webkit-backdrop-filter: blur()) or (backdrop-filter: blur())) {
  .v-map__label {
    background: rgba(146, 146, 146, 0.32);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
  }
}

.ie .v-map__label {
  transform: translate(-50%, 0);
  opacity: 1;
  transition: none;
}

.v-map__label_l {
  left: auto;
  top: 50%;
  right: 100%;
  bottom: auto;
  transform: translate(-20px, -50%);
  margin-right: 10px;
  margin-bottom: 0;
}

@supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) {
  .v-map__label_l {
    padding-bottom: 0;
    padding-right: 5px;
    -webkit-clip-path: polygon(0% 0%, calc(100% - 5px) 0%, calc(100% - 5px) calc(50% - 5px), 100% 50%, calc(100% - 5px) calc(50% + 5px), calc(100% - 5px) 100%, 0% 100%);
            clip-path: polygon(0% 0%, calc(100% - 5px) 0%, calc(100% - 5px) calc(50% - 5px), 100% 50%, calc(100% - 5px) calc(50% + 5px), calc(100% - 5px) 100%, 0% 100%);
  }
}

.ie .v-map__label_l {
  transform: translate(0, -50%);
}

.v-map__title {
  display: inline-block;
  padding: 7px;
}

@media (min-width: 370px) {
  .v-map__label {
    font-size: 10px;
  }
  .v-map__title {
    padding: 8px;
  }
}

@media (min-width: 530px) {
  .v-map__point {
    margin-top: -10px;
    margin-left: -10px;
    width: 20px;
    height: 20px;
  }
  .v-map__point::after {
    width: 10px;
    height: 10px;
  }
  .v-map__label {
    margin-bottom: 14px;
    font-size: 10px;
  }
  .v-map__label_l {
    margin-bottom: 0;
    margin-right: 14px;
  }
  .v-map__title {
    padding: 12px 12px;
  }
}

@media (min-width: 760px) {
  .v-map__point {
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
  }
  .v-map__point::after {
    width: 12px;
    height: 12px;
  }
}

@media (min-width: 960px) {
  .v-map__point {
    margin-top: -15px;
    margin-left: -15px;
    width: 30px;
    height: 30px;
  }
  .v-map__point::after {
    width: 16px;
    height: 16px;
  }
  .v-map__label {
    margin-bottom: 18px;
    font-size: 12px;
  }
  @supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) {
    .v-map__label {
      padding-bottom: 10px;
      -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(50% + 10px) calc(100% - 10px), 50% 100%, calc(50% - 10px) calc(100% - 10px), 0% calc(100% - 10px));
              clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 10px), calc(50% + 10px) calc(100% - 10px), 50% 100%, calc(50% - 10px) calc(100% - 10px), 0% calc(100% - 10px));
    }
  }
  .v-map__label_l {
    margin-bottom: 0;
    margin-right: 18px;
  }
  @supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) {
    .v-map__label_l {
      padding-bottom: 0;
      padding-right: 10px;
      -webkit-clip-path: polygon(0% 0%, calc(100% - 10px) 0%, calc(100% - 10px) calc(50% - 10px), 100% 50%, calc(100% - 10px) calc(50% + 10px), calc(100% - 10px) 100%, 0% 100%);
              clip-path: polygon(0% 0%, calc(100% - 10px) 0%, calc(100% - 10px) calc(50% - 10px), 100% 50%, calc(100% - 10px) calc(50% + 10px), calc(100% - 10px) 100%, 0% 100%);
    }
  }
  .v-map__title {
    padding: 16px;
  }
}

@media (min-width: 1250px) {
  .v-map__point {
    margin-top: -19px;
    margin-left: -19px;
    width: 38px;
    height: 38px;
  }
  .v-map__point::after {
    width: 20px;
    height: 20px;
  }
  .v-map__label {
    margin-bottom: 24px;
    font-size: 14px;
  }
  .v-map__label_l {
    margin-bottom: 0;
    margin-right: 24px;
  }
  .v-map__title {
    padding: 16px 20px;
  }
}

.t-form {
  padding: 28px 36px 40px;
  background-color: #FAFAFA;
  box-shadow: 0px 15px 19px -4px rgba(0, 0, 0, 0.12);
}

.t-form__title {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.47;
}

.t-form__fields {
  margin-top: 30px;
}

.t-form__field {
  width: 100%;
  margin-bottom: 22px;
}

.t-form__btn {
  width: 100%;
  margin-top: 5px;
}

@media (min-width: 760px) {
  .t-form {
    padding: 28px 32px 36px;
  }
  .t-form__title {
    font-size: 12px;
  }
  .t-form__field {
    margin-bottom: 14px;
  }
  .t-form__btn {
    margin-top: 10px;
  }
}

@media (min-width: 1250px) {
  .t-form__fields {
    margin-top: 20px;
  }
}

@media (min-width: 1800px) {
  .t-form {
    padding: 34px 36px 46px;
  }
  .t-form__title {
    font-size: 16px;
  }
  .t-form__fields {
    margin-top: 30px;
  }
  .t-form__field {
    margin-bottom: 20px;
  }
}

.d-form {
  display: flex;
  background-color: #F4F4F4;
  box-shadow: 5px 5px 24px rgba(81, 69, 69, 0.2);
}

.d-form__image {
  position: relative;
  width: 47%;
}

.d-form__image img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.d-form__wrapper {
  width: 53%;
  padding: 27px 18px;
}

.d-form__title {
  font-weight: 900;
  font-size: 10px;
  line-height: 1.47;
}

.d-form__desc {
  margin-top: 14px;
  font-size: 10px;
  line-height: 1.47;
}

.d-form__field {
  margin-top: 5px;
  width: 100%;
}

.d-form__btn {
  margin-top: 12px;
  width: 100%;
}

@media (min-width: 760px) {
  .d-form__image {
    width: 48%;
  }
  .d-form__wrapper {
    width: 52%;
    padding: 30px 26px 24px;
  }
  .d-form__btn {
    margin-top: 18px;
  }
}

@media (min-width: 960px) {
  .d-form__wrapper {
    padding: 34px 32px 32px;
  }
  .d-form__title {
    font-size: 12px;
  }
  .d-form__desc {
    font-size: 12px;
  }
}

@media (min-width: 1250px) {
  .d-form__wrapper {
    padding: 38px 32px 36px;
  }
  .d-form__title {
    font-size: 14px;
  }
  .d-form__btn {
    margin-top: 28px;
  }
}

@media (min-width: 1800px) {
  .d-form__wrapper {
    padding: 48px 38px 38px;
  }
  .d-form__title {
    font-size: 18px;
  }
  .d-form__desc {
    margin-top: 16px;
    font-size: 16px;
  }
}

.c-form__title {
  font-weight: 900;
  font-size: 12px;
  line-height: 1.47;
}

.c-form__desc {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.47;
}

.c-form__fields {
  margin-top: 10px;
}

.c-form__field {
  display: block;
  margin-bottom: 12px;
  width: 100%;
}

.c-form__field:last-child {
  margin-bottom: 0;
}

.c-form__btn {
  margin-top: 24px;
  width: 100%;
}

.c-form__features {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
}

.c-form__feature {
  font-weight: 300;
  font-size: 10px;
}

.c-form__feature span {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.c-form__feature-icon {
  width: 15px;
  height: 15px;
  margin-bottom: 3px;
}

@media (min-width: 760px) {
  .c-form__row {
    display: flex;
    justify-content: space-between;
  }
  .c-form__col {
    width: 46%;
  }
  .c-form__field {
    margin-bottom: 2px;
  }
  .c-form__field:first-child {
    margin-top: -12px;
  }
}

@media (min-width: 1250px) {
  .c-form__col {
    width: 48%;
  }
  .c-form__title {
    padding-right: 20px;
    font-size: 14px;
  }
  .c-form__desc {
    margin-top: 20px;
    padding-right: 40px;
  }
  .c-form__field {
    margin-bottom: 12px;
  }
  .c-form__btn {
    margin-top: 50px;
  }
  .c-form__features {
    margin-top: 40px;
    padding: 0 30px;
  }
  .c-form__feature-icon {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }
}

@media (min-width: 1800px) {
  .c-form__col {
    width: 49%;
  }
  .c-form__title {
    padding-right: 40px;
    font-size: 18px;
  }
  .c-form__desc {
    margin-top: 24px;
    font-size: 16px;
  }
  .c-form__btn {
    margin-top: 26px;
  }
  .c-form__features {
    padding: 0 50px;
  }
}

.m-form {
  padding: 26px 30px 34px;
  background-color: #FAFAFA;
  box-shadow: 0px 15px 19px -4px rgba(0, 0, 0, 0.12);
}

.m-form__title {
  padding-right: 16px;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.47;
}

.m-form__fields {
  margin-top: 14px;
}

.m-form__field {
  margin-bottom: 14px;
  width: 100%;
}

.m-form__field:last-child {
  margin-bottom: 0;
}

.m-form__btn {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 1800px) {
  .m-form {
    padding: 30px 36px 36px;
  }
  .m-form__title {
    font-size: 16px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 30px 0;
  color: #4C4C4C;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0);
  transform: translateY(-100%);
  transition: transform .5s ease, background-color .5s ease, box-shadow .5s ease;
  z-index: 100;
}

.header.is-visible {
  transform: translateY(0);
}

.header.is-fixed {
  background-color: #F4F4F4;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.header__container {
  display: flex;
  align-items: center;
}

.header__logo {
  position: relative;
  margin-right: auto;
  width: 154px;
  z-index: 1;
}

.header__menu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  transition: transform .3s ease;
  overflow: hidden;
}

.header__menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 10px;
  height: 100px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 10px 0 #FFFFFF;
}

.header__menu.is-active {
  transform: translateX(-100%);
}

.header__overlay {
  display: none;
}

.header__menu-inner {
  height: 100vh;
  padding: 120px 66px 63px;
  background-color: #FFFFFF;
  overflow-y: auto;
}

.header__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__link {
  position: relative;
  margin-bottom: 55px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.header__link:last-child {
  margin-bottom: 0;
}

.header__menu-phone, .header__phone {
  font-weight: bold;
  line-height: 1;
  box-shadow: inset 0 -5px 0 0 #FFD600;
}

.header__menu-phone {
  display: inline-block;
  margin-top: 34px;
  font-size: 20px;
}

.header__phone {
  display: none;
  margin-right: 60px;
  font-size: 16px;
}

.header__social {
  display: flex;
  margin-top: 52px;
}

.header__social-item {
  width: 28px;
  height: 28px;
  margin-right: 18px;
}

.header__social-item:last-child {
  margin-right: 0;
}

.header__social-icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header__menu-btn {
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -2px;
  width: 30px;
  height: 30px;
}

.header__menu-btn span {
  position: relative;
  width: 30px;
  height: 2px;
  background-color: #4C4C4C;
  transition: transform .15s;
}

.header__menu-btn span::before, .header__menu-btn span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
}

.header__menu-btn span::before {
  top: -8px;
  transition: top .15s .15s;
}

.header__menu-btn span::after {
  bottom: -8px;
  transition: bottom .15s .15s, transform .15s;
}

.header__menu-btn.is-active span {
  transform: rotate(-45deg);
  transition: transform .15s .15s;
}

.header__menu-btn.is-active span::before {
  top: 0;
  transition: top .15s;
}

.header__menu-btn.is-active span::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom .15s, transform .15s .15s;
}

.header__langs {
    display: flex;
    align-items: center;
    margin-top: 48px;
}

.header__langs_main {
    display: none;
}

.header__lang {
    width: 36px;
    height: 36px;
    border: 3px solid transparent;
    border-radius: 50%;
    margin-right: 10px;
}

.header__lang.active {
    border: 3px solid #FFD600;
}

.header__lang svg {
    width: 100%;
    height: 100%;
}

@media (min-width: 370px) {
  .header__menu-phone {
    font-size: 22px;
  }
}

@media (min-width: 760px) {
  .header__logo {
    z-index: auto;
  }
  .header__menu::before {
    display: none;
  }
  .header__overlay {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 532px);
    height: 100%;
  }
  .header__menu-inner {
    margin-left: auto;
    width: 532px;
    padding: 100px 84px 84px;
  }
  .header__link {
    margin-bottom: 50px;
    font-size: 20px;
  }
  .header__menu-phone {
    margin-top: 60px;
  }
  .header__phone {
    display: inline-block;
  }
}

@media (min-width: 960px) {
  .header__menu {
    position: static;
    left: auto;
    top: auto;
    width: auto;
    margin: 0 auto;
    padding: 0 10px;
    transition: none;
    overflow: visible;
  }
  .header__menu::before {
    display: none;
  }
  .header__overlay {
    display: none;
  }
  .header__menu-inner {
    margin-left: 0;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    overflow-y: visible;
  }
  .header__nav {
    flex-direction: row;
  }
  .header__link {
    margin-bottom: 0;
    margin-right: 29px;
    font-weight: 300;
    font-size: 12px;
  }
  .header__link::before {
    content: attr(data-title);
    display: block;
    font-weight: bold;
    height: 0;
    overflow: hidden;
  }
  .header__link::after {
    content: "";
    position: absolute;
    left: -4px;
    bottom: 2px;
    right: -4px;
    height: 5px;
    background-color: #FFD600;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    z-index: -1;
  }
  .header__link:last-child {
    margin-right: 0;
  }
  .header__link:hover {
    text-decoration: underline;
  }
  .header__link.is-active {
    font-weight: bold;
  }
  .header__link.is-active::after {
    transform: scaleX(1);
  }
  .header__link.is-active:hover {
    text-decoration: none;
  }
  .header__menu-phone {
    display: none;
  }
  .header__social {
    display: none;
  }
  .header__phone {
    margin-right: 0;
  }
  .header__menu-btn {
    display: none;
  }
  .header__logo {
      width: 130px;
  }
  .header__link {
      margin-right: 12px;
  }
  .header__langs {
      margin-top: 0;
      margin: 0 auto;
  }
  .header__langs_menu {
      display: none;
  }
  .header__langs_main {
      display: flex;
  }
  .header__lang {
      width: 32px;
      height: 32px;
  }
}

@media (min-width: 1150px) {
    .header__logo {
        width: 154px;
    }
    .header__link {
        margin-right: 28px;
    }
}

@media (min-width: 1250px) {
  .header__link {
    font-size: 14px;
  }
  .header__phone {
    font-size: 20px;
  }
}

@media (min-width: 1300px) {
    .header__link {
        margin-right: 50px;
    }
    .header__langs {
        margin-left: 0;
    }
    .header__lang {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 1440px) {
    .header__langs {
        margin-right: 55px;
    }
}

@media (min-width: 1800px) {
  .header__logo {
    width: 223px;
  }
  .header__menu {
    padding-left: 100px;
  }
  .header__link {
    margin-right: 60px;
    font-size: 18px;
  }
  .header__phone {
    font-size: 24px;
  }
}

.main {
  padding: 106px 0 52px;
  background-image: url("../img/main-bg.png");
  background-size: cover;
  background-position: center;
}

.main__heading {
  position: relative;
  margin-bottom: -6px;
  z-index: 1;
}

.main__heading.is-visible .main__h-underlined::after {
  transform: scaleX(1);
}

.main__h-underlined {
  position: relative;
}

.main__h-underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 105%;
  height: 21px;
  background-color: #FFD600;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease;
  z-index: -1;
}

.main__content {
  margin-top: 32px;
}

.main__title {
  font-weight: bold;
  font-size: 28px;
  line-height: 1.21;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.main__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main__btn {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.main__btn.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.main__video {
  margin: 0 -20px;
  position: relative;
  overflow: hidden;
}

.main__video::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F4F4F4;
  transition: transform .5s ease;
}

.main__video img, .main__video video {
  transform: scale(1.2);
  transition: transform .5s ease;
}

.main__video.is-visible::after {
  transform: translateY(-100%);
}

.main__video.is-visible img, .main__video.is-visible video {
  transform: scale(1);
}

@media (min-width: 760px) {
  .main {
    padding: 140px 0 0;
  }
  .main__row {
    align-items: center;
  }
  .main__content {
    margin-top: 0;
    padding: 52px 0 40px;
  }
  .main__title {
    font-size: 24px;
  }
  .main__btn {
    margin-top: 24px;
    transition-delay: .5s;
  }
  .main__video-col {
    order: 1;
    align-self: flex-end;
  }
  .main__video {
    margin-left: 0;
    margin-right: -40px;
  }
  .main__video::after, .main__video video {
    transition-delay: .5s;
  }
}

@media (min-width: 960px) {
  .main {
    padding-top: 140px;
  }
  .main__h-underlined::after {
    bottom: -7px;
    height: 33px;
  }
  .main__content {
    margin-top: 0;
    padding: 56px 0 60px;
  }
  .main__title {
    font-size: 28px;
  }
  .main__btn {
    margin-top: 22px;
  }
}

@media (min-width: 1250px) {
  .main {
    padding-top: 170px;
  }
  .main__heading {
    margin-bottom: -19px;
  }
  .main__h-underlined::after {
    bottom: 6px;
  }
  .main__content {
    padding: 90px 0 70px;
  }
  .main__title {
    font-weight: bold;
    font-size: 28px;
  }
}

@media (min-width: 1800px) {
  .main__h-underlined::after {
    bottom: 10px;
  }
  .main__content {
    padding: 150px 0 90px;
  }
  .main__title {
    font-size: 40px;
  }
  .main__btn {
    margin-top: 62px;
  }
}

.about {
  padding: 38px 0 12px;
  color: #FFFFFF;
  background-color: #353535;
}

.about__way {
  display: none;
  opacity: 0;
  transition: opacity .5s ease;
}

.about__way.is-visible {
  opacity: 1;
}

.about__advantages {
  display: flex;
  margin: 38px -20px 0;
}

.about__advantage {
  width: 44%;
  text-align: center;
}

.about__advantage:nth-child(2) {
  width: 56%;
  margin-top: 56px;
}

.about__advantage.is-visible .about__advantage-title {
  opacity: 1;
}

.about__advantage.is-visible .about__advantage-image::after {
  transform: translateY(100%);
}

.about__advantage.is-visible .about__advantage-image img {
  transform: scale(1);
}

.about__advantage-title {
  margin-bottom: 14px;
  padding: 0 16px;
  font-size: 10px;
  line-height: 1.37;
  opacity: 0;
  transition: opacity .5s ease;
}

.about__advantage-image {
  position: relative;
  overflow: hidden;
}

.about__advantage-image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #353535;
  transition: transform .5s ease;
}

.about__advantage-image img {
  transform: scale(1.2);
  transition: transform .5s ease;
}

.about__spacer {
  display: none;
}

.about__content {
  margin-top: 23px;
  font-weight: bold;
  line-height: 1.21;
  opacity: 0;
  transition: opacity .5s ease;
}

.about__content.is-visible {
  opacity: 1;
}

.about__title {
  font-size: 18px;
}

.about__text {
  margin-top: 16px;
  font-size: 14px;
}

.about__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.about__feature {
  position: relative;
  margin-bottom: 30px;
  padding-top: 4px;
  width: 43%;
}

.about__feature:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.about__label {
  display: inline-block;
  position: absolute;
  left: -4px;
  top: 0;
  padding: 1px 7px;
  font-size: 12px;
  color: #4C4C4C;
  overflow: hidden;
}

.about__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  background-color: #FFD600;
  transform: skewX(-45deg);
}

.about__label span {
  position: relative;
}

.about__num {
  position: relative;
  font-size: 40px;
}

.about__logo {
  align-self: flex-start;
  margin-top: -10px;
  margin-left: auto;
  margin-right: -20px;
  border-left: 5px solid #FFD600;
  width: 110px;
  padding: 12px 20px;
  background-color: #FFFFFF;
}

@media (min-width: 760px) {
  .about {
    padding: 43px 0 23px;
  }
  .about__heading {
    margin-bottom: 30px;
  }
  .about__advantages {
    margin: 0 0 0 -40px;
  }
  .about__way {
    display: block;
    margin-top: -6px;
    margin-left: 39px;
    margin-bottom: -73px;
    transition-delay: .5s;
  }
  .about__content {
    margin-top: 92px;
    margin-left: 45px;
    transition-delay: .5s;
  }
  .about__text {
    margin-top: 10px;
  }
  .about__logo {
    margin-top: 0;
    margin-right: -40px;
    border-left: 6px solid #FFD600;
    width: 138px;
  }
}

@media (min-width: 960px) {
  .about {
    padding: 52px 0 20px;
  }
  .about__advantage:nth-child(2) {
    margin-top: 74px;
  }
  .about__advantage-title {
    padding: 0 26px;
    margin-bottom: 14px;
    font-size: 12px;
  }
  .about__way {
    margin-left: 0;
    margin-bottom: -58px;
  }
  .about__spacer {
    display: block;
  }
  .about__content {
    margin-left: -18px;
  }
  .about__title {
    font-size: 24px;
  }
  .about__text {
    margin-top: 18px;
  }
  .about__features {
    margin-top: 36px;
  }
  .about__feature {
    width: 48%;
    margin-bottom: 22px;
  }
  .about__num {
    font-size: 45px;
  }
  .about__logo {
    margin-top: 16px;
    border-left: 9px solid #FFD600;
    width: 184px;
    padding: 20px 32px;
  }
}

@media (min-width: 1250px) {
  .about {
    padding: 72px 0 64px;
  }
  .about__way {
    margin: -40px auto -72px;
    max-width: 512px;
  }
  .about__advantage:nth-child(2) {
    margin-top: 86px;
  }
  .about__advantage-title {
    margin-bottom: 20px;
    padding: 0 64px;
    font-size: 14px;
  }
  .about__content-col {
    display: flex;
    align-items: center;
  }
  .about__content {
    margin-top: 210px;
    margin-left: 0;
    width: 100%;
  }
  .about__title {
    font-size: 30px;
  }
  .about__features {
    justify-content: flex-start;
    margin-top: 45px;
  }
  .about__feature {
    width: 44%;
    margin-bottom: 40px;
  }
  .about__logo {
    margin-top: 0;
    border-left: 11px solid #FFD600;
    width: 245px;
    padding: 28px 44px;
  }
}

@media (min-width: 1800px) {
  .about {
    padding: 152px 0 40px;
  }
  .about__way {
    margin: -36px auto -124px;
    max-width: 595px;
  }
  .about__advantage:nth-child(2) {
    margin-top: 96px;
  }
  .about__advantage-title {
    margin: 0 auto 22px;
    padding: 0 20px;
    max-width: 370px;
    font-size: 18px;
  }
  .about__content {
    margin-top: 100px;
  }
  .about__title {
    max-width: 630px;
    font-size: 36px;
  }
  .about__text {
    margin-top: 26px;
    font-size: 18px;
  }
  .about__features {
    padding-right: 170px;
  }
  .about__feature {
    width: 34%;
  }
  .about__logo {
    margin-top: -40px;
    margin-right: -210px;
    border-left: 16px solid #FFD600;
    width: 330px;
    padding: 36px 60px;
  }
}

.our-service {
  padding: 12px 0 46px;
  color: #FFFFFF;
  background-color: #353535;
}

.our-service__items {
  display: flex;
  justify-content: space-between;
  margin-top: 21px;
  opacity: 0;
  transition: opacity .5s ease;
}

.our-service__items.is-visible {
  opacity: 1;
}

.our-service__item {
  position: relative;
  width: 20%;
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.54;
}

.our-service__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 4px;
  background-color: #FFD600;
}

.our-service__abbr {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1;
}

.our-service__image {
  margin: 0 -20px 32px;
  position: relative;
  overflow: hidden;
}

.our-service__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #353535;
  transition: transform .5s ease;
}

.our-service__image img, .our-service__image video {
  transform: scale(1.2);
  transition: transform .5s ease;
}

.our-service__image.is-visible::after {
  transform: translateY(100%);
}

.our-service__image.is-visible img, .our-service__image.is-visible video {
  transform: scale(1);
}

@media (min-width: 760px) {
  .our-service {
    padding: 23px 0 85px;
  }
  .our-service__items {
    margin-top: 40px;
  }
  .our-service__image-col {
    order: 1;
  }
  .our-service__image {
    margin: 16px -40px 0 0;
  }
  .our-service__image::after, .our-service__image img {
    transition-delay: .5s;
  }
}

@media (min-width: 960px) {
  .our-service {
    padding: 20px 0 85px;
  }
  .our-service__items {
    margin-top: 36px;
  }
  .our-service__item {
    width: 17%;
    padding-top: 21px;
  }
  .our-service__item::before {
    width: 35px;
    height: 6px;
  }
  .our-service__abbr {
    margin-bottom: 22px;
    font-size: 24px;
  }
  .our-service__image {
    margin-left: 45px;
  }
}

@media (min-width: 1250px) {
  .our-service {
    padding: 64px 0 112px;
  }
  .our-service__content-col {
    display: flex;
    flex-direction: column;
  }
  .our-service__items {
    margin: auto 0;
    padding-top: 65px;
    padding-bottom: 15px;
  }
  .our-service__item {
    width: 16%;
    font-size: 14px;
  }
  .our-service__item::before {
    width: 39px;
    height: 6px;
  }
  .our-service__abbr {
    margin-bottom: 17px;
    font-size: 30px;
  }
  .our-service__image {
    margin-top: 11px;
    margin-left: 0;
  }
}

@media (min-width: 1800px) {
  .our-service {
    padding: 44px 0 96px;
  }
  .our-service__items {
    padding-top: 84px;
    padding-bottom: 34px;
  }
  .our-service__item {
    width: 18%;
    font-size: 18px;
  }
  .our-service__image {
    margin-top: 0;
  }
}

.transport {
  padding: 40px 0 48px;
}

.transport__items {
  margin-top: 12px;
}

.transport__item {
  margin-bottom: -5px;
  opacity: 0;
  transition: opacity .5s ease;
}

.transport__item.is-visible {
  opacity: 1;
}

.transport__item:last-child {
  margin-bottom: 0;
}

.transport__type {
  width: 43%;
  margin-left: auto;
  font-weight: 900;
  font-size: 28px;
  color: #F4F4F4;
  text-shadow: -1px -1px 0 #353535, 1px -1px 0 #353535, -1px 1px 0 #353535, 1px 1px 0 #353535;
}

.transport__title {
  position: relative;
  margin-top: 11px;
  padding-left: 50px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
}

.transport__title span {
  box-shadow: inset 0 -8px 0 0 #FFD600;
}

.transport__title-icon {
  position: absolute;
  left: 2px;
  top: 6px;
  width: 20px;
  height: 20px;
}

.transport__features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 21px;
  padding-left: 50px;
}

.transport__feature {
  display: flex;
  width: 50%;
  margin-bottom: 15px;
  padding-right: 10px;
  font-weight: 900;
  font-size: 10px;
}

.transport__feature:nth-last-child(-n+2) {
  margin-bottom: 0;
}

.transport__feature-icon {
  width: 12px;
  height: 12px;
  margin-right: 4px;
}

.transport__image {
  margin-top: -74px;
  margin-left: 12px;
  margin-right: -40px;
  position: relative;
  overflow: hidden;
}

.transport__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F4F4F4;
  transition: transform .5s ease;
}

.transport__image img, .transport__image video {
  transform: scale(1.2);
  transition: transform .5s ease;
}

.transport__image.is-visible::after {
  transform: translateY(100%);
}

.transport__image.is-visible img, .transport__image.is-visible video {
  transform: scale(1);
}

@media (min-width: 370px) {
  .transport__type {
    width: 48%;
    font-size: 36px;
  }
}

@media (min-width: 760px) {
  .transport {
    padding: 60px 0 48px;
  }
  .transport__item {
    margin-bottom: 62px;
  }
  .transport__type {
    width: 31.5%;
    font-size: 38px;
  }
  .transport__title {
    margin-top: 6px;
  }
  .transport__features {
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 35px;
  }
  .transport__features_sm {
    padding-right: 170px;
  }
  .transport__feature {
    width: auto;
    padding-right: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 960px) {
  .transport {
    padding: 58px 0 35px;
  }
  .transport__items {
    margin-top: 54px;
    padding-left: 25px;
  }
  .transport__item {
    margin-bottom: 80px;
  }
  .transport__type {
    width: 44%;
  }
  .transport__title {
    margin-left: -24px;
  }
  .transport__features {
    margin-top: 52px;
    margin-left: -24px;
  }
  .transport__features_sm {
    padding-right: 318px;
  }
  .transport__feature {
    font-size: 12px;
  }
  .transport__feature-icon {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 1250px) {
  .transport {
    padding: 74px 0 18px;
  }
  .transport__content-col {
    display: flex;
    flex-direction: column;
  }
  .transport__items {
    margin: auto 0;
    padding-left: 0;
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .transport__item {
    margin-bottom: 72px;
  }
  .transport__type {
    width: 34.5%;
    text-shadow: -1px -1px 0 #353535, 1px -1px 0 #353535, -1px 1px 0 #353535, 1px 1px 0 #353535;
  }
  .transport__title {
    margin-left: 0;
    padding-left: 45px;
    font-size: 30px;
  }
  .transport__title-icon {
    left: -2px;
    top: 4px;
  }
  .transport__features {
    justify-content: flex-start;
    margin-top: 46px;
    margin-left: -2px;
  }
  .transport__feature {
    margin-right: 38px;
    font-size: 14px;
  }
  .transport__feature:last-child {
    margin-right: 0;
  }
  .transport__feature-icon {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 1800px) {
  .transport {
    padding: 88px 0 33px;
  }
  .transport__image {
    margin-top: -88px;
    margin-left: 22%;
  }
  .transport__items {
    padding-top: 25px;
    padding-bottom: 125px;
  }
  .transport__type {
    width: 43.5%;
  }
  .transport__title {
    margin-top: 5px;
    padding-left: 54px;
    font-size: 40px;
  }
  .transport__title-icon {
    left: 7px;
    top: 4px;
  }
  .transport__features {
    margin-top: 36px;
    margin-left: 6px;
  }
  .transport__feature {
    margin-right: 46px;
    font-size: 18px;
  }
  .transport__feature-icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }
}

.air {
  padding: 46px 0 68px;
  overflow: hidden;
}

.air__items {
  margin-top: 32px;
  opacity: 0;
  transition: opacity .5s ease;
}

.air__items.is-visible {
  opacity: 1;
}

.air__item {
  position: relative;
  padding-top: 18px;
  padding-right: 25px;
  margin-bottom: 33px;
}

.air__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 4px;
  background-color: #FFD600;
}

.air__item:last-child {
  margin-bottom: 0;
}

.air__title {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.26;
}

.air__desc {
  margin-top: 9px;
  font-size: 12px;
  line-height: 1.54;
}

.air__image {
  margin-top: 35px;
  margin-left: -20px;
  margin-right: -115px;
  max-width: 350px;
  position: relative;
  overflow: hidden;
}

.air__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #F4F4F4;
  transition: transform .5s ease;
}

.air__image img, .air__image video {
  transform: scale(1.2);
  transition: transform .5s ease;
}

.air__image.is-visible::after {
  transform: translateY(100%);
}

.air__image.is-visible img, .air__image.is-visible video {
  transform: scale(1);
}

.air__form {
  position: relative;
  margin-top: 200px;
  margin-left: -155px;
  opacity: 0;
  transition: opacity .5s ease;
}

.air__form.is-visible {
  opacity: 1;
}

.air__plane-col {
  display: none;
}

.air__plane-box {
  position: relative;
  margin-top: -80px;
  margin-right: 5px;
  flex-shrink: 0;
  width: 380px;
  z-index: -1;
}

.ie .air__plane-box {
  display: none;
}

.air__plane-wrap {
  position: relative;
  padding-top: 165%;
}

.air__plane-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.air__plane {
  opacity: 0;
  transition: opacity .3s linear;
}

.air__plane.is-active {
  opacity: 1;
}

@media (min-width: 760px) {
  .air {
    padding: 40px 0 50px;
  }
  .air__heading {
    margin-bottom: 54px;
  }
  .air__image {
    margin-top: 0;
    margin-left: -40px;
    margin-right: -130%;
  }
  .air__form {
    margin-top: 168px;
    margin-left: -120%;
    margin-right: -64px;
  }
  .air__items-col {
    order: 1;
    margin: auto 0;
  }
  .air__items {
    margin-top: 0;
    margin-left: 70px;
    padding-bottom: 30px;
  }
  .air__item {
    padding-right: 15px;
    margin-bottom: 65px;
  }
  .air__item::before {
    height: 6px;
  }
  .air__title {
    font-size: 24px;
  }
}

@media (min-width: 960px) {
  .air {
    padding: 35px 0 58px;
  }
  .air__heading {
    margin-bottom: 58px;
  }
  .air__image {
    margin-right: -73%;
  }
  .air__form {
    margin-top: 232px;
    margin-left: -115%;
    margin-right: 0;
  }
  .air__items {
    margin-top: 0px;
    margin-left: 55px;
    padding-bottom: 88px;
  }
  .air__item {
    padding-right: 40px;
  }
  .air__plane-col {
    display: flex;
    justify-content: flex-end;
    order: 3;
  }
}

@media (min-width: 1250px) {
  .air {
    padding: 20px 0 90px;
  }
  .air__heading {
    margin-bottom: 68px;
  }
  .air__row {
    align-items: center;
  }
  .air__image-col {
    align-self: flex-end;
  }
  .air__image {
    margin-right: 0;
    margin-bottom: -90px;
    max-width: none;
  }
  .air__items-col {
    margin: 0;
  }
  .air__items {
    margin-left: 0;
    padding-bottom: 0;
  }
  .air__item {
    margin-bottom: 74px;
  }
  .air__title {
    padding-right: 30px;
    font-size: 30px;
  }
  .air__desc {
    margin-top: 15px;
    padding-right: 100px;
  }
  .air__form-col {
    order: 2;
  }
  .air__form {
    margin-top: 238px;
    margin-left: -60px;
  }
  .air__plane-box {
    margin-right: -50px;
  }
}

@media (min-width: 1800px) {
  .air {
    padding: 33px 0 90px;
  }
  .air__image {
    margin-right: 15%;
  }
  .air__items {
    margin-left: 5px;
    padding-bottom: 100px;
  }
  .air__item {
    margin-bottom: 60px;
    padding-right: 0;
  }
  .air__title {
    padding-right: 0;
    font-size: 34px;
  }
  .air__desc {
    margin-top: 7px;
    font-size: 16px;
  }
  .air__form {
    margin-top: 188px;
    margin-left: 0;
    margin-right: 90px;
  }
  .air__plane-box {
    margin-right: 50px;
  }
}

.acc-service {
  padding: 52px 0 20px;
  color: #FFFFFF;
  background-color: #353535;
}

.acc-service__m-wrap {
  position: absolute;
  top: 290px;
  right: 0%;
  width: calc(89% + 50px);
  padding-left: 50px;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s ease;
}

.acc-service__m-wrap.is-visible {
  opacity: 1;
}

.acc-service__map {
  margin-right: -22%;
}

.acc-service__features {
  margin-top: 30px;
  opacity: 0;
  transition: opacity .5s ease;
}

.acc-service__features.is-visible {
  opacity: 1;
}

.acc-service__feature {
  margin-bottom: 18px;
  padding-left: 3px;
  font-weight: 900;
  font-size: 10px;
}

.acc-service__feature::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  margin-left: -3px;
  margin-bottom: 10px;
  background-color: #FFD600;
}

.acc-service__feature:last-child {
  margin-bottom: 0;
}

.acc-service__form {
  margin-top: 87%;
  color: #353535;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .5s ease, transform .5s ease;
}

.acc-service__form.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 370px) {
  .acc-service__m-wrap {
    top: 270px;
  }
  .acc-service__form {
    margin-top: 82%;
  }
}

@media (min-width: 760px) {
  .acc-service {
    padding: 52px 0 40px;
  }
  .acc-service__m-wrap {
    top: 136px;
    width: calc(84% + 100px);
    padding-left: 100px;
  }
  .acc-service__map {
    margin-right: -14%;
  }
  .acc-service__features {
    margin-top: 24px;
  }
  .acc-service__feature {
    margin-bottom: 12px;
    font-size: 12px;
  }
  .acc-service__form {
    margin-top: 51%;
  }
}

@media (min-width: 960px) {
  .acc-service {
    padding: 64px 0 45px;
  }
  .acc-service__m-wrap {
    top: 154px;
    width: calc(76.5% + 100px);
    max-width: 850px;
  }
  .acc-service__map {
    margin-right: -21%;
  }
  .acc-service__features {
    margin-top: 36px;
  }
  .acc-service__feature {
    margin-bottom: 26px;
  }
  .acc-service__feature::before {
    margin-bottom: 8px;
  }
  .acc-service__form {
    margin-top: 160px;
  }
}

@media (min-width: 1250px) {
  .acc-service {
    padding: 104px 0 84px;
  }
  .acc-service__m-wrap {
    top: 100px;
    width: calc(63.5% + 100px);
    max-width: 1020px;
  }
  .acc-service__map {
    margin-right: -23%;
  }
  .acc-service__features {
    margin-top: 68px;
  }
  .acc-service__feature {
    font-size: 14px;
  }
  .acc-service__form {
    margin-top: 84px;
  }
}

@media (min-width: 1800px) {
  .acc-service {
    padding: 104px 0 35px;
  }
  .acc-service__m-wrap {
    width: 1170px;
    max-width: none;
  }
  .acc-service__map {
    margin-right: -4.5%;
  }
  .acc-service__feature {
    font-size: 14px;
  }
  .acc-service__form {
    margin-top: 65px;
    margin-right: 11%;
  }
}

.add-service {
  padding: 22px 0 24px;
  color: #FFFFFF;
  background-color: #353535;
}

.add-service__tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

.add-service__tab {
  position: relative;
  margin-bottom: 27px;
  font-size: 12px;
  cursor: pointer;
  transition: text-shadow .3s ease;
}

.add-service__tab::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -9px;
  width: 154px;
  height: 3px;
  background-color: #FFD600;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease;
}

.add-service__tab:last-child {
  margin-bottom: 0;
}

.add-service__tab.is-active {
  text-shadow: 0 0 0 #FFFFFF;
}

.add-service__tab.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.add-service__tabs-col {
  opacity: 0;
  transition: opacity .5s ease;
}

.add-service__tabs-col.is-visible {
  opacity: 1;
}

.add-service__items-col {
  opacity: 0;
  transition: opacity .5s ease;
}

.add-service__items-col.is-visible {
  opacity: 1;
}

.add-service__items-container {
  margin-top: 39px;
  overflow: hidden;
}

.add-service__items-wrapper {
  display: flex;
}

.add-service__item {
  flex-shrink: 0;
  width: 100%;
}

.add-service__item.is-active .add-service__icn {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.25);
}

.add-service__item.is-active .add-service__img-line {
  opacity: 1;
  transform: scaleX(1);
}

.add-service__item.is-active .add-service__img-line:nth-child(1) {
  transition: opacity 0s ease, transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.25) 0.3s;
}

.add-service__item.is-active .add-service__img-line:nth-child(2) {
  transition: opacity 0s ease, transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.25) 0.2s;
}

.add-service__item.is-active .add-service__img-line:nth-child(3) {
  transition: opacity 0s ease, transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.25) 0.1s;
}

.add-service__item.is-active .add-service__content {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.25);
}

.add-service__image {
  display: block;
  position: relative;
  align-self: center;
  left: -40px;
  margin: 0 auto;
  width: 200px;
  padding: 14px 0;
  text-align: right;
}

.add-service__img-line {
  position: absolute;
  display: inline-block;
  width: 64px;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity .5s ease, transform 0s ease .5s;
}

.add-service__img-line:nth-child(1) {
  left: 15%;
  top: 22%;
}

.add-service__img-line:nth-child(2) {
  left: 0;
  top: 50%;
}

.add-service__img-line:nth-child(3) {
  left: 44%;
  bottom: 0;
}

.add-service__icn {
  width: 82px;
  height: 74px;
  opacity: 0;
  transform: scale(1.25);
  transition: opacity .5s ease, transform 0s ease .5s;
}

.add-service__content {
  margin-top: 30px;
  width: 100%;
  padding-left: 3%;
  opacity: 0;
  transform: translateX(80%);
  transition: opacity .5s ease, transform 0s ease .5s;
}

.add-service__title {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.53;
}

.add-service__desc {
  margin-top: 12px;
  font-size: 10px;
  line-height: 1.72;
}

@media (min-width: 370px) {
  .add-service__desc {
    padding-right: 60px;
  }
}

@media (min-width: 760px) {
  .add-service {
    padding: 44px 0 76px;
  }
  .add-service__tabs {
    margin-top: 44px;
  }
  .add-service__items-col {
    transition-delay: .5s;
  }
  .add-service__items-container {
    margin-top: 0;
    margin-left: 60px;
  }
  .add-service__content {
    margin-top: 36px;
  }
  .add-service__title {
    padding-right: 50px;
    font-size: 12px;
  }
  .add-service__desc {
    margin-top: 10px;
    padding-right: 0;
  }
}

@media (min-width: 960px) {
  .add-service {
    padding: 52px 0 55px;
  }
  .add-service__tabs {
    margin-right: -40px;
  }
  .add-service__items-container {
    margin-top: 34px;
    margin-left: 0;
  }
  .add-service__item {
    display: flex;
  }
  .add-service__image {
    left: -7px;
  }
  .add-service__content {
    width: 50%;
    padding-left: 10px;
  }
  .add-service__title {
    padding-right: 0;
    font-size: 14px;
  }
  .add-service__desc {
    padding-right: 10px;
    font-size: 12px;
  }
}

@media (min-width: 1250px) {
  .add-service {
    padding: 90px 0 153px;
  }
  .add-service__tabs {
    margin-top: 65px;
  }
  .add-service__items-container {
    margin-top: 80px;
  }
  .add-service__image {
    left: -45px;
    width: 280px;
    padding: 18px 0;
  }
  .add-service__img-line {
    width: 84px;
    height: 3px;
  }
  .add-service__icn {
    width: 108px;
    height: 96px;
  }
  .add-service__content {
    margin-top: 0;
  }
  .add-service__desc {
    padding-right: 122px;
  }
}

@media (min-width: 1800px) {
  .add-service {
    padding: 35px 0 123px;
  }
  .add-service__tabs {
    margin-top: 85px;
  }
  .add-service__tab {
    margin-bottom: 32px;
    font-size: 16px;
  }
  .add-service__tab::after {
    bottom: -14px;
  }
  .add-service__items-container {
    margin-top: 88px;
  }
  .add-service__image {
    left: -20px;
    width: 310px;
    padding: 20px 0;
  }
  .add-service__img-line {
    width: 98px;
    height: 4px;
  }
  .add-service__icn {
    width: 124px;
    height: 110px;
  }
  .add-service__title {
    font-size: 18px;
  }
  .add-service__desc {
    margin-top: 20px;
    font-size: 16px;
  }
}

.contacts {
  background-color: #FFD600;
}

.contacts__row {
  position: relative;
}

.contacts__wrap {
  padding: 44px 96px 54px 0;
}

.contacts__items {
  margin-top: 28px;
  opacity: 0;
  transition: opacity .5s ease;
}

.contacts__items.is-visible {
  opacity: 1;
}

.contacts__item {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.68;
}

.contacts__item:last-child {
  margin-bottom: 0;
}

.contacts__item a:hover {
  text-decoration: underline;
}

.contacts__form {
  position: relative;
  margin: 0 -20px;
  padding: 28px 20px 32px;
  transition: background-color 0s ease .5s;
}

.contacts__form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  transform: scaleY(0.0001);
  transition: transform .5s ease;
}

.contacts__form.is-visible {
  background-color: #FFFFFF;
}

.contacts__form.is-visible::before {
  transform: scaleY(1);
}

.contacts__form.is-visible .contacts__form-row {
  opacity: 1;
}

.contacts__form-row {
  position: relative;
  opacity: 0;
  transition: opacity .5s ease .5s;
}

.contacts__image {
  position: absolute;
  top: -62px;
  right: -10px;
  width: 135px;
  /*pointer-events: none;*/
  overflow: hidden;
}

.contacts__image img {
  min-width: 255px;
}

@media (min-width: 370px) {
  .contacts__image {
    width: 165px;
  }
}

@media (min-width: 760px) {
  .contacts__wrap {
    padding: 44px 60px 104px 0;
  }
  .contacts__items {
    margin-top: 22px;
  }
  .contacts__form {
    margin: -20px -40px -34px -57px;
    padding: 54px 40px 40px;
    min-height: calc(100% + 54px);
  }
  .contacts__image {
    top: auto;
    right: calc(50% + 88px);
    bottom: -138px;
    width: 290px;
    transform: translateX(50%);
  }
}

@media (min-width: 960px) {
  .contacts__wrap {
    padding: 44px 230px 44px 0;
  }
  .contacts__items {
    margin-top: 28px;
  }
  .contacts__form {
    margin: -20px -40px -34px -74px;
    padding: 54px 40px 40px 74px;
  }
  .contacts__image {
    right: calc(40% + 132px);
    bottom: -154px;
    width: 382px;
  }
}

@media (min-width: 1250px) {
  .contacts__wrap {
    padding: 68px 120px 50px 0;
  }
  .contacts__items {
    margin-top: 48px;
    padding-right: 180px;
  }
  .contacts__item {
    margin-bottom: 17px;
    font-size: 14px;
  }
  .contacts__form {
    margin: -28px -40px -34px -102px;
    padding: 80px 40px 40px 102px;
    min-height: calc(100% + 62px);
  }
  .contacts__form-row {
    margin: 0 -10px;
  }
  .contacts__form-col {
    width: 80%;
    padding: 0 10px;
  }
  .contacts__image {
    right: calc(40% + 162px);
    bottom: -130px;
    width: 440px;
  }
}

@media (min-width: 1800px) {
  .contacts__wrap {
    padding: 48px 170px 55px 0;
  }
  .contacts__items {
    margin-top: 44px;
    padding-right: 280px;
  }
  .contacts__item {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .contacts__form {
    margin: -28px -40px -40px -145px;
    padding: 70px 40px 50px 145px;
    min-height: calc(100% + 68px);
  }
  .contacts__form-col {
    padding-right: 30px;
  }
  .contacts__image {
    right: calc(40% + 228px);
    bottom: -180px;
    width: 580px;
  }
}

.footer {
  padding: 40px 0 44px;
  color: #FFFFFF;
  background-color: #353535;
  background-image: url("../img/footer-bg.png");
  background-size: cover;
  background-position: center;
}

.footer__logo {
  width: 160px;
}

.footer__nav {
  margin-top: 30px;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer__nav-col:last-child {
  margin-bottom: 0;
}

.footer__link {
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 14px;
}

.footer__link:last-child {
  margin-bottom: 0;
}

.footer__link:hover {
  text-decoration: underline;
}

.footer__phone {
  display: inline-block;
  margin-top: 28px;
  font-weight: bold;
  font-size: 24px;
}

.footer__phone:hover {
  text-decoration: underline;
}

.footer__social {
  display: flex;
  margin-top: 16px;
}

.footer__social-item {
  margin-right: 18px;
}

.footer__social-item:last-child {
  margin-right: 0;
}

.footer__social-icon {
  width: 28px;
  height: 28px;
  fill: #F4F4F4;
}

.footer__policy {
  display: inline-block;
  margin-top: 12px;
  font-size: 10px;
  color: #CBCBCB;
}

.footer__policy:hover {
  text-decoration: underline;
}

@media (min-width: 760px) {
  .footer {
    padding: 124px 0 34px;
  }
  .footer__row {
    align-items: center;
  }
  .footer__logo {
    margin-bottom: 35px;
    width: 166px;
  }
  .footer__nav {
    margin-top: 0;
  }
  .footer__contacts-col {
    align-self: flex-end;
    text-align: right;
  }
  .footer__phone {
    margin-top: 0;
    font-size: 18px;
  }
  .footer__social {
    justify-content: flex-end;
  }
  .footer__social-item {
    margin-right: 9px;
  }
  .footer__social-icon {
    width: 26px;
    height: 26px;
  }
  .footer__policy {
    margin-top: 14px;
    margin-bottom: 4px;
  }
}

@media (min-width: 960px) {
  .footer {
    padding: 86px 0 98px;
  }
  .footer__logo {
    width: 213px;
    margin-bottom: 0;
  }
  .footer__nav {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
  }
  .footer__nav-col {
    width: 40%;
    padding: 0 10px;
    margin-bottom: 0;
  }
  .footer__contacts-col {
    align-self: center;
  }
  .footer__phone {
    margin-top: 20px;
    font-size: 20px;
  }
  .footer__social {
    margin-top: 26px;
  }
  .footer__social-item {
    margin-right: 15px;
  }
  .footer__social-icon {
    width: 30px;
    height: 30px;
  }
  .footer__policy {
    margin-top: 20px;
    margin-bottom: 0;
  }
}

@media (min-width: 1250px) {
  .footer {
    padding: 86px 0 82px;
  }
  .footer__nav-col {
    width: 50%;
  }
  .footer__link {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

@media (min-width: 1800px) {
  .footer {
    padding: 152px 0 122px;
  }
  .footer__logo {
    width: 280px;
    margin-bottom: 32px;
  }
  .footer__nav-col:first-child {
    margin-left: -70px;
  }
  .footer__link {
    margin-bottom: 34px;
    font-size: 22px;
  }
  .footer__phone {
    margin-top: 10px;
    font-size: 24px;
  }
  .footer__social {
    margin-top: 38px;
  }
  .footer__social-item {
    margin-right: 18px;
  }
  .footer__social-icon {
    width: 44px;
    height: 44px;
  }
  .footer__policy {
    margin-top: 30px;
  }
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1000;
}

.modal.is-active {
  opacity: 1;
}

.modal__area {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
}

.modal__area::before, .modal__area::after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  flex-shrink: 0;
}

.modal__window {
  position: relative;
  margin: auto;
}

.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
}

.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 2px;
  background-color: #353535;
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.modal__form {
  width: 270px;
}

@media (min-width: 1800px) {
  .modal__close {
    top: 10px;
    right: 10px;
  }
  .modal__close::before, .modal__close::after {
    width: 20px;
  }
  .modal__form {
    width: 360px;
  }
}

/*---*/

.ajax_form .error{
  font-size:12px;
}
.field.is-error {
  border-color:#AEAEAE;
}

.field.is-error::-moz-placeholder {
  color: #AEAEAE;
}

.field.is-error:-ms-input-placeholder {
  color:#AEAEAE;
}

.field.is-error::placeholder {
  color: #AEAEAE;
}
.field.error {
  border-color:#ff0000;
}
input[type="submit"]:disabled{
  background-color:#E1E1E1;
  color: #4C4C4C;
}

input[type="submit"]:disabled:hover{
  background-color:#E1E1E1;
  color: #4C4C4C;
}

/*modal success*/

.modal_success{
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.75);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1000;
}
.modal_success.is-active {
  opacity: 1;
}
.modal_success__text{
  margin-top: 35px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 17px;
  margin-bottom: 28px;
}    
.modal_success__content img{
  height: 49px;
  width: 49px;
  margin: 0 auto 20px;
}


@media (min-width: 1800px){
.modal_success .modal__form {
  width: 270px;
}   } 
.modal_success .m-form {
  padding: 30px 26px 36px;
}
.contacts__image-wrapper{
  position:relative;
}
.contacts__yt-link{
  position: absolute;
  top:50%;
  left: 50%;
  width: 50%;
  height:50%;
  transform: translate(-50%, -50%);
}

/* import */
.import {
  position: relative;
  aspect-ratio: 1920 / 860;
  width: 100%;
  height: auto;
  padding-block: 60px;
  background-color: #353535;
}

.import > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.import__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-inline: 8.3333%;
}

.import__title {
  all: initial;
  margin-bottom: 40px;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  font-size: 80px;
  color: transparent;
  color: #FFFFFF;
}

.import__title--stroke {
  color: transparent;
  -webkit-text-stroke: 1px #FFFFFF;
}

.import__legend {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  background-color: #92929252;
}

.import__legend-title {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  color: #FFFFFF;
}

.import__legend-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 6px;
  margin-bottom: 15px;
}

.import__legend-arrows {
  position: absolute;
  top: 8px;
  left: 1px;
}

.import__legend-item {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 5px;
  margin-left: 65px;
  padding: 10px;
  background-color: #92929280;
  font-weight: 700;
  line-height: 1;
  font-size: 14px;
  color: #FFFFFF;
}

.import__legend-item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 100%;
  width: 20px;
  height: 16px;
  background-color: #92929280;
  clip-path: polygon(100% 0, 70% 50%, 100% 100%);
  transform: translateY(-50%);
}

.import__legend-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  width: 18px;
  height: 18px;
  border: 4px solid #FFD600;
  border-radius: 50%;
  transform: translateY(-50%);
}

.import__legend-item--alt {
  margin-left: 30px;
  background-color: #FFD600;
  color: #4C4C4C;
}

.import__legend-item--alt::before {
  background-color: #D39800;
}

.import__legend-item--alt::after {
  background-color: #FFD600;
}

@media (max-width: 1919px) {
  .import__title {
    font-size: 60px;
  }

  .import__legend {
    padding: 20px;
  }
}

@media (max-width: 1439px) {
  .import {
    padding-block: 40px;
  }

  .import__title {
    margin-bottom: 20px;
    font-size: 50px;
  }

  .import__legend-title {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .import__legend-group {
    margin-bottom: 12px;
  }

  .import__legend-item {
    /* margin-left: 35px; */
    /* padding: 0; */
    /* background-color: transparent; */
  }

  .import__legend-item > svg {
    /* display: none; */
  }

  .import__legend-item::after {
    /* content: none; */
  }

  .import__legend-item::before {
    /* position: static;
    transform: translate(0, 0); */
  }
}

@media (max-width: 959px) {
  .import {
    padding-block: 30px;
  }

  .import__wrapper {
    padding: 0;
  }

  .import__title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .import {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
    padding-block: 20px;
  }

  .import > picture {
    position: static;
  }

  .import__wrapper {
    align-items: stretch;
  }

  .import__title {
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: end; */
    font-size: 28px;
  }

  .import__legend {
    /* display: none; */
  }
}

/* export */
.export {
  position: relative;
  aspect-ratio: 1920 / 860;
  width: 100%;
  height: auto;
  padding-block: 60px;
}

.export > picture {
  position: absolute;
  inset: 0;
  display: block;
}

.export__wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-inline: 8.3333%;
}

.export__title {
  all: initial;
  width: min-content;
  margin-bottom: 40px;
  text-align: end;
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  font-size: 80px;
  color: transparent;
  color: #353535;
}

@media (max-width: 1919px) {
  .export__title {
    font-size: 60px;
  }
}

@media (max-width: 1439px) {
  .export {
    padding-block: 40px;
  }

  .export__title {
    margin-bottom: 20px;
    font-size: 50px;
  }
}

@media (max-width: 959px) {
  .export {
    padding-block: 30px;
  }

  .export__wrapper {
    padding: 0;
  }

  .export__title {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .export {
    padding-block: 20px;
  }

  .export__title {
    display: flex;
    flex-direction: column;
    align-items: end;
    font-size: 28px;
  }
}

.hidden {
    display: none;
}