.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 960px);
  max-width: 1920px;
}
@media screen and (max-width: 1920px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.swiper-navigation .swiper-button-next.swiper-button-disabled, .swiper-navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  -o-transition: unset;
  -ms-transition: unset;
  -moz-transition: unset;
  -webkit-transition: unset;
  transition: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-disabled svg, .swiper-navigation .swiper-button-prev.swiper-button-disabled svg {
  color: var(--swiperColor);
}
.swiper-navigation .swiper-button-next,
.swiper-navigation .swiper-button-prev {
  -o-transition: 0.25s ease;
  -ms-transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
  font-size: 0;
  height: 64px;
  width: 64px;
  border-radius: 50%;
  right: unset;
  left: unset;
  top: 50%;
  margin-top: -32px;
}
.swiper-navigation .swiper-button-next svg,
.swiper-navigation .swiper-button-prev svg {
  top: 0;
  bottom: 0;
  position: absolute;
  left: 0;
  margin: auto;
  right: unset;
  font-size: 50px;
  color: var(--swiperColor);
}
@media screen and (max-width: 768px) {
  .swiper-navigation .swiper-button-next,
  .swiper-navigation .swiper-button-prev {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    transform: scale(0.7);
  }
}
.swiper-navigation .swiper-button-next.swiper-button-next,
.swiper-navigation .swiper-button-prev.swiper-button-next {
  -webkit-transform-origin: right;
  -moz-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  right: 0;
  background: unset;
  border: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-next svg,
.swiper-navigation .swiper-button-prev.swiper-button-next svg {
  right: 0;
  left: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-next:after,
.swiper-navigation .swiper-button-prev.swiper-button-next:after {
  display: none;
  font-family: "Font Awesome 5 Free", serif;
  font-weight: 900;
  content: "\f054";
}
.swiper-navigation .swiper-button-next.swiper-button-prev,
.swiper-navigation .swiper-button-prev.swiper-button-prev {
  -webkit-transform-origin: left;
  -moz-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  left: 0;
  background: unset;
  border: unset;
}
.swiper-navigation .swiper-button-next.swiper-button-prev:after,
.swiper-navigation .swiper-button-prev.swiper-button-prev:after {
  display: none;
  font-family: "Font Awesome 5 Free", serif;
  font-weight: 900;
  content: "\f053";
}
.swiper-navigation .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--swiperColor);
  opacity: 0.5;
}
.swiper-navigation .swiper-pagination-bullet-active {
  background-color: var(--swiperColor) !important;
  opacity: 1 !important;
}
.swiper-navigation .swiper-pagination-bullets {
  text-align: center;
}

.swiper-button-next svg.svg-inline--fa, .swiper-button-prev svg.svg-inline--fa {
  height: 1em;
}

.swiper-lazy-preloader-white {
  filter: drop-shadow(0 0 1px rgba(105, 105, 105, 0.4));
}

button, a.buttonstyle, .wp-block-button.buttonstyle {
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: var(--button-gap);
  height: var(--button-height);
  width: var(--button-width);
  padding: 0 var(--button-padding);
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
}
button.icon-first, a.icon-first.buttonstyle, .icon-first.wp-block-button.buttonstyle {
  position: relative;
  top: 4.5px;
}
button svg, a.buttonstyle svg, .wp-block-button.buttonstyle svg {
  color: var(--green-100);
}
button.accent, a.accent.buttonstyle, .accent.wp-block-button.buttonstyle {
  background: var(--green-accent);
  color: var(--green-100);
}
button.light, a.light.buttonstyle, .light.wp-block-button.buttonstyle {
  background: var(--green-10);
  color: var(--green-100);
}
button.dark, a.dark.buttonstyle, .dark.wp-block-button.buttonstyle {
  background: var(--green-30);
  color: var(--green-100);
}
button.outline, a.outline.buttonstyle, .outline.wp-block-button.buttonstyle {
  background: none;
  border: 2px solid var(--green-80);
  color: var(--green-80);
}
button:hover, a.buttonstyle:hover, .wp-block-button.buttonstyle:hover {
  background: var(--green-80);
  color: var(--green-10);
}
button:hover *, a.buttonstyle:hover *, .wp-block-button.buttonstyle:hover * {
  color: var(--green-10);
}
button:focus-visible, a.buttonstyle:focus-visible, .wp-block-button.buttonstyle:focus-visible {
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--black);
  border-radius: 2px;
  outline-offset: -2px;
}

.wp-block-button a {
  padding: 0;
  background: 0;
  color: inherit;
}

a.wp-block-button__link.wp-element-button {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: var(--button-gap);
}
a.wp-block-button__link.wp-element-button svg {
  position: relative;
  top: 1.4px;
}

.no-select {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
             supported by Chrome and Opera */
}

.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

.hyphens {
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.force-unlimited-full-width {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  max-width: 100vw;
}

.force-full-width {
  width: 100vw;
  margin-left: calc(50% - 720px);
  max-width: 1440px;
}
@media screen and (max-width: 1440px) {
  .force-full-width {
    margin-left: calc(50% - 50vw);
  }
}

.has-max-width {
  max-width: var(--maxWidth);
  margin: 0 auto;
}

.has-content-max-width {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.text-and-gallery-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (max-width: 1124px) {
  .text-and-gallery-container {
    margin-bottom: 40px;
  }
}
.text-and-gallery-container.aligncenter, .text-and-gallery-container.alignleft, .text-and-gallery-container.alignright {
  float: unset;
}
.text-and-gallery-container.has-animations > .cover, .text-and-gallery-container.has-animations > .text {
  visibility: hidden;
}
@media not screen and (max-width: 1124px) {
  .text-and-gallery-container.desktop-has-full-width {
    width: 100vw;
    margin-left: calc(50% - 720px);
    max-width: 1440px;
  }
  @media screen and (max-width: 1440px) {
    .text-and-gallery-container.desktop-has-full-width {
      margin-left: calc(50% - 50vw);
    }
  }
}
.text-and-gallery-container .swiper-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0 0 50%;
  -moz-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  position: relative;
  width: 50%;
  height: auto;
  align-self: unset;
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container .swiper-container {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-radius: 0;
    min-width: unset;
  }
}
.text-and-gallery-container .swiper-container .swiper-wrapper {
  position: relative;
}
.text-and-gallery-container .swiper-container.cover {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.text-and-gallery-container .swiper-container.cover .image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-position: left;
}
.text-and-gallery-container .swiper-container .image {
  overflow: hidden;
}
.text-and-gallery-container .text {
  -webkit-box-flex: 0 0 50%;
  -moz-box-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  z-index: 1;
  padding: var(--spacing-64);
  align-self: center;
  text-align: left;
  gap: var(--spacing-48);
}
@media screen and (max-width: 1124px) {
  .text-and-gallery-container .text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 100%;
  }
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container .text {
    text-align: left;
    gap: var(--spacing-20);
  }
}
.text-and-gallery-container .text > .over-content {
  text-transform: unset;
  hyphens: unset;
}
.text-and-gallery-container .text .content p {
  text-align: left;
  padding: 0;
}
.text-and-gallery-container .text .content h2 {
  margin-bottom: 83px;
}
@media screen and (max-width: 1124px) {
  .text-and-gallery-container .text .content h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container .text .content h2 {
    margin-bottom: var(--spacing-20);
  }
}
.text-and-gallery-container .text .button, .text-and-gallery-container .text button, .text-and-gallery-container .text .wp-block-button.buttonstyle, .text-and-gallery-container .text a.buttonstyle {
  max-width: fit-content;
}
.text-and-gallery-container .text .read-more-button {
  text-align: left;
  cursor: pointer;
  background: none;
}
.text-and-gallery-container .text .content, .text-and-gallery-container .text .read-more-content {
  position: relative;
  text-align: left;
}
.text-and-gallery-container .text .content.more-content-available:after, .text-and-gallery-container .text .read-more-content.more-content-available:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndGalleryBackgroundColor) 100%);
}
.text-and-gallery-container .text .content > *:last-child, .text-and-gallery-container .text .read-more-content > *:last-child {
  margin-bottom: 0;
}
.text-and-gallery-container .text .read-more-content {
  display: none;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container:has(.has-gallery) .text.is-highlighted {
    padding-top: 60px;
  }
}
.text-and-gallery-container.force-full-width .swiper-pagination {
  right: var(--sidePadding);
  left: unset;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.force-full-width .swiper-pagination {
    right: 0;
    left: 0;
  }
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text-and-gallery-container .swiper-container {
    width: 100%;
    max-width: 100%;
  }
}
.text-and-gallery-container.rtl {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  direction: ltr;
}
.text-and-gallery-container.rtl:not(.force-full-width) .text.is-highlighted {
  border-radius: 4px 0 0 4px;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.rtl:not(.force-full-width) .text.is-highlighted {
    border-radius: 0 0 4px 4px;
  }
}
.text-and-gallery-container.rtl:not(.force-full-width) .swiper-container .image {
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.rtl:not(.force-full-width) .swiper-container .image {
    border-radius: 4px 4px 0 0;
  }
}
.text-and-gallery-container.rtl .swiper-container.cover {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.text-and-gallery-container.ltr:not(.force-full-width) .text.is-highlighted {
  border-radius: 0 4px 4px 0;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.ltr:not(.force-full-width) .text.is-highlighted {
    border-radius: 0 0 4px 4px;
  }
}
.text-and-gallery-container.ltr:not(.force-full-width) .swiper-container .image {
  border-radius: 4px 0 0 4px;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.ltr:not(.force-full-width) .swiper-container .image {
    border-radius: 4px 4px 0 0;
  }
}
.text-and-gallery-container.ltr .swiper-container {
  direction: ltr;
}
.text-and-gallery-container.ltr .swiper-container.cover {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
}
.text-and-gallery-container.ltr .swiper-container .swiper-pagination {
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .text-and-gallery-container.ltr .swiper-container .swiper-pagination {
    justify-content: center;
  }
}
@media screen and (max-width: 1124px) {
  .text-and-gallery-container.ltr {
    direction: ltr;
  }
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.ltr, .text-and-gallery-container.rtl {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .text-and-gallery-container.ltr .swiper-container, .text-and-gallery-container.rtl .swiper-container {
    width: 100%;
  }
}
.text-and-gallery-container.ltr:not(.has-highlighted-text) .text .content.more-content-available:after, .text-and-gallery-container.rtl:not(.has-highlighted-text) .text .content.more-content-available:after {
  --textAndGalleryBackgroundColor: var(--white);
}
.text-and-gallery-container.ltr .swiper-slide, .text-and-gallery-container.rtl .swiper-slide {
  width: 100% !important;
  height: auto;
}
.text-and-gallery-container.ltr .swiper-slide-active, .text-and-gallery-container.rtl .swiper-slide-active {
  opacity: 1 !important;
}
.text-and-gallery-container.has-highlighted-text .text {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  align-self: flex-start;
  padding: var(--spacing-64);
}
.text-and-gallery-container.has-highlighted-text .text.is-highlighted {
  color: var(--textAndGalleryTextColor);
  background: var(--textAndGalleryBackgroundColor);
  height: auto;
  align-self: unset;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.has-highlighted-text .text {
    padding: var(--spacing-20);
  }
}
.text-and-gallery-container.has-highlighted-text:not(.has-full-width-image) .swiper-container.cover .swiper-wrapper {
  -webkit-box-flex: 0 0 100%;
  -moz-box-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.has-highlighted-text:not(.has-full-width-image) .swiper-container.cover .swiper-wrapper {
    -webkit-box-flex: 0 0 100%;
    -moz-box-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image {
  overflow: hidden;
}
@media screen and (max-width: 1124px) {
  .text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image {
    min-width: unset;
  }
}
@media screen and (max-width: 743px) {
  .text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image::before, .text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image::after {
    content: "";
    display: table;
    clear: both;
    width: 1px;
    margin-left: -1px;
  }
  .text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image::before {
    float: left;
    padding-bottom: 67.1794872%;
  }
  .text-and-gallery-container.has-highlighted-text:not(.force-full-width) .swiper-container .swiper-slide .image {
    height: 100%;
  }
}
.text-and-gallery-container.has-highlighted-text.force-full-width .swiper-container .image,
.text-and-gallery-container.has-highlighted-text.force-full-width .text.is-highlighted {
  border-radius: 0;
}
.text-and-gallery-container.has-full-width-image .swiper-container.cover .swiper-slide {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0 0 200%;
  -moz-box-flex: 0 0 200%;
  -webkit-flex: 0 0 200%;
  -ms-flex: 0 0 200%;
  flex: 0 0 200%;
  position: relative;
}
.text-and-gallery-container:not(.force-full-width).ltr .swiper-container .swiper-slide .image {
  overflow: hidden;
}
.text-and-gallery-container:not(.has-highlighted-text):not(.force-full-width).rtl .swiper-container .swiper-slide .image, .text-and-gallery-container:not(.has-highlighted-text):not(.force-full-width).ltr .swiper-container .swiper-slide .image {
  border-radius: 4px;
}

/*# sourceMappingURL=text-and-gallery.css.map */
