@charset "UTF-8";
/* Image With Text Slide Layout */
.slide-image-with-text-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.slide-image-with-text-wrapper .image-area {
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.slide-image-with-text-wrapper .image-area .image_desktop,
.slide-image-with-text-wrapper .image-area .image_mobile {
  display: block;
  width: 100%;
  height: auto;
}
.slide-image-with-text-wrapper .image-area .image_mobile {
  display: none;
}
.slide-image-with-text-wrapper .image-area .caption {
  display: none;
}
.slide-image-with-text-wrapper .image-area.lightbox-gallery a {
  display: block;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
.slide-image-with-text-wrapper .image-area.lightbox-gallery a:hover {
  text-decoration: none;
  opacity: 1;
  transform: none;
}
.slide-image-with-text-wrapper .image-area.lightbox-gallery a img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.slide-image-with-text-wrapper .image-area.lightbox-gallery a::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M15 3h6v6M21 3l-7 7M9 21H3v-6M3 21l7-7' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .slide-image-with-text-wrapper .image-area .image_desktop {
    display: none;
  }
  .slide-image-with-text-wrapper .image-area .image_mobile {
    display: block;
  }
}
.slide-image-with-text-wrapper .text-area {
  flex-shrink: 0;
  height: 350px;
  display: flex;
}
.slide-image-with-text-wrapper .text-area .contentSpace {
  padding-left: 25px;
  padding-right: 25px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 50px;
  /**
   * Content width styles, needed here so that the backend preview looks the same as the frontend
   */
  /**
  * WYSIWYG styles
  */
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  align-items: center;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .title {
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .title h2 {
  margin-bottom: 25px !important;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .text {
  flex: 1;
  max-height: clamp(300px, 50vh, 500px);
  overflow: auto;
  margin-bottom: 40px;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) #91929296;
  /* Chrome, Edge, Safari */
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .text ::-webkit-scrollbar {
  width: 10px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .text ::-webkit-scrollbar-track {
  background: var(--primary-color);
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .text ::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .slide-text-content .text ::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
@media (min-width: 768px) {
  .slide-image-with-text-wrapper .text-area .slide-text-wrapper .contentlimit {
    max-width: 90%;
  }
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .contentWidth {
  width: 100%;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .highlight.primary-color {
  color: var(--primary-color);
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .button-inline {
  padding: 3px 5px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .button-inline p {
  margin: 0px;
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper .button-inline a {
  padding: 8px 5px;
  background: var(--primary-color);
  display: inline-block;
  color: var(--primary-font);
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper blockquote {
  position: relative;
  border-top: solid 2px var(--primary-color);
  border-bottom: solid 2px var(--primary-color);
  margin: 1rem 0;
  font-size: 1.5em;
  font-family: "Merriweather", serif;
  padding: 1em 3em;
  color: var(--primary-color);
}
@media (max-width: 991px) {
  .slide-image-with-text-wrapper .text-area .slide-text-wrapper blockquote {
    font-size: 1.25em;
  }
}
@media (max-width: 767px) {
  .slide-image-with-text-wrapper .text-area .slide-text-wrapper blockquote {
    padding: 1em;
    font-size: 1em;
  }
}
.slide-image-with-text-wrapper .text-area .slide-text-wrapper blockquote::before {
  display: block;
  position: absolute;
  left: 0;
  top: -0.025em;
  content: "“";
  float: left;
  font-size: 4em;
  height: 0.75em;
}
@media (max-width: 767px) {
  .slide-image-with-text-wrapper .text-area .slide-text-wrapper blockquote::before {
    position: relative;
    left: -0.3em;
    top: -0.1em;
    float: none;
  }
}