
:root {
  --_animspeed-fast: 0.1s;
  --_animspeed-medium: 0.3s;
  --_animspeed-slow: 0.6s;
  --_animbezier: cubic-bezier(0.23, 0.65, 0.74, 1.09);
  }
.mos-img img {display: none !important;}
.mx-hero-04 {
  position: relative;
  width: 100%;
}
.mx-hero-04__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  height: -moz-calc(var(--vh) * 100);
  height: calc(var(--vh) * 100);
  overflow: hidden;
}

.mx-hero-04__wrap {
    height: 100vh;
  }
.mx-hero-04__controls {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
  padding: 0;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .mx-hero-04__controls {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
       -moz-box-orient: horizontal;
       -moz-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6rem;
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mx-hero-04__controls {
    padding: 0 7rem;
  }
}

.mx-hero-04__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mx-hero-04__slides {
  position: relative;
  width: 300%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  will-change: transform;
  -webkit-transform: translateX(0);
     -moz-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.mx-hero-04__slide {
  position: relative;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
}

.mx-hero-04__media {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.mx-hero-04__media img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  will-change: transform;
  -webkit-transform: translateX(0) scale(1.25);
     -moz-transform: translateX(0) scale(1.25);
      -ms-transform: translateX(0) scale(1.25);
          transform: translateX(0) scale(1.25);
}
.mx-hero-04__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  mix-blend-mode: soft-light;
}
.mx-hero-04__title {
  display: block;
  position: absolute;
  left: 0;
  bottom: 5.3rem;
  padding: 0 3rem;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .mx-hero-04__title {
    bottom: 5.3rem;
    padding: 0 3rem;
  }
}
@media only screen and (min-width: 1200px) {
  .mx-hero-04__title {
    bottom: 5rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (min-width: 1400px) {
  .mx-hero-04__title {
    bottom: 5rem;
  }
}
@media only screen and (min-width: 1600px) {
  .mx-hero-04__title {
    bottom: 9rem;
    padding: 0 7rem;
  }
}

.mx-hero-04__name {
  margin-bottom: 2.3rem;
}
.mx-hero-04__name p {
  color: #fff;
  font-size: 44px;
}
.mx-hero-04__descr p,
.mx-hero-04__descr a {
  color: #fff;
  font-size: 22px;
}

@media only screen and (min-width: 1200px) {
  .mx-hero-04__name {
    margin-bottom: -3rem;
  }
  .mx-hero-04__name p {
    font-size: 5vw;  
    padding-bottom: 25px;
  }
  .mx-hero-04__descr p,
  .mx-hero-04__descr a {
    font-size: 2.5vw;
  }
}
@media only screen and (min-width: 768px) {
  .btn-line {
    font-size: 1.8rem;
  }
}
.btn-line-permanent, .btn-line-permanent span, a.btn-line-permanent {
  color: #fff !important;
}
.btn-line {
  gap: 1rem;
  font: normal 500 1.6rem/1.6 var(--_font-accent);
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.btn-line span {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
}
.btn-line::before {
  content: "[";
}
.btn-line::after {
  content: "]";
}
.btn-line::before, .btn-line::after {
  -webkit-transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  transition: -webkit-transform var(--_animspeed-medium) var(--_animbezier);
  -moz-transition: transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier);
  transition: transform var(--_animspeed-medium) var(--_animbezier), -webkit-transform var(--_animspeed-medium) var(--_animbezier), -moz-transform var(--_animspeed-medium) var(--_animbezier);
}
