.hero {
  position: relative;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0px 150px 0px;
}
@media (max-width: 768px) {
  .hero__content {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.hero__subtitle {
  font-size: 24px;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 425px) {
  .hero__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 365px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
.hero__title {
  font-size: 48px;
  line-height: 1;
  color: #fff !important;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}
@media (max-width: 540px) {
  .hero__title {
    font-size: 40px;
  }
}
@media (max-width: 425px) {
  .hero__title {
    font-size: 36px;
  }
}
@media (max-width: 365px) {
  .hero__title {
    font-size: 30px;
  }
}
.hero__description {
  max-width: 534px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.28);
  margin-top: 8px;
}
.hero__links {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}
@media (max-width: 425px) {
  .hero__links {
    flex-direction: column;
    justify-content: center;
  }
}
.hero__link {
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s ease-in-out;
  border: 2px solid #fff;
  border-radius: 100px 100px 100px 100px;
}
.hero__link:hover {
  box-shadow: 0px 10px 16px -8px rgba(255, 255, 255, 0.8),
    5px 5px 15px 5px rgba(0, 0, 0, 0);
}
.hero__link:nth-child(1) {
  background-color: #fff;
  color: #2a59f1;
}
.hero__link:nth-child(1):hover {
  background-color: transparent;
  color: #fff;
}
.hero__link:nth-child(2) {
  background-color: transparent;
  color: #fff;
}
.hero__link:nth-child(2):hover {
  background-color: #fff;
  color: #2a59f1;
}
.hero__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
._ibg img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}
/* @media (max-width: 992px) {
  ._ibg img {
    -o-object-position: 30% 0%;
    object-position: 30% 0%;
  }
}
@media (max-width: 768px) {
  ._ibg img {
    -o-object-position: 20% 0%;
    object-position: 20% 0%;
  }
} */

.scroll-down {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scroll-down__link svg {
  animation: fade 1.7s linear infinite;
  max-width: 84px;
}

.start__body {
  padding: 100px 0px 100px 0px;
}

@keyframes fade {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20%);
  }
}
