.section {
  --section-title-size: clamp(3rem, 3.794vw + 1.786rem, 7.5rem);
  --section-overlay: transparent;
  position: relative;
  padding: clamp(5rem, 5.902vw + 3.111rem, 12rem) 0;
}

.section__title {
  font-size: var(--section-title-size);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 0.3em;
  padding: 0;
  text-transform: none;
  letter-spacing: clamp(-0.3rem, -0.253vw + 0.081rem, 0rem);
}
.section__title span {
  color: #D21034;
}

.section__content {
  font-weight: 400;
  line-height: 1.5;
}
.section__content p {
  margin-top: 0;
  margin-bottom: 1.5em;
}
.section__content p:last-child {
  margin-bottom: 0;
}

.section--light {
  color: #424348;
  background-color: #f8f8f8;
  --section-overlay: rgb(255 255 255 / 70%);
}

.section--dark {
  color: #fff;
  background-color: #424348;
  --section-overlay: rgb(74 74 79 / 90%);
}

.section--overlay-none {
  --section-overlay: transparent;
}

.section--background {
  z-index: 0;
  isolation: isolate;
  overflow: hidden;
  background-image: var(--section-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section--background::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--section-overlay);
}

.section--centered .section__content {
  font-size: clamp(1.6rem, 0.843vw + 1.33rem, 2.6rem);
}
.section--centered .section__header,
.section--centered .section__content {
  max-width: 90%;
  margin-inline: auto;
  text-align: center;
}
.section--centered .section__title {
  margin-bottom: 0.6em;
}

.section__divider {
  width: min(50%, 60rem);
  height: 6px;
  margin: 0.6em auto;
  background: linear-gradient(to right, #000 0%, #000 25%, #ffed00 25%, #ffed00 50%, #e61b72 50%, #e61b72 75%, #00a8e8 75%, #00a8e8 100%);
}
.section--centered .section__divider {
  font-size: var(--section-title-size);
}

.media-block .row {
  row-gap: 4rem;
}

.media-block__media {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
  border-radius: 4rem;
}
.media-block__media img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .media-block__media {
    padding-inline: 5%;
  }
}

.media-block__content {
  position: relative;
}
.media-block__content .section__content {
  font-size: 1.6rem;
}

.media-block__decoration {
  position: absolute;
  top: -18%;
  right: 34%;
  height: 130%;
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

@media (min-width: 768px) {
  .media-block__content {
    padding-left: 3rem;
  }
  .media-block--reverse .media-block__media-column {
    order: 2;
  }
  .media-block--reverse .media-block__content-column {
    order: 1;
  }
  .media-block--reverse .media-block__content {
    padding-right: 3rem;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .media-block__content {
    padding-left: 6rem;
  }
  .media-block--reverse .media-block__content {
    padding-right: 6rem;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .page-testimonials .hero__title {
    font-size: clamp(3.6rem, 7.606vw + 1.166rem, 7rem);
  }
}
@media (min-width: 768px) {
  .page-testimonials .hero__title {
    font-size: clamp(5.6rem, 7.317vw - 0.02rem, 11rem);
  }
}
.page-testimonials .hero__image-frame {
  max-width: 64%;
}
@media (max-width: 767px) {
  .page-testimonials .hero__image-frame {
    max-width: 47%;
    display: none;
  }
}

.testimonials .section__title {
  margin-bottom: 1.2em;
}
.testimonials__grid {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.testimonials blockquote {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
  margin: 0 0 3rem;
  padding: clamp(4rem, 2.53vw + 3.191rem, 7rem);
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.15);
}
.testimonials blockquote::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: -4rem;
  width: 44rem;
  height: 36rem;
  background-image: url(/uploads/pages/testimonials/quotation_marks.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}
.testimonials blockquote p,
.testimonials blockquote cite {
  position: relative;
  z-index: 1;
}
.testimonials blockquote p {
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 0.382vw + 1.478rem, 2rem);
  line-height: 1.5;
}
.testimonials blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(2.4rem, 0.574vw + 2.216rem, 3rem);
  color: #d21034;
}
@media (max-width: 767px) {
  .testimonials__grid {
    -moz-column-count: 1;
         column-count: 1;
  }
}

.page-content--about-us,
.page-content--industry,
.page-content--testimonials {
  margin: 0;
}/*# sourceMappingURL=internal-pages.css.map */