/*	PAGE BANNER
-------------------------------------------- */
.page-banner {
  position: relative;
  background: #2c2e35;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  .page-banner {
    padding: 56px 0 48px 0;
  }
}
.page-banner__overlay {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .page-banner__overlay {
    height: 100%;
  }
}
.page-banner__overlay-svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767.98px) {
  .page-banner__overlay-svg {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
  }
}
.page-banner__content {
  position: relative;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.page-banner .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-banner__heading {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
}
.page-banner__heading--white {
  color: white;
}
.page-banner__heading--black {
  color: #2c2e35;
}
.page-banner__highlight {
  color: #18B1B5 !important;
  text-transform: capitalize !important;
  font-family: "Viva Beautiful Pro", serif;
  font-weight: 400;
  line-height: 0.7;
  white-space: nowrap;
}
@media (max-width: 767.98px) {
  .page-banner__highlight {
    font-size: var(--highlight-mobile-size, inherit) !important;
  }
}
.page-banner .container--center {
  text-align: center;
}
.page-banner .container--left {
  text-align: left;
}
.page-banner__description {
  max-width: 850px;
  width: 100%;
}
.page-banner__description p {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  color: #fff;
}
@media (max-width: 767.98px) {
  .page-banner__description p {
    font-size: 18px;
    line-height: 28px;
  }
}