/* Sass variables for media queries */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.text-overlay-wrapper {
  padding: 7vh 0;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10;
}
.text-overlay-wrapper .text-overlay {
  text-align: center;
}
.text-overlay-wrapper .text-overlay .container {
  max-width: 100%;
}
.text-overlay-wrapper .text-overlay .as-h1,
.text-overlay-wrapper .text-overlay h1 {
  color: #fefefe;
  font-size: clamp(20px, 4vw, 50px);
  margin: 0;
  line-height: 1.2;
}
.text-overlay-wrapper .text-overlay .as-h2,
.text-overlay-wrapper .text-overlay h2 {
  color: #fefefe;
  font-size: clamp(18.75px, 3vw, 43.75px);
  margin: 0;
}
.text-overlay-wrapper .text-overlay .as-h3,
.text-overlay-wrapper .text-overlay h3 {
  color: #fefefe;
  font-size: clamp(15px, 2.5vw, 37.5px);
  margin: 0;
}
.text-overlay-wrapper .text-overlay p {
  display: none;
}
@media (min-width: 1280px) {
  .text-overlay-wrapper .text-overlay p {
    display: block;
    font-size: 22px;
  }
}

.text-align-left .text-overlay {
  text-align: left;
  padding: 0 7vh;
}

.text-align-right .text-overlay {
  text-align: right;
  padding: 0 7vh;
}

.overlay-shadow .text-overlay-wrapper {
  background: rgba(0, 0, 0, 0.4);
}
html[data-theme=light] .overlay-shadow .text-overlay h1 {
  color: #ffffff;
}
html[data-theme=dark] .overlay-shadow .text-overlay h1 {
  color: #ffffff;
}
html[data-theme=light] .overlay-shadow .text-overlay h2 {
  color: #ffffff;
}
html[data-theme=dark] .overlay-shadow .text-overlay h2 {
  color: #ffffff;
}
html[data-theme=light] .overlay-shadow .text-overlay h3 {
  color: #ffffff;
}
html[data-theme=dark] .overlay-shadow .text-overlay h3 {
  color: #ffffff;
}
html[data-theme=light] .overlay-shadow .text-overlay p {
  color: #ffffff;
}
html[data-theme=dark] .overlay-shadow .text-overlay p {
  color: #ffffff;
}

.bg-color .text-overlay-wrapper .inner {
  padding: 20px 30px;
}
.bg-color .text-overlay {
  text-align: left;
}

/*# sourceMappingURL=overlay-text.css.map */
