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

div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, img, b, u, i, center, table, tr, th, td, video {
  margin: 0;
  padding: 0;
  border: 0;
}

sup {
  line-height: 0;
  font-size: smaller;
  vertical-align: super;
}

sub {
  line-height: 0;
  font-size: smaller;
  vertical-align: sub;
}

body {
  margin: 0;
  --headline-font: 'PT Sans', Arial, sans-serif;
  --text-font: 'Arial', Arial, sans-serif;
}

@media print {
  body, html {
    min-width: 1200px;
    max-width: 1200px;
    padding: 0;
    margin: 0 auto;
    border: none;
  }
}

.page {
  -webkit-font-smoothing: antialiased;
}

:where(.page) a,
:where(.page) button {
  outline: none;
}

:where(.page) a:focus-visible,
:where(.page) button:focus-visible {
  outline-color: #2015FF;
  outline-offset: 4px;
  outline-style: auto;
}

:where(.page) .descr a:focus-visible {
  outline-offset: 2px;
}

:where(.page) a {
  color: #dadada;
  text-decoration: none;
}

:where(.page) a[href^=tel] {
  color: inherit;
  text-decoration: none;
}

:where(.page) ol {
  padding-left: 22px;
  margin-top: 0;
  margin-bottom: 10px;
}

:where(.page) ul {
  padding-left: 20px;
  margin-top: 0;
  margin-bottom: 10px;
}

:where(.page) b,
:where(.page) strong {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  a:active, button:active {
    -webkit-tap-highlight-color: rgba(255, 255, 255, .1);
  }
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
}

.container_flex {
  display: flex;
}

.container:before,
.container:after {
  display: table;
  content: " ";
  width: 0;
}

.container:after {
  clear: both;
}

.col {
  display: inline;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: 100%;
}

.col_2 { max-width: 160px; }
.col_4 { max-width: 360px; }
.col_6 { max-width: 560px; }
.col_8 { max-width: 760px; }
.col_10 { max-width: 960px; }
.col_12 { max-width: 1160px; }

.col_prefix_1 { padding-left: 100px; }
.col_prefix_2 { padding-left: 200px; }
.col_prefix_4 { padding-left: 400px; }

.clear {
  clear: both;
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
    padding: 0;
  }

  .col {
    display: inline;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
  }

  .col_2 { max-width: 140px; }
  .col_4 { max-width: 300px; }
  .col_6 { max-width: 460px; }
  .col_8 { max-width: 620px; }
  .col_10 { max-width: 780px; }
  .col_12 { max-width: 940px; }

  .col_prefix_1 { padding-left: 80px; }
  .col_prefix_2 { padding-left: 160px; }
  .col_prefix_4 { padding-left: 320px; }
}

@media screen and (max-width: 960px) {
  .container {
    max-width: 640px;
  }

  .container_flex {
    display: block;
  }

  .col {
    display: block;
    float: none;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .col_2, .col_4, .col_6, .col_8, .col_10, .col_12 {
    width: 100%;
    max-width: 100%;
  }
}

.text {
  font-family: 'Arial', Arial, sans-serif;
  font-weight: 300;
  color: #595959;
}

.text_sm {
  font-size: 18px;
  line-height: 1.55;
}

.text_md {
  font-size: 20px;
  line-height: 1.55;
}

.name {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: 600;
  color: #595959;
}

.name_xs {
  font-size: 16px;
  line-height: 1.35;
}

.name_md {
  font-size: 20px;
  line-height: 1.35;
}

.heading {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: 600;
  color: #595959;
}

.heading_md {
  font-size: 30px;
  line-height: 1.17;
}

.title {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: 600;
  color: #595959;
}

.title_xxs {
  font-size: 36px;
  line-height: 1.23;
}

.title_xs {
  font-size: 42px;
  line-height: 1.23;
}

.title_md {
  font-size: 52px;
  line-height: 1.23;
}

.title_xl {
  font-size: 72px;
  line-height: 1.17;
}

.descr {
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: 300;
  color: #595959;
}

.descr_xxs {
  font-size: 14px;
  line-height: 1.55;
}

.descr_xs {
  font-size: 16px;
  line-height: 1.55;
}

.descr_xl {
  font-size: 24px;
  line-height: 1.5;
}

.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.margin_auto {
  margin-left: auto;
  margin-right: auto;
}

.valign_top {
  vertical-align: top;
}

.valign_middle {
  vertical-align: middle;
}

.valign_bottom {
  vertical-align: bottom;
}

.section_pt_0 { padding-top: 0; }
.section_pt_30 { padding-top: 30px; }
.section_pt_45 { padding-top: 45px; }
.section_pt_60 { padding-top: 60px; }
.section_pt_75 { padding-top: 75px; }
.section_pt_90 { padding-top: 90px; }
.section_pt_120 { padding-top: 120px; }
.section_pt_150 { padding-top: 150px; }
.section_pb_0 { padding-bottom: 0; }
.section_pb_30 { padding-bottom: 30px; }
.section_pb_60 { padding-bottom: 60px; }
.section_pb_90 { padding-bottom: 90px; }
.section_pb_105 { padding-bottom: 105px; }
.section_pb_120 { padding-bottom: 120px; }
.section_pb_150 { padding-bottom: 150px; }

.btn {
  display: inline-block;
  font-family: 'PT Sans', Arial, sans-serif;
  border: 0 none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
  background-image: none;
  cursor: pointer;
  -webkit-appearance: none;
  user-select: none;
  box-sizing: border-box;
}

.btn-flex,
.btn.btn-flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1ch;
  max-width: 100%;
  height: unset;
  padding: 0;
  overflow: hidden;
  font-family: 'PT Sans', Arial, sans-serif;
  font-weight: 600;
  line-height: var(--line-height, 1.4);
  padding-top: calc(((var(--height, 0px) - 1em * var(--line-height, 1.4)) / 2) - var(--border-width, 0px));
  padding-bottom: calc(((var(--height, 0px) - 1em * var(--line-height, 1.4)) / 2) - var(--border-width, 0px));
  box-sizing: border-box;
  border-style: solid;
  border-color: transparent;
  border-width: var(--border-width, 0);
  background-image: none;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
  white-space: nowrap;
}

.btn-flex__text {
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  white-space: inherit;
  text-overflow: ellipsis;
}

.btn-flex_md,
.btn.btn-flex_md {
  --height: 60px;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
}

.section-header {
  display: flex;
}

.section-title,
.section-descr {
  overflow-wrap: break-word;
}

.section-descr {
  max-width: 560px;
}

.cover {
  background-attachment: fixed;
  background-color: #000;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  overflow: hidden;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.cover__carrier {
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 700px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}

.cover__filter {
  height: 700px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.cover .container {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.cover__wrapper {
  display: table-cell;
  height: 700px;
  width: 1200px;
}

.cover__space {
  display: inline-block;
  height: 100%;
  width: 1px;
}

.cover__arrow {
  bottom: 40px;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  z-index: 9;
}

.cover__arrow-wrapper {
  cursor: pointer;
  display: inline-block;
  transition: all .2s ease-in-out;
  animation: cover-arrow-bottom 1.7s ease infinite;
}

.cover__arrow-wrapper:hover {
  opacity: .7;
}

.cover__arrow-svg {
  fill: #fff;
}

@keyframes cover-arrow-bottom {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  55% {
    transform: translateY(-7px);
  }
  to {
    transform: translateY(0);
  }
}

@media screen and (max-device-width: 1032px) {
  .cover, .cover__carrier {
    background-attachment: scroll;
  }
}

@media print {
  .cover, .cover__carrier {
    background-attachment: scroll;
  }
}

@media screen and (max-width: 1200px) {
  .text_sm { font-size: 16px; }
  .text_md { font-size: 18px; }
  .descr_xxs { font-size: 12px; }
  .descr_xs { font-size: 14px; }
  .descr_xl { font-size: 22px; }
  .title_xxs { font-size: 32px; }
  .title_xs { font-size: 38px; }
  .title_md { font-size: 48px; }
  .title_xl { font-size: 68px; }
  .name_xs { font-size: 14px; }
  .name_md { font-size: 18px; }
  .heading_md { font-size: 28px; }

  .btn-flex_md,
  .btn.btn-flex_md {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media screen and (max-width: 960px) {
  .section-header {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .text_sm { font-size: 14px; line-height: 1.45; }
  .text_md { font-size: 16px; line-height: 1.45; }
  .descr_xs { font-size: 12px; line-height: 1.45; }
  .descr_xl { font-size: 20px; line-height: 1.4; }
  .title_xxs { font-size: 28px; }
  .title_xs { font-size: 30px; }
  .title_md { font-size: 30px; }
  .title_xl { font-size: 32px; }
  .name_xs { font-size: 12px; }
  .name_md { font-size: 16px; }
  .heading_md { font-size: 24px; }

  .btn {
    white-space: normal;
  }

  .btn-flex,
  .btn.btn-flex {
    white-space: normal;
  }

  .btn-flex_md,
  .btn.btn-flex_md {
    padding-left: 30px;
    padding-right: 30px;
  }

  .cover {
    background-attachment: fixed;
  }

  .cover__carrier {
    background-attachment: scroll !important;
    background-position: 50%;
    background-size: cover;
  }

  .cover__arrow_mobile {
    transform: scale(.7);
  }

  .cover__arrow {
    bottom: 14px;
  }
}

@media screen and (max-width: 480px) {
  .title_xl { font-size: 30px; }

  .section_pt_120 { padding-top: 90px !important; }
  .section_pt_150 { padding-top: 90px !important; }
  .section_pb_120 { padding-bottom: 90px !important; }
  .section_pb_150 { padding-bottom: 90px !important; }
}
