.home-hero {
  height: 100dvh;
  min-height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  opacity: 0.3;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
.home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  opacity: 0.3;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}
.hero-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-overlay::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
}
.home-hero-wrapper {
  color: white;
  display: flex;
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  height: 100%;
}
.home-hero-wrapper > * {
  z-index: 9;
  position: relative;
}
.home-hero > .container,
.home-hero > div > div {
  height: 100%;
}
.about .home-hero-wrapper {
  max-width: 890px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero-buttons {
  display: flex;
  gap: 20px;
}
.about-scroll-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
  bottom: 10%;
}
.about-scroll-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ratings__icon.scroll-down {
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 575px) {
  .home-hero-buttons a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .about-scroll-box {
    max-width: 80px;
  }

  .about-scroll-arrow {
    top: 47%;
    height: 30px;
  }
  .about-scroll-arrow img {
    height: 30px;
  }
}
