.home-hero-box {
  position: relative;
}
.home-hero {
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  position: relative;
}
.home-hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.home-hero__content {
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: clamp(40px, 15.625vw, 300px);
  margin-top: clamp(0px, 5.208333333333333vw, 100px);
  max-width: 730px;
}
.home-hero__socials {
  z-index: 5;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: clamp(40px, 5.208333333333333vw, 100px);
  margin-top: clamp(0px, 2.604166666666667vw, 50px);
}
.home-hero__socials a {
  display: block;
  border: 1px solid #fff;
  border-radius: 50%;
	aspect-ratio: 1/1
  display: flex;
	width: 38px;
	min-width: 38px;
	min-height: 38px;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.home-hero-slider {
  display: none;
}
.home-hero-arrows {
  position: absolute;
  bottom: 40px;
  right: 50px;
  display: flex;
  gap: 30px;
  align-items: center;
}

@media only screen and (max-width: 1440px) {
  .home-hero__content {
    left: 5%;
    max-width: 470px;
  }
  .home-hero__socials {
    right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .home-hero__content {
    left: 15px;
  }
  .home-hero__socials {
    right: 15px;
  }
  .home-hero__content {
    padding-right: 70px;
  }
}
