.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;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

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

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

.has-max-width {
  margin: 0 auto;
  max-width: 1580px;
}

.has-side-padding {
  padding-left: var(--sidePadding) !important;
  padding-right: var(--sidePadding) !important;
}

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

.text-and-image-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;
  --padding-from-image-to-text: 100px;
  --highlighted-text-padding-top: 50px;
  --highlighted-text-padding-bottom: 50px;
  --text-padding-bottom: 0px;
  --mobile-text-padding-bottom: 0px;
  --image-wrapper-width: 50%;
  --image-wrapper-min-width: 500px;
  --outside-side-padding: var(--sidePadding);
  --mobile-extra-padding: 0px;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container {
    --highlighted-text-padding-bottom: 36px;
  }
}
@media screen and (max-width: 768px) {
  .text-and-image-container {
    --highlighted-text-padding-bottom: 30px;
  }
}
.text-and-image-container.has-compact-image {
  --image-wrapper-width: auto;
  --image-wrapper-min-width: 0px;
  --outside-side-padding: 0px;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-compact-image {
    --outside-side-padding: 0px;
  }
}
.text-and-image-container.aligncenter, .text-and-image-container.alignleft, .text-and-image-container.alignright {
  float: unset;
}
.text-and-image-container.has-animations > .cover, .text-and-image-container.has-animations > .text {
  visibility: hidden;
}
@media not screen and (max-width: 1023px) {
  .text-and-image-container.desktop-has-full-width {
    width: 100vw;
    margin-left: calc(50% - 960px);
    max-width: 1920px;
  }
  @media screen and (max-width: 1920px) {
    .text-and-image-container.desktop-has-full-width {
      margin-left: calc(50% - 50vw);
    }
  }
}
.text-and-image-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-image-container .image-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0 1 var(--image-wrapper-width);
  -moz-box-flex: 0 1 var(--image-wrapper-width);
  -webkit-flex: 0 1 var(--image-wrapper-width);
  -ms-flex: 0 1 var(--image-wrapper-width);
  flex: 0 1 var(--image-wrapper-width);
  position: relative;
  width: var(--image-wrapper-width);
  min-width: var(--image-wrapper-min-width);
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .image-wrapper {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: unset;
  }
}
.text-and-image-container .image-wrapper .image {
  overflow: hidden;
}
.text-and-image-container .image-wrapper.contain {
  align-items: center;
}
.text-and-image-container .image-wrapper.contain.justify-content-left {
  -webkit-justify-content: left;
  -moz-justify-content: left;
  -ms-justify-content: left;
  justify-content: left;
  -ms-flex-pack: left;
}
.text-and-image-container .image-wrapper.contain.justify-content-center {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.text-and-image-container .image-wrapper.contain.justify-content-right {
  -webkit-justify-content: right;
  -moz-justify-content: right;
  -ms-justify-content: right;
  justify-content: right;
  -ms-flex-pack: right;
}
.text-and-image-container .image-wrapper.contain.align-items-baseline {
  -webkit-align-items: baseline;
  -moz-align-items: baseline;
  -ms-align-items: baseline;
  align-items: baseline;
}
.text-and-image-container .image-wrapper.contain.align-items-center {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.text-and-image-container .image-wrapper.contain.align-items-end {
  -webkit-align-items: end;
  -moz-align-items: end;
  -ms-align-items: end;
  align-items: end;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .image-wrapper.contain.align-items-baseline, .text-and-image-container .image-wrapper.contain.align-items-end, .text-and-image-container .image-wrapper.contain.justify-content-left, .text-and-image-container .image-wrapper.contain.justify-content-right {
    -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-image-container .image-wrapper.contain .image {
  object-fit: contain;
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .image-wrapper.contain .image {
    max-width: inherit;
    height: auto !important;
  }
}
.text-and-image-container .image-wrapper.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-image-container .image-wrapper.cover .image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
  object-position: left;
}
.text-and-image-container .text {
  -webkit-box-flex: 1 1 calc(var(--sidePadding) + 700px);
  -moz-box-flex: 1 1 calc(var(--sidePadding) + 700px);
  -webkit-flex: 1 1 calc(var(--sidePadding) + 700px);
  -ms-flex: 1 1 calc(var(--sidePadding) + 700px);
  flex: 1 1 calc(var(--sidePadding) + 700px);
  padding: 0 var(--sidePadding) var(--text-padding-bottom) var(--sidePadding);
  align-self: center;
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0;
  }
}
.text-and-image-container .text > h2 {
  text-transform: uppercase;
  margin-top: 0;
  text-align: left;
  padding-left: 0;
  padding-right: 0;
  hyphens: auto;
}
.text-and-image-container .text .content p {
  text-align: left;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .text a.button {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .text-and-image-container {
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .text-and-image-container .image-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .text-and-image-container.rtl, .text-and-image-container.ltr {
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .text-and-image-container.rtl .image-wrapper, .text-and-image-container.ltr .image-wrapper {
    width: 100%;
  }
}
.text-and-image-container.rtl .text {
  padding: 0 var(--padding-from-image-to-text) var(--text-padding-bottom) var(--outside-side-padding);
}
@media screen and (max-width: 1520px) {
  .text-and-image-container.rtl .text {
    padding: 0 calc(var(--sidePadding) + var(--mobile-extra-padding)) var(--mobile-text-padding-bottom) calc(var(--outside-side-padding) + var(--mobile-extra-padding));
  }
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.rtl .text {
    padding: 0 calc(var(--outside-side-padding) + var(--mobile-extra-padding)) var(--mobile-text-padding-bottom);
  }
}
.text-and-image-container.ltr .text {
  padding: 0 var(--outside-side-padding) var(--text-padding-bottom) var(--padding-from-image-to-text);
}
@media screen and (max-width: 1520px) {
  .text-and-image-container.ltr .text {
    padding: 0 calc(var(--outside-side-padding) + var(--mobile-extra-padding)) var(--mobile-text-padding-bottom) calc(var(--sidePadding) + var(--mobile-extra-padding));
  }
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.ltr .text {
    padding: 0 calc(var(--outside-side-padding) + var(--mobile-extra-padding)) var(--mobile-text-padding-bottom);
  }
}
.text-and-image-container.ltr:not(.has-highlighted-text) .text .content.more-content-available:after, .text-and-image-container.rtl:not(.has-highlighted-text) .text .content.more-content-available:after {
  --textAndImageBackgroundColor: var(--white);
}
.text-and-image-container.ltr .image-wrapper .image-outer, .text-and-image-container.rtl .image-wrapper .image-outer {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.ltr, .text-and-image-container.rtl {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.text-and-image-container.has-highlighted-text .text {
  -webkit-transform: translateX(var(--sidePadding));
  -moz-transform: translateX(var(--sidePadding));
  -ms-transform: translateX(var(--sidePadding));
  transform: translateX(var(--sidePadding));
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-align-self: flex-start;
  align-self: flex-start;
  border-radius: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  padding: var(--highlighted-text-padding-top) 55px var(--highlighted-text-padding-bottom) 55px;
}
.text-and-image-container.has-highlighted-text .text.is-highlighted {
  color: var(--textAndImageTextColor);
  background: var(--textAndImageBackgroundColor);
}
.text-and-image-container.has-highlighted-text .text > * {
  max-width: 806px;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-highlighted-text .text {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border-radius: 0;
    box-shadow: unset;
    margin-top: -1.6rem;
    padding: 0 calc(var(--sidePadding) + var(--mobile-extra-padding)) var(--highlighted-text-padding-bottom) var(--sidePadding);
  }
}
.text-and-image-container.has-highlighted-text.ltr .text {
  -webkit-transform: translateX(calc(var(--sidePadding) * -1));
  -moz-transform: translateX(calc(var(--sidePadding) * -1));
  -ms-transform: translateX(calc(var(--sidePadding) * -1));
  transform: translateX(calc(var(--sidePadding) * -1));
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-highlighted-text.ltr .text {
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
.text-and-image-container.has-highlighted-text .image-wrapper {
  padding-top: 138px;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-highlighted-text .image-wrapper {
    padding-top: 0;
  }
}
.text-and-image-container.has-highlighted-text .image-wrapper.contain .image-outer, .text-and-image-container.has-highlighted-text .image-wrapper.cover .image-outer {
  -webkit-box-flex: 0 0 140%;
  -moz-box-flex: 0 0 140%;
  -webkit-flex: 0 0 140%;
  -ms-flex: 0 0 140%;
  flex: 0 0 140%;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-highlighted-text .image-wrapper.contain .image-outer, .text-and-image-container.has-highlighted-text .image-wrapper.cover .image-outer {
    -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-image-container.has-highlighted-text.has-vertical-centered-text .text {
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
.text-and-image-container.has-highlighted-text.has-vertical-centered-text .image-wrapper {
  padding-top: 0;
}
.text-and-image-container.has-highlighted-text:not(.force-full-width):not(.has-full-width-image) .text {
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  transform: unset;
}
.text-and-image-container.has-highlighted-text:not(.force-full-width) .image-wrapper .image-outer .image {
  overflow: hidden;
  border-radius: 0px;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container.has-highlighted-text:not(.force-full-width) .image-wrapper .image-outer .image {
    border-radius: 0;
  }
}
.text-and-image-container.rtl .image-wrapper.contain, .text-and-image-container.rtl .image-wrapper.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-image-container.ltr .image-wrapper.contain, .text-and-image-container.ltr .image-wrapper.cover {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.text-and-image-container.has-full-width-image .image-wrapper.contain .image-outer, .text-and-image-container.has-full-width-image .image-wrapper.cover .image-outer {
  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-image-container.has-full-width-image .image-wrapper.contain .image-outer .image, .text-and-image-container.has-full-width-image .image-wrapper.cover .image-outer .image {
  border-radius: 0 !important;
}
.text-and-image-container .text {
  -webkit-box-flex: 1 0 50%;
  -moz-box-flex: 1 0 50%;
  -webkit-flex: 1 0 50%;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .text {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .text-and-image-container .text {
    text-align: left;
  }
}
@media screen and (max-width: 1023px) {
  .text-and-image-container .text > p {
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
.text-and-image-container .text > p, .text-and-image-container .text > .over-content {
  text-transform: unset;
  hyphens: unset;
  margin-left: 0;
  margin-right: 0;
}
.text-and-image-container .text .read-more-button {
  text-align: left;
  cursor: pointer;
}
.text-and-image-container .text .read-more-button:before {
  display: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}
.text-and-image-container .text .read-more-button svg {
  padding-right: 7px;
  height: 11px;
  width: auto;
  padding-bottom: 1px;
}
.text-and-image-container .text .content, .text-and-image-container .text .read-more-content {
  position: relative;
  text-align: left;
}
.text-and-image-container .text .content.more-content-available:after, .text-and-image-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(--textAndImageBackgroundColor) 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndImageBackgroundColor) 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndImageBackgroundColor) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndImageBackgroundColor) 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndImageBackgroundColor) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, var(--textAndImageBackgroundColor) 100%);
}
.text-and-image-container .text .content > *:last-child, .text-and-image-container .text .read-more-content > *:last-child {
  margin-bottom: 0;
}
.text-and-image-container .text .read-more-content {
  display: none;
}
.text-and-image-container .text a.button {
  margin: 4rem 0 0 0;
  float: right;
}
@media screen and (max-width: 768px) {
  .text-and-image-container .text a.button {
    margin: 2rem 0 0 0;
    width: auto;
    float: left;
  }
}
.text-and-image-container.rtl .image-wrapper .image {
  border-radius: 0;
}
.text-and-image-container .image-wrapper.contain .image {
  width: 100%;
}
.text-and-image-container .image-wrapper .image {
  overflow: hidden;
  border-radius: 0;
}
.text-and-image-container:not(.force-full-width).rtl .image-wrapper .image-outer .image, .text-and-image-container:not(.force-full-width).ltr .image-wrapper .image-outer .image {
  overflow: hidden;
  border-radius: 0;
}
.text-and-image-container.parallax_animation:not(.has-highlighted-text).rtl .text, .text-and-image-container.parallax_animation:not(.has-highlighted-text).ltr .text {
  align-self: flex-start;
}
.text-and-image-container.parallax_animation.has-full-width-image.rtl .text, .text-and-image-container.parallax_animation.has-full-width-image.ltr .text {
  align-self: flex-start;
}

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