.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%;
}
.home-hero-wrapper {
  max-width: 786px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero-buttons {
  display: flex;
  gap: 20px;
}
.ratings__icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
  bottom: 10%;
}
.buble-left-up {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  max-width: 650px;
  width: 100%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}
.buble-right {
  position: absolute;
  max-width: 310px;
  width: 100%;
  z-index: 9;
  right: 0;
  transform: translateX(30%);
  top: 50%;
}
.buble-left-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
}
@media only screen and (max-width: 575px) {
  .home-hero-buttons a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
