/*!*********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/thread-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./blocks/banners/hero-banner/hero-banner.scss ***!
  \*********************************************************************************************************************************************************************************************************************************************************************************/
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-banner__inner {
  position: relative;
  box-sizing: border-box;
}
.hero-banner--default .hero-banner__inner {
  padding: clamp(124px + 4rem, 12vw, 12rem) 0 clamp(124px + 4rem, 13vw, 14rem);
  box-sizing: border-box;
}
.hero-banner--default .hero-banner__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-light) 0%, transparent 27%);
}
.hero-banner--large .hero-banner__inner {
  padding: clamp(5rem + 124px + 2rem, 16vw, 16rem) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .hero-banner--large .hero-banner__inner {
    min-height: auto;
  }
}
.hero-banner--large .hero-banner__inner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, var(--color-light) 4%, transparent 22%);
}
.hero-banner--large .hero-banner__content {
  margin-top: -5rem;
}
@media (max-width: 992px) {
  .hero-banner--large .hero-banner__content {
    margin-top: -2.5rem;
  }
}
.hero-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.hero-banner__background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-dark);
  opacity: 0.55;
}
.hero-banner__background picture,
.hero-banner__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__wrapper {
  position: relative;
  z-index: 2;
}
.hero-banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 0;
  max-width: 70%;
  margin: 0 auto;
  color: var(--color-light);
}
@media (max-width: 992px) {
  .hero-banner__content {
    max-width: 100%;
  }
}
.hero-banner__content > * {
  margin: 0;
}
.hero-banner__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px 0;
}
.hero-banner__top > * {
  margin: 0;
  line-height: 0.95;
}
.hero-banner__title {
  order: 2;
  text-align: center;
}
.hero-banner__pretitle {
  order: 1;
  color: #e3ded2;
  font-family: var(--font-family-heavy);
  font-weight: 500;
}
.hero-banner__text {
  order: 3;
  max-width: 48%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media (max-width: 992px) {
  .hero-banner__text {
    max-width: 65%;
  }
}
.hero-banner__text > * {
  margin: 0;
}
.hero-banner__arrow {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 1s infinite;
}
