.hero {
  height: 100vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: multiply;
}
.hero .container {
  height: 100%;
}
.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-block: 70px 40px;
  @media (min-width: 768px) {
    align-items: flex-end;
  }
}
.hero__title {
  color: var(--color-white);
  @media (max-width: 767px) {
    text-align: center;
  }
}
.hero__desc {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  @media (min-width: 768px) {
    max-width: 200px;
    height: auto;
    gap: 20px;
  }
  @media (min-width: 1200px) {
    align-items: start;
    max-width: 320px;
  }
  @media (min-width: 1440px) {
    max-width: 450px;
  }
}
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.swiper.hero__slider {
  width: 240px;
  margin: 0;
  @media (max-width: 767px) {
    display: none;
  }
  @media (min-width: 1200px) {
    width: 280px;
  }
  @media (min-width: 1440px) {
    width: 380px;
  }
}
.hero__slide-image {
  width: 100px;
  @media (min-width: 1440px) {
    width: 170px;
  }
}
.hero__pagination {
  position: static;
}
.swiper .hero__pagination {
  margin-top: 20px;
}

.hero__slide-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  @media (min-width: 1400px) {
    gap: 20px;
  }
}
.hero__slide-content {
  padding: 20px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 240px;
  @media (hover: hover) {
    &:hover {
      color: var(--color-black);
    }
  }
  @media (min-width: 1200px) {
    height: 280px;
  }
  @media (min-width: 1440px) {
    height: 380px;
  }
}
.hero__slide-block {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
