.pristine-error {
  color: #cc0900 !important;
  margin-top: 0 !important;
}

.has-danger input, .has-danger textarea {
  border-color: #cc0900 !important;
}

/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */
.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */
.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */
.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}
.modal-image .tingle-modal-box {
  width: auto;
  max-width: 1264px;
}

.tingle-modal-box__content {
  padding: 2em;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom 0.3s ease-in-out 0.3s;
}

/* state
-------------------------------------------------------------- */
.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */
.tingle-btn {
  display: inline-block;
  margin: 0 0.5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */
@media (max-width: 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }
  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }
  .tingle-modal-box__content {
    overflow-y: scroll;
  }
  .tingle-modal--noClose {
    top: 0;
  }
  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }
  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }
  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #f466fa;
    box-shadow: none;
    color: #fff;
  }
  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }
  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: 0.8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}
@supports (-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px)) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }
  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}
/* animations
-------------------------------------------------------------- */
@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Custom
-------------------------------------------------------------- */
.tingle-modal-box--wide .tingle-modal-box {
  max-width: 60em;
  width: auto;
}
.tingle-modal-box--wide .tingle-modal-box__content {
  padding: 1em;
}
.tingle-modal-box--wide embed {
  width: 80vw;
  max-width: 58em;
  height: 57vw;
}
@media (min-width: ) {
  .tingle-modal-box--wide embed {
    height: 90vh;
  }
}

.tingle-modal-box__content form button::before {
  background-color: #f466fa;
}
.tingle-modal-box__content form button:hover {
  color: #fff;
}

.tns-outer {
  padding: 0 !important;
  position: relative;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s;
}
.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel.tns-carousel > .tns-item {
  margin-right: -100%;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}
.tns-t-ct::after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: 1.4285714286%;
  height: 10px;
  float: left;
}

.tns-controls {
  text-align: center;
}
.tns-controls button {
  padding: 0;
  overflow: hidden;
  text-indent: 200%;
  white-space: nowrap;
  background-repeat: no-repeat;
  width: 28px;
  height: 50px;
  background-size: 100%;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin: 1em;
}
.tns-controls button:hover {
  opacity: 0.64;
}
.tns-controls button:first-child {
  background-image: url(../img/arrow-prev.png);
}
.tns-controls button:last-child {
  background-image: url(../img/arrow-next.png);
}
@media (min-width: 40rem) {
  .tns-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -25px;
  }
  .tns-controls button {
    position: absolute;
    margin: 0;
    width: 28px;
    height: 50px;
  }
  .tns-controls button:first-child {
    left: 0;
  }
  .tns-controls button:last-child {
    right: 0;
  }
}

.dots, .sitemap-list {
  list-style: none;
}
.dots li, .sitemap-list li {
  padding-left: 12px;
  margin-top: 2px;
  position: relative;
}
.dots li::before, .sitemap-list li::before {
  content: "";
  height: 6px;
  width: 6px;
  border-radius: 6px;
  background-color: #f466fa;
  position: absolute;
  top: 10px;
  left: 0;
}
.dots ul, .sitemap-list ul {
  list-style: none;
  margin-top: 0;
}

.sitemap-list {
  max-width: 22em;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.spr-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 2px 20px;
  background-color: rgba(150, 120, 155, 0.2);
  border-radius: 96px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #96789B;
  white-space: nowrap;
}

.spr-divider {
  width: 64px;
  height: 1px;
  background-color: #96789B;
  border: none;
  flex-shrink: 0;
  margin: 0;
}

.spr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 16px 32px;
  border-radius: 96px;
  font-family: "Lato", sans-serif;
  font-weight: 800;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
@media (max-width: 40rem) {
  .spr-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}
.spr-btn--filled {
  position: relative;
  overflow: hidden;
  background-color: #96789B;
  color: #F7F7F7;
  border: 1.5px solid #96789B;
}
.spr-btn--filled:hover {
  opacity: 0.85;
  color: #F7F7F7;
}
.spr-btn--filled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(247, 247, 247, 0.18) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.spr-btn--filled:hover::after {
  transform: translateX(120%);
}
.spr-btn--outline {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  color: #96789B;
  border: 1.5px solid #96789B;
}
.spr-btn--outline:hover {
  background-color: #96789B;
  color: #F7F7F7;
}
.spr-btn--outline::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(247, 247, 247, 0.18) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.spr-btn--outline:hover::after {
  transform: translateX(120%);
}

.spr-container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 70rem) {
  .spr-container {
    padding-inline: 0;
  }
}

.faq.js-enabled details .content {
  height: 0;
  transition: height 0.3s ease-in-out;
}
.faq details {
  overflow: hidden;
  position: relative;
}
.faq details[open] summary {
  margin-bottom: 1rem;
}
.faq details[open] summary h2 {
  color: #f466fa;
}
.faq details[open] .content {
  height: auto;
}
.faq details .content {
  overflow: hidden;
  margin: 0;
}
.faq details .content * + * {
  margin-top: 0.75rem;
}
.faq summary {
  user-select: none;
  outline: none;
  padding-right: 2rem;
  position: relative;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover h2 {
  color: #f466fa;
}
.faq summary h2 {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.flex > .faq {
  flex-grow: 1;
}

.faq--arrow details:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.faq--arrow details:not(:first-child) {
  margin-top: 2rem;
}
.faq--arrow details[open] summary {
  margin-bottom: 1rem;
}
.faq--arrow details[open] summary svg {
  transform: rotate(180deg);
}
.faq--arrow details[open] summary circle, .faq--arrow details[open] summary path {
  stroke: #f466fa;
}
.faq--arrow summary:hover circle, .faq--arrow summary:hover path {
  stroke: #f466fa;
}
.faq--arrow summary svg, .faq--arrow summary circle, .faq--arrow summary path {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq--arrow summary svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}

.faq--plus details {
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  border: 2px solid rgba(29, 37, 44, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq--plus details:not(:first-child) {
  margin-top: 1.5rem;
}
.faq--plus details[open] summary {
  color: #f466fa;
  -webkit-line-clamp: 2;
}
.faq--plus details[open] summary span, .faq--plus details[open] summary::after {
  color: #f466fa;
}
.faq--plus details[open] summary h2::after {
  transform: rotate(225deg);
}
.faq--plus details .content {
  overflow: hidden;
  margin: 0;
}
.faq--plus details .content * + * {
  margin-top: 0.75rem;
}
.faq--plus summary {
  padding-right: 1.5rem;
  text-overflow: ellipsis;
  line-height: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  position: relative;
}
.faq--plus summary span {
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.faq--plus summary h2 {
  line-height: 1.5rem;
}
.faq--plus summary h2::after {
  content: "+";
  position: absolute;
  top: -4px;
  right: 0;
  width: 1.25rem;
  height: 2rem;
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  transition: 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (min-width: 40rem) {
  .faq--plus summary::after {
    top: 0;
  }
}

.icon::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  z-index: 1;
}

.icon--lg::before {
  height: 64px;
  width: 64px;
}

.icon--communication::before {
  background-image: url(../img/icons/communication.svg);
}

.icon--quality::before {
  background-image: url(../img/icons/quality.svg);
}

.icon--service::before {
  background-image: url(../img/icons/service.svg);
}

.icon-block > * {
  margin-top: 1.25rem;
}

.icon--horizontal {
  position: relative;
}
.icon--horizontal::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.icon--horizontal.icon--lg {
  padding-left: calc(64px + 1.5rem);
}

.side-contact-button {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  border: none;
  padding: 0 !important;
  background-color: #f466fa;
  background-image: url(../img/icon-envelope-lg.png);
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 24px;
  text-indent: 150px;
  font-size: 0;
  overflow: hidden;
  box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.4);
}
@media (min-width: 55rem) {
  .side-contact-button {
    right: 1.5rem;
    bottom: 1.5rem;
    height: 64px;
    width: 64px;
    background-size: 40px;
  }
}

else .side-contact-button {
  top: 190px;
  position: fixed;
  right: -3.875em;
  transform: rotate(270deg);
  z-index: 3;
  font-size: 1em;
  padding: 1em 1.5em;
  box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.15);
}
@media (min-width: 960px) {
  else .side-contact-button {
    top: 225px;
  }
}

.side-contact {
  display: none;
}

.tingle-modal {
  overflow: auto;
}
.tingle-modal input, .tingle-modal textarea {
  border-color: #f5f5f5;
  line-height: 1;
}

.tingle-modal-box {
  max-width: 34em;
}
.tingle-modal-box form > div {
  margin-top: 0.5em;
}
.tingle-modal-box form > div:last-child {
  margin-top: 1.5em;
}

@media (min-width: 40rem) {
  .carousel .tns-outer {
    padding-left: 36px !important;
    padding-right: 36px !important;
  }
}
@media (min-width: 87.5rem) {
  .carousel #js_carousel-sectors .tns-outer {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.carousel--usp {
  max-width: 1000px;
}
.carousel--usp li {
  width: 380px;
  max-width: calc(100vw - 2em);
}
.carousel--usp li.carousel--usp__wide {
  width: 420px;
}
.carousel--usp h2 {
  font-weight: 700;
  letter-spacing: 0.15px;
}
.carousel--usp h2 + p {
  margin-top: 1rem;
  line-height: 1.5;
  letter-spacing: 0.1px;
  max-width: 30ch;
}
@media (min-width: 460px) {
  .carousel--usp .tns-ovh {
    position: relative;
  }
  .carousel--usp .tns-ovh::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
    background-image: linear-gradient(to right, #fff 0%, #fff calc(50% - 170px), transparent calc(50% - 169px), transparent calc(50% + 169px), #fff calc(50% + 170px));
  }
  .carousel--usp li {
    max-width: 380px;
  }
  .carousel--usp li.carousel--usp__wide {
    max-width: 420px;
  }
}

.carousel--vert-mid .tns-carousel {
  display: flex;
}
.carousel--vert-mid .tns-item {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.carousel-usp {
  max-width: 1092px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-usp ul {
  list-style: none;
  display: flex;
}

.geo-facts {
  padding-bottom: 72px;
}
.geo-facts p {
  margin-top: 1.5rem;
}
.geo-facts a {
  color: #f466fa;
}
.geo-facts a:hover {
  color: #949cfe;
}
.geo-facts .tns-controls {
  top: auto;
  bottom: -72px;
  left: 0;
}
@media (min-width: 55rem) {
  .geo-facts {
    min-height: 246px;
    padding-right: calc(246px + 6rem);
    position: relative;
  }
  .geo-facts::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 246px;
    width: 246px;
    background-image: url(../img/static-security.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    border-radius: 1.5rem;
    overflow: hidden;
  }
}

.read-more-content {
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  max-height: 0;
  overflow: hidden;
}

.read-more-content.is-visible {
  opacity: 1;
  max-height: 1000px;
}

.text-clamp-wrapper {
  position: relative;
}

.text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.text-clamp.is-expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.js_read-more {
  cursor: pointer;
  color: #FA9817;
  text-decoration: underline;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.js_read-more.hide {
  opacity: 0;
}
.js_read-more:hover {
  text-decoration: none;
}

.read-more-fade {
  padding-left: 4rem;
  background-image: linear-gradient(to right, transparent 0%, #fff 4rem, #fff 100%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.read-less {
  cursor: pointer;
  color: #FA9817;
  text-decoration: underline;
  display: none;
  margin-top: 1rem;
}

.read-less:hover {
  text-decoration: none;
}

.read-more-content.is-visible + .read-less {
  display: inline-block;
}

.card--block .text-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
}
.card--block .text-clamp.is-expanded {
  -webkit-line-clamp: unset;
}
.card--block .read-more-fade {
  background: none;
  position: relative;
  padding: 0;
}
.card--block:hover .read-more-fade, .card--block:hover .read-less {
  color: #fff;
}

.copyright {
  padding: 1rem 0 2rem;
}
.copyright p + p {
  margin-top: 1.5rem;
}
@media (min-width: 55rem) {
  .copyright .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .copyright p + p {
    margin-top: 0.5rem;
  }
}

.copyright__information p, .copyright__information li {
  font-size: 0.75rem;
  line-height: normal;
}
.copyright__information p span {
  display: inline-block;
  vertical-align: top;
  margin: 0 0.5rem;
  position: relative;
  top: -2px;
}

.dbwd p, .dbwd figure {
  display: inline-block;
  vertical-align: top;
}
.dbwd p {
  font-weight: 600;
  line-height: 16px !important;
  margin-right: 0.25rem;
  letter-spacing: 1px;
}
.dbwd img {
  display: block;
}

.footer {
  background-color: #949cfe;
  color: #fff;
  padding-top: 4rem;
}
.footer > .container {
  padding-bottom: 2rem;
}
@media (min-width: 40rem) {
  .footer p {
    font-size: 0.9375rem;
  }
}

.footer__logo {
  display: inline-block;
  margin-right: 0.75rem;
}

.footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer__menu .footer__menu-item {
  min-width: 90px;
}
@media (min-width: 55rem) {
  .footer__menu {
    justify-content: space-between;
  }
}

.footer__citations {
  width: 100%;
}
.footer__citations ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  align-self: stretch;
  counter-reset: citation;
}
.footer__citations li {
  counter-increment: citation;
}
.footer__citations a {
  color: #f466fa;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: 0.5px;
  max-width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  text-decoration-line: underline;
}
.footer__citations a::before {
  content: "(" counter(citation) "): ";
  display: inline;
}
.footer__citations a:hover {
  color: #949cfe;
}
@media (min-width: 40rem) {
  .footer__citations ul {
    justify-content: center;
  }
}

body:has(.page-index) .hero-blank {
  display: none;
}

.hero-blank {
  background-color: #080808;
}

main.main-home {
  gap: 0;
  margin-bottom: 0;
  overflow: visible;
}

.spr-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: #080808;
  overflow: hidden;
  padding-top: 115px;
}
@media (max-width: 40rem) {
  .spr-hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 3rem;
  }
}
.spr-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.spr-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}
.spr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.spr-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.25) 0%, rgba(8, 8, 8, 0) 35%, rgba(8, 8, 8, 0) 65%, rgba(8, 8, 8, 0.25) 100%);
}
.spr-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding-block: 4rem;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media (min-width: 70rem) {
  .spr-hero__inner {
    gap: 8rem;
  }
}
@media (max-width: 40rem) {
  .spr-hero__inner {
    padding-top: 1rem;
    padding-bottom: 0rem;
    flex-direction: column;
    gap: 2rem;
  }
}
.spr-hero__text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 730px;
}
@media (max-width: 40rem) {
  .spr-hero__text {
    gap: 1.5rem;
    max-width: 100%;
  }
}
.spr-hero__title-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spr-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 20px;
  background-color: rgba(150, 120, 155, 0.2);
  border-radius: 96px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #96789B;
  white-space: nowrap;
}
.spr-hero__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: #F7F7F7;
  margin: 0;
  letter-spacing: 1;
}
.spr-hero__heading em {
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 40rem) {
  .spr-hero__heading {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }
}
.spr-hero__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(247, 247, 247, 0.9);
  max-width: 640px;
  margin: 0;
}
.spr-hero__desc strong {
  color: #96789B;
  font-weight: 700;
}
@media (max-width: 40rem) {
  .spr-hero__desc {
    font-size: 1rem;
    line-height: 1.625rem;
    max-width: 100%;
  }
}
.spr-hero__quote {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgba(247, 247, 247, 0.8);
  max-width: 640px;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-hero__quote {
    font-size: 1rem;
    line-height: 1.625rem;
    max-width: 100%;
  }
}
.spr-hero__image {
  flex: 0 0 auto;
  position: relative;
  display: none;
}
@media (min-width: 70rem) {
  .spr-hero__image {
    display: block;
    width: 626px;
  }
}
.spr-hero__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(150, 120, 155, 0.35);
  z-index: 0;
}
.spr-hero__image img {
  position: relative;
  z-index: 1;
  width: 626px;
  height: 626px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.spr-about {
  background-color: #ffffff;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-about {
    padding: 4rem 0;
  }
}
.spr-about .spr-container {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 55rem) {
  .spr-about .spr-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.spr-about__image {
  flex: 0 0 460px;
  position: sticky;
  top: calc(115px + 2rem);
  align-self: flex-start;
  display: none;
}
@media (min-width: 55rem) {
  .spr-about__image {
    display: block;
  }
}
.spr-about__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(150, 120, 155, 0.35);
  z-index: 0;
}
.spr-about__image img {
  position: relative;
  z-index: 1;
  width: 460px;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 55rem) {
  .spr-about__image img {
    height: 250px;
  }
}
.spr-about__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 40rem) {
  .spr-about__content {
    gap: 1.75rem;
  }
}
.spr-about__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-about__heading {
    font-size: 1.5rem;
  }
}
.spr-about__body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(8, 8, 8, 0.8);
}
.spr-about__body p + p {
  margin-top: 1.75rem;
}
@media (max-width: 40rem) {
  .spr-about__body p + p {
    margin-top: 1rem;
  }
}
.spr-about__body strong {
  font-family: "Playfair", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #080808;
  display: block;
  margin: 0.5rem 0;
}
@media (max-width: 40rem) {
  .spr-about__body strong {
    font-size: 1.0625rem;
    line-height: 1.625rem;
  }
}
.spr-about__read-more {
  display: none;
}
@media (max-width: 40rem) {
  .spr-about__read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 12px 28px;
    border-radius: 96px;
    font-family: "Lato", sans-serif;
    font-weight: 800;
    font-size: 0.9375rem;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background-color: transparent;
    color: #96789B;
    border: 1.5px solid #96789B;
    transition: background-color 0.2s ease, color 0.2s ease;
    margin-top: 1rem;
  }
  .spr-about__read-more:hover {
    background-color: #96789B;
    color: #F7F7F7;
  }
  .spr-about__read-more[aria-expanded=true] {
    display: none;
  }
}
@media (max-width: 40rem) {
  .spr-about__more-content {
    display: none;
  }
  .spr-about__more-content.is-open {
    display: block;
  }
  .spr-about__more-content p:first-child {
    margin-top: 1rem;
  }
}
.spr-about__quote {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.spr-about__quote-bar {
  width: 2px;
  flex-shrink: 0;
  align-self: stretch;
  background-color: #96789B;
}
.spr-about__quote p {
  font-family: "Playfair", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-about__quote p {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

.spr-testimonials {
  background-color: #080808;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-testimonials {
    padding: 4rem 0;
  }
}
.spr-testimonials__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}
.spr-testimonials__header .spr-label {
  align-self: center;
}
.spr-testimonials__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #F7F7F7;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-testimonials__heading {
    font-size: 1.5rem;
  }
}
.spr-testimonials__slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 40rem) {
  .spr-testimonials__slider-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.spr-testimonials__controls {
  display: contents;
}
@media (max-width: 40rem) {
  .spr-testimonials__controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    order: 2;
  }
}
.spr-testimonials__track {
  overflow: hidden;
  flex: 1;
  width: 100%;
  order: 2;
}
@media (max-width: 40rem) {
  .spr-testimonials__track {
    order: 1;
  }
}
.spr-testimonials__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.spr-testimonials__slide {
  height: 100%;
}
.spr-testimonials__item {
  background: rgba(247, 247, 247, 0.08);
  border: 1px solid rgba(247, 247, 247, 0.25);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 280px;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.spr-testimonials__item:hover {
  background: rgba(247, 247, 247, 0.12);
  border-color: rgba(150, 120, 155, 0.5);
}
.spr-testimonials__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 0.75rem;
}
.spr-testimonials__stars span {
  color: #96789B;
  font-size: 0.75rem;
}
.spr-testimonials__text {
  font-family: "Lato", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: #F7F7F7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.spr-testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.spr-testimonials__author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #96789B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.spr-testimonials__author-avatar span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #F7F7F7;
}
.spr-testimonials__author-info {
  display: flex;
  flex-direction: column;
}
.spr-testimonials__author-name {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.25rem;
  letter-spacing: 1px;
  color: #F7F7F7;
}
.spr-testimonials__author-company {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: 1px;
  color: rgba(247, 247, 247, 0.8);
}
.spr-testimonials__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid #96789B;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
  color: #F7F7F7;
}
.spr-testimonials__btn--prev {
  order: 1;
}
.spr-testimonials__btn--next {
  order: 3;
}
.spr-testimonials__btn:hover {
  background: rgba(150, 120, 155, 0.2);
}
.spr-testimonials__btn svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: #F7F7F7;
  stroke-width: 2;
  stroke-linecap: round;
}

.spr-services {
  background-color: #F7F7F7;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-services {
    padding: 4rem 0;
  }
}
.spr-services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.spr-services__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-services__heading {
    font-size: 1.5rem;
  }
}
.spr-services__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 40rem) {
  .spr-services__grid {
    display: block;
  }
}
.spr-services__card {
  background: #ffffff;
  border: 1.5px solid rgba(8, 8, 8, 0.05);
  padding: 2rem;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: calc(25% - 1.125rem);
  min-width: 240px;
  max-width: 357px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.spr-services__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
@media (max-width: 70rem) {
  .spr-services__card {
    width: calc(33.333% - 1rem);
  }
}
@media (max-width: 55rem) {
  .spr-services__card {
    width: calc(50% - 0.75rem);
  }
}
@media (max-width: 40rem) {
  .spr-services__card {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}
.spr-services__card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spr-services__card-icon img {
  width: 100%;
  height: 100%;
}
.spr-services__card-name {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75rem;
  color: #080808;
  text-transform: capitalize;
  margin: 0;
}
.spr-services .tns-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}
.spr-services .tns-nav button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(8, 8, 8, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.spr-services .tns-nav button.tns-nav-active {
  background: #96789B;
  transform: scale(1.3);
}

@keyframes spr-press-ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.spr-press-logos {
  background-color: #F7F7F7;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media (max-width: 40rem) {
  .spr-press-logos {
    padding-bottom: 4rem;
  }
}
.spr-press-logos__ticker-wrap {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.spr-press-logos__ticker {
  display: flex;
  width: max-content;
  animation: spr-press-ticker 35s linear infinite;
}
.spr-press-logos__ticker:hover {
  animation-play-state: paused;
}
.spr-press-logos__list {
  display: flex;
  align-items: center;
  gap: 8rem;
  list-style: none;
  padding: 0 4rem;
  margin: 0;
  flex-shrink: 0;
}
.spr-press-logos__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.spr-press-logos__logo img {
  width: auto;
  height: auto;
  max-width: 128px;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.spr-outstanding {
  background-color: #080808;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-outstanding {
    padding: 4rem 0;
  }
}
.spr-outstanding .spr-container {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 55rem) {
  .spr-outstanding .spr-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.spr-outstanding__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.spr-outstanding__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #F7F7F7;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-outstanding__heading {
    font-size: 1.5rem;
  }
}
.spr-outstanding__body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(247, 247, 247, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.spr-outstanding__list {
  color: #96789B;
  padding-left: 1.5rem;
}
.spr-outstanding__list li {
  margin-bottom: 0.5rem;
}
.spr-outstanding__list li span {
  color: rgba(247, 247, 247, 0.9);
}
.spr-outstanding__image {
  flex: 0 0 460px;
  position: relative;
  display: none;
}
@media (min-width: 55rem) {
  .spr-outstanding__image {
    display: block;
  }
}
.spr-outstanding__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(150, 120, 155, 0.35);
  z-index: 0;
}
.spr-outstanding__image img {
  position: relative;
  z-index: 1;
  width: 460px;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.spr-casestudies {
  background-color: #F7F7F7;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-casestudies {
    padding: 4rem 0;
  }
}
.spr-casestudies__featured-slider-wrap {
  position: relative;
  margin-bottom: 6rem;
}
@media (max-width: 40rem) {
  .spr-casestudies__featured-slider-wrap {
    margin-bottom: 3rem;
  }
}
.spr-casestudies__featured-slider-wrap .spr-casestudies__featured {
  margin-bottom: 0;
}
.spr-casestudies__featured-slider-wrap .tns-outer {
  position: relative;
}
.spr-casestudies__featured-slider-wrap .tns-controls {
  position: absolute;
  top: calc(50% - 17px);
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 70rem) {
  .spr-casestudies__featured-slider-wrap .tns-controls {
    display: none;
  }
}
.spr-casestudies__featured-slider-wrap .tns-controls button[data-controls] {
  pointer-events: all;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #96789B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #F7F7F7;
  transition: background 0.2s ease;
  box-shadow: 0 2px 8px rgba(8, 8, 8, 0.12);
  margin: 0 -22px;
}
.spr-casestudies__featured-slider-wrap .tns-controls button[data-controls] svg {
  width: 9px;
  height: 14px;
}
.spr-casestudies__featured-slider-wrap .tns-controls button[data-controls][data-controls=prev] svg {
  transform: translateX(-1px);
}
.spr-casestudies__featured-slider-wrap .tns-controls button[data-controls][data-controls=next] svg {
  transform: translateX(1px);
}
.spr-casestudies__featured-slider-wrap .tns-controls button[data-controls]:hover {
  background: rgb(123.914893617, 95.3191489362, 128.6808510638);
}
.spr-casestudies__featured-slider-wrap .tns-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.5rem;
}
.spr-casestudies__featured-slider-wrap .tns-nav button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(150, 120, 155, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.spr-casestudies__featured-slider-wrap .tns-nav button.tns-nav-active {
  background: #96789B;
  transform: scale(1.3);
}
.spr-casestudies__featured {
  background: #ffffff;
  display: flex;
  margin-bottom: 6rem;
  max-height: 402px;
}
@media (max-width: 70rem) {
  .spr-casestudies__featured {
    flex-direction: column;
  }
}
@media (max-width: 40rem) {
  .spr-casestudies__featured {
    max-height: none;
    margin-bottom: 3rem;
  }
}
.spr-casestudies__featured-image {
  flex: 0 0 50%;
  min-height: 402px;
  overflow: hidden;
}
.spr-casestudies__featured-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.spr-casestudies__featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}
.spr-casestudies__featured-image.is-logo {
  background: #ffffff;
}
.spr-casestudies__featured-image.is-logo img {
  object-fit: contain;
  object-position: center center;
  padding: 2rem;
}
.spr-casestudies__featured-content {
  flex: 0 0 50%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 40rem) {
  .spr-casestudies__featured-content {
    padding: 2rem 1.5rem;
  }
}
.spr-casestudies__featured-heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-casestudies__featured-heading {
    font-size: 1.5rem;
  }
}
.spr-casestudies__featured-desc {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(8, 8, 8, 0.8);
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-casestudies__featured-desc {
    font-size: 0.9375rem;
  }
}
.spr-casestudies__card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 55rem) {
  .spr-casestudies__card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 40rem) {
  .spr-casestudies__card-grid {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }
}
.spr-casestudies__card-grid .spr-casestudies__featured {
  flex-direction: column;
  max-height: none;
  margin-bottom: 0;
}
.spr-casestudies__card-grid .spr-casestudies__featured.is-linked {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.spr-casestudies__card-grid .spr-casestudies__featured.is-linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}
.spr-casestudies__card-grid .spr-casestudies__featured-image {
  flex: none;
  min-height: 220px;
  height: 220px;
}
.spr-casestudies__card-grid .spr-casestudies__featured-content {
  flex: 1 1 auto;
  padding: 2rem;
  background-color: #F7F7F7;
}
.spr-casestudies__card-grid .spr-casestudies__featured-heading {
  font-size: 2rem;
}
.spr-casestudies__diff-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}
.spr-casestudies__diff-heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-casestudies__diff-heading {
    font-size: 1.5rem;
  }
}
.spr-casestudies__diff-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 40rem) {
  .spr-casestudies__diff-grid {
    display: block;
  }
}
.spr-casestudies__diff-card {
  background: #ffffff;
  border: 1.5px solid rgba(8, 8, 8, 0.05);
  padding: 2rem;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: calc(33.333% - 1rem);
  min-width: 240px;
  max-width: 484px;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.spr-casestudies__diff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}
@media (max-width: 55rem) {
  .spr-casestudies__diff-card {
    width: calc(50% - 0.75rem);
  }
}
.spr-casestudies__diff-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spr-casestudies__diff-card-icon img {
  width: 100%;
  height: 100%;
}
.spr-casestudies__diff-card-name {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.75rem;
  color: #080808;
  text-transform: capitalize;
  margin: 0;
}
.spr-casestudies .tns-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.5rem;
}
.spr-casestudies .tns-nav button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(8, 8, 8, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.spr-casestudies .tns-nav button.tns-nav-active {
  background: #96789B;
  transform: scale(1.3);
}

.spr-visibility {
  background-color: #080808;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-visibility {
    padding: 4rem 0;
  }
}
.spr-visibility .spr-container {
  display: flex;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 55rem) {
  .spr-visibility .spr-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.spr-visibility__image {
  flex: 0 0 460px;
  position: relative;
  display: none;
}
@media (min-width: 55rem) {
  .spr-visibility__image {
    display: block;
  }
}
.spr-visibility__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(150, 120, 155, 0.35);
  z-index: 0;
}
.spr-visibility__image img {
  position: relative;
  z-index: 1;
  width: 460px;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.spr-visibility__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.spr-visibility__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #F7F7F7;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-visibility__heading {
    font-size: 1.5rem;
  }
}
.spr-visibility__body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(247, 247, 247, 0.9);
  margin: 0;
}

.spr-contact {
  background-color: #ffffff;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-contact {
    padding: 4rem 0;
  }
}
.spr-contact .spr-container {
  display: flex;
  gap: 6rem;
  align-items: stretch;
}
@media (max-width: 70rem) {
  .spr-contact .spr-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.spr-contact__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}
.spr-contact__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-contact__heading {
    font-size: 1.5rem;
  }
}
.spr-contact__desc {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(8, 8, 8, 0.8);
  margin: 0;
}
.spr-contact__details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.spr-contact__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(8, 8, 8, 0.1);
}
.spr-contact__details li:last-child {
  border-bottom: 1px solid rgba(8, 8, 8, 0.1);
}
.spr-contact__details-icon {
  width: 40px;
  height: 40px;
  background: rgba(150, 120, 155, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #96789B;
}
.spr-contact__details-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.spr-contact__details a {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.25rem;
  letter-spacing: 1px;
  color: #96789B;
  text-decoration: none;
}
@media (max-width: 40rem) {
  .spr-contact__details a {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
.spr-contact__details a:hover {
  text-decoration: underline;
}
.spr-contact__form-wrap {
  flex: 0 0 524px;
  background-color: #F7F7F7;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 70rem) {
  .spr-contact__form-wrap {
    flex: 1 1 auto;
  }
}
@media (max-width: 40rem) {
  .spr-contact__form-wrap {
    padding: 2rem 1.5rem;
  }
}
.spr-contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spr-contact__form-row {
  display: flex;
  gap: 1rem;
}
@media (max-width: 40rem) {
  .spr-contact__form-row {
    flex-direction: column;
  }
}
.spr-contact__field {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.spr-contact__field label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #96789B;
  display: flex;
  align-items: center;
  gap: 6px;
}
.spr-contact__field label::before {
  content: "*";
  font-size: 1rem;
  color: #96789B;
}
.spr-contact__field label[for=spr-message]::before {
  content: none;
}
.spr-contact__field input, .spr-contact__field textarea, .spr-contact__field select {
  background: rgba(150, 120, 155, 0.05);
  border: 1px solid rgba(150, 120, 155, 0.25);
  padding: 0.625rem 0.75rem;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  color: #080808;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.spr-contact__field input:focus, .spr-contact__field textarea:focus, .spr-contact__field select:focus {
  border-color: #96789B;
}
.spr-contact__field textarea {
  min-height: 96px;
  resize: vertical;
}
.spr-contact__submit {
  width: 100%;
  background-color: #96789B;
  color: #F7F7F7;
  border: none;
  padding: 0.875rem 2rem;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
}
.spr-contact__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(247, 247, 247, 0.18) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform 0.65s ease;
  pointer-events: none;
}
.spr-contact__submit:hover {
  opacity: 0.85;
}
.spr-contact__submit:hover::after {
  transform: translateX(120%);
}

.footer {
  background-color: #080808;
  padding: 4rem 0 0;
}
@media (max-width: 40rem) {
  .footer {
    padding-top: 3rem;
  }
}
.footer .container {
  max-width: 1500px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__logo img {
  height: 40px;
  width: auto;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-left: auto;
}
@media (max-width: 40rem) {
  .footer__nav {
    gap: 1rem;
  }
}
.footer__nav a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #F7F7F7;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: #96789B;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.footer__social a:hover {
  opacity: 0.8;
}
.footer__social a svg {
  width: 32px;
  height: 32px;
  display: block;
}
.footer__legal {
  border-top: 1px solid rgba(247, 247, 247, 0.15);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__legal p, .footer__legal a {
  font-family: "Open Sans", "Lato", sans-serif;
  font-size: 0.6875rem;
  color: rgba(247, 247, 247, 0.8);
  line-height: 1.5rem;
  letter-spacing: 0.5px;
}
.footer__legal a {
  text-decoration: underline;
}
.footer__legal a:hover {
  color: #F7F7F7;
}
.footer__legal strong {
  font-weight: 700;
}
.footer__credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.footer__credit span {
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  color: rgba(247, 247, 247, 0.8);
}
.footer__credit img {
  width: 67px;
  height: 16px;
}
.footer .footer__menu,
.footer .footer__citations {
  display: none;
}
.footer .header__logo {
  margin: 0;
}

.copyright {
  display: none;
}

.spr-inner-page {
  background-color: #ffffff;
  padding: 8rem 0;
}
@media (max-width: 40rem) {
  .spr-inner-page {
    padding: 4rem 0;
  }
}
.spr-inner-page .spr-container {
  display: flex;
  gap: 8rem;
  align-items: flex-start;
}
@media (max-width: 55rem) {
  .spr-inner-page .spr-container {
    flex-direction: column;
    gap: 3rem;
  }
}
.spr-inner-page__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 40rem) {
  .spr-inner-page__text {
    gap: 1.75rem;
    text-align: left;
    align-items: flex-start;
  }
}
.spr-inner-page__heading {
  font-family: "Playfair", serif;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-inner-page__heading {
    font-size: 1.75rem;
  }
}
.spr-inner-page__body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  color: rgba(8, 8, 8, 0.8);
}
.spr-inner-page__read-more {
  display: none;
}
@media (max-width: 40rem) {
  .spr-inner-page__read-more {
    display: inline;
    align-self: flex-start;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.75rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    margin-top: 1rem;
    color: #96789B;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 1.5rem !important;
  }
  .spr-inner-page__read-more[aria-expanded=true] {
    display: none;
  }
}
@media (max-width: 40rem) {
  .spr-inner-page__more-content {
    display: none;
  }
  .spr-inner-page__more-content.is-open {
    display: block;
  }
  .spr-inner-page__more-content p:first-child {
    margin-top: 1rem;
  }
}
.spr-inner-page__image {
  flex: 0 0 460px;
  position: sticky;
  top: calc(115px + 2rem);
  align-self: flex-start;
  order: 1;
}
@media (max-width: 40rem) {
  .spr-inner-page__image {
    display: block;
    position: static;
    width: 100%;
    flex: none;
  }
  .spr-inner-page__image img {
    width: 100%;
    height: 280px;
  }
  .spr-inner-page__image::before {
    display: none;
  }
}
@media (min-width: 55rem) {
  .spr-inner-page__image {
    display: block;
  }
}
.spr-inner-page__image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid rgba(150, 120, 155, 0.35);
  z-index: 0;
}
.spr-inner-page__image img {
  position: relative;
  z-index: 1;
  width: 460px;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 55rem) {
  .spr-inner-page__image img {
    height: 250px;
    object-position: center center;
  }
}

.spr-cs-gallery::before {
  display: none;
}
.spr-cs-gallery.is-logo img {
  object-fit: contain;
  object-position: center center;
  background: #ffffff;
  padding: 2rem;
}
.spr-cs-gallery .tns-outer {
  position: relative;
}
.spr-cs-gallery img {
  width: 460px;
  height: 640px;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 55rem) {
  .spr-cs-gallery img {
    width: 100%;
    height: 250px;
    object-position: center center;
  }
}
.spr-cs-gallery .tns-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 0.5rem;
  pointer-events: none;
  z-index: 2;
}
.spr-cs-gallery .tns-controls button[data-controls] {
  pointer-events: all;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #96789B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #F7F7F7;
  flex-shrink: 0;
  transition: background 0.2s ease;
  box-shadow: 0 2px 8px rgba(8, 8, 8, 0.12);
}
.spr-cs-gallery .tns-controls button[data-controls] svg {
  width: 7px;
  height: 12px;
}
.spr-cs-gallery .tns-controls button[data-controls]:hover {
  background: rgb(123.914893617, 95.3191489362, 128.6808510638);
}
.spr-cs-gallery .tns-controls button[data-controls]:first-child {
  left: 1rem;
}
.spr-cs-gallery .tns-controls button[data-controls]:last-child {
  right: 1rem;
}
.spr-cs-gallery .tns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1rem;
}
.spr-cs-gallery .tns-nav button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(150, 120, 155, 0.25);
  transition: background 0.25s ease, transform 0.25s ease;
  cursor: pointer;
}
.spr-cs-gallery .tns-nav button.tns-nav-active {
  background: #96789B;
  transform: scale(1.3);
}

.spr-case-study__subheading {
  font-family: "Playfair", serif;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  color: #080808;
  margin: 0;
}
@media (max-width: 40rem) {
  .spr-case-study__subheading {
    font-size: 1.125rem;
  }
}

/*# sourceMappingURL=style.css.map */
