/*!************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./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 {
  padding: calc(120px + 7rem) 0 10rem;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 992px) {
  .hero-banner__inner {
    padding: calc(80px + 4rem) 0 6rem;
  }
}
.hero-banner__inner--with-post-banner {
  padding-bottom: 32px;
  background: var(--color-secondary);
}
.hero-banner__inner--with-post-banner .hero-banner__background {
  height: 60% !important;
  z-index: 0;
}
.hero-banner__inner--with-post-banner .hero-banner__background:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10%;
  left: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--color-secondary));
}
.hero-banner__background:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--color-secondary) 25%, color-mix(in srgb, var(--color-secondary) 50%, transparent) 100%);
}
.hero-banner__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-banner__background picture,
.hero-banner__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__content {
  color: var(--color-light);
}
.hero-banner__content-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  max-width: 52%;
}
@media (max-width: 1650px) and (min-width: 992px) {
  .hero-banner__content-inner {
    max-width: 55%;
  }
}
@media (max-width: 992px) {
  .hero-banner__content-inner {
    max-width: 100%;
  }
}
.hero-banner__content-inner > * {
  margin: 0 !important;
}
.hero-banner__text {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  max-width: 70%;
}
.hero-banner__text > * {
  margin: 0;
}
.hero-banner__arrow-down {
  margin: 8rem auto 7rem;
  text-align: center;
  display: block;
  cursor: pointer;
  width: 40px;
}
@media (max-width: 992px) {
  .hero-banner__arrow-down {
    width: 30px;
    margin: 4rem auto 3rem;
  }
}
.hero-banner__arrow-down svg {
  width: 100%;
  height: auto;
  display: block;
  animation: bounce 2s infinite;
}
.hero-banner__post-banner {
  margin-top: 5rem;
}
@media (max-width: 992px) {
  .hero-banner__post-banner {
    margin-top: 3rem;
  }
}
.hero-banner__post-banner-inner {
  padding: 3rem 2.5rem;
  box-sizing: border-box;
  color: var(--color-light);
  display: grid;
  grid-template-columns: 25% auto;
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem 5rem;
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}
@media (max-width: 992px) {
  .hero-banner__post-banner-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem 0;
  }
}
.hero-banner__post-banner-title {
  grid-column: 1/1;
  grid-row: 1/3;
  margin: 0;
}
@media (max-width: 992px) {
  .hero-banner__post-banner-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.hero-banner__post-banner-content {
  grid-column: 1/2;
}
@media (max-width: 992px) {
  .hero-banner__post-banner-content {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.hero-banner__post-banner-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem 0;
}
.hero-banner__post-banner-text > * {
  margin: 0;
}
.hero-banner__post-banner-cta {
  grid-column: 2/3;
}
@media (max-width: 992px) {
  .hero-banner__post-banner-cta {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
