<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
|------------------------------------------------------------
| Image with text overlay
|------------------------------------------------------------
|
*/
a.image-with-text-overlay {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
a.image-with-text-overlay:hover img {
  transform: scale(1.02);
}

.image-with-text-overlay {
  position: relative;
  align-items: center;
  display: flex;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .image-with-text-overlay {
    min-height: 700px;
  }
}

.image-with-text-overlay__container {
  position: relative;
  padding-top: 60px;
}
@media only screen and (min-width: 768px) {
  .image-with-text-overlay__container {
    padding-top: 80px;
  }
}

.image-with-text-overlay__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.image-with-text-overlay__title {
  letter-spacing: 1.3px;
  font-weight: 400;
  font-family: "nimbus-roman", serif;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .image-with-text-overlay__title {
    letter-spacing: 3px;
  }
}

.image-with-text-overlay__text {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.42px;
  line-height: 22px;
}
@media only screen and (min-width: 768px) {
  .image-with-text-overlay__text {
    margin-top: 20px;
    font-size: 14px;
    letter-spacing: 0.54px;
    line-height: 19px;
  }
}

.image-with-text-overlay__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image-with-text-overlay__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.image-with-text-overlay__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
</pre></body></html>