.main-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  font-family: "e-Ukraine", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.main-hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
.main-hero-section__bg {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  z-index: 0;
}
.main-hero-section__bg--mobile {
  display: none;
}
.main-hero-section__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  position: relative;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.main-hero-section__row {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}
.main-hero-section__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.main-hero-section__image img {
  display: none;
}
.main-hero-section__image.is-active {
  opacity: 1;
}
.main-hero-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  pointer-events: none;
}
.main-hero-section__svg {
  position: relative;
  top: 35px;
  z-index: 2;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.main-hero-section__svg-img {
  display: block;
  width: 100%;
  height: auto;
}
.main-hero-section__svg svg {
  height: revert-layer;
  display: block;
}
.main-hero-section__content {
  width: 504px;
  position: absolute;
  left: 50%;
  bottom: 48px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  padding-inline: 16px;
}
.main-hero-section__title {
  margin: 0 0 16px;
  color: #fff;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.72px;
  text-transform: uppercase;
}
.main-hero-section__subtitle {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .main-hero-section {
    height: 640px;
  }
  .main-hero-section__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }
  .main-hero-section__svg {
    top: 25px;
  }
}
@media (max-width: 768px) {
  .main-hero-section {
    height: 520px;
  }
  .main-hero-section__bg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .main-hero-section__content {
    bottom: 32px;
    width: 324px;
  }
  .main-hero-section__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .main-hero-section__subtitle {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  .main-hero-section__svg {
    top: 8px;
  }
}
@media (max-width: 576px) {
  .main-hero-section {
    height: auto;
    min-height: 800px;
  }
  .main-hero-section__bg--desktop {
    display: none;
  }
  .main-hero-section__bg--mobile {
    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: 70px;
  }
  .main-hero-section__row {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    height: 244.333px;
  }
  .main-hero-section__image--mobile {
    height: 244.333px;
  }
  .main-hero-section__svg {
    top: 38px;
  }
  .main-hero-section__svg-img {
    max-width: none;
    width: 140%;
  }
}