/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[3].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[3].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[3].use[3]!./src/blocks/page-banner/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
@mixin fsz($size) {
    $fontOutput: calculateRem($size);
    font-size: $fontOutput + rem;
}
*/
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 330px 0 120px;
}
@media screen and (max-width: 1024px) {
  .page-banner {
    padding: 200px 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .page-banner {
    padding: 150px 0 60px;
  }
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}
.page-banner__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, rgba(0, 0, 0, 0.54) 100%);
  z-index: 2;
}
.page-banner__bg img,
.page-banner__bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner__bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.page-banner__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-banner__video {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
}

.page-banner__img {
  position: absolute;
  inset: 0;
  margin: 0;
}
.page-banner__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-banner__content {
  position: relative;
  z-index: 3;
}

.page-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-banner__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

@keyframes line-draw-right-to-left {
  0% {
    transform: translateY(-50%) scaleX(0);
  }
  50% {
    transform: translateY(-50%) scaleX(1);
  }
  100% {
    transform: translateY(-50%) scaleX(0);
  }
}
.page-banner__top-text {
  font-size: var(--fs-14);
  font-family: var(--ff-primary);
  text-transform: uppercase;
  font-weight: 400;
  color: rgb(var(--success-500));
  letter-spacing: 1.12px;
  line-height: 1.57;
  position: relative;
}
.page-banner__top-text::before, .page-banner__top-text::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 72px;
  background: rgb(var(--success-500));
  top: 50%;
  transform: translateY(-50%);
  animation: line-draw-right-to-left 2s ease-in-out 0s infinite;
}
.page-banner__top-text::before {
  left: calc(100% + 20px);
  transform-origin: left center;
}
.page-banner__top-text::after {
  right: calc(100% + 20px);
  transform-origin: right center;
}

/* Main title – large white serif */
.page-banner__title {
  font-size: 56px;
  line-height: 1.2;
  font-weight: 600;
  font-family: var(--ff-secondary);
}
@media screen and (max-width: 1024px) {
  .page-banner__title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .page-banner__title {
    font-size: 42px;
    margin-bottom: 24px;
  }
}

/*# sourceMappingURL=index.css.map*/