.section__hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
}
.section__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-50);
  z-index: 1;
}
.section__hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.section__hero__body {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 60px;
}
.section__hero__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 920px;
  position: relative;
}
.section__hero__text {
  font-weight: 700;
  font-size: 24px;
  max-width: 756px;
}
.section__hero__animate {
  width: 90%;
  position: absolute;
  bottom: -10%;
  left: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}
.section__hero__animate::after {
  content: "";
  width: 100%;
  height: 330px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0, #d9b72e 53%, rgba(0, 0, 0, 0.1) 100%);
  background-size: 200% 100%;
  -webkit-mask-image: url(../img/hero_animate.svg);
  mask-image: url(../img/hero_animate.svg);
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-animation: goldShine 4s infinite linear;
  animation: goldShine 4s infinite linear;
}
@-webkit-keyframes goldShine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
@keyframes goldShine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.section__hero__link {
  width: 290px;
  margin-top: auto;
}
.section__hero__socials {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}
.section__hero__social {
  color: var(--color-white);
}
.section__hero__social .icon {
  width: 30px;
  height: 30px;
}
@media (min-width: 993px) {
  .section__hero__socials {
    position: relative;
  }
  .section__hero__socials::before {
    content: "";
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 200%;
    height: 150%;
    background: radial-gradient(
      50% 50% at 50% 50%,
      rgba(217, 183, 46, 0.4) 0,
      rgba(217, 183, 46, 0.8) 60%,
      rgba(217, 183, 46, 0) 100%
    );
    -webkit-filter: blur(40px);
    filter: blur(40px);
    z-index: -1;
  }
}
@media (max-width: 1280px) {
  .section__hero__text {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .section__hero__body {
    height: calc(100vh - 66px);
    padding-top: 160px;
    display: flex;
  }
  .section__hero__info {
    gap: 16px;
  }
  .section__hero__text {
    font-size: 20px;
  }
  .section__hero__animate {
    bottom: 0;
    left: -20px;
    width: 100vw;
  }
  .section__hero__animate::after {
    height: 200px;
  }
  .section__hero__socials {
    max-width: 540px;
    margin-top: 40px;
    gap: 16px;
    width: 100%;
    flex-direction: row;
  }
  .section__hero__social .icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 540px) {
  .section__hero__text {
    font-size: 16px;
  }
  .section__hero__animate {
    bottom: 10%;
  }
  .section__hero__link {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .section__hero__social:hover {
    color: var(--color-primary);
  }
}
