.hero {
  position: relative;
  height: 600px;
  margin-bottom: 35px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.hero__video_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  object-fit: cover;
}

.hero__container {
  position: relative;
  padding-top: 10px;
  height: 100%;
}

.hero__title {
  max-width: 560px;
  margin: 0;
  margin-bottom: 48px;
  color: #fff;
  color: var(--color-white);
  font-weight: 500;
  font-size: 64px;
  line-height: 78px;
  text-transform: uppercase;
}

.hero__text_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 536px;
  width: 100%;
}

.hero__text {
  margin: 0;
  max-width: 453px;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-white);
}

.hero__arrow {
  display: block;
  width: 29px;
  height: 30px;
  fill: var(--color-white);
}

.hero__slider {
  position: absolute;
  right: 0;
  bottom: 27px;
}

@media (min-width:1025px) {
  .hero {
    min-height: calc(100vh - 91px);
  }
}

@media (max-width: 1366px) {
  .hero__title {
    max-width: 500px;
    font-size: 44px;
    line-height: 60px;
  }

  .hero__text {
    font-size: 16px;
    line-height: 20px;
  }

  .hero__arrow {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1200px) {
  .hero__text_wrapper {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero__slider {
    left: 20px;
    right: auto;
  }

  .hero__title {
    font-size: 32px;
    line-height: 44px;
  }

  .hero {
    height: 0;
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 560px;
    background-position: 36%;
    margin-bottom: 40px;
  }

  .hero__container {
    padding-top: 33px;
  }
}

@media (max-width: 360px) {
  .hero {
    min-height: 480px;
  }
}