@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
}

footer#footer {
  background: #F2EFEC;
  padding: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 800px) {
  footer#footer {
    padding: 28px;
  }
}
footer#footer #footer-menu {
  max-width: 1240px;
  margin: 0px auto;
  display: flex;
  -moz-column-gap: 63px;
       column-gap: 63px;
  align-items: end;
  z-index: 1;
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 800px) {
  footer#footer #footer-menu {
    flex-direction: column;
    align-items: start;
    row-gap: 40px;
  }
}
footer#footer #footer-menu ul#menu-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 63px;
       column-gap: 63px;
  max-width: -moz-max-content;
  max-width: max-content;
  row-gap: 24px;
}
@media only screen and (max-width: 800px) {
  footer#footer #footer-menu ul#menu-footer-links {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
footer#footer #footer-menu ul#menu-footer-links li {
  max-width: -moz-max-content;
  max-width: max-content;
}
footer#footer #footer-menu ul#menu-footer-links li a {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: 0.48px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
footer#footer #footer-menu ul#menu-footer-links li a:hover {
  color: #DB351F;
}
footer#footer #footer-menu ul#menu-footer-links li a.no-hover {
  color: #231F20;
}
footer#footer #footer-menu .social-media {
  display: flex;
  gap: 10px;
}
footer#footer #footer-menu .social-media a i {
  max-width: 17px;
  aspect-ratio: 1/1;
  color: #DB351F;
  transition: 0.2s all ease-in;
  font-style: normal !important;
}
footer#footer #footer-menu .social-media a:hover i {
  color: #231F20;
}
footer#footer .footer-graphic {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  bottom: -30px;
}
footer#footer .footer-logo {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
footer#footer .footer-logo .site-logo {
  max-width: 83px;
  aspect-ratio: 1/1;
  position: absolute;
  right: -40px;
  bottom: -40px;
}
@media only screen and (max-width: 800px) {
  footer#footer .footer-logo .site-logo {
    right: -28px;
    bottom: -28px;
  }
}

header#header-desktop {
  z-index: 10;
  position: relative;
  background: linear-gradient(180deg, #F9F6F3 0%, rgba(249, 246, 243, 0.99) 8.07%, rgba(249, 246, 243, 0.98) 15.54%, rgba(249, 246, 243, 0.95) 22.5%, rgba(249, 246, 243, 0.92) 29.04%, rgba(249, 246, 243, 0.87) 35.26%, rgba(249, 246, 243, 0.82) 41.25%, rgba(249, 246, 243, 0.75) 47.1%, rgba(249, 246, 243, 0.68) 52.9%, rgba(249, 246, 243, 0.6) 58.75%, rgba(249, 246, 243, 0.52) 64.74%, rgba(249, 246, 243, 0.42) 70.96%, rgba(249, 246, 243, 0.33) 77.5%, rgba(249, 246, 243, 0.22) 84.46%, rgba(249, 246, 243, 0.11) 91.93%, rgba(249, 246, 243, 0) 100%);
  position: sticky;
  top: 0;
}
header#header-desktop.active {
  background: white;
}
header#header-desktop.scrolled {
  background: #F9F6F3;
}
header#header-desktop .lg-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#header-desktop .site-logo {
  height: 100px;
  transition: 0.2s all ease-in;
  width: 100px;
}
@media only screen and (max-width: 1100px) {
  header#header-desktop .site-logo {
    max-height: 80px;
    max-width: 80px;
  }
}
header#header-desktop .site-logo img {
  height: 100%;
  width: 100%;
}
header#header-desktop nav#menu {
  display: flex;
  align-items: center;
}
header#header-desktop nav#menu #search {
  z-index: 1;
  display: flex;
  padding-left: 32px;
}
@media only screen and (max-width: 1470px) {
  header#header-desktop nav#menu #search {
    padding-right: 48px;
  }
}
@media only screen and (max-width: 1200px) {
  header#header-desktop nav#menu #search {
    padding-left: 16px;
  }
}
@media only screen and (max-width: 1100px) {
  header#header-desktop nav#menu #search {
    padding-right: 30px;
  }
}
header#header-desktop nav#menu #search.visible {
  padding-left: 0px;
}
header#header-desktop nav#menu #search form {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
header#header-desktop nav#menu #search form button {
  border: none;
  padding: none;
  background: none;
  cursor: pointer;
  position: absolute;
  right: 4px;
  margin-bottom: -3px;
}
header#header-desktop nav#menu #search form button svg {
  width: 18px;
  height: 18px;
}
header#header-desktop nav#menu #search form button svg path {
  transition: 0.2s all ease-in;
}
header#header-desktop nav#menu #search form button:hover svg path {
  fill: #231F20;
}
header#header-desktop nav#menu #search form input {
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  height: 100%;
  padding: 6px 16px;
  padding-right: 30px;
  width: 0;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}
header#header-desktop nav#menu #search form input.visible {
  width: auto;
  opacity: 1;
  padding: 6px 16px;
  padding-right: 30px;
}
header#header-desktop nav#menu #search form input:focus-visible {
  outline-color: #DB351F;
}
header#header-desktop nav#menu #search form input::-moz-placeholder {
  font-size: inherit;
}
header#header-desktop nav#menu #search form input::placeholder {
  font-size: inherit;
}
header#header-desktop nav#menu ul#menu-main-menu {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 1200px) {
  header#header-desktop nav#menu ul#menu-main-menu {
    gap: 16px;
  }
}
@media only screen and (max-width: 1100px) {
  header#header-desktop nav#menu ul#menu-main-menu {
    gap: 14px;
  }
}
header#header-desktop nav#menu ul#menu-main-menu > li > a,
header#header-desktop nav#menu ul#menu-main-menu > li > .no-link {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: 0.48px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  position: relative;
  z-index: 1;
  font-family: "neue-haas-grotesk-display", sans-serif;
  cursor: pointer;
}
header#header-desktop nav#menu ul#menu-main-menu > li > a svg,
header#header-desktop nav#menu ul#menu-main-menu > li > .no-link svg {
  padding-left: 6px;
  transition: 0.2s all ease-in;
  margin-bottom: 1px;
}
header#header-desktop nav#menu ul#menu-main-menu > li > a svg path,
header#header-desktop nav#menu ul#menu-main-menu > li > .no-link svg path {
  fill: #DB351F;
}
header#header-desktop nav#menu ul#menu-main-menu > li > a:hover,
header#header-desktop nav#menu ul#menu-main-menu > li > .no-link:hover {
  color: #DB351F;
}
header#header-desktop nav#menu ul#menu-main-menu > li > a:hover svg,
header#header-desktop nav#menu ul#menu-main-menu > li > .no-link:hover svg {
  margin-bottom: -3px;
  transition: transform 0.3s ease;
  transform-origin: center;
}
header#header-desktop nav#menu ul#menu-main-menu > li:last-of-type {
  padding-right: 32px;
}
@media only screen and (max-width: 1200px) {
  header#header-desktop nav#menu ul#menu-main-menu > li:last-of-type {
    padding-right: 26px;
  }
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  padding: 88px 100px 188px 120px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 1;
  position: relative;
  gap: 60px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left {
  display: flex;
  max-width: 762px;
  width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu {
  display: flex;
  -moz-column-gap: 120px;
       column-gap: 120px;
  row-gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu li {
  width: 100%;
  max-width: calc(50% - 60px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu li:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 96px;
  background: #DB351F;
  height: 1px;
  width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu li .menu-link {
  color: #231F20;
  font-size: 24px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -0.72px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu li .menu-link:hover {
  color: #DB351F;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu li .menu-description {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu:only-child li {
  max-width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left .sub-menu:has(> li:nth-child(2)) li {
  max-width: calc(50% - 60px);
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers {
  flex-direction: column;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers .sub-menu li {
  max-width: 612px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers .helpful-links-title {
  margin-top: 48px;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers .helpful-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 400px;
  margin-top: 20px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 15px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers .helpful-links li a {
  color: #DB351F;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.left.careers .helpful-links li a:hover {
  color: #231F20;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.right {
  padding: 100px 63px;
  background: #F2EFEC;
  margin-top: -50px;
  width: 350px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.right .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.right .sub-menu li {
  text-align: center;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.right .sub-menu li .menu-link {
  color: #231F20;
  font-size: 20px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -0.4px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-inner .mega-menu-col.right .sub-menu li .menu-link:hover {
  color: #DB351F;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu .mega-menu-title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.26px;
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu.open .mega-menu {
  display: block;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu.open svg {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  transform-origin: center;
  margin-left: 6px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--about-mto .mega-menu-title,
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--about-mto .mega-menu-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--about-mto .mega-menu-title {
  margin-bottom: 64px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--about-mto:after {
  content: "";
  position: absolute;
  right: -30%;
  top: -15%;
  width: 100%;
  height: 115%;
  background-image: url(../../app/assets/images/svg-icons/nav-graphic-1.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--careers .mega-menu-title,
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--careers .mega-menu-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--careers .mega-menu-title {
  margin-bottom: 64px;
}
header#header-desktop nav#menu ul#menu-main-menu .has-mega-menu .mega-menu--careers:after {
  content: "";
  position: absolute;
  right: -30%;
  top: -15%;
  width: 100%;
  height: 115%;
  background-image: url(../../app/assets/images/svg-icons/nav-graphic-2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
  header#header-desktop {
    display: none;
  }
}
header#header-desktop.sticky-active {
  background: #F9F6F3;
  transition: 0.2s all ease-in;
}
header#header-desktop.sticky-active .site-logo {
  width: 48px;
  height: 48px;
}
header#header-desktop.no-transparent {
  background: #F9F6F3;
  opacity: 1;
}

header#mobile-header {
  background: #F2EFEC;
  display: none;
  z-index: 10;
  position: relative;
  position: sticky;
  top: 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
header#mobile-header.hide {
  transform: translateY(-100%);
}
@media only screen and (max-width: 992px) {
  header#mobile-header {
    display: block;
  }
}
header#mobile-header .site-logo {
  width: 64px;
  height: 64px;
}
header#mobile-header .site-logo img {
  height: 100%;
  width: 100%;
}
header#mobile-header .mobile-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#mobile-header .mobile-header-bar .buttons {
  display: flex;
}
header#mobile-header .mobile-header-bar .buttons button {
  height: 64px;
  width: 64px;
  background: none;
  border: none;
  cursor: pointer;
}
header#mobile-header .mobile-header-bar .buttons button svg path,
header#mobile-header .mobile-header-bar .buttons button svg rect {
  transition: 0.2s all ease-in;
}
header#mobile-header .mobile-header-bar .buttons button svg {
  width: 18px;
  height: 18px;
}
header#mobile-header .mobile-header-bar .buttons button#mobileSearchToggle.visible {
  background: #DB351F;
}
header#mobile-header .mobile-header-bar .buttons button#mobileSearchToggle.visible svg path,
header#mobile-header .mobile-header-bar .buttons button#mobileSearchToggle.visible svg rect {
  fill: white;
}
header#mobile-header .mobile-header-bar .buttons button#mobileMenuToggle.visible {
  background: #DB351F;
}
header#mobile-header .mobile-header-bar .buttons button#mobileMenuToggle.visible svg path,
header#mobile-header .mobile-header-bar .buttons button#mobileMenuToggle.visible svg rect {
  fill: white;
}
header#mobile-header #mobileSearchDrawer {
  display: none;
}
header#mobile-header #mobileMenuDrawer {
  padding: 64px 0px 64px 32px;
  display: none;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li a,
header#mobile-header #mobileMenuDrawer .mobile-menu-list li .mobile-menu-toggle {
  display: block;
  color: #231F20;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0px;
  text-decoration: none;
  padding: 16px 32px 16px 0px;
  transition: 0.2s all ease-in;
  border-bottom: 1px solid #DB351F !important;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li a:hover,
header#mobile-header #mobileMenuDrawer .mobile-menu-list li .mobile-menu-toggle:hover {
  color: #DB351F;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li .mobile-menu-toggle {
  background: none;
  border: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li .mobile-menu-toggle .submenu-icon {
  display: flex;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li .mobile-menu-toggle .submenu-icon svg {
  width: 32px;
  height: 32px;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu {
  display: none;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu.visible {
  display: block;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu .submenu-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DB351F !important;
  padding: 16px 0px;
  margin-left: -32px;
  padding-left: 32px;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu .submenu-header .submenu-back {
  background: none;
  border: none;
  margin-right: 16px;
  cursor: pointer;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu .submenu-header h3.submenu-title {
  color: #231F20;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0px;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu li {
  padding-right: 32px;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu li a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children .mobile-submenu.helpful-links .helpful-links-title {
  color: #231F20;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: -0.72px;
  border-bottom: 1px solid #DB351F !important;
  padding: 16px 0px;
  margin-left: -32px;
  padding-left: 32px;
}
header#mobile-header #mobileMenuDrawer .mobile-menu-list li.menu-item-has-children.hide-title .mobile-menu-toggle {
  display: none;
}
header#mobile-header #mobileSearchDrawer {
  padding: 64px 32px;
}
header#mobile-header #mobileSearchDrawer .search {
  max-width: 100%;
  overflow: hidden;
}
header#mobile-header #mobileSearchDrawer .search h4 {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
header#mobile-header #mobileSearchDrawer .search-categories {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
header#mobile-header #mobileSearchDrawer .search-categories .search-tag {
  border: none;
  border-radius: 1px;
  border: 1px solid #DB351F;
  padding: 4px 12px;
  background: transparent;
  color: #231F20;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.48px;
}
header#mobile-header #mobileSearchDrawer .search-categories .search-tag.active {
  background: #DB351F;
  color: white;
}
header#mobile-header #mobileSearchDrawer #mobileSearchForm {
  margin-bottom: 30px;
}
header#mobile-header #mobileSearchDrawer #mobileSearchForm input {
  padding: 16px 0px;
  border: none;
  border-bottom: 1px solid #DB351F;
  color: #231F20;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.72px;
  width: 100%;
  padding-left: 16px;
}
header#mobile-header #mobileSearchDrawer #mobileSearchForm input::-moz-placeholder {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.72px;
  opacity: 0.2;
}
header#mobile-header #mobileSearchDrawer #mobileSearchForm input::placeholder {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.72px;
  opacity: 0.2;
}
header#mobile-header #mobileSearchDrawer .recently-searched h4 {
  color: #231F20;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
header#mobile-header #mobileSearchDrawer .recently-searched ul.recent-searches li {
  margin-bottom: 5px;
}
header#mobile-header #mobileSearchDrawer .recently-searched ul.recent-searches li a {
  display: block;
  color: #DB351F;
  font-size: 16px;
  font-weight: 400;
  line-height: 24.64px;
  letter-spacing: 0.32px;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
header#mobile-header #mobileSearchDrawer .recently-searched ul.recent-searches li a:hover {
  color: #231F20;
}

.lg-container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.container {
  max-width: 1304px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: 1080px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

.container-c {
  max-width: 1140px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

.hero-achievements-landing {
  margin-top: 0px;
  margin-bottom: 80px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing {
    margin-bottom: 40px;
  }
}
.hero-achievements-landing .graphic-bg {
  left: 0;
  top: -25%;
  position: absolute;
  width: 100%;
  z-index: 0;
}
@media only screen and (max-width: 1200px) {
  .hero-achievements-landing .graphic-bg {
    left: 31%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .graphic-bg {
    top: -10%;
    position: absolute;
    left: 0;
    display: none;
  }
}
.hero-achievements-landing.remove-bg .graphic-bg {
  display: none;
}
.hero-achievements-landing .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper {
    flex-direction: column;
    align-items: start;
    gap: 0px;
  }
}
.hero-achievements-landing .block_wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 32px;
  margin-top: 80px;
}
.hero-achievements-landing .block_wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-achievements-landing .block_wrapper h2.tag span {
  margin-left: 20px;
}
.hero-achievements-landing .block_wrapper h2.tag.mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper h2.tag.mobile {
    display: block;
  }
}
.hero-achievements-landing .block_wrapper img {
  max-width: 482px;
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper img {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-achievements-landing .block_wrapper .content {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-achievements-landing .block_wrapper .content h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.hero-achievements-landing .block_wrapper .content h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-achievements-landing .block_wrapper .content h2.tag span {
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper .content h2.tag {
    display: none;
  }
}
.hero-achievements-landing .block_wrapper .content h1.title {
  color: #231F20;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
@media only screen and (max-width: 992px) {
  .hero-achievements-landing .block_wrapper .content h1.title {
    margin-top: 40px;
  }
}
.hero-achievements-landing .block_wrapper .content .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-achievements-landing .block_wrapper .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-achievements-landing .block_wrapper .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-achievements-landing .block_wrapper .content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-achievements-landing .block_wrapper .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-achievements-landing .block_wrapper .content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.hero-article {
  margin-top: 24px;
  margin-bottom: 80px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-article {
    margin-bottom: 40px;
  }
}
.hero-article .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 992px) {
  .hero-article .block_wrapper {
    flex-direction: column;
  }
}
.hero-article .block_wrapper img.main {
  max-width: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
}
@media only screen and (max-width: 992px) {
  .hero-article .block_wrapper img.main {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-article .block_wrapper .content {
  max-width: 560px;
  margin-right: auto;
  margin-left: unset;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-article .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-article .block_wrapper .content h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.hero-article .block_wrapper .content h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-article .block_wrapper .content h2.tag span {
  margin-left: 20px;
}
.hero-article .block_wrapper .content h1.title {
  color: #231F20;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-article .block_wrapper .content .connect {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-article .block_wrapper .content .connect .date {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-article .block_wrapper .content .connect .share {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3%;
  flex-direction: column;
  display: flex;
  gap: 21px;
}
@media only screen and (max-width: 1330px) {
  .hero-article .block_wrapper .content .connect .share {
    position: unset;
    transform: unset;
    flex-direction: row;
  }
}
.hero-article .block_wrapper .content .connect .share img {
  height: 32px;
}
.hero-article .block_wrapper .content .connect .share a {
  transition: 0.2s all ease-in;
}
.hero-article .block_wrapper .content .connect .share a:hover {
  filter: brightness(0) saturate(100%) invert(47%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(89%);
}
.hero-article .block_wrapper .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
}
.hero-article .block_wrapper .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-article .block_wrapper .content .link-arrow-right:hover {
  color: #A02012;
}
.hero-article .block_wrapper .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-article .block_wrapper .content .link-arrow-right:hover .icon svg path {
  fill: #A02012;
}

.hero-bio-listing {
  position: relative;
  margin-top: 64px;
  margin-bottom: 64px;
  z-index: 1;
}
@media only screen and (max-width: 555px) {
  .hero-bio-listing {
    margin: 0px;
  }
}
.hero-bio-listing .bg-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  top: -50px;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-bio-listing .block_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 408px;
  padding: 32px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: #F9F6F3;
}
@media only screen and (max-width: 555px) {
  .hero-bio-listing .block_wrapper {
    margin: 0px;
    border-radius: 16px;
  }
}
.hero-bio-listing .block_wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.hero-bio-listing .block_wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-bio-listing .block_wrapper h2.tag span {
  margin-left: 20px;
}
.hero-bio-listing .block_wrapper h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  margin-bottom: 14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-listing .block_wrapper p {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-bio-listing .block_wrapper form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.hero-bio-listing .block_wrapper form button {
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  width: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media only screen and (max-width: 1470px) {
  .hero-bio-listing .block_wrapper form button {
    right: 48px;
  }
}
@media only screen and (max-width: 1100px) {
  .hero-bio-listing .block_wrapper form button {
    right: 30px;
  }
}
.hero-bio-listing .block_wrapper form button svg {
  width: 18px;
  height: 18px;
  transition: 0.2s all ease-in;
}
.hero-bio-listing .block_wrapper form button svg path {
  fill: white;
}
.hero-bio-listing .block_wrapper form button:hover svg {
  transform: translateY(-2px);
}
.hero-bio-listing .block_wrapper form input {
  width: 100%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 32px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-bio-listing .block_wrapper form input::-moz-placeholder {
  font-size: inherit;
}
.hero-bio-listing .block_wrapper form input::placeholder {
  font-size: inherit;
}
.hero-bio-listing .filter-by-letter {
  text-align: center;
  margin-top: 32px;
}
@media only screen and (max-width: 555px) {
  .hero-bio-listing .filter-by-letter {
    display: none;
  }
}
.hero-bio-listing .filter-by-letter div {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
  flex-wrap: wrap;
}
.hero-bio-listing .filter-by-letter div a {
  color: #231F20;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-listing .filter-by-letter div a:hover {
  color: #DB341F;
}
.hero-bio-listing .filter-by-letter div a.active {
  color: #DB341F;
}

.hero-bio-page-intro {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-bio-page-intro .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 142%;
  width: 110%;
  -o-object-position: 92%;
  object-position: 186% center;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.5);
  margin-top: -60px;
}
@media only screen and (max-width: 1400px) {
  .hero-bio-page-intro .graphic-bg {
    -o-object-position: 600px center;
       object-position: 600px center;
  }
}
@media only screen and (max-width: 1135px) {
  .hero-bio-page-intro .graphic-bg {
    -o-object-position: 500px center;
       object-position: 500px center;
  }
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .graphic-bg {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-bio-page-intro .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .container {
    padding-bottom: 40px;
  }
}
.hero-bio-page-intro .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper {
    flex-direction: column;
  }
}
.hero-bio-page-intro .block_wrapper .right-image {
  max-width: 482px;
  position: relative;
  padding-right: 10%;
}
@media only screen and (max-width: 1300px) {
  .hero-bio-page-intro .block_wrapper .right-image {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .right-image {
    display: none;
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-bio-page-intro .block_wrapper .right-image img.bio-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
  max-height: 370px;
  aspect-ratio: 1/1;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .right-image img.bio-image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-bio-page-intro .block_wrapper .right-image .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .right-image .bg-graphic-mobile {
    display: block;
  }
}
.hero-bio-page-intro .block_wrapper .content {
  max-width: 426px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-bio-page-intro .block_wrapper .content .bio-main {
  display: flex;
  gap: 5px;
  flex-direction: column;
}
.hero-bio-page-intro .block_wrapper .content .bio-main h1.name {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-page-intro .block_wrapper .content .bio-main h1.name button {
  border: none;
  background: none;
  padding: 0px;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.hero-bio-page-intro .block_wrapper .content .bio-main h1.name button:hover {
  transform: scale(1.1);
}
.hero-bio-page-intro .block_wrapper .content .bio-main p.title {
  color: #231F20;
  font-size: 20px;
  font-weight: 700;
  line-height: 119%;
  letter-spacing: -0.6px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-page-intro .block_wrapper .content .bio-main p.pro {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 119%;
  letter-spacing: -0.48px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-page-intro .block_wrapper .content .right-image-mobile {
  display: none;
  padding: 64px 0px;
  position: relative;
  width: 100vw;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .content .right-image-mobile {
    display: block;
    max-width: 100%;
  }
  .hero-bio-page-intro .block_wrapper .content .right-image-mobile .bio-image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: auto;
  }
  .hero-bio-page-intro .block_wrapper .content .right-image-mobile .bg-graphic-mobile {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    width: calc(100% + 32px + 32px);
    margin-right: -32px;
    margin-left: -32px;
    aspect-ratio: 1/1;
  }
}
.hero-bio-page-intro .block_wrapper .content .bio-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 40px;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .content .bio-details {
    margin-top: 0px;
  }
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact {
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .content .bio-details .contact {
    flex-direction: column;
  }
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact a.number {
  color: #231F20;
  font-size: 16px;
  font-weight: 450;
  line-height: 84%;
  text-decoration: none;
  font-family: "neue-haas-grotesk-display", sans-serif;
  white-space: nowrap;
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact a.number span {
  font-weight: 700;
  margin-right: 8px;
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact a.email {
  color: #DB341F;
  font-size: 16px;
  font-weight: 700;
  line-height: 84%;
  transition: 0.2s all ease-in;
  text-decoration: none;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact a.email:hover {
  color: #231F20;
}
.hero-bio-page-intro .block_wrapper .content .bio-details .contact span.divider {
  min-width: 2px;
  height: auto;
  background-color: #231F20;
}
@media only screen and (max-width: 992px) {
  .hero-bio-page-intro .block_wrapper .content .bio-details .contact span.divider {
    display: none;
  }
}
.hero-bio-page-intro .block_wrapper .content .bio-details .office a {
  color: #231F20;
  font-size: 16px;
  font-weight: 700;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-decoration: none;
}
.hero-bio-page-intro .block_wrapper .content .bio-details .languange {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.16px;
  opacity: 0.7;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-bio-page-intro .block_wrapper .content .share {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.hero-bio-page-intro .block_wrapper .content .share a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.2s all ease-in;
}
.hero-bio-page-intro .block_wrapper .content .share a:after {
  position: absolute;
  bottom: -3px;
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: #DB341F;
  opacity: 0;
  transition: 0.2s all ease-in;
}
.hero-bio-page-intro .block_wrapper .content .share a:hover {
  transform: translateY(-5px);
}
.hero-bio-page-intro .block_wrapper .content .share a:hover::after {
  opacity: 1;
  bottom: -5px;
}
.hero-bio-page-intro .block_wrapper .content .share a img {
  max-width: 22.143px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-bio-page-intro.hide-placeholder .right-image img.bio-image {
  visibility: hidden;
}
.hero-bio-page-intro.hide-placeholder .right-image-mobile img.bio-image {
  visibility: hidden;
}

.email-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
}
.email-popup-overlay.active {
  display: flex;
}

.email-popup-content {
  background: white;
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin: 20px;
}

.email-popup-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.email-popup-text {
  margin: 0 0 24px 0;
  line-height: 1.5;
  color: #555;
  font-size: 14px;
  max-height: 200px;
  overflow-y: scroll;
}

.email-popup-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.email-popup-btn {
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.email-popup-btn.email-popup-cancel {
  background: #e5e7eb;
  color: #374151;
}
.email-popup-btn.email-popup-cancel:hover {
  background: #d1d5db;
}
.email-popup-btn.email-popup-ok {
  background: #DB341F;
  color: white;
}
.email-popup-btn.email-popup-ok:hover {
  background: #A02012;
}

@media (max-width: 768px) {
  .email-popup-content {
    padding: 24px;
    margin: 16px;
  }
  .email-popup-buttons {
    flex-direction: column-reverse;
    gap: 8px;
  }
  .email-popup-btn {
    width: 100%;
  }
}
.hero-card-centre {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  z-index: 1;
}
@media only screen and (max-width: 555px) {
  .hero-card-centre {
    padding-bottom: 32px;
    padding-top: 32px;
    margin: 0px;
  }
}
.hero-card-centre .bg-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 120%;
  margin-top: -100px;
}
.hero-card-centre .bg-graphic.beta {
  left: 0;
  margin-top: -87px;
}
.hero-card-centre .bg-graphic.delta {
  left: -63px;
  right: -63px;
  width: calc(100% + 67px + 67px);
}
.hero-card-centre .block_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 420px;
  max-height: 400px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: #F9F6F3;
}
@media only screen and (max-width: 555px) {
  .hero-card-centre .block_wrapper {
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 20px !important;
    margin-left: 20px !important;
    padding-top: 40px;
    border-radius: 16px;
    max-width: 100%;
    max-height: 600px !important;
  }
}
.hero-card-centre .block_wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.hero-card-centre .block_wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-card-centre .block_wrapper h2.tag span {
  margin-left: 20px;
}
.hero-card-centre .block_wrapper h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  margin-bottom: 14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-card-centre .block_wrapper p {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-eyebrow-cards-right {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-cards-right .container {
  padding-bottom: 150px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-cards-right .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.hero-eyebrow-cards-right .bg-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: -63px;
  right: -63px;
  width: calc(100% + 67px + 67px);
}
.hero-eyebrow-cards-right .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .hero-eyebrow-cards-right .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-cards-right .block_wrapper {
    flex-direction: column;
  }
}
.hero-eyebrow-cards-right .block_wrapper .content {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-cards-right .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h2.tag span {
  margin-left: 20px;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h1.title button {
  border: none;
  background: none;
  padding: 0px;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper h1.title button:hover {
  transform: scale(1.1);
}
.hero-eyebrow-cards-right .block_wrapper .content .wrapper .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-eyebrow-cards-right .block_wrapper .right {
  display: flex;
  gap: 72px;
}
@media only screen and (max-width: 1160px) {
  .hero-eyebrow-cards-right .block_wrapper .right {
    gap: 32px;
  }
}
@media only screen and (max-width: 530px) {
  .hero-eyebrow-cards-right .block_wrapper .right {
    flex-direction: column;
    width: 100%;
  }
}
.hero-eyebrow-cards-right .block_wrapper .right .image-card {
  width: 250px;
  height: auto;
  padding: 40px;
  background: #F9F6F3;
  border-top: 1px solid #DB341F;
}
@media only screen and (max-width: 1160px) {
  .hero-eyebrow-cards-right .block_wrapper .right .image-card {
    width: 150px;
    padding: 32px;
  }
}
@media only screen and (max-width: 530px) {
  .hero-eyebrow-cards-right .block_wrapper .right .image-card {
    max-width: 100%;
    width: auto;
  }
}

.hero-eyebrow-card-right-alpha {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-card-right-alpha .graphic-bg {
  left: 44%;
  top: -25%;
  position: absolute;
  width: 100%;
  transform: scale(0.9);
}
@media only screen and (max-width: 1200px) {
  .hero-eyebrow-card-right-alpha .graphic-bg {
    left: 31%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .graphic-bg {
    top: -10%;
    position: absolute;
    left: 0;
    display: none;
  }
}
.hero-eyebrow-card-right-alpha .container {
  padding-bottom: 200px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 200px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .right {
  max-width: 420px;
  height: 100%;
  min-height: 380px;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .right {
    max-width: 100%;
    width: 100%;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .right iframe.graphic-bg {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .right iframe.graphic-bg {
    display: block;
    height: 600px;
    width: 124%;
    left: -64px;
    z-index: -1;
    top: 69%;
    transform: translateY(-50%);
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .right .content {
  background: #F9F6F3;
  padding: 60px 40px;
  z-index: 1;
  position: relative;
  max-width: 420px;
  height: 100%;
  min-height: 380px;
  height: 100%;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .right .content {
    max-width: 420px;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .right .content > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-eyebrow-card-right-alpha .block_wrapper .right img.image {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .right img.image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .right .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .right .bg-graphic-mobile {
    display: block;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-alpha .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main h1.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main h1.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main h1.tag span {
  margin-left: 20px;
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main .title > *,
.hero-eyebrow-card-right-alpha .block_wrapper .content .main .title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500 !important;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-alpha .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-eyebrow-card-right-beta {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-card-right-beta .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-position: right;
     object-position: right;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-eyebrow-card-right-beta .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .container {
    padding-bottom: 40px;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper .right {
  max-width: 420px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .block_wrapper .right {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper .right .content {
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
}
.hero-eyebrow-card-right-beta .block_wrapper .right .content p {
  color: #231F20;
  font-size: 14px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-eyebrow-card-right-beta .block_wrapper .right .content ul {
  margin-top: 24px;
}
.hero-eyebrow-card-right-beta .block_wrapper .right .content ul li a {
  color: #231F20;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 226%;
  letter-spacing: 0.36px;
  transition: 0.2s all ease-in;
  text-decoration: none;
  display: block;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-beta .block_wrapper .right .content ul li a:hover {
  color: #E24C38;
}
.hero-eyebrow-card-right-beta .block_wrapper .right img.image {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .block_wrapper .right img.image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper .right .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .block_wrapper .right .bg-graphic-mobile {
    display: block;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-beta .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-beta .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-eyebrow-card-right-delta {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-card-right-delta .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-position: 92%;
     object-position: 92%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1.2);
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-eyebrow-card-right-delta .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .container {
    padding-bottom: 40px;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper .right {
  max-width: 420px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .block_wrapper .right {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content {
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
  width: 400px;
  max-width: 100%;
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content p {
  color: #231F20;
  font-size: 14px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content ul {
  margin-top: 24px;
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content ul li p.title {
  color: #231F20;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 226%;
  letter-spacing: 0.36px;
  transition: 0.2s all ease-in;
  text-decoration: none;
  display: block;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.48px;
  transition: 0.2s all ease-in;
  text-decoration: none;
  display: block;
}
.hero-eyebrow-card-right-delta .block_wrapper .right .content ul li a:hover {
  color: #231F20;
}
.hero-eyebrow-card-right-delta .block_wrapper .right img.image {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .block_wrapper .right img.image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper .right .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .block_wrapper .right .bg-graphic-mobile {
    display: block;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-delta .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-delta .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-eyebrow-card-right-epsilon {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-card-right-epsilon .graphic-bg {
  left: 0;
  top: -30px;
  position: absolute;
  height: 104%;
  width: 100%;
  -o-object-position: 86%;
  object-position: 90%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.2);
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-epsilon .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.hero-eyebrow-card-right-epsilon .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-epsilon .container {
    padding-bottom: 40px;
  }
}
.hero-eyebrow-card-right-epsilon .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-epsilon .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-eyebrow-card-right-epsilon .block_wrapper .right {
  max-width: 420px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-epsilon .block_wrapper .right {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-eyebrow-card-right-epsilon .block_wrapper .right .content {
  position: relative;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .right .content img {
  width: 100%;
  max-width: 414px;
  height: auto;
  aspect-ratio: 1/1;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .right .content p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  right: 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
  font-family: "neue-haas-grotesk-text", sans-serif;
  width: 100%;
  max-width: 294px;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .right .content p:before {
  content: "";
  height: 1px;
  background: #DB351F;
  width: 88px;
  margin-bottom: 24px;
  display: block;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-epsilon .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main h1.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main h1.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main h1.tag span {
  margin-left: 20px;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main h2.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-epsilon .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-eyebrow-card-right-gamma {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.hero-eyebrow-card-right-gamma .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 117%;
  width: 100%;
  -o-object-position: 93%;
  object-position: 90%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.2);
  margin-top: -60px;
  z-index: 1;
  max-height: 632px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .graphic-bg {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
    top: 15%;
  }
}
.hero-eyebrow-card-right-gamma .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .container {
    padding-bottom: 40px;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper .right {
  max-width: 420px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .block_wrapper .right {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper .right .content {
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
  width: 420px;
  max-width: 100%;
  min-height: 380px;
  height: 100%;
  justify-content: center;
}
.hero-eyebrow-card-right-gamma .block_wrapper .right .content .text {
  text-align: left;
  max-width: 240px;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow-card-right-gamma .block_wrapper .right .content .text p.percentage {
  color: #231F20;
  font-size: 62px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.86px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-bottom: 16px;
}
.hero-eyebrow-card-right-gamma .block_wrapper .right .content .text p {
  color: #231F20;
  font-display: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.36px;
}
.hero-eyebrow-card-right-gamma .block_wrapper .right img.image {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .block_wrapper .right img.image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper .right .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .block_wrapper .right .bg-graphic-mobile {
    display: block;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper .content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-eyebrow-card-right-gamma .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main h1.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main h1.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main h1.tag span {
  margin-left: 20px;
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main h2.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-eyebrow-card-right-gamma .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}

.hero-homepage-landing {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  background: #F9F6F3;
  padding-top: 50px;
}
.hero-homepage-landing .graphic-bg {
  left: 44%;
  top: -29%;
  position: absolute;
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .hero-homepage-landing .graphic-bg {
    left: 31%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .graphic-bg {
    display: none;
  }
}
.hero-homepage-landing .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
.hero-homepage-landing .block_wrapper {
  display: flex;
  gap: 40px;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper {
    flex-direction: column-reverse;
  }
}
.hero-homepage-landing .block_wrapper .right {
  max-width: 420px;
  position: relative;
}
.hero-homepage-landing .block_wrapper .right.mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .right {
    display: none;
    position: relative;
    max-width: 360px;
  }
  .hero-homepage-landing .block_wrapper .right.mobile {
    display: block;
    margin-top: 150px;
    margin-bottom: 150px;
  }
  .hero-homepage-landing .block_wrapper .right.mobile .graphic-bg {
    display: block;
    height: 500px;
    width: 100%;
    left: 0;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
  }
  .hero-homepage-landing .block_wrapper .right.mobile .content {
    position: relative;
    z-index: 1;
    padding: 24px 40px;
  }
  .hero-homepage-landing .block_wrapper .right.mobile .content .text {
    margin: unset;
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .hero-homepage-landing .block_wrapper .right.mobile .content {
    width: auto;
  }
  .hero-homepage-landing .block_wrapper .right.mobile .graphic-bg {
    top: 60%;
    transform: translateY(-50%) scale(1.15);
  }
}
@media only screen and (max-width: 470px) {
  .hero-homepage-landing .block_wrapper .right.mobile .graphic-bg {
    transform: translateY(-50%) scale(1.4);
    top: 95%;
  }
}
@media only screen and (max-width: 400px) {
  .hero-homepage-landing .block_wrapper .right.mobile .graphic-bg {
    transform: translateY(-50%) scale(1.4);
  }
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .right {
    max-width: 100%;
    max-height: 70vh;
  }
}
.hero-homepage-landing .block_wrapper .right .content {
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
  width: 422px;
  max-width: 100%;
}
.hero-homepage-landing .block_wrapper .right .content .text {
  text-align: left;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.hero-homepage-landing .block_wrapper .right .content .text p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 115%;
}
.hero-homepage-landing .block_wrapper .right .content .text p strong {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 500;
}
.hero-homepage-landing .block_wrapper .right .content .text .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-homepage-landing .block_wrapper .right .content .text .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-homepage-landing .block_wrapper .right .content .text .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-homepage-landing .block_wrapper .right .content .text .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-homepage-landing .block_wrapper .right .content .text .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.hero-homepage-landing .block_wrapper .right img.image {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .right img.image {
    max-width: 100%;
    max-height: 70vh;
    width: 100%;
  }
}
.hero-homepage-landing .block_wrapper .right .bg-graphic-mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .right .bg-graphic-mobile {
    display: block;
  }
}
.hero-homepage-landing .block_wrapper .content {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-homepage-landing .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-homepage-landing .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 56px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  letter-spacing: -1.68px;
  max-width: 500px;
  margin-top: 80px;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .content .main h1.title {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 550px) {
  .hero-homepage-landing .block_wrapper .content .main h1.title {
    font-size: 40px;
    line-height: 93%;
    letter-spacing: -1.2px;
  }
}
.hero-homepage-landing .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-homepage-landing .block_wrapper .content .cards {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .hero-homepage-landing .block_wrapper .content .cards {
    margin-top: 0px;
    gap: 64px;
  }
}
.hero-homepage-landing .block_wrapper .content .cards .card-c {
  max-width: 565px;
  display: flex;
  gap: 16px;
  align-items: start;
}
@media only screen and (max-width: 500px) {
  .hero-homepage-landing .block_wrapper .content .cards .card-c {
    flex-direction: column;
  }
}
.hero-homepage-landing .block_wrapper .content .cards .card-c iframe {
  height: 55px;
  width: 55px;
}
@media only screen and (max-width: 500px) {
  .hero-homepage-landing .block_wrapper .content .cards .card-c iframe {
    height: 40px;
    width: 40px;
  }
}
.hero-homepage-landing .block_wrapper .content .cards .card-c:first-of-type iframe {
  transform: rotate(45deg);
  margin-right: 10px;
}
@media only screen and (max-width: 500px) {
  .hero-homepage-landing .block_wrapper .content .cards .card-c:first-of-type iframe {
    margin-bottom: 10px;
    margin-right: 0px;
  }
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .title p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 116%;
  max-width: 462px;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .title p strong {
  font-weight: 500;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.hero-homepage-landing .block_wrapper .content .cards .card-c:first-of-type {
  margin-left: auto;
  margin-right: auto;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c:last-of-type {
  margin-left: auto;
}
.hero-homepage-landing .block_wrapper .content .cards .card-c .animated-graphic {
  position: relative;
  width: 85px;
  height: 85px;
  margin-right: 16px;
  transform: rotate(-45deg);
  display: flex;
  align-content: center;
  justify-content: center;
}

.hero-intro-top-3-cards {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-3-cards {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.hero-intro-top-3-cards .graphic-bg {
  left: -35%;
  top: 30%;
  position: absolute;
  height: 100%;
  width: 109%;
  width: 2267px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  -o-object-position: top;
  object-position: top;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-3-cards .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-intro-top-3-cards .block_wrapper .content {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-3-cards .block_wrapper .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.hero-intro-top-3-cards .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 584px;
  width: 100%;
}
.hero-intro-top-3-cards .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-intro-top-3-cards .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-intro-top-3-cards .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.hero-intro-top-3-cards .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-intro-top-3-cards .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-intro-top-3-cards .block_wrapper .content .right {
  max-width: 480px;
  width: 100%;
  margin-top: 48px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-3-cards .block_wrapper .content .right {
    max-width: 100%;
    margin-top: 0px;
  }
}
.hero-intro-top-3-cards .block_wrapper .content .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.hero-intro-top-3-cards .block_wrapper .content .right .link-arrow-right {
  margin-top: 24px;
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.hero-intro-top-3-cards .block_wrapper .content .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-intro-top-3-cards .block_wrapper .content .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-intro-top-3-cards .block_wrapper .content .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-intro-top-3-cards .block_wrapper .content .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.hero-intro-top-3-cards .block_wrapper .cards-header {
  margin-top: 100px;
}
.hero-intro-top-3-cards .block_wrapper .cards-header .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero-intro-top-3-cards .block_wrapper .cards-header .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
}
.hero-intro-top-3-cards .block_wrapper .cards {
  margin-top: 80px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-3-cards .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero-intro-top-3-cards .block_wrapper .cards .card-c {
  display: flex;
  height: 260px;
  width: 290px;
  padding: 40px;
  align-items: flex-start;
  background-color: white;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  margin-right: 16px;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  flex-direction: column;
  padding: 60px 32px;
  background: #F9F6F3;
  border-top: 1px solid #DB341F;
  max-width: 290px;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top-3-cards .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}
.hero-intro-top-3-cards .block_wrapper .cards .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -1.66px;
  width: 100%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top-3-cards .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.hero-intro-top-3-cards .block_wrapper .cards .card-c .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 140%;
  height: 42%;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top-3-cards .block_wrapper .cards .card-c .description {
    max-width: 100%;
    width: 100%;
  }
}
.hero-intro-top-3-cards .block_wrapper .cards .card-c.small-text {
  justify-content: start;
}
.hero-intro-top-3-cards .block_wrapper .cards .card-c.small-text .title {
  font-size: 22px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -0.66px;
}

.hero-intro-top-4-cards {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 180px;
}
.hero-intro-top-4-cards.hide-content {
  padding-top: 180px;
}
@media only screen and (max-width: 550px) {
  .hero-intro-top-4-cards {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
.hero-intro-top-4-cards .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 107%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  transform: scale(1.2);
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-4-cards .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-intro-top-4-cards .graphic-bg.two {
  height: 100%;
  width: 100%;
  transform: scale(1);
  -o-object-position: center top;
     object-position: center top;
}
.hero-intro-top-4-cards .block_wrapper .content {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: start;
  gap: 24px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-4-cards .block_wrapper .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.hero-intro-top-4-cards .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.hero-intro-top-4-cards .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-intro-top-4-cards .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-intro-top-4-cards .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.hero-intro-top-4-cards .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-intro-top-4-cards .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-intro-top-4-cards .block_wrapper .content .right {
  max-width: 480px;
  width: 100%;
  margin-top: 48px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-4-cards .block_wrapper .content .right {
    max-width: 100%;
    margin-top: 0px;
  }
}
.hero-intro-top-4-cards .block_wrapper .content .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.hero-intro-top-4-cards .block_wrapper .cards {
  margin-top: 80px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top-4-cards .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.hero-intro-top-4-cards .block_wrapper .cards.hide-content {
  margin-top: 0px;
}
.hero-intro-top-4-cards .block_wrapper .cards .card-c {
  padding: 32px;
  background: #F9F6F3;
  border-top: 1px solid #DB341F;
  width: 250px;
  height: 225px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.2s all ease-in;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top-4-cards .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}
.hero-intro-top-4-cards .block_wrapper .cards .card-c .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  line-height: 102%;
  letter-spacing: -0.66px;
  max-width: 200px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top-4-cards .block_wrapper .cards .card-c .description {
    max-width: 100%;
    width: 100%;
  }
}
.hero-intro-top-4-cards .block_wrapper .cards .card-c:hover {
  background: #DB341F;
}
.hero-intro-top-4-cards .block_wrapper .cards .card-c:hover .description {
  color: white;
}

.hero-intro-top {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 206px;
  overflow: hidden;
  margin-top: -60px;
}
@media only screen and (max-width: 500px) {
  .hero-intro-top {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
.hero-intro-top .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  -o-object-position: bottom;
     object-position: bottom;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-intro-top .block_wrapper .content {
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top .block_wrapper .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.hero-intro-top .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: 584px;
  width: 100%;
}
.hero-intro-top .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-intro-top .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-intro-top .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.hero-intro-top .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-intro-top .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-intro-top .block_wrapper .content .right {
  max-width: 480px;
  width: 100%;
  margin-top: 48px;
}
@media only screen and (max-width: 992px) {
  .hero-intro-top .block_wrapper .content .right {
    max-width: 100%;
    margin-top: 0px;
  }
}
.hero-intro-top .block_wrapper .content .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.hero-intro-top .block_wrapper .content .right p b,
.hero-intro-top .block_wrapper .content .right p strong {
  font-weight: 600;
}
.hero-intro-top .block_wrapper .content .right b,
.hero-intro-top .block_wrapper .content .right strong {
  font-weight: 600;
}
.hero-intro-top .block_wrapper .content .right .link-arrow-right {
  margin-top: 24px;
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.hero-intro-top .block_wrapper .content .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-intro-top .block_wrapper .content .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-intro-top .block_wrapper .content .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-intro-top .block_wrapper .content .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.hero-news-insight-landing {
  margin-bottom: 80px;
  z-index: 1;
  position: relative;
  margin-top: 60px;
}
@media only screen and (max-width: 992px) {
  .hero-news-insight-landing {
    margin-bottom: 40px;
  }
}
.hero-news-insight-landing .owl-carousel {
  opacity: 0;
  visibility: hidden;
}
.hero-news-insight-landing .owl-carousel.owl-loaded {
  opacity: 1;
  visibility: visible;
}
.hero-news-insight-landing .custom-nav-buttons {
  margin-top: 40px;
}
.hero-news-insight-landing .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 43px;
  height: 43px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.hero-news-insight-landing .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.hero-news-insight-landing .custom-nav-buttons button svg path {
  fill: white;
}
.hero-news-insight-landing .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.hero-news-insight-landing .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.hero-news-insight-landing .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .hero-news-insight-landing .block_wrapper {
    flex-direction: column;
  }
}
.hero-news-insight-landing .block_wrapper .image-container {
  width: 480px;
  height: 316px;
  overflow: hidden;
  flex-shrink: 0;
}
@media only screen and (max-width: 992px) {
  .hero-news-insight-landing .block_wrapper .image-container {
    width: 100%;
    height: 70vh;
    max-height: 316px;
  }
}
.hero-news-insight-landing .block_wrapper .image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-news-insight-landing .block_wrapper .content {
  max-width: 560px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .hero-news-insight-landing .block_wrapper .content {
    max-width: 100%;
  }
}
.hero-news-insight-landing .block_wrapper .content h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.hero-news-insight-landing .block_wrapper .content h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-news-insight-landing .block_wrapper .content h2.tag span {
  margin-left: 20px;
}
.hero-news-insight-landing .block_wrapper .content h1.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 119%;
  letter-spacing: -0.84px;
}
.hero-news-insight-landing .block_wrapper .content .text {
  margin-top: 24px;
}
.hero-news-insight-landing .block_wrapper .content .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-news-insight-landing .block_wrapper .content .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.hero-news-insight-landing .block_wrapper .content .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  line-height: 1.2;
  margin-top: 0px;
}
.hero-news-insight-landing .block_wrapper .content .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-news-insight-landing .block_wrapper .content .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-news-insight-landing .block_wrapper .content .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-news-insight-landing .block_wrapper .content .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.content-2column-intro {
  position: relative;
  background-color: white;
}
.content-2column-intro.tan-background {
  background: #F9F6F3;
}
.content-2column-intro.hide-animation .graphic-bg {
  display: none;
}
.content-2column-intro .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center bottom;
     object-position: center bottom;
  z-index: 2;
  max-height: 120%;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content-2column-intro .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 3;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.content-2column-intro .container .left {
  display: flex;
  gap: 50px;
  max-width: 652px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.content-2column-intro .container .left h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.56px;
  max-width: 420px;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container .left h4 {
    max-width: 496px;
    max-width: 100%;
  }
}
.content-2column-intro .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container .left .links {
    gap: 16px;
  }
}
.content-2column-intro .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.content-2column-intro .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-2column-intro .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-2column-intro .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-2column-intro .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-2column-intro .container .right {
  max-width: 496px;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container .right {
    max-width: 100%;
  }
}
.content-2column-intro .container .right h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 119%;
  letter-spacing: -0.84px;
  margin-bottom: 12px;
}
.content-2column-intro .container .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-intro .container .right strong,
.content-2column-intro .container .right b {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-intro .container .right p,
.content-2column-intro .container .right a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.content-2column-intro .container .right p a,
.content-2column-intro .container .right a a {
  text-decoration: underline;
}
.content-2column-intro .container .right ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.content-2column-intro .container .right ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.content-2column-intro .container .right ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.content-2column-intro .container .right ul em {
  font-style: italic;
}
.content-2column-intro .container .right em {
  font-style: italic;
}
.content-2column-intro .container .right strong,
.content-2column-intro .container .right b {
  font-weight: 700;
}
.content-2column-intro .container .right a {
  padding: 0px;
}
.content-2column-intro .container .right .tags {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .content-2column-intro .container .right .tags {
    gap: 16px;
  }
}
.content-2column-intro .container .right .tags .tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  text-decoration: none;
  font-size: 15px;
}
.content-2column-intro .container .right .tags .tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.content-2column-intro .container .right .tags .tag span {
  margin-left: 20px;
}
.content-2column-intro .container .right .tags .tag:hover {
  color: #A02012;
}
.content-2column-intro .container .right .tags .tag:hover:after {
  background-color: #A02012;
}

.quote {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .quote {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.quote .quote-slider {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.quote .quote-slider.owl-loaded {
  opacity: 1;
}
.quote .slide blockquote p {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.quote .slide .name {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.54px;
  margin-top: 32px;
  margin-right: 16px;
  height: 24px;
}
.quote .custom-nav-buttons {
  margin-top: 32px;
  text-align: center;
}
.quote .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 43px;
  height: 43px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.quote .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.quote .custom-nav-buttons button svg path {
  fill: white;
}
.quote .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.quote .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.quote.remove-top-spacing {
  padding-top: 0px;
}
.quote.active-lines .slide {
  padding-top: 32px;
  border-top: 1px solid #DB341F;
}
.quote.active-lines .custom-nav-buttons {
  position: relative;
}
.quote.active-lines .custom-nav-buttons:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background: #DB341F;
  left: 0;
  z-index: 0;
}
.quote.active-lines .custom-nav-buttons button {
  z-index: 1;
  position: relative;
}

.splash-mto-glance {
  padding: 24px;
  background: linear-gradient(to bottom, #ffffff 0%, #F9F6F3 100%);
}
.splash-mto-glance .block-wrapper {
  position: relative;
  padding-top: 170px;
  padding-bottom: 170px;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .splash-mto-glance .block-wrapper {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.splash-mto-glance .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}
.splash-mto-glance .animate-on-scroll.animate__animated {
  opacity: 1;
  transform: translateY(0);
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.splash-mto-glance .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.splash-mto-glance .img-container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #04293D;
  opacity: 82%;
  background-blend-mode: multiply, normal;
}
.splash-mto-glance .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.splash-mto-glance .container {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  position: relative;
  gap: 50px;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .splash-mto-glance .container {
    flex-direction: column;
    align-items: start;
  }
}
.splash-mto-glance .container .left {
  max-width: 164px;
}
@media only screen and (max-width: 992px) {
  .splash-mto-glance .container .left {
    max-width: 100%;
  }
}
.splash-mto-glance .container .left h4 {
  color: #F9F6F3;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 24px;
}
.splash-mto-glance .container .right .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .splash-mto-glance .container .right .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}
@media only screen and (max-width: 550px) {
  .splash-mto-glance .container .right .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}
.splash-mto-glance .container .right .grid .tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  text-transform: none;
  max-width: 238px;
  align-items: start;
}
.splash-mto-glance .container .right .grid .tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.splash-mto-glance .container .right .grid .tag span {
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .splash-mto-glance .container .right .grid .tag {
    max-width: 100%;
  }
}
.splash-mto-glance .container .right .grid .tag:after {
  top: 5px;
  transform: none;
}
.splash-mto-glance .container .right .grid .tag span {
  margin-left: 25px;
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 127%;
}
.splash-mto-glance .container .right .grid .tag span b,
.splash-mto-glance .container .right .grid .tag span strong {
  font-weight: 600;
}

.splash-our-core-values {
  background-color: white;
  position: relative;
}
.splash-our-core-values.tan {
  background-color: #F9F6F3;
}
.splash-our-core-values .img-container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.splash-our-core-values .img-container:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(9, 60, 89, 0.76) 0%, rgba(9, 60, 89, 0.76) 100%);
  background-blend-mode: multiply, normal;
}
.splash-our-core-values .img-container img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.splash-our-core-values .img-container.boxed {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}
.splash-our-core-values .block-wrapper {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .splash-our-core-values .block-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.splash-our-core-values .container {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  position: relative;
  gap: 80px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .splash-our-core-values .container {
    flex-direction: column;
    align-items: start;
  }
}
.splash-our-core-values .container .left h4 {
  color: #F9F6F3;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 24px;
}
.splash-our-core-values .container .right .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 80px;
}
@media only screen and (max-width: 992px) {
  .splash-our-core-values .container .right .grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}
@media only screen and (max-width: 550px) {
  .splash-our-core-values .container .right .grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}
.splash-our-core-values .container .right .grid .tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  text-transform: none;
  max-width: 320px;
  width: 100%;
  align-items: start;
  flex-direction: column;
  justify-content: start;
}
.splash-our-core-values .container .right .grid .tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.splash-our-core-values .container .right .grid .tag span {
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .splash-our-core-values .container .right .grid .tag {
    max-width: 100%;
  }
}
.splash-our-core-values .container .right .grid .tag:after {
  display: none;
}
.splash-our-core-values .container .right .grid .tag span {
  margin-left: 0px;
  margin-top: 32px;
}
.splash-our-core-values .container .right .grid .tag span p {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.splash-our-core-values .container .right .grid .tag span p b,
.splash-our-core-values .container .right .grid .tag span p strong {
  font-weight: 600;
}
.splash-our-core-values .container .right .grid .tag img {
  width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.splash-our-core-values .container .right .grid .tag:first-of-type img {
  width: 78px;
}
.splash-our-core-values .container .right .grid .tag:first-of-type span {
  margin-top: 18px;
}
.splash-our-core-values .container .right .grid .tag:nth-of-type(5) img {
  width: 78px;
}
.splash-our-core-values .container .right .grid .tag:nth-of-type(5) span {
  margin-top: 18px;
}

.listing-news-and-insights {
  position: relative;
}
.listing-news-and-insights .graphic-bg {
  left: -36%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  height: 1000px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .graphic-bg {
    height: 58%;
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 650px) {
  .listing-news-and-insights .graphic-bg {
    height: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .listing-news-and-insights .graphic-bg {
    top: -5%;
  }
}
.listing-news-and-insights .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-news-and-insights .container .left h4.mobile {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  display: none;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container .left h4.mobile {
    display: block;
  }
}
.listing-news-and-insights .container .left .content {
  background: white;
  padding: 100px 40px;
  text-align: center;
  max-height: 320px;
  height: 320px;
  max-width: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s all ease-in;
  gap: 16px;
}
.listing-news-and-insights .container .left .content.tan {
  background: #F9F6F3;
}
.listing-news-and-insights .container .left .content.white {
  background: white;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container .left .content {
    max-height: 260px;
  }
}
.listing-news-and-insights .container .left .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-align: left;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .left .content .post-tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-style: normal;
  line-height: 154%;
  text-transform: uppercase;
  text-align: left;
  transition: 0.2s all ease-in;
  margin: 0;
}
.listing-news-and-insights .container .left .content .subtitle {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 127%;
  text-align: left;
  transition: 0.2s all ease-in;
  margin: 0;
}
.listing-news-and-insights .container .left .content .left-heading-overwrite {
  color: var(--Text-gray_dark, #231F20);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: var(--Font-Size-fontSize-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.96px;
  text-align: left;
  margin-bottom: 14px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .left .content .left-body-overwrite {
  color: var(--Text-gray_dark, #231F20);
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: var(--Font-Size-fontSize-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  text-align: left;
  margin: 0;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .left .content .left-text-font-weight {
  font-weight: 400 !important;
}
.listing-news-and-insights .container .left .content h5 {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 127%;
  text-align: left;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .left a.content:hover {
  background: #DB351F !important;
  color: white !important;
}
.listing-news-and-insights .container .left a.content:hover p,
.listing-news-and-insights .container .left a.content:hover h5,
.listing-news-and-insights .container .left a.content:hover .post-tag,
.listing-news-and-insights .container .left a.content:hover .subtitle {
  color: white !important;
}
.listing-news-and-insights .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 560px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container .right {
    max-width: 100%;
    margin-top: 80px;
  }
}
.listing-news-and-insights .container .right h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container .right h4 {
    display: none;
  }
}
.listing-news-and-insights .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-news-and-insights .container .right .posts.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights .container .right .posts.posts-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.listing-news-and-insights .container .right .posts .grid-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.listing-news-and-insights .container .right .posts .grid-item .post-tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  cursor: auto;
}
.listing-news-and-insights .container .right .posts .grid-item .post-tag:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .right .posts .grid-item .link {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
}
.listing-news-and-insights .container .right .posts .grid-item:hover .post-tag:after {
  width: 100%;
}
.listing-news-and-insights .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-news-and-insights .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-news-and-insights .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-news-and-insights .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.callout-3-column-element {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background: #294F59;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .callout-3-column-element {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.callout-3-column-element .graphic-bg {
  left: 0;
  top: 30%;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .callout-3-column-element .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.callout-3-column-element .block_wrapper .cards {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .callout-3-column-element .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c {
  padding: 0px 32px;
  max-width: 381px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .callout-3-column-element .block_wrapper .cards .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    padding: 32px 0px;
  }
  .callout-3-column-element .block_wrapper .cards .card-c:last-child {
    border: none;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  right: -1vw;
  top: 0;
  bottom: 0;
  background: #D9D9D9;
}
@media only screen and (max-width: 992px) {
  .callout-3-column-element .block_wrapper .cards .card-c:after {
    display: none;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c:last-child::after {
  display: none;
}
@media only screen and (max-width: 500px) {
  .callout-3-column-element .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c .title {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .callout-3-column-element .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c .description {
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.36px;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .callout-3-column-element .block_wrapper .cards .card-c .description {
    max-width: 100%;
    width: 100%;
  }
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right {
  color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 32px;
  display: block;
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right .icon svg path {
  fill: white;
  opacity: 0.75;
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right:hover {
  color: rgba(255, 255, 255, 0.8);
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.callout-3-column-element .block_wrapper .cards .card-c .link-arrow-right:hover .icon svg path {
  fill: rgba(255, 255, 255, 0.8);
}

.callout-contact-module {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #294F59;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .callout-contact-module {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.callout-contact-module.full {
  max-width: 100% !important;
}
.callout-contact-module .block_wrapper {
  display: flex;
  align-items: center;
  gap: 100px;
}
.callout-contact-module .block_wrapper.single-item {
  justify-content: center;
}
@media only screen and (max-width: 1200px) {
  .callout-contact-module .block_wrapper {
    gap: 32px;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 992px) {
  .callout-contact-module .block_wrapper {
    flex-direction: column;
    align-items: start;
  }
}
.callout-contact-module .block_wrapper .left {
  width: 100%;
  max-width: 242px;
  margin-right: 30px;
}
@media only screen and (max-width: 992px) {
  .callout-contact-module .block_wrapper .left {
    max-width: 100%;
  }
}
.callout-contact-module .block_wrapper .left .title {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 8px;
}
.callout-contact-module .block_wrapper .left p {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.callout-contact-module .block_wrapper .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 20px;
  position: relative;
}
.callout-contact-module .block_wrapper .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.callout-contact-module .block_wrapper .left .link-arrow-right:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.callout-contact-module .block_wrapper .left .link-arrow-right span {
  padding-left: 30px;
}
.callout-contact-module .block_wrapper .left .link-arrow-right span.icon {
  padding-left: 0px;
}
.callout-contact-module .block_wrapper .left .link-arrow-right path {
  fill: white;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover {
  color: white;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover span {
  opacity: 0.7;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover:after {
  opacity: 1;
}
.callout-contact-module .block_wrapper .left .link-arrow-right:hover path {
  fill: white !important;
}
.callout-contact-module .block_wrapper .right {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media only screen and (max-width: 1200px) {
  .callout-contact-module .block_wrapper .right {
    flex-direction: column;
  }
}
.callout-contact-module .block_wrapper .right .profile {
  display: flex;
  gap: 24px;
  flex: calc(50% - 80px);
  min-width: 0;
}
@media only screen and (max-width: 520px) {
  .callout-contact-module .block_wrapper .right .profile {
    flex-direction: column;
  }
}
.callout-contact-module .block_wrapper .right .profile img {
  aspect-ratio: 1/1;
  max-width: 141px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.callout-contact-module .block_wrapper .right .profile .about {
  display: flex;
  gap: 24px;
  flex-direction: column;
  max-width: 360px;
  justify-content: center;
}
.callout-contact-module .block_wrapper .right .profile .about .name a,
.callout-contact-module .block_wrapper .right .profile .about .title,
.callout-contact-module .block_wrapper .right .profile .about a {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.callout-contact-module .block_wrapper .right .profile .about .name {
  display: block !important;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
  color: white;
}
.callout-contact-module .block_wrapper .right .profile .about .name a {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
}
.callout-contact-module .block_wrapper .right .profile .about .title {
  margin-top: -10px;
}
.callout-contact-module .block_wrapper .right .profile .about .telephone svg path {
  fill: white;
}
.callout-contact-module .block_wrapper .right .profile .about .location {
  font-weight: 600;
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.callout-contact-module .block_wrapper .right .profile .about .email {
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-transform: lowercase;
}
.callout-contact-module .block_wrapper .right .profile .about .contact {
  display: flex;
  gap: 3px;
  flex-direction: column;
  margin-top: 0px;
}
.callout-contact-module .block_wrapper .right .profile .about .contact .telephone {
  font-weight: 350;
}
.callout-contact-module .block_wrapper .right .profile .about a {
  text-decoration: none;
  display: block;
}
.callout-contact-module .block_wrapper .right.two-items {
  display: flex;
  gap: 40px;
}
.callout-contact-module .block_wrapper .right.two-items .profile img {
  width: 162px;
}
.callout-contact-module .block_wrapper .right.two-items .profile .title,
.callout-contact-module .block_wrapper .right.two-items .profile a,
.callout-contact-module .block_wrapper .right.two-items .profile .location,
.callout-contact-module .block_wrapper .right.two-items .profile .email,
.callout-contact-module .block_wrapper .right.two-items .profile .contact {
  font-size: 15px;
}
.callout-contact-module .block_wrapper .more {
  flex-basis: 100%;
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 80px;
  position: relative;
}
@media only screen and (max-width: 1190px) {
  .callout-contact-module .block_wrapper .more {
    align-items: start;
    flex-direction: column;
  }
}
.callout-contact-module .block_wrapper .more:before {
  content: "";
  position: absolute;
  width: 135px;
  height: 1px;
  z-index: 22;
  top: -60px;
  border-top: 1px dashed white;
  opacity: 0.5;
}
.callout-contact-module .block_wrapper .more.no-lawyer::before {
  display: none;
}
.callout-contact-module .block_wrapper .more .tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  text-transform: none;
  align-items: start;
}
.callout-contact-module .block_wrapper .more .tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.callout-contact-module .block_wrapper .more .tag span {
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .callout-contact-module .block_wrapper .more .tag {
    max-width: 100%;
  }
}
.callout-contact-module .block_wrapper .more .tag:after {
  top: 5px;
  transform: none;
}
.callout-contact-module .block_wrapper .more .tag span {
  margin-left: 25px;
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.6px;
}
.callout-contact-module .block_wrapper .more .tag span b,
.callout-contact-module .block_wrapper .more .tag span strong {
  font-weight: 600;
}

.callout-image-left-text-right {
  margin-top: 0px;
  margin-bottom: 0px;
  z-index: 1;
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
  background: #F9F6F3;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.callout-image-left-text-right .block_wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper {
    flex-direction: column;
    gap: 40px;
  }
}
.callout-image-left-text-right .block_wrapper .image-wrapper {
  position: relative;
  max-width: 482px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper .image-wrapper {
    max-width: 100%;
  }
}
.callout-image-left-text-right .block_wrapper .image-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #0A0A0A 100%);
  left: 0;
  top: 0;
}
.callout-image-left-text-right .block_wrapper .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper .image-wrapper img {
    max-width: 100%;
    aspect-ratio: 1/1;
  }
}
.callout-image-left-text-right .block_wrapper .image-wrapper .image-text {
  position: absolute;
  bottom: 0;
  padding: 32px 20px;
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 127%;
  z-index: 1;
}
.callout-image-left-text-right .block_wrapper .content {
  max-width: 570px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper .content {
    max-width: 100%;
  }
}
.callout-image-left-text-right .block_wrapper .content h1.title {
  color: #231F20;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  margin-bottom: 0px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.callout-image-left-text-right .block_wrapper .content .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.callout-image-left-text-right .block_wrapper .content .text ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.callout-image-left-text-right .block_wrapper .content .text ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.callout-image-left-text-right .block_wrapper .content .text ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper .content .text ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.callout-image-left-text-right .block_wrapper .content .text ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .callout-image-left-text-right .block_wrapper .content .text ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.callout-image-left-text-right .block_wrapper .content .text ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.callout-image-left-text-right .block_wrapper .content .text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.callout-image-left-text-right .block_wrapper .content .text a {
  color: #DB351F;
  text-decoration: none;
}
.callout-image-left-text-right .block_wrapper .content .text a:hover {
  color: #A02012;
}
.callout-image-left-text-right .block_wrapper .content .text h2 {
  font-size: 32px;
  font-weight: 500;
}
.callout-image-left-text-right .block_wrapper .content .text h3 {
  font-size: 18px;
  font-weight: 500;
}
.callout-image-left-text-right .block_wrapper .content .text p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.callout-image-left-text-right .block_wrapper .content .text p strong {
  font-weight: 600;
}
.callout-image-left-text-right .block_wrapper .content .text p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.callout-image-left-text-right .block_wrapper .content .text p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.callout-image-left-text-right .block_wrapper .content .text em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.callout-image-left-text-right .block_wrapper .content .text p {
  margin-top: 24px;
}
.callout-image-left-text-right .block_wrapper .content .text .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.callout-image-left-text-right .block_wrapper .content .text .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.callout-image-left-text-right .block_wrapper .content .text .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.callout-image-left-text-right .block_wrapper .content .text .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.callout-image-left-text-right .block_wrapper .content .text .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.callout-image-left-text-right .block_wrapper .content .text h1,
.callout-image-left-text-right .block_wrapper .content .text h2,
.callout-image-left-text-right .block_wrapper .content .text h3,
.callout-image-left-text-right .block_wrapper .content .text h4,
.callout-image-left-text-right .block_wrapper .content .text h5 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}

.callout-staggered-three {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  background: #F9F6F3;
}
.callout-staggered-three .graphic-bg {
  left: 39%;
  top: -40%;
  position: absolute;
  height: 90%;
  width: 100%;
  opacity: 0.5;
}
@media only screen and (max-width: 1200px) {
  .callout-staggered-three .graphic-bg {
    left: 31%;
  }
}
.callout-staggered-three .container {
  padding-bottom: 180px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .callout-staggered-three .container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
.callout-staggered-three .block_wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .callout-staggered-three .block_wrapper .content {
    max-width: 100%;
  }
}
.callout-staggered-three .block_wrapper .content h4.title {
  color: #231F20;
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .callout-staggered-three .block_wrapper .content h4.title {
    margin-bottom: 40px;
  }
}
.callout-staggered-three .block_wrapper .content .cards {
  display: flex;
  flex-direction: column;
}
.callout-staggered-three .block_wrapper .content .cards .card-c {
  max-width: 320px;
  display: flex;
  gap: 16px;
  align-items: start;
}
.callout-staggered-three .block_wrapper .content .cards .card-c .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.72px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.callout-staggered-three .block_wrapper .content .cards .card-c p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-top: 16px;
}
.callout-staggered-three .block_wrapper .content .cards .card-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.callout-staggered-three .block_wrapper .content .cards .card-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.callout-staggered-three .block_wrapper .content .cards .card-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.callout-staggered-three .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.callout-staggered-three .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.callout-staggered-three .block_wrapper .content .cards .card-c:first-of-type {
  margin-right: auto;
}
.callout-staggered-three .block_wrapper .content .cards .card-c:nth-of-type(2) {
  margin-left: auto;
  margin-right: auto;
  margin-top: -60px;
}
@media only screen and (max-width: 1075px) {
  .callout-staggered-three .block_wrapper .content .cards .card-c:nth-of-type(2) {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .callout-staggered-three .block_wrapper .content .cards .card-c:nth-of-type(2) {
    margin-left: 0px;
  }
}
.callout-staggered-three .block_wrapper .content .cards .card-c:last-of-type {
  margin-left: auto;
  margin-top: -20px;
}
@media only screen and (max-width: 1075px) {
  .callout-staggered-three .block_wrapper .content .cards .card-c:last-of-type {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .callout-staggered-three .block_wrapper .content .cards .card-c:last-of-type {
    margin-left: 0px;
  }
}

.carousel-follow-mto {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}
.carousel-follow-mto .container {
  padding-bottom: 150px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (max-width: 992px) {
  .carousel-follow-mto .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.carousel-follow-mto .block_wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .carousel-follow-mto .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-follow-mto .block_wrapper {
    flex-direction: column;
  }
}
.carousel-follow-mto .block_wrapper .content {
  min-width: 323px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .carousel-follow-mto .block_wrapper .content {
    max-width: 100%;
    min-width: 100%;
  }
}
.carousel-follow-mto .block_wrapper .content .wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.carousel-follow-mto .block_wrapper .content .wrapper h4.title {
  color: #231F20;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.carousel-follow-mto .block_wrapper .content .wrapper .linkedin {
  max-width: 17px;
  aspect-ratio: 1/1;
}
.carousel-follow-mto .block_wrapper .content .wrapper .linkedin path {
  transition: 0.2s all ease-in;
}
.carousel-follow-mto .block_wrapper .content .wrapper .linkedin:hover path {
  fill: #231F20;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons {
  margin-top: 30px;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 56px;
  height: 56px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons button svg path {
  fill: white;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.carousel-follow-mto .block_wrapper .content .wrapper .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.carousel-follow-mto .block_wrapper .right {
  display: flex;
  flex-direction: column;
  max-width: 64%;
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .carousel-follow-mto .block_wrapper .right {
    max-width: 100%;
  }
}
.carousel-follow-mto .block_wrapper .right .carousel {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-follow-mto .block_wrapper .right .carousel.owl-loaded {
  display: block;
  opacity: 1;
}
.carousel-follow-mto .block_wrapper .right .carousel .card-c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  margin-right: 16px;
}
.carousel-follow-mto .block_wrapper .right .carousel .card-c img {
  -o-object-fit: cover;
     object-fit: cover;
}
.carousel-follow-mto .block_wrapper .right .carousel .card-c p {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  margin-top: 20px;
  transition: 0.2s all ease-in;
}
.carousel-follow-mto .block_wrapper .right .carousel .card-c:hover p {
  text-decoration: underline;
}
.carousel-follow-mto .block_wrapper .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.carousel-follow-mto .block_wrapper .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.carousel-follow-mto .block_wrapper .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.carousel-follow-mto .block_wrapper .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.carousel-follow-mto .block_wrapper .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.carousel-allprobono-news {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}
.carousel-allprobono-news .container {
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (min-width: 993px) {
  .carousel-allprobono-news .container {
    max-width: none;
    padding-left: calc((100vw - 1304px) / 2 + 32px);
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: visible;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-allprobono-news .container {
    max-width: 1304px;
    padding-left: 32px;
    padding-right: 32px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-allprobono-news .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.carousel-allprobono-news .block_wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .carousel-allprobono-news .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-allprobono-news .block_wrapper {
    flex-direction: column;
  }
}
.carousel-allprobono-news .block_wrapper .content {
  min-width: 323px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .carousel-allprobono-news .block_wrapper .content {
    max-width: 100%;
    min-width: 100%;
  }
}
.carousel-allprobono-news .block_wrapper .content .wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.carousel-allprobono-news .block_wrapper .content .wrapper h4.title {
  color: #231F20;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form button {
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  width: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media only screen and (max-width: 1470px) {
  .carousel-allprobono-news .block_wrapper .content .wrapper form button {
    right: 48px;
  }
}
@media only screen and (max-width: 1100px) {
  .carousel-allprobono-news .block_wrapper .content .wrapper form button {
    right: 30px;
  }
}
.carousel-allprobono-news .block_wrapper .content .wrapper form button svg {
  width: 18px;
  height: 18px;
  transition: 0.2s all ease-in;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form button svg path {
  fill: white;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form button:hover svg {
  transform: translateY(-2px);
}
.carousel-allprobono-news .block_wrapper .content .wrapper form input {
  width: 100%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 32px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form input::-moz-placeholder {
  font-size: inherit;
}
.carousel-allprobono-news .block_wrapper .content .wrapper form input::placeholder {
  font-size: inherit;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons {
  margin-top: 30px;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 56px;
  height: 56px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons button svg path {
  fill: white;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.carousel-allprobono-news .block_wrapper .content .wrapper .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.carousel-allprobono-news .block_wrapper .right {
  display: flex;
  flex-direction: column;
  max-width: 67%;
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .carousel-allprobono-news .block_wrapper .right {
    max-width: 100%;
  }
}
.carousel-allprobono-news .block_wrapper .right .carousel {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-allprobono-news .block_wrapper .right .carousel.owl-loaded {
  display: block;
  opacity: 1;
}
.carousel-allprobono-news .block_wrapper .right .carousel .card-c {
  display: flex;
  height: 250px;
  padding: 24px;
  align-items: flex-start;
  background-color: #F9F6F3;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  margin-right: 16px;
  transition: 0.2s all ease-in;
}
.carousel-allprobono-news .block_wrapper .right .carousel .card-c p {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
}
.carousel-allprobono-news .block_wrapper .right .carousel .card-c:hover {
  padding-top: 20px;
  border-top: 2px solid #DB341F;
}
.carousel-allprobono-news .block_wrapper .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.carousel-allprobono-news .block_wrapper .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.carousel-allprobono-news .block_wrapper .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.carousel-allprobono-news .block_wrapper .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.carousel-allprobono-news .block_wrapper .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.carousel-awards-recognitions {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background-color: white;
}
.carousel-awards-recognitions .container {
  padding-bottom: 150px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (max-width: 992px) {
  .carousel-awards-recognitions .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.carousel-awards-recognitions .block_wrapper {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .carousel-awards-recognitions .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .carousel-awards-recognitions .block_wrapper {
    flex-direction: column;
  }
}
.carousel-awards-recognitions .block_wrapper .content {
  min-width: 323px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .carousel-awards-recognitions .block_wrapper .content {
    max-width: 100%;
    min-width: 100%;
  }
}
.carousel-awards-recognitions .block_wrapper .content .wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper h4.title {
  color: #231F20;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons {
  margin-top: 30px;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 56px;
  height: 56px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons button svg path {
  fill: white;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.carousel-awards-recognitions .block_wrapper .content .wrapper .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.carousel-awards-recognitions .block_wrapper .right {
  display: flex;
  flex-direction: column;
  max-width: 75%;
  gap: 32px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .carousel-awards-recognitions .block_wrapper .right {
    max-width: 100%;
  }
}
.carousel-awards-recognitions .block_wrapper .right .carousel {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.carousel-awards-recognitions .block_wrapper .right .carousel.owl-loaded {
  display: block;
  opacity: 1;
}
.carousel-awards-recognitions .block_wrapper .right .carousel .card-c {
  display: flex;
  height: 250px;
  max-width: 250px;
  height: 250px;
  padding: 24px;
  align-items: flex-start;
  background-color: #F9F6F3;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  margin-right: 16px;
  transition: 0.2s all ease-in;
}
.carousel-awards-recognitions .block_wrapper .right .carousel .card-c p {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
}
.carousel-awards-recognitions .block_wrapper .right .carousel .card-c:hover {
  padding-top: 20px;
  border-top: 2px solid #DB341F;
}
.carousel-awards-recognitions .block_wrapper .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.carousel-awards-recognitions .block_wrapper .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.carousel-awards-recognitions .block_wrapper .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.carousel-awards-recognitions .block_wrapper .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.carousel-awards-recognitions .block_wrapper .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.bio-overview {
  position: relative;
  background-color: #F9F6F3;
}
.bio-overview em {
  font-style: italic;
}
.bio-overview .container {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: start;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.bio-overview .container .left {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.bio-overview .container .left h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.56px;
  width: 320px;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .left h4 {
    max-width: 496px;
    max-width: 100%;
  }
}
.bio-overview .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .left .links {
    gap: 16px;
  }
}
.bio-overview .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.bio-overview .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.bio-overview .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.bio-overview .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.bio-overview .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.bio-overview .container .right {
  max-width: 715px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .right {
    max-width: 100%;
  }
}
.bio-overview .container .right .content {
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
}
.bio-overview .container .right .content.toggle-content-o {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.bio-overview .container .right .content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 8000px;
}
.bio-overview .container .right p,
.bio-overview .container .right a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 40px;
}
.bio-overview .container .right p strong,
.bio-overview .container .right p b,
.bio-overview .container .right a strong,
.bio-overview .container .right a b {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.bio-overview .container .right p a,
.bio-overview .container .right a a {
  text-decoration: underline;
}
.bio-overview .container .right ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.bio-overview .container .right ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.bio-overview .container .right ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .right ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.bio-overview .container .right ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .bio-overview .container .right ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.bio-overview .container .right ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.bio-overview .container .right ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.bio-overview .container .right a {
  color: #DB351F;
  text-decoration: none;
}
.bio-overview .container .right a:hover {
  color: #A02012;
}
.bio-overview .container .right h2 {
  font-size: 32px;
  font-weight: 500;
}
.bio-overview .container .right h3 {
  font-size: 18px;
  font-weight: 500;
}
.bio-overview .container .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.bio-overview .container .right p strong {
  font-weight: 600;
}
.bio-overview .container .right p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.bio-overview .container .right p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.bio-overview .container .right em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.bio-overview .container .right > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.bio-overview .container .right > * b,
.bio-overview .container .right > * strong {
  font-weight: 700;
  font-size: 18px;
}
.bio-overview .container .right b,
.bio-overview .container .right strong {
  font-weight: 700;
}
.bio-overview .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
  display: flex;
}
.bio-overview .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.bio-overview .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.bio-overview .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.bio-overview .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.bio-overview .container .right .link-arrow-right span.minus {
  line-height: 9px;
}

.content-2column-overview {
  position: relative;
  background-color: #F9F6F3;
}
.content-2column-overview .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: start;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.content-2column-overview .container .left {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.content-2column-overview .container .left h2 {
  width: 320px;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -1.26px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .left h2 {
    max-width: 496px;
    max-width: 100%;
  }
}
.content-2column-overview .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .left .links {
    gap: 16px;
  }
}
.content-2column-overview .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.content-2column-overview .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-2column-overview .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-2column-overview .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-2column-overview .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-2column-overview .container .right {
  max-width: 715px;
  width: 100%;
}
.content-2column-overview .container .right ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-2column-overview .container .right ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.content-2column-overview .container .right ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.content-2column-overview .container .right ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.content-2column-overview .container .right a {
  color: #DB351F;
  text-decoration: none;
}
.content-2column-overview .container .right a:hover {
  color: #A02012;
}
.content-2column-overview .container .right h2 {
  font-size: 32px;
  font-weight: 500;
}
.content-2column-overview .container .right h3 {
  font-size: 18px;
  font-weight: 500;
}
.content-2column-overview .container .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right p strong {
  font-weight: 600;
}
.content-2column-overview .container .right p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-2column-overview .container .right p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-overview .container .right em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right p {
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right {
    max-width: 100%;
  }
}
.content-2column-overview .container .right .expand-content {
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
}
.content-2column-overview .container .right .expand-content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 8000px;
}
.content-2column-overview .container .right .expand-content.expanded .read-more {
  margin-top: 10px !important;
}
.content-2column-overview .container .right .content ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-2column-overview .container .right .content ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.content-2column-overview .container .right .content ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right .content ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right .content ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right .content ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.content-2column-overview .container .right .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.content-2column-overview .container .right .content a {
  color: #DB351F;
  text-decoration: none;
}
.content-2column-overview .container .right .content a:hover {
  color: #A02012;
}
.content-2column-overview .container .right .content h2 {
  font-size: 32px;
  font-weight: 500;
}
.content-2column-overview .container .right .content h3 {
  font-size: 18px;
  font-weight: 500;
}
.content-2column-overview .container .right .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right .content p strong {
  font-weight: 600;
}
.content-2column-overview .container .right .content p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-2column-overview .container .right .content p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-overview .container .right .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right .content p,
.content-2column-overview .container .right .content a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 40px;
}
.content-2column-overview .container .right .content p strong,
.content-2column-overview .container .right .content p b,
.content-2column-overview .container .right .content a strong,
.content-2column-overview .container .right .content a b {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-overview .container .right .content p a,
.content-2column-overview .container .right .content a a {
  text-decoration: underline;
}
.content-2column-overview .container .right .content ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-2column-overview .container .right .content ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.content-2column-overview .container .right .content ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right .content ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right .content ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-overview .container .right .content ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-overview .container .right .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.content-2column-overview .container .right .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.content-2column-overview .container .right .content a {
  color: #DB351F;
  text-decoration: none;
}
.content-2column-overview .container .right .content a:hover {
  color: #A02012;
}
.content-2column-overview .container .right .content h2 {
  font-size: 32px;
  font-weight: 500;
}
.content-2column-overview .container .right .content h3 {
  font-size: 18px;
  font-weight: 500;
}
.content-2column-overview .container .right .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right .content p strong {
  font-weight: 600;
}
.content-2column-overview .container .right .content p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-2column-overview .container .right .content p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-overview .container .right .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-overview .container .right .content > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.content-2column-overview .container .right .content > * b,
.content-2column-overview .container .right .content > * strong {
  font-weight: 700;
  font-size: 18px;
}
.content-2column-overview .container .right .content b,
.content-2column-overview .container .right .content strong {
  font-weight: 700;
}
.content-2column-overview .container .right .content .heavy {
  margin-bottom: 10px;
}
.content-2column-overview .container .right .content em {
  font-style: italic;
}
.content-2column-overview .container .right .content b,
.content-2column-overview .container .right .content strong {
  font-weight: 700;
}
.content-2column-overview .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
}
.content-2column-overview .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-2column-overview .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-2column-overview .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-2column-overview .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-2column-overview .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}

.content-4-column-cards {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background: white;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .content-4-column-cards {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.content-4-column-cards .graphic-bg {
  left: 0;
  top: 0%;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .content-4-column-cards .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content-4-column-cards .block_wrapper .cards {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .content-4-column-cards .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 0px;
  }
}
.content-4-column-cards .block_wrapper .cards .card-c {
  display: flex;
  height: 250px;
  width: 250px;
  padding: 24px;
  align-items: flex-start;
  background-color: white;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  margin-right: 16px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.content-4-column-cards .block_wrapper .cards .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -0.66px;
  width: 100%;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 500px) {
  .content-4-column-cards .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.content-4-column-cards .block_wrapper .cards .card-c:hover .title {
  transform: scale(1.05);
}
@media only screen and (max-width: 992px) {
  .content-4-column-cards .block_wrapper .cards .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    padding: 32px 0px;
  }
  .content-4-column-cards .block_wrapper .cards .card-c:last-child {
    border: none;
  }
}
@media only screen and (max-width: 500px) {
  .content-4-column-cards .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}

.bio-capabilities {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #093C59;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .bio-capabilities {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.bio-capabilities .graphic-bg {
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  left: 28%;
  -o-object-position: left;
     object-position: left;
}
@media only screen and (max-width: 992px) {
  .bio-capabilities .graphic-bg {
    -o-object-position: left;
       object-position: left;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bio-capabilities .container {
  z-index: 1;
  position: relative;
}
.bio-capabilities .block_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 992px) {
  .bio-capabilities .block_wrapper {
    flex-direction: column;
    align-items: start;
  }
}
.bio-capabilities .block_wrapper h4 {
  color: #F9F6F3;
  font-size: 42px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -1.26px;
}
.bio-capabilities .block_wrapper .right {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #093C59;
  padding: 40px;
}
@media only screen and (max-width: 992px) {
  .bio-capabilities .block_wrapper .right {
    max-width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .bio-capabilities .block_wrapper .right {
    text-align: center;
  }
}
.bio-capabilities .block_wrapper .right p {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 119%;
  letter-spacing: -0.66px;
  margin-bottom: 8px;
}
.bio-capabilities .block_wrapper .right .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
}
.bio-capabilities .block_wrapper .right .wrapper > div {
  flex: 1 1 calc(50% - 8px);
}
@media only screen and (max-width: 550px) {
  .bio-capabilities .block_wrapper .right .wrapper > div {
    flex: auto;
    width: 100%;
  }
}
.bio-capabilities .block_wrapper .right .wrapper .column-left,
.bio-capabilities .block_wrapper .right .wrapper .column-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bio-capabilities .block_wrapper .right a {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 132%;
  letter-spacing: normal;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.bio-capabilities .block_wrapper .right a:hover {
  text-decoration: underline;
}

.splash-capabilities {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #093C59;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .splash-capabilities {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.splash-capabilities .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
@media only screen and (max-width: 992px) {
  .splash-capabilities .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.splash-capabilities .container {
  z-index: 1;
  position: relative;
}
.splash-capabilities .block_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 992px) {
  .splash-capabilities .block_wrapper {
    flex-direction: column;
    align-items: start;
  }
}
.splash-capabilities .block_wrapper h4 {
  color: #F9F6F3;
  font-size: 42px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -1.26px;
}
.splash-capabilities .block_wrapper .right {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #093C59;
  padding: 40px;
}
@media only screen and (max-width: 992px) {
  .splash-capabilities .block_wrapper .right {
    max-width: 100%;
  }
}
.splash-capabilities .block_wrapper .right p {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 119%;
  letter-spacing: -0.66px;
  margin-bottom: 8px;
}
.splash-capabilities .block_wrapper .right .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.splash-capabilities .block_wrapper .right .wrapper > div {
  flex: 1 1 calc(50% - 8px);
}
@media only screen and (max-width: 550px) {
  .splash-capabilities .block_wrapper .right .wrapper > div {
    flex: auto;
    width: 100%;
  }
}
.splash-capabilities .block_wrapper .right .wrapper .column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.splash-capabilities .block_wrapper .right a {
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 450;
  line-height: 132%;
  letter-spacing: 1px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.splash-capabilities .block_wrapper .right a:hover {
  text-decoration: underline;
}

.bio-experience {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F9F6F3;
}
@media only screen and (max-width: 992px) {
  .bio-experience {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.bio-experience .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  -o-object-position: left;
     object-position: left;
}
@media only screen and (max-width: 992px) {
  .bio-experience .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bio-experience .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .bio-experience .container {
    flex-direction: column;
    gap: 32px;
    align-items: start;
  }
}
.bio-experience .container .left {
  display: flex;
  gap: 50px;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .bio-experience .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.bio-experience .container .left h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 52px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.56px;
  width: 320px;
}
@media only screen and (max-width: 992px) {
  .bio-experience .container .left h4 {
    max-width: 496px;
    max-width: 100%;
  }
}
.bio-experience .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .bio-experience .container .left .links {
    gap: 16px;
  }
}
.bio-experience .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.bio-experience .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.bio-experience .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.bio-experience .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.bio-experience .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.bio-experience .container .right,
.bio-experience .container .experience {
  position: relative;
  z-index: 1;
  max-width: 715px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .bio-experience .container .right,
  .bio-experience .container .experience {
    max-width: 100%;
  }
}
.bio-experience .container .right .content,
.bio-experience .container .experience .content {
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
}
.bio-experience .container .right .content.toggle-content-e,
.bio-experience .container .experience .content.toggle-content-e {
  display: -webkit-box;
  -webkit-line-clamp: 6;
}
.bio-experience .container .right .content.expanded,
.bio-experience .container .experience .content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 2000px;
}
.bio-experience .container .right .content strong,
.bio-experience .container .right .content b,
.bio-experience .container .experience .content strong,
.bio-experience .container .experience .content b {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.bio-experience .container .right .content p,
.bio-experience .container .right .content a,
.bio-experience .container .experience .content p,
.bio-experience .container .experience .content a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.bio-experience .container .right .content p a,
.bio-experience .container .right .content a a,
.bio-experience .container .experience .content p a,
.bio-experience .container .experience .content a a {
  text-decoration: underline;
}
.bio-experience .container .right .content ul,
.bio-experience .container .experience .content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.bio-experience .container .right .content ul li,
.bio-experience .container .experience .content ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.bio-experience .container .right .content ul li:before,
.bio-experience .container .experience .content ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.bio-experience .container .right .content ul em,
.bio-experience .container .experience .content ul em {
  font-style: italic;
}
.bio-experience .container .right .content em,
.bio-experience .container .experience .content em {
  font-style: italic;
}
.bio-experience .container .right .content strong,
.bio-experience .container .right .content b,
.bio-experience .container .experience .content strong,
.bio-experience .container .experience .content b {
  font-weight: 700;
}
.bio-experience .container .right .content a,
.bio-experience .container .experience .content a {
  padding: 0px;
}
.bio-experience .container .right .link-arrow-right,
.bio-experience .container .experience .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.bio-experience .container .right .link-arrow-right .icon,
.bio-experience .container .experience .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.bio-experience .container .right .link-arrow-right:hover,
.bio-experience .container .experience .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.bio-experience .container .right .link-arrow-right:hover .icon,
.bio-experience .container .experience .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.bio-experience .container .right .link-arrow-right:hover .icon svg path,
.bio-experience .container .experience .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.bio-experience .container .right .link-arrow-right span.minus,
.bio-experience .container .experience .link-arrow-right span.minus {
  line-height: 9px;
}
.bio-experience .additional-experience {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.bio-experience .additional-experience .experience {
  position: relative;
  padding-top: 50px;
  margin-top: 29px;
}
@media only screen and (max-width: 992px) {
  .bio-experience .additional-experience .experience {
    padding-top: 40px;
    margin-top: 40px;
  }
}
.bio-experience .additional-experience .experience:before {
  content: "";
  position: absolute;
  border-top: 1px solid #CECECE;
  right: 0;
  top: 0;
  width: 100%;
  left: 0;
}

.bio-more .history-wrapper {
  background: white;
}
.bio-more .container .history {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 150px 0px;
}
@media only screen and (max-width: 992px) {
  .bio-more .container .history {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-direction: column;
  }
}
.bio-more .container .history .details {
  max-width: 29%;
}
@media only screen and (max-width: 992px) {
  .bio-more .container .history .details {
    max-width: 100%;
    flex: auto;
  }
}
.bio-more .container .history .details b {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.66px;
  margin-bottom: 20px;
  display: block;
}
@media only screen and (max-width: 992px) {
  .bio-more .container .history .details b {
    margin-bottom: 8px;
  }
}
.bio-more .container .history .details b,
.bio-more .container .history .details strong {
  font-weight: 700;
}
.bio-more .container .history .details ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.bio-more .container .history .details ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}
.bio-more .container .history .details ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.bio-more .container .history .details ul li:before {
  content: "";
  position: absolute;
  left: -14px;
  top: 5px;
  transform: translate(-50%);
  height: 10px;
  width: 10px;
  background: #DB351F;
}
.bio-more .container .history .details em,
.bio-more .container .history .details i {
  font-style: italic;
}
.bio-more .container .history .details a {
  color: #231F20;
}
.bio-more .container .history .details div {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 140%;
  letter-spacing: 0.64px;
  margin-bottom: 20px;
}
.bio-more .container .history .details div:last-child {
  margin-bottom: 0;
}
.bio-more .container .history.two-sections {
  justify-content: start;
  gap: 80px;
}
@media only screen and (max-width: 992px) {
  .bio-more .container .history.two-sections {
    gap: 24px;
  }
}
.bio-more .container .hr {
  width: 2px;
  background-color: #CECECE;
}
@media only screen and (max-width: 992px) {
  .bio-more .container .hr {
    width: 100%;
    height: 2px;
  }
}
.bio-more .more {
  z-index: 2;
  position: relative;
}
.bio-more .more:after {
  content: "";
  position: absolute;
  height: 50%;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 50%;
  z-index: -1;
  background: white;
}
.bio-more .more .container {
  background: #294F59;
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .bio-more .more .container {
    flex-direction: column;
    align-items: start;
    padding: 40px 32px;
  }
}
.bio-more .more .container h4 {
  max-width: 372px;
  width: 100%;
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .bio-more .more .container h4 {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.bio-more .more .container .accordion {
  max-width: 676px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .bio-more .more .container .accordion {
    max-width: 100%;
  }
}
.bio-more .more .container .accordion .accordion-item .accordion-header {
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.1s all ease-in;
}
.bio-more .more .container .accordion .accordion-item .accordion-content {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.bio-more .more .container .accordion .accordion-item .accordion-content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 0px;
  margin-left: 14px;
}
.bio-more .more .container .accordion .accordion-item .accordion-content ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}
.bio-more .more .container .accordion .accordion-item .accordion-content ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.bio-more .more .container .accordion .accordion-item .accordion-content ul em {
  font-style: italic;
}
.bio-more .more .container .accordion .accordion-item .accordion-content:has(p) {
  padding: 0;
}
.bio-more .more .container .accordion .accordion-item em {
  font-style: italic;
}
.bio-more .more .container .accordion .accordion-item strong,
.bio-more .more .container .accordion .accordion-item b {
  font-weight: 700;
}
.bio-more .more .container .accordion .accordion-item a {
  padding: 0px;
  color: white;
}
.bio-more .more .container .accordion .accordion-item svg.minus {
  display: none;
}
.bio-more .more .container .accordion .accordion-item.active .accordion-header {
  border-bottom: 0px solid rgba(255, 255, 255, 0.5);
}
.bio-more .more .container .accordion .accordion-item.active .accordion-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  max-height: 2000px;
}
.bio-more .more .container .accordion .accordion-item.active .accordion-content:has(p) {
  margin-top: 0;
  padding-bottom: 32px;
}
.bio-more .more .container .accordion .accordion-item.active svg.plus {
  display: none;
}
.bio-more .more .container .accordion .accordion-item.active svg.minus {
  display: block;
}

.listing-news-and-insights-bio {
  position: relative;
}
.listing-news-and-insights-bio .graphic-bg {
  left: -36%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  height: 1000px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .graphic-bg {
    height: 58%;
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 650px) {
  .listing-news-and-insights-bio .graphic-bg {
    height: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .listing-news-and-insights-bio .graphic-bg {
    top: -5%;
  }
}
.listing-news-and-insights-bio .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-news-and-insights-bio .container .left h4.mobile {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  display: none;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .container .left h4.mobile {
    display: block;
  }
}
.listing-news-and-insights-bio .container .left .content {
  background: white;
  padding: 100px 40px;
  text-align: center;
  max-height: 320px;
  height: 320px;
  max-width: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  gap: 16px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights-bio .container .left .content.tan {
  background: #F9F6F3;
}
.listing-news-and-insights-bio .container .left .content.white {
  background: white;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .container .left .content {
    max-height: 260px;
  }
}
.listing-news-and-insights-bio .container .left .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-align: left;
}
.listing-news-and-insights-bio .container .left .content h5 {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 127%;
  text-align: left;
}
.listing-news-and-insights-bio .container .left .content:hover {
  background: #DB351F !important;
  color: white !important;
}
.listing-news-and-insights-bio .container .left .content:hover p,
.listing-news-and-insights-bio .container .left .content:hover h5 {
  color: white !important;
}
.listing-news-and-insights-bio .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 560px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .container .right {
    max-width: 100%;
    margin-top: 80px;
  }
}
.listing-news-and-insights-bio .container .right h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .listing-news-and-insights-bio .container .right h4 {
    display: none;
  }
}
.listing-news-and-insights-bio .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-news-and-insights-bio .container .right .posts .link {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-news-and-insights-bio .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights-bio .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-news-and-insights-bio .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-news-and-insights-bio .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-news-and-insights-bio .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-news-and-insights-bio .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-news-and-insights-bio .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.splash-featured-achievements {
  position: relative;
  background-color: white;
  z-index: 2;
}
.splash-featured-achievements:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  inset: 0;
  background: #05181D;
  opacity: 0.7;
  background-blend-mode: multiply;
}
.splash-featured-achievements .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.splash-featured-achievements .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 32px;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.splash-featured-achievements .container .left {
  display: flex;
  gap: 50px;
  max-width: 652px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.splash-featured-achievements .container .left h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  max-width: 464px;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container .left h4 {
    max-width: 496px;
    max-width: 100%;
    font-size: 20px;
  }
}
.splash-featured-achievements .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container .left .links {
    gap: 16px;
  }
}
.splash-featured-achievements .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.splash-featured-achievements .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.splash-featured-achievements .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.splash-featured-achievements .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.splash-featured-achievements .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.splash-featured-achievements .container .right {
  max-width: 640px;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container .right {
    max-width: 100%;
  }
}
.splash-featured-achievements .container .right h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
}
.splash-featured-achievements .container .right p {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.splash-featured-achievements .container .right .tags {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .splash-featured-achievements .container .right .tags {
    gap: 16px;
  }
}
.splash-featured-achievements .container .right .tags .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.splash-featured-achievements .container .right .tags .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.splash-featured-achievements .container .right .tags .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.splash-featured-achievements .container .right .tags .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.splash-featured-achievements .container .right .tags .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.splash-featured-achievements .container .right .tags .link-arrow-right path {
  fill: white;
}
.splash-featured-achievements .container .right .tags .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.splash-featured-achievements .container .right .tags .link-arrow-right:hover path {
  fill: white !important;
}

.content-right-card-left {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #F9F6F3;
}
@media only screen and (max-width: 992px) {
  .content-right-card-left {
    overflow: hidden;
  }
}
.content-right-card-left .container {
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.content-right-card-left .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .content-right-card-left .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper {
    flex-direction: column;
  }
}
.content-right-card-left .block_wrapper .content {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper .content {
    width: 100%;
  }
}
.content-right-card-left .block_wrapper .content .bg-graphic {
  position: absolute;
  left: -5%;
  top: 3%;
  width: 106%;
  height: 91%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  z-index: -1;
}
@media only screen and (max-width: 1163px) {
  .content-right-card-left .block_wrapper .content .bg-graphic {
    left: -10%;
  }
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper .content .bg-graphic {
    left: 0;
    top: -29%;
  }
}
.content-right-card-left .block_wrapper .content.two-sections .divider {
  display: block;
}
.content-right-card-left .block_wrapper .content.two-sections .bg-graphic {
  left: -12%;
}
.content-right-card-left .block_wrapper .content .wrapper {
  max-width: 420px;
  width: 100%;
  background: #F9F6F3;
  display: flex;
  gap: 16px;
  flex-direction: column;
  z-index: 3;
  position: relative;
  padding: 60px 50px;
  min-height: 380px;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper .content .wrapper {
    max-width: 100%;
  }
}
.content-right-card-left .block_wrapper .content .wrapper h3.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.content-right-card-left .block_wrapper .content .wrapper .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 250;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-right-card-left .block_wrapper .right {
  display: flex;
  max-width: 560px;
  flex-direction: column;
}
@media only screen and (max-width: 1160px) {
  .content-right-card-left .block_wrapper .right {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper .right {
    max-width: 100%;
  }
}
@media only screen and (max-width: 530px) {
  .content-right-card-left .block_wrapper .right {
    flex-direction: column;
    width: 100%;
  }
}
.content-right-card-left .block_wrapper .right .row:first-of-type {
  padding-bottom: 59px;
}
.content-right-card-left .block_wrapper .right .row:last-of-type {
  padding-top: 59px;
}
@media only screen and (max-width: 992px) {
  .content-right-card-left .block_wrapper .right .row:first-of-type {
    padding-bottom: 24px;
    margin-top: 50px;
  }
  .content-right-card-left .block_wrapper .right .row:last-of-type {
    padding-top: 24px;
  }
}
.content-right-card-left .block_wrapper .right .row .title {
  color: #000;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.content-right-card-left .block_wrapper .right .row .description {
  color: #231F20;
  font-size: 16px;
  font-weight: 350;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  margin-top: 24px;
}
.content-right-card-left .block_wrapper .right .row .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.content-right-card-left .block_wrapper .right .row .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-right-card-left .block_wrapper .right .row .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-right-card-left .block_wrapper .right .row .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-right-card-left .block_wrapper .right .row .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-right-card-left .block_wrapper .right .divider {
  max-width: 137px;
  border-bottom: 1px solid #DB341F;
  height: 1px;
  display: none;
}

.text-highlight-left {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  background: #F9F6F3;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left {
    overflow: hidden;
  }
}
.text-highlight-left .container {
  padding-bottom: 150px;
  position: relative;
  z-index: 2;
  padding-top: 150px;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.text-highlight-left .block_wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media only screen and (max-width: 1160px) {
  .text-highlight-left .block_wrapper {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper {
    flex-direction: column;
  }
}
.text-highlight-left .block_wrapper .content {
  width: 50%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .content {
    width: 100%;
  }
}
.text-highlight-left .block_wrapper .content .bg-graphic {
  position: absolute;
  left: -19%;
  top: -4%;
  width: 106%;
  height: 111%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  z-index: -1;
}
@media only screen and (max-width: 1300px) {
  .text-highlight-left .block_wrapper .content .bg-graphic {
    left: -33%;
  }
}
@media only screen and (max-width: 1163px) {
  .text-highlight-left .block_wrapper .content .bg-graphic {
    left: -46%;
  }
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .content .bg-graphic {
    left: 0;
    top: -42%;
  }
}
.text-highlight-left .block_wrapper .content .wrapper {
  max-width: 420px;
  width: 100%;
  background: #F9F6F3;
  display: flex;
  gap: 16px;
  flex-direction: column;
  z-index: 3;
  position: relative;
  height: 320px;
  width: 350px;
  padding: 50px;
  justify-content: center;
  align-items: center;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .content .wrapper {
    max-width: 100%;
    background: white;
    width: 100%;
  }
}
.text-highlight-left .block_wrapper .content .wrapper h3.title,
.text-highlight-left .block_wrapper .content .wrapper a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
  text-align: center;
  text-decoration: none;
}
.text-highlight-left .block_wrapper .content .wrapper a {
  font-size: 24px;
}
.text-highlight-left .block_wrapper .content .wrapper.has-link:hover {
  background: #DB351F !important;
}
.text-highlight-left .block_wrapper .content .wrapper.has-link:hover a {
  color: white !important;
}
.text-highlight-left .block_wrapper .right {
  display: flex;
  max-width: 560px;
  flex-direction: column;
}
@media only screen and (max-width: 1160px) {
  .text-highlight-left .block_wrapper .right {
    gap: 32px;
  }
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .right {
    max-width: 100%;
  }
}
@media only screen and (max-width: 530px) {
  .text-highlight-left .block_wrapper .right {
    flex-direction: column;
    width: 100%;
  }
}
.text-highlight-left .block_wrapper .right .row:first-of-type {
  padding-bottom: 59px;
}
.text-highlight-left .block_wrapper .right .row:last-of-type {
  padding-top: 59px;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .right .row:first-of-type {
    padding-bottom: 24px;
  }
  .text-highlight-left .block_wrapper .right .row:last-of-type {
    padding-top: 0px;
  }
}
.text-highlight-left .block_wrapper .right .row ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.text-highlight-left .block_wrapper .right .row ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.text-highlight-left .block_wrapper .right .row ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .right .row ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.text-highlight-left .block_wrapper .right .row ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .text-highlight-left .block_wrapper .right .row ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.text-highlight-left .block_wrapper .right .row ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.text-highlight-left .block_wrapper .right .row ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.text-highlight-left .block_wrapper .right .row a {
  color: #DB351F;
  text-decoration: none;
}
.text-highlight-left .block_wrapper .right .row a:hover {
  color: #A02012;
}
.text-highlight-left .block_wrapper .right .row h2 {
  font-size: 32px;
  font-weight: 500;
}
.text-highlight-left .block_wrapper .right .row h3 {
  font-size: 18px;
  font-weight: 500;
}
.text-highlight-left .block_wrapper .right .row p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.text-highlight-left .block_wrapper .right .row p strong {
  font-weight: 600;
}
.text-highlight-left .block_wrapper .right .row p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.text-highlight-left .block_wrapper .right .row p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.text-highlight-left .block_wrapper .right .row em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.text-highlight-left .block_wrapper .right .row p {
  margin-top: 24px;
}
.text-highlight-left .block_wrapper .right .row .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.text-highlight-left .block_wrapper .right .row .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-highlight-left .block_wrapper .right .row .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-highlight-left .block_wrapper .right .row .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-highlight-left .block_wrapper .right .row .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-highlight-left .block_wrapper .right .row h1,
.text-highlight-left .block_wrapper .right .row h2,
.text-highlight-left .block_wrapper .right .row h3,
.text-highlight-left .block_wrapper .right .row h4,
.text-highlight-left .block_wrapper .right .row h5 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.text-highlight-left .block_wrapper .right .divider {
  max-width: 137px;
  border-bottom: 1px solid #DB341F;
  height: 1px;
}

.content-stat-callout-three {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  background: white;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .content-stat-callout-three {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.content-stat-callout-three .graphic-bg {
  left: 0;
  top: 0%;
  position: absolute;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 992px) {
  .content-stat-callout-three .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.content-stat-callout-three .block_wrapper .title {
  margin-bottom: 80px;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .content-stat-callout-three .block_wrapper .title {
    margin-bottom: 30px;
  }
}
.content-stat-callout-three .block_wrapper .cards {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .content-stat-callout-three .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
}
.content-stat-callout-three .block_wrapper .cards.tan .card-c {
  background: #F9F6F3;
}
.content-stat-callout-three .block_wrapper .cards .card-c {
  display: flex;
  height: 260px;
  width: 290px;
  padding: 40px;
  align-items: flex-start;
  background-color: white;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  margin-right: 16px;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .content-stat-callout-three .block_wrapper .cards .card-c {
    width: 100%;
  }
}
.content-stat-callout-three .block_wrapper .cards .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -1.66px;
  width: 100%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 500px) {
  .content-stat-callout-three .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.content-stat-callout-three .block_wrapper .cards .card-c p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 140%;
  height: 42%;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 992px) {
  .content-stat-callout-three .block_wrapper .cards .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    padding: 32px;
  }
  .content-stat-callout-three .block_wrapper .cards .card-c:last-child {
    border: none;
  }
}
@media only screen and (max-width: 500px) {
  .content-stat-callout-three .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}

.content-left-callout-right {
  position: relative;
  background-color: white;
}
.content-left-callout-right.bg-tan {
  background-color: #F9F6F3;
}
.content-left-callout-right .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .content-left-callout-right .container {
    flex-direction: column;
    gap: 62px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.content-left-callout-right .container .left {
  display: flex;
  max-width: 582px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .content-left-callout-right .container .left {
    max-width: 100%;
  }
}
.content-left-callout-right .container .left h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.56px;
  margin-bottom: 16px;
}
.content-left-callout-right .container .left p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.content-left-callout-right .container .left .links {
  margin-top: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.content-left-callout-right .container .left .links .linkedin a i {
  max-width: 17px;
  aspect-ratio: 1/1;
  color: #DB351F;
  transition: 0.2s all ease-in;
}
.content-left-callout-right .container .left .links .linkedin a:hover i {
  color: #231F20;
}
.content-left-callout-right .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.content-left-callout-right .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-left-callout-right .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-left-callout-right .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-left-callout-right .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-left-callout-right .container .right {
  max-width: 332px;
}
@media only screen and (max-width: 992px) {
  .content-left-callout-right .container .right {
    max-width: 100%;
  }
}
.content-left-callout-right .container .right .callout {
  text-align: center;
  padding: 24px 0px;
  border-top: 1px solid #DB341F;
  border-bottom: 1px solid #DB341F;
}
.content-left-callout-right .container .right .callout p.quote {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.96px;
  margin-bottom: 24px;
  padding: 0px;
}
.content-left-callout-right .container .right .callout p.by {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}

.content-press-callout {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .content-press-callout {
    margin-bottom: 40px;
    margin-top: 40px;
  }
}
.content-press-callout .block_wrapper .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 56px;
}
@media only screen and (max-width: 992px) {
  .content-press-callout .block_wrapper .top {
    margin-bottom: 30px;
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.content-press-callout .block_wrapper .top .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -1.14px;
}
.content-press-callout .block_wrapper .top .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
}
.content-press-callout .block_wrapper .top .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-press-callout .block_wrapper .top .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-press-callout .block_wrapper .top .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-press-callout .block_wrapper .top .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-press-callout .block_wrapper .cards {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .content-press-callout .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.content-press-callout .block_wrapper .cards .card-c {
  display: flex;
  min-height: 250px;
  height: auto;
  width: 290px;
  padding: 24px;
  align-items: flex-start;
  background-color: white;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  flex-direction: column;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 750px) {
  .content-press-callout .block_wrapper .cards .card-c {
    width: 100%;
  }
}
.content-press-callout .block_wrapper .cards .card-c:last-of-type {
  margin-right: 0px;
}
.content-press-callout .block_wrapper .cards .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  width: 100%;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 500px) {
  .content-press-callout .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.content-press-callout .block_wrapper .cards .card-c p {
  color: #717171;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-top: 32px;
}
@media only screen and (max-width: 992px) {
  .content-press-callout .block_wrapper .cards .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    padding: 32px;
  }
  .content-press-callout .block_wrapper .cards .card-c:last-child {
    border: none;
  }
}
@media only screen and (max-width: 500px) {
  .content-press-callout .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
  }
}
.content-press-callout .block_wrapper .cards .card-c:hover {
  border-top: 2px solid #DB341F;
}
.content-press-callout .block_wrapper .cards .card-c:hover .title {
  margin-top: -5px;
  margin-bottom: 5px;
}

.content-trusting-advisors-listing {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  z-index: 1;
  background: white;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.content-trusting-advisors-listing .graphic-bg {
  left: 0;
  top: 0%;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  -o-object-position: bottom;
     object-position: bottom;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: contain;
       object-fit: contain;
    left: -185px;
    width: 139%;
  }
}
.content-trusting-advisors-listing .block_wrapper .top {
  display: flex;
  align-items: end;
  justify-content: start;
  margin-bottom: 64px;
  gap: 31px;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .block_wrapper .top {
    margin-bottom: 30px;
    flex-direction: column;
    align-items: start;
    gap: 16px;
  }
}
.content-trusting-advisors-listing .block_wrapper .top .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
}
.content-trusting-advisors-listing .block_wrapper .top p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 350;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.content-trusting-advisors-listing .block_wrapper .content {
  line-height: 1.5rem;
  /* Adjust this to match your design */
  max-height: 11.25rem;
  /* 2 lines worth */
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-bottom: 16px;
}
.content-trusting-advisors-listing .block_wrapper .content ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-trusting-advisors-listing .block_wrapper .content ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.content-trusting-advisors-listing .block_wrapper .content ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .block_wrapper .content ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-trusting-advisors-listing .block_wrapper .content ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .block_wrapper .content ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-trusting-advisors-listing .block_wrapper .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.content-trusting-advisors-listing .block_wrapper .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.content-trusting-advisors-listing .block_wrapper .content a {
  color: #DB351F;
  text-decoration: none;
}
.content-trusting-advisors-listing .block_wrapper .content a:hover {
  color: #A02012;
}
.content-trusting-advisors-listing .block_wrapper .content h2 {
  font-size: 32px;
  font-weight: 500;
}
.content-trusting-advisors-listing .block_wrapper .content h3 {
  font-size: 18px;
  font-weight: 500;
}
.content-trusting-advisors-listing .block_wrapper .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-trusting-advisors-listing .block_wrapper .content p strong {
  font-weight: 600;
}
.content-trusting-advisors-listing .block_wrapper .content p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-trusting-advisors-listing .block_wrapper .content p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-trusting-advisors-listing .block_wrapper .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.content-trusting-advisors-listing .block_wrapper .content > *:first-child {
  margin-top: 0;
}
.content-trusting-advisors-listing .block_wrapper .content > *:last-child {
  margin-bottom: 0;
}
.content-trusting-advisors-listing .block_wrapper .content.expanded {
  max-height: 100% !important;
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-left: 20px;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .block_wrapper .content .four-col-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list .row {
  display: flex;
  min-height: 250px;
  height: auto;
  width: 290px;
  align-items: flex-start;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .content-trusting-advisors-listing .block_wrapper .content .four-col-list .row {
    width: 100%;
  }
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list .row:last-of-type {
  margin-right: 0px;
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list .row ul {
  list-style: disc;
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list .row ul li {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 155%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 500px) {
  .content-trusting-advisors-listing .block_wrapper .content .four-col-list .row {
    max-width: 100%;
    width: 100%;
  }
}
.content-trusting-advisors-listing .block_wrapper .content .four-col-list .row:hover .title {
  text-decoration: underline;
}
.content-trusting-advisors-listing .block_wrapper .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 155%;
  margin-top: 16px;
}
.content-trusting-advisors-listing .block_wrapper .link {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .content-trusting-advisors-listing .block_wrapper .link {
    gap: 16px;
  }
}
.content-trusting-advisors-listing .block_wrapper .link .plus-t {
  margin-top: 2px;
}
.content-trusting-advisors-listing .block_wrapper .link .minus-t {
  margin-bottom: 7px;
}
.content-trusting-advisors-listing .block_wrapper .link .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  align-items: center;
}
.content-trusting-advisors-listing .block_wrapper .link .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-trusting-advisors-listing .block_wrapper .link .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-trusting-advisors-listing .block_wrapper .link .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-trusting-advisors-listing .block_wrapper .link .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.listing-awards-recognition {
  position: relative;
  background-color: #093C59;
  overflow: hidden;
}
.listing-awards-recognition .graphic-bg {
  left: -36%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
  opacity: 20%;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .graphic-bg {
    height: 100%;
    left: -10%;
    top: 0;
  }
}
.listing-awards-recognition .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-awards-recognition .container .left h4.mobile {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  display: none;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .container .left h4.mobile {
    display: block;
    margin-bottom: 0px;
  }
}
.listing-awards-recognition .container .left .content {
  background: #093C59;
  padding: 100px 49px;
  text-align: center;
  max-height: 320px;
  height: 320px;
  max-width: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .container .left .content {
    display: none;
  }
}
.listing-awards-recognition .container .left .content h5 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  text-align: center;
  letter-spacing: -0.96px;
}
.listing-awards-recognition .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 560px;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .container .right {
    max-width: 100%;
    margin-top: 64px;
  }
}
.listing-awards-recognition .container .right h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .listing-awards-recognition .container .right h4 {
    display: none;
  }
}
.listing-awards-recognition .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-awards-recognition .container .right .posts .link {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-awards-recognition .container .right .posts .link .date {
  font-size: 16px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: 127%;
  margin-top: 12px;
}
.listing-awards-recognition .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-awards-recognition .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-awards-recognition .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.listing-awards-recognition .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-awards-recognition .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-awards-recognition .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-awards-recognition .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.listing-awards-recognition .container .right .link-arrow-right path {
  fill: white;
}
.listing-awards-recognition .container .right .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.listing-awards-recognition .container .right .link-arrow-right:hover path {
  fill: white !important;
}

.listing-client-wins {
  position: relative;
  background-color: #093C59;
  overflow: hidden;
  z-index: 1;
}
.listing-client-wins .graphic-bg {
  left: -20%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .listing-client-wins .graphic-bg {
    height: 58%;
    left: 0;
    top: -56px;
  }
}
@media only screen and (max-width: 650px) {
  .listing-client-wins .graphic-bg {
    height: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .listing-client-wins .graphic-bg {
    top: -5%;
  }
}
.listing-client-wins .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-client-wins .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-client-wins .container .left .content {
  background: #093C59;
  padding: 100px 49px;
  text-align: center;
  max-height: 320px;
  height: 320px;
  max-width: 340px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 450px;
  gap: 16px;
}
.listing-client-wins .container .left .content h5 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
}
.listing-client-wins .container .left .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  text-align: left;
  line-height: 1.3;
}
.listing-client-wins .container .left .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-client-wins .container .left .content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-client-wins .container .left .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-client-wins .container .left .content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.listing-client-wins .container .left .content .link-arrow-right path {
  fill: white;
}
.listing-client-wins .container .left .content .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.listing-client-wins .container .left .content .link-arrow-right:hover path {
  fill: white !important;
}
.listing-client-wins .container .right {
  display: flex;
  flex-direction: column;
  gap: 89px;
  max-width: 720px;
}
@media only screen and (max-width: 992px) {
  .listing-client-wins .container .right {
    max-width: 100%;
    margin-top: 40px;
  }
}
.listing-client-wins .container .right .posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media only screen and (max-width: 992px) {
  .listing-client-wins .container .right .posts {
    grid-template-columns: 1fr;
  }
}
.listing-client-wins .container .right .posts .link {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-client-wins .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-client-wins .container .right .posts .link:hover:after {
  width: 100%;
}

.listing-reconnect-and-grow {
  position: relative;
  background-color: #F9F6F3;
}
.listing-reconnect-and-grow .graphic-bg {
  left: -27%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
  max-height: 900px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .listing-reconnect-and-grow .graphic-bg {
    height: 58%;
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 450px) {
  .listing-reconnect-and-grow .graphic-bg {
    top: -5%;
  }
}
.listing-reconnect-and-grow .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-reconnect-and-grow .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-reconnect-and-grow .container .left h4.mobile {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  display: none;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .listing-reconnect-and-grow .container .left h4.mobile {
    display: block;
  }
}
.listing-reconnect-and-grow .container .left .content {
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
  max-height: 380px;
  height: 380px;
  max-width: 400px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.listing-reconnect-and-grow .container .left .content .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  margin-bottom: 8px;
}
.listing-reconnect-and-grow .container .left .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 127%;
  margin-bottom: 8px;
}
.listing-reconnect-and-grow .container .left .content .datelocation {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  display: flex;
  gap: 5px;
  margin-bottom: 24px;
}
.listing-reconnect-and-grow .container .left .content .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-reconnect-and-grow .container .left .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-reconnect-and-grow .container .left .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-reconnect-and-grow .container .left .content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-reconnect-and-grow .container .left .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-reconnect-and-grow .container .left .content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.listing-reconnect-and-grow .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 560px;
  width: 560px;
}
@media only screen and (max-width: 992px) {
  .listing-reconnect-and-grow .container .right {
    gap: 0;
  }
}
.listing-reconnect-and-grow .container .right h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .listing-reconnect-and-grow .container .right h4 {
    display: none;
  }
}
.listing-reconnect-and-grow .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-reconnect-and-grow .container .right .posts .link {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-reconnect-and-grow .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-reconnect-and-grow .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-reconnect-and-grow .container .right .posts .link .datelocation {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  display: flex;
  gap: 5px;
  margin-top: 12px;
}
.listing-reconnect-and-grow .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-reconnect-and-grow .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-reconnect-and-grow .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-reconnect-and-grow .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-reconnect-and-grow .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.listing-work-on-groundbreaking-matters {
  position: relative;
  background-color: #F9F6F3;
  overflow: hidden;
}
.listing-work-on-groundbreaking-matters .graphic-bg {
  left: -27%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
  opacity: 0.4;
}
@media only screen and (max-width: 992px) {
  .listing-work-on-groundbreaking-matters .graphic-bg {
    height: 58%;
    left: 0;
    top: 0;
  }
}
@media only screen and (max-width: 650px) {
  .listing-work-on-groundbreaking-matters .graphic-bg {
    height: 60%;
  }
}
@media only screen and (max-width: 450px) {
  .listing-work-on-groundbreaking-matters .graphic-bg {
    top: -5%;
  }
}
.listing-work-on-groundbreaking-matters .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-work-on-groundbreaking-matters .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-work-on-groundbreaking-matters .container .left .content {
  text-align: center;
  width: 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
@media only screen and (max-width: 992px) {
  .listing-work-on-groundbreaking-matters .container .left .content {
    width: 100%;
  }
}
.listing-work-on-groundbreaking-matters .container .left .content .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 127%;
  margin-bottom: 11px;
  text-transform: uppercase;
}
.listing-work-on-groundbreaking-matters .container .left .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 38px;
  font-weight: 600;
  line-height: 116%;
  margin-bottom: 11px;
  letter-spacing: -1.14px;
}
.listing-work-on-groundbreaking-matters .container .left .content .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-work-on-groundbreaking-matters .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 560px;
  width: 560px;
}
@media only screen and (max-width: 992px) {
  .listing-work-on-groundbreaking-matters .container .right {
    max-width: 100%;
    margin-top: 40px;
  }
}
.listing-work-on-groundbreaking-matters .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link {
  text-decoration: none;
  position: relative;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link p.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  margin-bottom: 12px;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link p.description {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  margin: 0;
  position: relative;
  cursor: auto;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-work-on-groundbreaking-matters .container .right .posts .link .datelocation {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin: 0;
  position: relative;
  display: flex;
  gap: 5px;
  margin-top: 12px;
}
.listing-work-on-groundbreaking-matters .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-work-on-groundbreaking-matters .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-work-on-groundbreaking-matters .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-work-on-groundbreaking-matters .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-work-on-groundbreaking-matters .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}

.listing-ground-breaking-legal-results {
  position: relative;
  background-color: #F9F6F3;
  overflow: hidden;
}
.listing-ground-breaking-legal-results .graphic-bg {
  left: -33%;
  top: -100px;
  position: absolute;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .listing-ground-breaking-legal-results .graphic-bg {
    height: 58%;
    left: 0;
    top: -56px;
  }
}
@media only screen and (max-width: 650px) {
  .listing-ground-breaking-legal-results .graphic-bg {
    height: 50%;
  }
}
@media only screen and (max-width: 450px) {
  .listing-ground-breaking-legal-results .graphic-bg {
    top: -5%;
  }
}
.listing-ground-breaking-legal-results .container {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: start;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-ground-breaking-legal-results .container {
    flex-direction: column;
    gap: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.listing-ground-breaking-legal-results .container .left .content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 420px;
  gap: 16px;
  margin: 40px 0px;
}
@media only screen and (max-width: 992px) {
  .listing-ground-breaking-legal-results .container .left .content {
    width: 100%;
  }
}
.listing-ground-breaking-legal-results .container .left .content .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
}
.listing-ground-breaking-legal-results .container .left .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
.listing-ground-breaking-legal-results .container .left .content .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-ground-breaking-legal-results .container .left .content .links {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 35px;
}
.listing-ground-breaking-legal-results .container .left .content .links a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s all ease-in;
}
.listing-ground-breaking-legal-results .container .left .content .links a:hover {
  font-weight: 500;
  gap: 8px;
}
.listing-ground-breaking-legal-results .container .left .content .links a.active {
  font-weight: 500;
  gap: 8px;
}
.listing-ground-breaking-legal-results .container .right {
  display: flex;
  flex-direction: column;
  gap: 89px;
  max-width: 720px;
}
@media only screen and (max-width: 992px) {
  .listing-ground-breaking-legal-results .container .right {
    max-width: 100%;
    margin-top: 40px;
  }
}
.listing-ground-breaking-legal-results .container .right .posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media only screen and (max-width: 992px) {
  .listing-ground-breaking-legal-results .container .right .posts {
    grid-template-columns: 1fr;
  }
}
.listing-ground-breaking-legal-results .container .right .posts .link {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-ground-breaking-legal-results .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.listing-ground-breaking-legal-results .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-ground-breaking-legal-results .container .right .posts .link p.tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.listing-news-insights-cta {
  position: relative;
  background-color: #F9F6F3;
  overflow: hidden;
  margin-top: 150px;
  margin-bottom: 150px;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.listing-news-insights-cta .wrapper {
  max-width: 1304px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}
.listing-news-insights-cta .wrapper h4 {
  margin-bottom: 64px;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.listing-news-insights-cta .container {
  display: flex;
  justify-content: space-between;
  align-items: start;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta .container {
    flex-direction: column;
    gap: 32px;
    align-items: start;
  }
}
.listing-news-insights-cta .container .left .content {
  height: 440px;
  min-width: 380px;
  max-width: 480px;
  min-height: 348.333px;
  max-height: 440px;
}
@media only screen and (max-width: 600px) {
  .listing-news-insights-cta .container .left .content {
    min-width: auto;
    aspect-ratio: 1/1;
    height: auto;
    min-height: auto;
  }
}
.listing-news-insights-cta .container .left .content .image-wrapper {
  position: relative;
  max-width: 482px;
  width: 100%;
  height: 100%;
  display: block;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta .container .left .content .image-wrapper {
    max-width: 100%;
  }
}
.listing-news-insights-cta .container .left .content .image-wrapper:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #0A0A0A 100%);
  left: 0;
  top: 0;
}
.listing-news-insights-cta .container .left .content .image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  align-self: stretch;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta .container .left .content .image-wrapper img {
    max-width: 100%;
    aspect-ratio: 1/1;
  }
}
.listing-news-insights-cta .container .left .content .image-wrapper .image-text {
  position: absolute;
  bottom: 0;
  padding: 32px 20px;
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 127%;
  letter-spacing: -0.66px;
  z-index: 1;
  transition: 0.2s all ease-in;
}
.listing-news-insights-cta .container .left .content .image-wrapper .image-text:before {
  content: "";
  height: 24px;
  width: 24px;
  background-color: #DB341F;
  position: absolute;
  top: 0;
}
.listing-news-insights-cta .container .left .content .image-wrapper:hover .image-text {
  text-decoration: underline;
}
.listing-news-insights-cta .container .right {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 580px;
  width: 580px;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta .container .right {
    max-width: 100%;
    margin-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  .listing-news-insights-cta .container .right {
    margin-top: 40px;
  }
}
.listing-news-insights-cta .container .right h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .listing-news-insights-cta .container .right h4 {
    display: none;
  }
}
.listing-news-insights-cta .container .right .posts {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.listing-news-insights-cta .container .right .posts .link {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
}
.listing-news-insights-cta .container .right .posts .link:after {
  content: "";
  position: absolute;
  left: 0;
  top: -12px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 600px) {
  .listing-news-insights-cta .container .right .posts .link:after {
    display: none;
  }
}
.listing-news-insights-cta .container .right .posts .link:hover:after {
  width: 100%;
}
.listing-news-insights-cta .container .right .posts .link .datelocation {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 127%;
  display: flex;
  gap: 5px;
  margin-top: 12px;
}
@media only screen and (max-width: 600px) {
  .listing-news-insights-cta .container .right .posts .link .datelocation {
    flex-direction: column;
  }
  .listing-news-insights-cta .container .right .posts .link .datelocation .hr {
    display: none;
  }
}
.listing-news-insights-cta .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.listing-news-insights-cta .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-news-insights-cta .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-news-insights-cta .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-news-insights-cta .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.listing-news-insights-cta .wrapper-c {
  margin-top: 60px;
  max-width: 1304px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}
.listing-news-insights-cta .wrapper-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  align-items: center;
  height: 24px;
  margin-left: auto;
  margin-right: auto;
  color: #231F20;
}
.listing-news-insights-cta .wrapper-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.listing-news-insights-cta .wrapper-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-news-insights-cta .wrapper-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.listing-news-insights-cta .wrapper-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.listing-news-insights-cta .wrapper-c .link-arrow-right:before {
  content: "";
  height: 24px;
  width: 24px;
  background-color: #DB341F;
  position: absolute;
  top: 0;
  left: -32px;
}

.splash-two-column {
  position: relative;
  background-color: white;
}
.splash-two-column:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  inset: 0;
  opacity: 0.75;
  background-blend-mode: multiply;
  background: #012539;
  background-blend-mode: multiply, normal;
}
.splash-two-column .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .splash-two-column .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.splash-two-column .container {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: start;
  z-index: 1;
  position: relative;
  gap: 32px;
}
@media only screen and (max-width: 992px) {
  .splash-two-column .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.splash-two-column .container .left {
  padding: 20px 0px;
  display: flex;
  gap: 16px;
  max-width: 460px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .splash-two-column .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.splash-two-column .container .left h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
}
.splash-two-column .container .left p {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.splash-two-column .container .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.splash-two-column .container .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.splash-two-column .container .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.splash-two-column .container .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.splash-two-column .container .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.splash-two-column .container .left .link-arrow-right path {
  fill: white;
}
.splash-two-column .container .left .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.splash-two-column .container .left .link-arrow-right:hover path {
  fill: white !important;
}
.splash-two-column .container .vr {
  align-self: stretch;
  width: 1px;
  background: rgba(255, 255, 255, 0.57);
  margin: 0px 24px;
}
@media only screen and (max-width: 992px) {
  .splash-two-column .container .vr {
    margin: 0px;
    height: 1px;
    width: 100%;
  }
}
.splash-two-column .container .right {
  max-width: 460px;
  display: flex;
  gap: 16px;
  flex-direction: column;
  padding: 20px 0px;
}
@media only screen and (max-width: 992px) {
  .splash-two-column .container .right {
    max-width: 100%;
  }
}
.splash-two-column .container .right h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 12px;
}
.splash-two-column .container .right p {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.splash-two-column .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.splash-two-column .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.splash-two-column .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.splash-two-column .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.splash-two-column .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.splash-two-column .container .right .link-arrow-right path {
  fill: white;
}
.splash-two-column .container .right .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.splash-two-column .container .right .link-arrow-right:hover path {
  fill: white !important;
}

.content-2column-splash {
  position: relative;
  background-color: #093C59;
  overflow: hidden;
  align-self: inherit;
  z-index: 1;
}
.content-2column-splash .graphic-bg {
  left: -31%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .content-2column-splash .graphic-bg {
    height: 100%;
    left: -10%;
    top: 0;
  }
}
.content-2column-splash .container-c {
  display: flex;
  justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .content-2column-splash .container-c {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.content-2column-splash .container-c .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  .content-2column-splash .container-c .left {
    align-self: center;
  }
}
.content-2column-splash .container-c .left .content {
  background: #093C59;
  padding: 100px 49px;
  text-align: center;
  max-height: 320px;
  height: 320px;
  max-width: 340px;
  width: 340px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 600px) {
  .content-2column-splash .container-c .left .content {
    padding: 16px;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
  }
}
.content-2column-splash .container-c .left .content h2 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
}
.content-2column-splash .container-c .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.content-2column-splash .container-c .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-2column-splash .container-c .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-2column-splash .container-c .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-2column-splash .container-c .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-2column-splash .container-c .left .link-arrow-right path {
  fill: white;
}
.content-2column-splash .container-c .left .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.content-2column-splash .container-c .left .link-arrow-right:hover path {
  fill: white !important;
}
.content-2column-splash .container-c .right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 560px;
}
.content-2column-splash .container-c .right ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.content-2column-splash .container-c .right ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.content-2column-splash .container-c .right ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-splash .container-c .right ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-splash .container-c .right ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .content-2column-splash .container-c .right ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.content-2column-splash .container-c .right ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.content-2column-splash .container-c .right ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.content-2column-splash .container-c .right a {
  color: #DB351F;
  text-decoration: none;
}
.content-2column-splash .container-c .right a:hover {
  color: #A02012;
}
.content-2column-splash .container-c .right h2 {
  font-size: 32px;
  font-weight: 500;
}
.content-2column-splash .container-c .right h3 {
  font-size: 18px;
  font-weight: 500;
}
.content-2column-splash .container-c .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.content-2column-splash .container-c .right p strong {
  font-weight: 600;
}
.content-2column-splash .container-c .right p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.content-2column-splash .container-c .right p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.content-2column-splash .container-c .right em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
@media only screen and (max-width: 992px) {
  .content-2column-splash .container-c .right {
    max-width: 100%;
    margin-top: 50px;
  }
}
.content-2column-splash .container-c .right h3 {
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 115%;
  letter-spacing: -0.72px;
  margin-bottom: 12px;
}
.content-2column-splash .container-c .right h2 {
  color: #fff;
  margin-bottom: 12px;
}
.content-2column-splash .container-c .right p,
.content-2column-splash .container-c .right ul li,
.content-2column-splash .container-c .right ol li {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.content-2column-splash .container-c .right p {
  margin: 12px 0;
}
.content-2column-splash .container-c .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
}
.content-2column-splash .container-c .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.content-2column-splash .container-c .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.content-2column-splash .container-c .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.content-2column-splash .container-c .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.content-2column-splash .container-c .right .link-arrow-right path {
  fill: white;
}
.content-2column-splash .container-c .right .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.content-2column-splash .container-c .right .link-arrow-right:hover path {
  fill: white !important;
}

.text-image {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 2;
}
.text-image .content-wrap {
  background: #093C59;
  height: 100%;
  width: 63%;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .text-image .content-wrap {
    width: auto;
  }
}
@media only screen and (max-width: 600px) {
  .text-image .content-wrap {
    padding: 30px 20px;
  }
}
.text-image .content-wrap .tabs .buttons {
  position: absolute;
  top: -45px;
  display: flex;
  width: 100%;
  left: 0;
  gap: 8px;
}
.text-image .content-wrap .tabs .buttons button {
  border: none;
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.48px;
  padding: 16px;
  background: #0C4B6C;
  text-decoration: none;
  width: 100%;
  border-radius: 4px 4px 0px 0px;
  text-align: center;
  cursor: pointer;
}
.text-image .content-wrap .tabs .buttons button[aria-selected=true] {
  background: #093C59;
}
.text-image .content-wrap .tabs .tabwrap .content {
  display: none;
}
.text-image .content-wrap .tabs .tabwrap .content.active {
  display: block;
}
.text-image .content-wrap .content {
  color: #FFF;
}
.text-image .content-wrap .content ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.text-image .content-wrap .content ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.text-image .content-wrap .content ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .text-image .content-wrap .content ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.text-image .content-wrap .content ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .text-image .content-wrap .content ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.text-image .content-wrap .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.text-image .content-wrap .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.text-image .content-wrap .content a {
  color: #DB351F;
  text-decoration: none;
}
.text-image .content-wrap .content a:hover {
  color: #A02012;
}
.text-image .content-wrap .content h2 {
  font-size: 32px;
  font-weight: 500;
}
.text-image .content-wrap .content h3 {
  font-size: 18px;
  font-weight: 500;
}
.text-image .content-wrap .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.text-image .content-wrap .content p strong {
  font-weight: 600;
}
.text-image .content-wrap .content p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.text-image .content-wrap .content p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.text-image .content-wrap .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.text-image .content-wrap .content .tag {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 127%;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
  display: block;
}
.text-image .content-wrap .content h2 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
  margin-bottom: 4px;
}
.text-image .content-wrap .content p,
.text-image .content-wrap .content ul,
.text-image .content-wrap .content ol,
.text-image .content-wrap .content ul li,
.text-image .content-wrap .content ol li {
  color: #FFF;
}
.text-image .content-wrap .content .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.text-image .content-wrap .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 24px;
}
.text-image .content-wrap .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image .content-wrap .content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image .content-wrap .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image .content-wrap .content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-image .content-wrap .content .link-arrow-right path {
  fill: white;
}
.text-image .content-wrap .content .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image .content-wrap .content .link-arrow-right:hover path {
  fill: white !important;
}
.text-image .image-wrap {
  position: absolute;
  width: calc((100% - 64px) * 0.37 + 32px);
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .text-image .image-wrap {
    padding: 0px;
    position: relative;
    width: 100%;
  }
}
.text-image .image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
@media only screen and (max-width: 992px) {
  .text-image .image-wrap img {
    max-height: 340px;
  }
}
.text-image .image-wrap .video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.text-image .image-wrap .video:after {
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -50px;
  margin-left: -50px;
  background-image: url(../../app/assets/images/svg-icons/play.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.text-image .image-wrap .video-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .text-image .image-wrap .video-container {
    max-height: 340px;
  }
}
.text-image .image-wrap .overlay {
  position: absolute;
  bottom: 40px;
  padding: 70px 35px;
  padding-bottom: 35px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
@media only screen and (max-width: 992px) {
  .text-image .image-wrap .overlay {
    bottom: 40px;
  }
}
.text-image .image-wrap .overlay h3 {
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 122%;
  letter-spacing: -0.6px;
  position: relative;
}
.text-image .image-wrap .overlay h3:after {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.text-image .image-wrap .overlay .links {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .text-image .image-wrap .overlay .links {
    gap: 16px;
  }
}
.text-image .image-wrap .overlay .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 0px;
}
.text-image .image-wrap .overlay .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image .image-wrap .overlay .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image .image-wrap .overlay .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image .image-wrap .overlay .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-image .image-wrap .overlay .links .link-arrow-right path {
  fill: white;
}
.text-image .image-wrap .overlay .links .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image .image-wrap .overlay .links .link-arrow-right:hover path {
  fill: white !important;
}
.text-image .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-image .container {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
  }
}
.text-image.under .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-image.under .content-wrap {
  max-width: 620px;
  width: 100%;
  margin-top: 57px;
  margin-bottom: 57px;
}
.text-image.under .content-wrap .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-image.under .image-wrap {
  max-width: 813px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .text-image.under .image-wrap {
    position: absolute;
  }
  .text-image.under .image-wrap img {
    max-height: unset;
  }
}
.text-image.has-tabs .content-wrap {
  position: relative;
}
.text-image.has-tabs .content-wrap.has-tab-buttons .content-wrap {
  margin-top: 45px;
}
.text-image.boxed .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.text-image.boxed .content-wrap {
  margin-top: 57px;
  margin-bottom: 57px;
  width: 50%;
  padding: 100px 56px;
  min-height: 360px;
}
@media only screen and (max-width: 992px) {
  .text-image.boxed .content-wrap {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.text-image.boxed .content-wrap .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-image.boxed .content-wrap .content h2 {
  font-size: 38px;
}
.text-image.boxed .image-wrap {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .text-image.boxed .image-wrap {
    width: 100%;
  }
}
.text-image.left .container {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 992px) {
  .text-image.left .container {
    flex-direction: column;
  }
}
.text-image.left .image-wrap {
  right: auto;
  left: 0;
}

.text-image-text-left-image-right {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-image-text-left-image-right .right-image {
  position: absolute;
  width: 100%;
  max-width: 813px;
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right .right-image {
    max-width: 100%;
    padding: 0px;
  }
}
.text-image-text-left-image-right .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right .container {
    align-items: center;
    justify-content: center;
  }
}
.text-image-text-left-image-right .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 620px;
  width: 620px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-top: 57px;
  margin-bottom: 57px;
}
@media only screen and (max-width: 600px) {
  .text-image-text-left-image-right .container .left {
    padding: 30px 20px;
  }
}
.text-image-text-left-image-right .container .left .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-image-text-left-image-right .container .left .content .tag {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 127%;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
}
.text-image-text-left-image-right .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
  margin-bottom: 4px;
}
.text-image-text-left-image-right .container .left .content .description {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}
.text-image-text-left-image-right .container .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 24px;
}
.text-image-text-left-image-right .container .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image-text-left-image-right .container .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image-text-left-image-right .container .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image-text-left-image-right .container .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-image-text-left-image-right .container .left .link-arrow-right path {
  fill: white;
}
.text-image-text-left-image-right .container .left .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image-text-left-image-right .container .left .link-arrow-right:hover path {
  fill: white !important;
}

.text-image-tabbing-text-left {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .text-image-tabbing-text-left {
    margin-bottom: 0px;
  }
}
.text-image-tabbing-text-left .right-image {
  position: absolute;
  width: 100%;
  max-width: 813px;
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.text-image-tabbing-text-left .right-image.active {
  display: block;
}
@media only screen and (max-width: 992px) {
  .text-image-tabbing-text-left .right-image {
    max-width: 100%;
    padding: 0px;
  }
}
.text-image-tabbing-text-left .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-image-tabbing-text-left .container {
    align-items: center;
    justify-content: center;
  }
}
.text-image-tabbing-text-left .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 620px;
  width: 620px;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-top: 57px;
  margin-bottom: 57px;
  position: relative;
  margin-top: 104px;
}
@media only screen and (max-width: 600px) {
  .text-image-tabbing-text-left .container .left {
    padding: 30px 20px;
  }
}
.text-image-tabbing-text-left .container .left .tabs {
  position: absolute;
  top: -45px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  left: 0;
  gap: 8px;
}
.text-image-tabbing-text-left .container .left .tabs a {
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.48px;
  padding: 16px;
  background: #0C4B6C;
  text-decoration: none;
  width: 33%;
  border-radius: 4px 4px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.text-image-tabbing-text-left .container .left .tabs a.active {
  background: #093C59;
}
.text-image-tabbing-text-left .container .left .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
  display: none;
}
.text-image-tabbing-text-left .container .left .content.active {
  display: block;
}
.text-image-tabbing-text-left .container .left .content .tag {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 16px;
}
.text-image-tabbing-text-left .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}
.text-image-tabbing-text-left .container .left .content p.description {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}
.text-image-tabbing-text-left .container .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 24px;
}
.text-image-tabbing-text-left .container .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image-tabbing-text-left .container .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image-tabbing-text-left .container .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image-tabbing-text-left .container .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-image-tabbing-text-left .container .left .link-arrow-right path {
  fill: white;
}
.text-image-tabbing-text-left .container .left .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image-tabbing-text-left .container .left .link-arrow-right:hover path {
  fill: white !important;
}

.text-image-text-left-image-right-content {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-image-text-left-image-right-content .right-image {
  position: absolute;
  width: 100%;
  max-width: 500px;
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-content .right-image {
    max-width: 100%;
    padding: 0px;
  }
}
.text-image-text-left-image-right-content .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-content .container {
    align-items: center;
    justify-content: center;
  }
}
.text-image-text-left-image-right-content .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 780px;
  width: 780px;
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-top: -57px;
  margin-bottom: -57px;
}
@media only screen and (max-width: 600px) {
  .text-image-text-left-image-right-content .container .left {
    padding: 30px 20px;
  }
}
.text-image-text-left-image-right-content .container .left .content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.text-image-text-left-image-right-content .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  letter-spacing: -0.96px;
  margin-bottom: 34px;
}
.text-image-text-left-image-right-content .container .left .content ul {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.text-image-text-left-image-right-content .container .left .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  color: white;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
}
.text-image-text-left-image-right-content .container .left .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.text-image-text-left-image-right-content .container .left .content p {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 24px;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image-text-left-image-right-content .container .left .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-image-text-left-image-right-content .container .left .link-arrow-right path {
  fill: white;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image-text-left-image-right-content .container .left .link-arrow-right:hover path {
  fill: white !important;
}

.text-image-text-left-image-right-boxed {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-image-text-left-image-right-boxed .wrapper {
  position: absolute;
  width: 100%;
  max-width: 652px;
  right: 0;
  z-index: -1;
  height: 100%;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper {
    overflow: hidden;
  }
}
.text-image-text-left-image-right-boxed .wrapper:after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #0A0A0A 100%);
}
@media only screen and (max-width: 1240px) {
  .text-image-text-left-image-right-boxed .wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper {
    position: relative;
    order: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.text-image-text-left-image-right-boxed .wrapper .right-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .right-image {
    max-width: 100%;
    padding: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .text-image-text-left-image-right-boxed .wrapper .right-image {
    aspect-ratio: 1/1;
  }
}
.text-image-text-left-image-right-boxed .wrapper .content {
  position: absolute;
  bottom: 35px;
  z-index: 1;
  left: 35px;
  right: 35px;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .content {
    bottom: 30px;
    left: 20px;
  }
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .content {
    bottom: 30px;
  }
}
.text-image-text-left-image-right-boxed .wrapper .content h4 {
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 122%;
  letter-spacing: -0.6px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .content h4 {
    font-size: 16px;
  }
}
.text-image-text-left-image-right-boxed .wrapper .content h4:after {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .content .tags {
    gap: 16px;
    margin-top: 16px;
  }
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 0px;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right {
    font-size: 14px;
  }
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right path {
  fill: white;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-image-text-left-image-right-boxed .wrapper .content .tags .link-arrow-right:hover path {
  fill: white !important;
}
.text-image-text-left-image-right-boxed .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .container {
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-direction: column;
  }
}
.text-image-text-left-image-right-boxed .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 620px;
  width: 620px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 57px;
  margin-bottom: 57px;
  gap: 16px;
}
@media only screen and (max-width: 1240px) {
  .text-image-text-left-image-right-boxed .container .left {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-image-text-left-image-right-boxed .container .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .text-image-text-left-image-right-boxed .container .left {
    padding: 30px 20px;
  }
}
.text-image-text-left-image-right-boxed .container .left .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-image-text-left-image-right-boxed .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  text-align: left;
  letter-spacing: -1.14px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 600px) {
  .text-image-text-left-image-right-boxed .container .left .content h4 {
    font-size: 32px;
  }
}
.text-image-text-left-image-right-boxed .container .left .content p.description {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}

.text-right-image-left-boxed {
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 40px;
}
.text-right-image-left-boxed:after {
  content: "";
  height: 400px;
  max-height: 50%;
  width: 100%;
  background-color: white;
  position: absolute;
  top: 0;
}
.text-right-image-left-boxed .wrapper {
  position: absolute;
  width: 100%;
  max-width: 652px;
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  z-index: 1;
  left: 0;
}
.text-right-image-left-boxed .wrapper:after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #0A0A0A 100%);
}
@media only screen and (max-width: 1240px) {
  .text-right-image-left-boxed .wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper {
    position: relative;
    order: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.text-right-image-left-boxed .wrapper .right-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper .right-image {
    max-width: 100%;
    padding: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .text-right-image-left-boxed .wrapper .right-image {
    aspect-ratio: 1/1;
  }
}
.text-right-image-left-boxed .wrapper .content {
  position: absolute;
  bottom: 75px;
  left: 35px;
  right: 35px;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper .content {
    bottom: 30px;
    left: 20px;
    right: 15px;
  }
}
.text-right-image-left-boxed .wrapper .content h4 {
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 122%;
  letter-spacing: -0.6px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper .content h4 {
    font-size: 16px;
  }
}
.text-right-image-left-boxed .wrapper .content h4:after {
  content: "";
  position: absolute;
  left: 0;
  top: -24px;
  height: 1px;
  background-color: #DB341F;
  width: 96px;
  transition: 0.2s all ease-in;
}
.text-right-image-left-boxed .wrapper .content .tags {
  display: flex;
  gap: 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper .content .tags {
    gap: 16px;
    margin-top: 16px;
  }
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 0px;
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .wrapper .content .tags .link-arrow-right {
    font-size: 14px;
  }
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right path {
  fill: white;
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-right-image-left-boxed .wrapper .content .tags .link-arrow-right:hover path {
  fill: white !important;
}
.text-right-image-left-boxed .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .container {
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-direction: column;
  }
}
.text-right-image-left-boxed .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 620px;
  width: 620px;
  padding: 100px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 57px;
  margin-bottom: 57px;
  margin-left: auto;
  gap: 16px;
}
@media only screen and (max-width: 1240px) {
  .text-right-image-left-boxed .container .left {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-right-image-left-boxed .container .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .text-right-image-left-boxed .container .left {
    padding: 30px 20px;
  }
}
.text-right-image-left-boxed .container .left .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-right-image-left-boxed .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  text-align: left;
  letter-spacing: -1.14px;
  margin-bottom: 16px;
}
.text-right-image-left-boxed .container .left .content p.description {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 16px;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.text-right-image-left-boxed .container .left .content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.text-right-image-left-boxed .container .left .content .link-arrow-right path {
  fill: white;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.text-right-image-left-boxed .container .left .content .link-arrow-right:hover path {
  fill: white !important;
}

.text-video-text-left-video-right-boxed {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 40px;
}
.text-video-text-left-video-right-boxed .wrapper {
  position: absolute;
  max-width: 760px;
  width: 760px;
  right: 0;
  z-index: -1;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 1;
}
@media only screen and (max-width: 1240px) {
  .text-video-text-left-video-right-boxed .wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-video-text-left-video-right-boxed .wrapper {
    position: relative;
    order: 2;
    width: 100%;
    max-width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.text-video-text-left-video-right-boxed .wrapper .content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  left: -33px;
}
@media only screen and (max-width: 992px) {
  .text-video-text-left-video-right-boxed .wrapper .content {
    position: unset;
    transform: none;
  }
}
.text-video-text-left-video-right-boxed .wrapper .content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.text-video-text-left-video-right-boxed .wrapper .content .vimeo-toggle-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  background: none;
  cursor: pointer;
}
.text-video-text-left-video-right-boxed .wrapper .content .vimeo-toggle-btn .play-icon {
  display: block;
}
.text-video-text-left-video-right-boxed .wrapper .content .vimeo-toggle-btn .pause-icon {
  display: none;
}
.text-video-text-left-video-right-boxed .wrapper .content .vimeo-toggle-btn.playing .play-icon {
  display: none;
}
.text-video-text-left-video-right-boxed .wrapper .content .vimeo-toggle-btn.playing .pause-icon {
  display: none;
}
.text-video-text-left-video-right-boxed .container {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .text-video-text-left-video-right-boxed .container {
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-direction: column;
  }
}
.text-video-text-left-video-right-boxed .container .left {
  background: #093C59;
  text-align: center;
  height: 100%;
  max-width: 480px;
  width: 480px;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 57px;
  margin-bottom: 57px;
  gap: 16px;
}
@media only screen and (max-width: 1240px) {
  .text-video-text-left-video-right-boxed .container .left {
    width: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .text-video-text-left-video-right-boxed .container .left {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
@media only screen and (max-width: 600px) {
  .text-video-text-left-video-right-boxed .container .left {
    padding: 30px 20px;
  }
}
.text-video-text-left-video-right-boxed .container .left .content {
  max-width: 426px;
  margin-left: auto;
  margin-right: auto;
}
.text-video-text-left-video-right-boxed .container .left .content h4 {
  color: white;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.78px;
  text-align: left;
  letter-spacing: -1.14px;
  margin-bottom: 16px;
}
.text-video-text-left-video-right-boxed .container .left .content p.description {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  text-align: left;
}

.five-column-splash-horizontal .explore-cards-grid {
  display: flex;
  height: 620px;
}
@media only screen and (max-width: 1200px) {
  .five-column-splash-horizontal .explore-cards-grid {
    flex-direction: column;
  }
}
.five-column-splash-horizontal .explore-cards-grid .card {
  position: relative;
  background-image: var(--bg);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1 0%;
  min-width: 0;
  transition: 0.2s all ease-in;
  cursor: auto;
}
.five-column-splash-horizontal .explore-cards-grid .card .content {
  color: white;
  width: 100%;
  padding: 40px;
  transition: background-color 0.3s ease;
  margin-right: 32px;
}
@media only screen and (max-width: 1200px) {
  .five-column-splash-horizontal .explore-cards-grid .card .content {
    margin-right: 0px;
  }
}
.five-column-splash-horizontal .explore-cards-grid .card .content h3 {
  font-size: 18px;
  margin: 0;
  color: #F9F6F3;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.9px;
  position: relative;
  z-index: 1;
}
.five-column-splash-horizontal .explore-cards-grid .card .content h3:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 400px;
  opacity: 0.5;
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.54);
  z-index: -1;
  filter: blur(32.8499984741px);
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details {
  display: none;
  margin-top: 0;
  height: 0px;
  overflow: hidden;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details p {
  transition: 0.2s all ease-in;
  color: #FFF;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: white;
  margin-top: 32px;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right path {
  fill: white;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right:hover {
  color: white;
  opacity: 0.7;
}
.five-column-splash-horizontal .explore-cards-grid .card .content .details .link-arrow-right:hover path {
  fill: white !important;
}
.five-column-splash-horizontal .explore-cards-grid .card:hover .content {
  background-color: #093C59;
}
.five-column-splash-horizontal .explore-cards-grid .card:hover .content .details {
  display: block;
}
.five-column-splash-horizontal .explore-cards-grid .card {
  flex: 1;
  transition: all 0.4s ease;
  overflow: hidden;
}
.five-column-splash-horizontal .explore-cards-grid .card.expanded {
  flex-grow: 2.5;
}
@media only screen and (max-width: 1200px) {
  .five-column-splash-horizontal .explore-cards-grid .card.expanded {
    flex: 13;
  }
}
.five-column-splash-horizontal .explore-cards-grid .card.expanded h3 {
  text-align: left;
  margin-bottom: 32px;
}
.five-column-splash-horizontal .explore-cards-grid .card.expanded .content {
  position: absolute;
  width: 400px;
}
.five-column-splash-horizontal .explore-cards-grid .card.expanded .details {
  margin-top: 12px;
  height: auto;
}
@media only screen and (max-width: 1200px) {
  .five-column-splash-horizontal .explore-cards-grid .card.shrink {
    flex: 2;
  }
}

.interactive-carousel-featured-story {
  padding-top: 40px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story {
    padding-bottom: 40px;
  }
}
.interactive-carousel-featured-story h4 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story h4 {
    margin-bottom: 20px;
  }
}
.interactive-carousel-featured-story .carousel-top .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.interactive-carousel-featured-story .carousel-top .slide {
  text-decoration: none;
  width: 260px;
}
.interactive-carousel-featured-story .carousel-top .slide .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.47px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story .carousel-top .slide .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.54px;
  margin-top: -1px;
  display: none;
  text-align: center;
}
.interactive-carousel-featured-story .carousel-top .slide img {
  aspect-ratio: 79/71;
  transition: transform 0.4s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
.interactive-carousel-featured-story .wrapper {
  z-index: 1;
  position: relative;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 30px;
  position: relative;
  margin-bottom: 32px;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: #DB351F;
  width: 43%;
  left: 0;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons:after {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  background: red;
  width: 43%;
  right: 0;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons button {
  border: none;
  background-color: none;
  width: 56px;
  height: 56px;
  padding: 0px 12.285px 0px 12.286px;
  background-color: #DB341F;
  cursor: pointer;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons button svg {
  max-width: 18.429px;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons button svg path {
  fill: white;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons button:hover {
  background-color: #A02012;
}
.interactive-carousel-featured-story .wrapper .custom-nav-buttons button:hover svg {
  max-width: 20px;
  transform: scale(1.1);
}
.interactive-carousel-featured-story .carousel-bottom {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}
.interactive-carousel-featured-story .carousel-bottom .slide p.name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -0.84px;
  text-align: center;
}
.interactive-carousel-featured-story .carousel-bottom .slide .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story .carousel-bottom .slide .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.interactive-carousel-featured-story .carousel-bottom .slide .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.interactive-carousel-featured-story .carousel-bottom .slide .content {
  max-width: 716px;
  margin: 32px auto;
  margin-bottom: 0px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  text-align: center;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story .carousel-bottom .slide .content ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story .carousel-bottom .slide .content ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content a {
  color: #DB351F;
  text-decoration: none;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content a:hover {
  color: #A02012;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content h2 {
  font-size: 32px;
  font-weight: 500;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content h3 {
  font-size: 18px;
  font-weight: 500;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content p strong {
  font-weight: 600;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content b,
.interactive-carousel-featured-story .carousel-bottom .slide .content strong {
  font-weight: 500;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content em,
.interactive-carousel-featured-story .carousel-bottom .slide .content i {
  font-style: italic;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content a {
  color: #DB351F;
  text-decoration: none;
}
.interactive-carousel-featured-story .carousel-bottom .slide .content a:hover {
  color: #A02012;
}
.interactive-carousel-featured-story .custom-hr {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  height: 1px;
  background: #DB351F;
  margin-top: 40px;
}
.interactive-carousel-featured-story .owl-item.active.center .slide {
  width: 400px;
}
.interactive-carousel-featured-story .owl-item.active.center .slide .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.6px;
  margin-top: 20px;
}
.interactive-carousel-featured-story .owl-item.active.center .slide .title {
  display: block;
}
.interactive-carousel-featured-story.variationtwo {
  padding-top: 105px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story.variationtwo {
    padding-top: 40px;
  }
}
.interactive-carousel-featured-story.variationtwo .content-v {
  z-index: 2;
  position: relative;
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story.variationtwo .content-v {
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
.interactive-carousel-featured-story.variationtwo .content-v .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
.interactive-carousel-featured-story.variationtwo .content-v .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story.variationtwo .content-v .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story.variationtwo .content-v .main h2.tag span {
  margin-left: 20px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * strong,
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * b {
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * p,
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * p em,
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * a em {
  font-size: 20px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * p a,
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * a a {
  text-decoration: underline;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * ul em {
  font-style: italic;
}
.interactive-carousel-featured-story.variationtwo .content-v .main .text > * em {
  font-style: italic;
}
.interactive-carousel-featured-story.variationtwo .content-v .right {
  max-width: 480px;
  width: 100%;
  margin-top: 48px;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story.variationtwo .content-v .right {
    max-width: 100%;
    margin-top: 0px;
  }
}
.interactive-carousel-featured-story.variationtwo .content-v .right p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.interactive-carousel-featured-story.variationtwo .content-v .right p b,
.interactive-carousel-featured-story.variationtwo .content-v .right p strong {
  font-weight: 600;
}
.interactive-carousel-featured-story.variationtwo .content-v .right b,
.interactive-carousel-featured-story.variationtwo .content-v .right strong {
  font-weight: 600;
}
.interactive-carousel-featured-story.variationtwo .content-v .right .link-arrow-right {
  margin-top: 24px;
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.interactive-carousel-featured-story.variationtwo .content-v .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.interactive-carousel-featured-story.variationtwo .content-v .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.interactive-carousel-featured-story.variationtwo .content-v .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.interactive-carousel-featured-story.variationtwo .content-v .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.interactive-carousel-featured-story.variationtwo .carousel-top {
  padding-top: 100px;
}
.interactive-carousel-featured-story.variationtwo .group {
  position: relative;
  padding-top: 50px;
}
.interactive-carousel-featured-story.variationtwo .group::after {
  content: "";
  position: absolute;
  background-size: cover;
  left: -10%;
  right: -10%;
  top: 0;
  bottom: 0;
  background-position: center 12%;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom {
  max-width: 1304px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .slide p.name {
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content {
  max-width: 100%;
  display: flex;
  gap: 130px;
  margin-top: 100px;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .interactive-carousel-featured-story.variationtwo .carousel-bottom .content {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content .main .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 93%;
  /* 24.18px */
  letter-spacing: -0.78px;
  margin-bottom: 10px;
  text-align: left;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content .main .title {
  color: #231F20;
  text-align: left;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  /* 24.64px */
  letter-spacing: 0.32px;
  margin-top: -3px;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content .text {
  max-width: 691px;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content .text > * {
  text-align: left;
  margin-bottom: 16px;
}
.interactive-carousel-featured-story.variationtwo .carousel-bottom .content .text .link-arrow-right {
  text-align: left;
  margin-left: 0;
}

.archive-lawyer {
  position: relative;
  margin-top: 64px;
  margin-bottom: 10px;
  z-index: 1;
}
@media only screen and (max-width: 555px) {
  .archive-lawyer {
    margin: 0px;
  }
}
.archive-lawyer .bg-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150%;
  top: -50px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -70px;
}
.archive-lawyer .block_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 408px;
  padding: 32px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: #F9F6F3;
}
@media only screen and (max-width: 555px) {
  .archive-lawyer .block_wrapper {
    margin: 0px;
    border-radius: 16px;
  }
}
.archive-lawyer .block_wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.archive-lawyer .block_wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.archive-lawyer .block_wrapper h2.tag span {
  margin-left: 20px;
}
.archive-lawyer .block_wrapper h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  margin-bottom: 14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.archive-lawyer .block_wrapper p {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.archive-lawyer .block_wrapper .search {
  width: 100%;
}
.archive-lawyer .block_wrapper .search fieldset {
  margin-bottom: 0px;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet .wpgb-clear-button {
  display: none;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet input.wpgb-input {
  width: 100%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 48px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-indent: 0px;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet input.wpgb-input::-moz-placeholder {
  font-size: inherit;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet input.wpgb-input::placeholder {
  font-size: inherit;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet svg {
  pointer-events: all;
  left: unset;
  right: 0;
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
  top: 0;
  stroke: white;
  height: 20px;
  width: 19px;
}
.archive-lawyer .block_wrapper .search .archive-lawyer-facet-search .wpgb-search-facet svg path {
  cursor: pointer;
}
.archive-lawyer .filter-by-letter {
  text-align: center;
  margin-top: 32px;
}
@media only screen and (max-width: 555px) {
  .archive-lawyer .filter-by-letter {
    display: none;
  }
}
.archive-lawyer .filter-by-letter fieldset {
  margin-bottom: 0px !important;
}
.archive-lawyer .filter-by-letter div {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-left: 32px;
  padding-right: 32px;
  flex-wrap: wrap;
}
.archive-lawyer .filter-by-letter div a {
  color: #231F20;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.archive-lawyer .filter-by-letter div a:hover {
  color: #DB341F;
}
.archive-lawyer .filter-by-letter div a.active {
  color: #DB341F;
}
.archive-lawyer .archive-lawyer-facet-search-filter .wpgb-az-index-facet {
  padding: 0px;
}
.archive-lawyer .archive-lawyer-facet-search-filter .wpgb-az-index-facet .wpgb-az-index {
  padding: 0px;
}
.archive-lawyer .archive-lawyer-facet-search-filter .wpgb-az-index-facet .wpgb-az-index .wpgb-az-index-label {
  color: #231F20;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  text-decoration: none;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.archive-lawyer .archive-lawyer-facet-search-filter .wpgb-az-index-facet .wpgb-az-index .wpgb-az-index-label:hover {
  color: #DB341F;
}
.archive-lawyer .archive-lawyer-facet-search-filter .wpgb-az-index-facet .wpgb-az-index .wpgb-az-index-label.active {
  color: #DB341F;
}

.lawyer-filter-wrapper {
  z-index: 1;
  position: relative;
  padding: 0px 24px;
}
.lawyer-filter-wrapper .wpgb-facet-title {
  display: none;
}
.lawyer-filter-wrapper input {
  overflow: hidden;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 24px !important;
  letter-spacing: 0.48px;
}
.lawyer-filter-wrapper input ::-moz-placeholder {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  letter-spacing: 0.48px;
}
.lawyer-filter-wrapper input ::placeholder {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
  letter-spacing: 0.48px;
}
.lawyer-filter-wrapper .filter-toggle {
  display: flex;
  height: 79px;
  padding: 14px;
  align-items: center;
  gap: 16px;
  max-width: 175px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 5px;
  background: #FFF;
  border: none;
  display: flex;
  gap: 16px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 50px;
}
.lawyer-filter-wrapper .filter-toggle span {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
}
.lawyer-filter-wrapper .filter-toggle[aria-expanded=false] svg {
  transform: rotate(180deg);
}
.lawyer-filter-wrapper .filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  transition: max-height 0.4s ease;
  overflow: hidden;
  background: white;
  padding: 40px;
  /* Add this to your existing SCSS file */
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  margin-top: 12px !important;
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.lawyer-filter-wrapper .filter-grid .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 600px) {
  .lawyer-filter-wrapper .filter-grid {
    display: flex;
    flex-direction: column;
  }
}
.lawyer-filter-wrapper .filter-grid.collapsed {
  max-height: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}
.lawyer-filter-wrapper .filter-grid .wpgb-facet h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.lawyer-filter-wrapper .filter-grid .wpgb-facet .wpgb-select-controls svg {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.lawyer-filter-wrapper .filter-grid .wpgb-facet .wpgb-select[aria-expanded=true] .wpgb-select-controls svg {
  transform: rotate(270deg);
}
.lawyer-filter-wrapper .filter-grid .archive-lawyer-reset {
  grid-column: 2;
  justify-self: end;
}
.lawyer-filter-wrapper .filter-grid .archive-lawyer-reset .wpgb-button.wpgb-reset {
  background: none;
  border: none;
  color: #c93c1e;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.lawyer-filter-wrapper .filter-grid .view-all-lawyers {
  display: none;
}
.lawyer-filter-wrapper .filter-grid .view-all-lawyers button {
  border: none;
  width: 196px;
  padding: 0 18px;
  background-color: #DB351F;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s all ease-in;
  margin-bottom: 0px;
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  line-height: 32px;
  font-weight: 450;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.lawyer-filter-wrapper .filter-grid .view-all-lawyers button:hover {
  background-color: #a83224;
}
.lawyer-filter-wrapper .filter-grid fieldset {
  margin-bottom: 0px !important;
}
.lawyer-filter-wrapper .filter-grid fieldset .wpgb-select-controls .wpgb-select-separator {
  display: none;
}
.lawyer-filter-wrapper .filter-grid fieldset .wpgb-select-controls .wpgb-select-toggle svg {
  transform: rotate(0deg);
  stroke: #DB341F;
}
.lawyer-filter-wrapper .filter-grid .archive-lawyer-reset {
  color: #DB341F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
}

.filter-selected .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 62px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .filter-selected .top {
    flex-direction: column;
  }
}
.filter-selected .top .sort {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
  justify-content: end;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .filter-selected .top .sort {
    justify-content: space-between;
  }
}
.filter-selected .top .sort .rearrange {
  display: flex;
  align-items: center;
}
.filter-selected .top .sort .rearrange .buttons {
  display: flex;
}
.filter-selected .top .sort .rearrange .buttons svg {
  padding: 10px;
  cursor: pointer;
}
.filter-selected .top .sort .rearrange .buttons svg rect {
  fill: #9F9F9F;
}
.filter-selected .top .sort .rearrange .buttons svg.active rect {
  fill: #DB341F;
}
.filter-selected .top .sort .rearrange .hr {
  width: 1px;
  height: auto;
  background-color: #808080;
}
.filter-selected .top .archive-selected-filters {
  width: 100%;
}
.filter-selected .top .archive-selected-filters fieldset {
  margin-bottom: 0px;
}
.filter-selected .top .archive-selected-filters fieldset .wpgb-button {
  display: flex;
  padding: 5px;
  padding-right: 10px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  background: #FFF;
  border: none;
  flex-direction: row-reverse;
}
.filter-selected .top .archive-selected-filters fieldset .wpgb-button .wpgb-button-label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.filter-selected .top .archive-selected-filters fieldset .wpgb-button .wpgb-button-control:before, .filter-selected .top .archive-selected-filters fieldset .wpgb-button .wpgb-button-control:after {
  background: #DB341F;
  opacity: 0.5;
}

.wp-grid-builder {
  padding: 0px;
}

.lawyer-results-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}
.lawyer-results-list .lawyer-card {
  padding-top: 0px !important;
  background: #fff;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  text-align: left;
}
.lawyer-results-list .lawyer-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.lawyer-results-list .lawyer-card .lawyer-photo {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
}
.lawyer-results-list .lawyer-card .lawyer-info {
  padding: 1.25rem;
}
.lawyer-results-list .lawyer-card .lawyer-info .bottom {
  margin-top: 24px;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.66px;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-office {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  justify-content: space-between;
  max-width: 77%;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact .lawyer-phone {
  display: flex;
  align-items: center;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact .lawyer-phone .icon {
  font-size: 1.2rem;
  margin-right: 0.35rem;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact .divider {
  color: #999;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact .lawyer-email {
  display: flex;
  align-items: center;
}
.lawyer-results-list .lawyer-card .lawyer-info .lawyer-contact .lawyer-email svg {
  width: 24px;
  height: 24px;
}
.lawyer-results-list .lawyer-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.lawyer-results-list.view-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.lawyer-results-list.view-list img {
  max-width: 86px;
}
.lawyer-results-list.view-list .lawyer-card {
  flex-direction: row;
  padding: 16px 0px;
  border: none;
  background: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.lawyer-results-list.view-list .lawyer-card:hover {
  box-shadow: none;
}
.lawyer-results-list.view-list .lawyer-card .lawyer-info {
  display: flex;
  padding: 0px;
  width: 100%;
  align-items: center;
  margin-left: 32px;
}
@media only screen and (max-width: 750px) {
  .lawyer-results-list.view-list .lawyer-card .lawyer-info {
    flex-direction: column;
    align-items: start;
  }
}
.lawyer-results-list.view-list .lawyer-card .lawyer-info a {
  max-width: 300px;
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .lawyer-results-list.view-list .lawyer-card .lawyer-info a {
    max-width: 200px;
  }
}
.lawyer-results-list.view-list .lawyer-card .lawyer-info .bottom {
  display: flex;
  margin-top: 0px;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 500px) {
  .lawyer-results-list.view-list .lawyer-card .lawyer-info .bottom {
    flex-direction: column;
  }
}
.lawyer-results-list.view-list .lawyer-card .lawyer-info .bottom .lawyer-office {
  max-width: 120px;
  width: 100%;
}
.lawyer-results-list.view-list .lawyer-card .lawyer-info .bottom .lawyer-contact {
  max-width: 100%;
}
@media only screen and (max-width: 500px) {
  .lawyer-results-list.view-list .lawyer-card .lawyer-info .bottom .lawyer-contact {
    justify-content: start;
  }
}

.archive-lawyer-pagination {
  margin-top: 64px !important;
  margin-bottom: 30px;
}

.wpgb-pagination {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
  font-family: inherit;
}
.wpgb-pagination .wpgb-page a,
.wpgb-pagination .wpgb-page span {
  display: inline-block;
  font-size: 1rem;
  color: #666666;
  padding: 4px 8px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.wpgb-pagination .wpgb-page a[aria-current=true],
.wpgb-pagination .wpgb-page span[aria-current=true] {
  color: #c0392b !important;
  font-weight: 500;
}
.wpgb-pagination .wpgb-dots-page {
  color: #999999;
}
.wpgb-pagination .wpgb-page-next,
.wpgb-pagination .wpgb-page-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wpgb-pagination .wpgb-page-next a,
.wpgb-pagination .wpgb-page-prev a {
  border: none;
  background-color: none;
  width: 196px;
  padding: 10px 18px;
  background-color: #DB351F;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s allease-in;
  margin-bottom: 0px;
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.wpgb-pagination .wpgb-page-next a:hover,
.wpgb-pagination .wpgb-page-prev a:hover {
  background-color: #a83224;
}

.wpgb-select {
  border: none !important;
  border-bottom: 1px solid #CECECE !important;
  border-radius: 0px !important;
}

.archive-capability {
  position: relative;
  padding-top: 64px;
  padding-bottom: 64px;
  z-index: 1;
}
@media only screen and (max-width: 555px) {
  .archive-capability {
    padding-bottom: 32px;
    padding-top: 32px;
    margin: 0;
  }
}
.archive-capability .bg-graphic {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive-capability .bg-graphic.beta {
  margin-top: -60px;
  height: 111%;
}
.archive-capability .bg-graphic.delta {
  left: -63px;
  right: -63px;
  width: calc(100% + 67px + 67px);
}
.archive-capability .block_wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 440px;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  background: #F9F6F3;
}
@media only screen and (max-width: 555px) {
  .archive-capability .block_wrapper {
    margin: 0px;
    border-radius: 16px;
    max-width: 100%;
  }
}
.archive-capability .block_wrapper h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  margin-bottom: 16px;
}
.archive-capability .block_wrapper h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.archive-capability .block_wrapper h2.tag span {
  margin-left: 20px;
}
.archive-capability .block_wrapper h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.26px;
  margin-bottom: 14px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.archive-capability .block_wrapper p {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.archive-capability .block_wrapper .capability-search-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin-top: 19px;
}
.archive-capability .block_wrapper .capability-search-container form {
  display: flex;
  width: 100%;
}
.archive-capability .block_wrapper .search-form-wrapper {
  position: relative;
  width: 100%;
  flex-grow: 1;
}
.archive-capability .block_wrapper input {
  width: 100%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 48px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 50px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-indent: 0;
  box-sizing: border-box;
  margin-top: 0;
}
.archive-capability .block_wrapper input::-moz-placeholder {
  color: #231F20;
}
.archive-capability .block_wrapper input::placeholder {
  color: #231F20;
}
.archive-capability .block_wrapper input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.archive-capability .block_wrapper .search-submit-button {
  right: 0;
  top: 0;
  height: 48px;
  width: 48px;
  border: none;
  background: #DB341F;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-capability .block_wrapper .search-submit-button svg {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  cursor: pointer;
  padding: 14px;
  background: #DB341F;
}
.archive-capability .block_wrapper .search-submit-button svg path {
  fill: white;
}
.archive-capability .block_wrapper .clear-filter-link {
  color: #DB341F;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  display: none;
  margin-top: 16px;
}
.archive-capability .block_wrapper .clear-filter-link:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M14.9995%203.49375C14.9864%203.59866%2014.9364%203.69504%2014.859%203.76485C14.7815%203.83465%2014.6819%203.87307%2014.5789%203.87292H14.522L13.2004%203.695C14.149%204.94313%2014.6574%206.48434%2014.6426%208.06712C14.6278%209.64991%2014.0907%2011.1808%2013.1189%2012.4101C12.1471%2013.6393%2010.7981%2014.4943%209.29183%2014.8354C7.7856%2015.1766%206.21115%2014.9839%204.82541%2014.2887C3.43966%2013.5935%202.32443%2012.4368%201.66171%2011.0075C0.998983%209.57821%200.82789%207.96059%201.17635%206.41865C1.52481%204.87671%202.37224%203.50148%203.58037%202.51737C4.78849%201.53326%206.28598%200.998377%207.82847%201C7.94154%201%208.04998%201.0461%208.12994%201.12814C8.20989%201.21019%208.25481%201.32147%208.25481%201.4375C8.25481%201.55354%208.20989%201.66482%208.12994%201.74686C8.04998%201.82891%207.94154%201.875%207.82847%201.875C6.47405%201.87444%205.15971%202.3466%204.10136%203.21392C3.04302%204.08124%202.3036%205.29215%202.00457%206.64772C1.70554%208.0033%201.86468%209.42293%202.45586%2010.6734C3.04703%2011.9239%204.03508%2012.9309%205.2577%2013.529C6.48031%2014.127%207.8648%2014.2806%209.18371%2013.9644C10.5026%2013.6483%2011.6776%2012.8812%2012.5155%2011.7893C13.3534%2010.6973%2013.8045%209.34537%2013.7947%207.95553C13.7848%206.5657%2013.3147%205.22062%2012.4614%204.14125L12.3903%205.83292C12.3852%205.94487%2012.3384%206.05055%2012.2597%206.12816C12.1809%206.20576%2012.076%206.24938%2011.9668%206.25H11.9469C11.8909%206.24814%2011.8358%206.23483%2011.7849%206.21083C11.734%206.18683%2011.6883%206.15263%2011.6504%206.11025C11.6126%206.06786%2011.5833%206.01814%2011.5644%205.96401C11.5456%205.90987%2011.5374%205.85241%2011.5405%205.795L11.6542%203.07959C11.6526%203.07288%2011.6526%203.06588%2011.6542%203.05917C11.6528%203.04462%2011.6528%203.02997%2011.6542%203.01542V2.97167V2.95417C11.6529%202.9484%2011.6529%202.94243%2011.6542%202.93667C11.6615%202.91861%2011.6701%202.90107%2011.6797%202.88417C11.6914%202.86452%2011.7047%202.84598%2011.7195%202.82875C11.7451%202.79834%2011.7748%202.77183%2011.8076%202.75C11.8265%202.73663%2011.8465%202.72492%2011.8673%202.715L11.9242%202.69459H11.9412H11.9896H12.0919L14.5902%203.03584C14.6465%203.03808%2014.7017%203.05174%2014.7528%203.07601C14.8039%203.10029%2014.8498%203.13471%2014.8879%203.17728C14.9259%203.21986%2014.9554%203.26974%2014.9745%203.32406C14.9937%203.37837%2015.0022%203.43605%2014.9995%203.49375Z%22%20fill%3D%22black%22%20stroke%3D%22black%22%20stroke-width%3D%220.2%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.archive-results-capability {
  background: white;
  padding: 80px 0px;
}
.archive-results-capability .results-capability.loading {
  opacity: 0.5;
  transition: opacity 0.2s ease-in-out;
}
.archive-results-capability .results-capability h2 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -1.08px;
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  gap: 23px;
}
.archive-results-capability .results-capability .capability-no-results {
  margin-top: 2rem;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.archive-results-capability .capability-group-practice {
  padding-bottom: 58px;
  border-bottom: 1px solid #D4D4D4;
}
.archive-results-capability .capability-group-practice h2 img {
  width: 57px;
  height: 57px;
}
.archive-results-capability .capability-group-industry {
  margin-top: 58px;
}
.archive-results-capability .capability-group-industry h2 img {
  width: 65px;
  height: 65px;
}

.capability-list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 70px;
       column-gap: 70px;
  row-gap: 24px;
  list-style: none;
  padding: 0;
  align-items: center;
  margin: 0;
}
@media only screen and (max-width: 992px) {
  .capability-list ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .capability-list ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.capability-list ul li {
  margin: 0px;
}
.capability-list ul li a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.capability-list ul li a:hover {
  color: #E24C38;
}
.capability-list ul.mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  .capability-list ul.mobile {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 600px) {
  .capability-list ul.desktop {
    display: none;
  }
}

.contact-location {
  padding-bottom: 180px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .contact-location {
    padding-bottom: 60px;
  }
}
.contact-location .graphic-bg {
  left: unset;
  right: 0;
  top: unset;
  bottom: 5%;
  position: absolute;
  height: 28%;
  width: auto;
  -o-object-position: unset;
     object-position: unset;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .contact-location .graphic-bg {
    height: 10%;
    bottom: 0%;
  }
}
.contact-location .desktop-version {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .contact-location .desktop-version {
    display: none;
  }
}
.contact-location .desktop-version .left-column {
  display: flex;
  row-gap: 170px;
  flex-direction: column;
}
.contact-location .mobile-version {
  display: none;
}
@media only screen and (max-width: 992px) {
  .contact-location .mobile-version {
    display: block;
  }
}
.contact-location .mobile-version .mobile-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-location .office-card {
  max-width: 490px;
}
.contact-location .office-card img {
  aspect-ratio: 49/43;
  max-width: 490px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.contact-location .office-card .office-content h2 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.contact-location .office-card .office-content .contact-info .phone a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 84%;
  text-decoration: none;
}
.contact-location .office-card .office-content .contact-info .phone span {
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.contact-location .office-card .office-content .contact-info .address {
  color: #231F20;
  margin-top: 16px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.contact-location .office-card .office-content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin: 32px 0px;
}
.contact-location .office-card .office-content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.contact-location .office-card .office-content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.contact-location .office-card .office-content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.contact-location .office-card .office-content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.contact-location .office-card .office-content .parking-section {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.contact-location .office-card .office-content .parking-section .parking-title {
  font-weight: bold;
}

.article-main-content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.28px;
  margin-bottom: 32px;
}
.article-main-content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.article-main-content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.article-main-content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.article-main-content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.article-main-content .link-arrow-right svg {
  transform: rotate(180deg);
}
.article-main-content .link-arrow-right .icon {
  margin-left: 0px;
  margin-right: 24px;
}
.article-main-content .link-arrow-right path {
  fill: #231F20;
}
.article-main-content .link-arrow-right:hover {
  color: #DB341F;
  opacity: 0.7;
}
.article-main-content .link-arrow-right:hover .icon {
  margin-left: 0px;
}
.article-main-content .link-arrow-right:hover path {
  fill: #DB341F !important;
}
.article-main-content .block_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 700px) {
  .article-main-content .block_wrapper {
    flex-direction: column;
  }
}
.article-main-content .block_wrapper .left {
  max-width: 740px;
  width: 100%;
}
.article-main-content .block_wrapper .left p {
  margin-bottom: 29px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
}
.article-main-content .block_wrapper .left p b,
.article-main-content .block_wrapper .left p strong {
  font-weight: 600;
}
.article-main-content .block_wrapper .left em {
  font-style: italic;
}
.article-main-content .block_wrapper .left a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  transition: 0.2s all ease-in;
}
.article-main-content .block_wrapper .left a:hover {
  color: #DB351F;
}
.article-main-content .block_wrapper .left ul {
  list-style: disc;
  padding-left: 16px;
}
.article-main-content .block_wrapper .left ol {
  list-style: decimal;
  padding-left: 16px;
}
.article-main-content .block_wrapper .right {
  max-width: 240px;
  width: 100%;
}
.article-main-content .block_wrapper .right ul.capabilities {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-bottom: 40px;
}
.article-main-content .block_wrapper .right ul.capabilities li {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
  font-size: 15px;
}
.article-main-content .block_wrapper .right ul.capabilities li:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.article-main-content .block_wrapper .right ul.capabilities li span {
  margin-left: 20px;
}
.article-main-content .block_wrapper .right ul.capabilities li:after {
  top: 11px;
}
.article-main-content .block_wrapper .right ul.capabilities li a {
  text-decoration: none;
  color: #231F20;
}
.article-main-content .block_wrapper .right ul.capabilities li a:hover {
  text-decoration: underline;
}
.article-main-content .block_wrapper .right p.related-lawters {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
  margin-top: 0px;
  margin-bottom: 16px;
}
.article-main-content .block_wrapper .right ul.lawyer {
  margin-bottom: 40px;
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.article-main-content .block_wrapper .right ul.lawyer li a {
  color: #DB341F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.48px;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.article-main-content .block_wrapper .right ul.lawyer li a:hover {
  color: #231F20;
}

.news-container {
  margin-bottom: 80px;
}

.archive-achievement {
  z-index: 1;
  position: relative;
}
.archive-achievement .block-wrapper {
  background-color: white;
  padding: 40px;
}
.archive-achievement .block-wrapper::after {
  content: "";
  position: absolute;
  left: -100%;
  right: -100%;
  top: 50%;
  bottom: 0;
  background: #093C59;
  z-index: -1;
}
.archive-achievement.has-results .block-wrapper::after {
  display: none;
}
.archive-achievement .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
}
.archive-achievement .filters-area {
  display: flex;
  flex-direction: column;
}
.archive-achievement .filter-bottom-buttons {
  display: flex;
  justify-content: space-between;
}
.archive-achievement .filter-bottom-buttons .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  margin-top: 12px !important;
}
.archive-achievement .filter-bottom-buttons .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.archive-achievement .filter-bottom-buttons .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.archive-achievement .filter-bottom-buttons .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.archive-achievement .filter-bottom-buttons .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.archive-achievement .filter-bottom-buttons .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.archive-achievement .filter-bottom-buttons .view-all-achievements .wpgb-facet button {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 28px;
  position: relative;
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  background-color: transparent;
  padding: 0;
}
.archive-achievement .filter-bottom-buttons .view-all-achievements .wpgb-facet button::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='9' viewBox='0 0 25 9' fill='none'%3E%3Cpath d='M24.3536 4.85355C24.5488 4.65829 24.5488 4.34171 24.3536 4.14645L21.1716 0.964466C20.9763 0.769204 20.6597 0.769204 20.4645 0.964466C20.2692 1.15973 20.2692 1.47631 20.4645 1.67157L23.2929 4.5L20.4645 7.32843C20.2692 7.52369 20.2692 7.84027 20.4645 8.03553C20.6597 8.2308 20.9763 8.2308 21.1716 8.03553L24.3536 4.85355ZM0 5H24V4H0V5Z' fill='%23231F20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}
.archive-achievement .filter-bottom-buttons .view-all-achievements .wpgb-facet button:hover {
  color: #DB351F;
}
.archive-achievement .filter-bottom-buttons .view-all-achievements .wpgb-facet button:hover::after {
  transform: translateX(5px);
}
.archive-achievement .filter-bottom-buttons .selected-filters {
  display: flex;
}
.archive-achievement .filter-bottom-buttons .selected-filters .archive-achievement-reset {
  display: flex;
  margin-left: 0px;
}
.archive-achievement .filter-bottom-buttons .selected-filters .archive-achievement-reset .wpgb-reset {
  margin-bottom: 0px;
  background: none;
  padding: 0px;
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.28px;
  padding: 8px 4px;
  transition: 0.2s all ease;
}
.archive-achievement .filters {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .archive-achievement .filters {
    flex-direction: column;
  }
}
.archive-achievement .filters h4 {
  display: none;
}
.archive-achievement .filters .search {
  width: 33.33%;
}
@media only screen and (max-width: 992px) {
  .archive-achievement .filters .search {
    width: 100%;
  }
}
.archive-achievement .filters .search fieldset {
  margin-bottom: 0px;
}
.archive-achievement .filters .search .label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.5;
}
.archive-achievement .filters .search input {
  display: flex;
  width: 100%;
  height: 48px;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), var(--Surface-clay_light, #F2EFEC);
  text-indent: 0px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  border: none;
}
.archive-achievement .filters .search svg {
  left: unset;
  right: 0;
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
  top: 0;
  stroke: white;
  height: 20px;
  width: 19px;
}
.archive-achievement .filters .search svg path {
  cursor: pointer;
}
.archive-achievement .filters .search .wpgb-clear-button {
  display: none;
}
.archive-achievement .filters .dropdown {
  width: 66.66%;
}
@media only screen and (max-width: 992px) {
  .archive-achievement .filters .dropdown {
    width: 100%;
  }
}
.archive-achievement .filters .dropdown .label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.5;
}
.archive-achievement .filters .dropdown .wpgb-facet-title {
  display: none;
}
.archive-achievement .filters .dropdown .select {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .archive-achievement .filters .dropdown .select {
    flex-direction: column;
  }
}
.archive-achievement .filters .dropdown .select h4 {
  display: none;
}
.archive-achievement .filters .dropdown .select fieldset {
  margin-bottom: 0px;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry {
  width: 50%;
}
@media only screen and (max-width: 992px) {
  .archive-achievement .filters .dropdown .select .archive-achievement-facet-practice,
  .archive-achievement .filters .dropdown .select .archive-achievement-facet-industry {
    width: 100%;
  }
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-facet-title,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-facet-title {
  display: none;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice fieldset,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry fieldset {
  margin-bottom: 0px;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice input,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry input {
  height: 24px;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.48px;
  padding: 18px 0px;
  border: none;
  background: none;
  text-indent: 0px;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice input::-moz-placeholder, .archive-achievement .filters .dropdown .select .archive-achievement-facet-industry input::-moz-placeholder {
  color: #231F20;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice input::placeholder,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry input::placeholder {
  color: #231F20;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice select,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry select {
  background: white !important;
  color: #231F20 !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice select option,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry select option {
  background: white !important;
  color: #231F20 !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-select-dropdown,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-select-dropdown {
  background: white !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-select-options,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-select-options {
  background: white !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-select-options .wpgb-select-option,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-select-options .wpgb-select-option {
  background: white !important;
  color: #231F20 !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-select-options .wpgb-select-option:hover,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-select-options .wpgb-select-option:hover {
  background: #f5f5f5 !important;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice svg,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry svg {
  stroke: #DB341F;
}
.archive-achievement .filters .dropdown .select .archive-achievement-facet-practice .wpgb-select-separator,
.archive-achievement .filters .dropdown .select .archive-achievement-facet-industry .wpgb-select-separator {
  display: none;
}
.archive-achievement .total-results {
  margin-top: 40px;
  margin-bottom: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-achievement .total-results .archive-news-facet-result {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-weight: 450;
  line-height: 24px;
  letter-spacing: 0.6px;
}
.archive-achievement .total-results .archive-news-facet-sort {
  display: flex;
  align-items: center;
}
.archive-achievement .total-results .archive-news-facet-sort .wpgb-facet-title {
  margin-bottom: 0px;
  overflow: hidden;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.42px;
}
.archive-achievement .total-results .archive-news-facet-sort fieldset {
  margin-bottom: 0px;
}
.archive-achievement .total-results .archive-news-facet-sort input {
  max-width: 88px;
}
.archive-achievement .total-results .archive-news-facet-sort input::-moz-placeholder {
  color: #DB351F;
}
.archive-achievement .total-results .archive-news-facet-sort input::placeholder {
  color: #DB351F;
}
.archive-achievement .total-results .archive-news-facet-sort .wpgb-select {
  border: none !important;
}
.archive-achievement .total-results .archive-news-facet-sort .wpgb-select-separator {
  display: none;
}
.archive-achievement .total-results .archive-news-facet-sort .wpgb-select .wpgb-select-controls button svg {
  stroke: #DB341F;
}
.archive-achievement .selected-filters {
  display: flex;
  margin: 20px 0;
}
.archive-achievement .selected-filters .archive-selected-filters {
  margin-right: 12px;
}
.archive-achievement .selected-filters .archive-selected-filters fieldset {
  margin-bottom: 0px;
}
.archive-achievement .selected-filters .archive-selected-filters .wpgb-button {
  display: flex;
  padding: 10px 12px 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  background: #FFF;
  border: none;
  flex-direction: row-reverse;
}
.archive-achievement .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.archive-achievement .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-control:before, .archive-achievement .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-control:after {
  background: #DB341F;
  opacity: 0.5;
}
.archive-achievement .results {
  margin-top: 40px;
  margin-bottom: 40px;
}
.archive-achievement .results .achievement-results-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.archive-achievement .results .achievement-results-list .card-c {
  display: flex;
  width: 282px;
  height: 257px;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex-shrink: 0;
  min-height: 250px;
  position: relative;
  background-color: white;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.archive-achievement .results .achievement-results-list .card-c:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DB351F;
}
.archive-achievement .results .achievement-results-list .card-c:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.archive-achievement .results .achievement-results-list .card-c__label {
  overflow: hidden;
  color: #717171;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
.archive-achievement .results .achievement-results-list .card-c__title {
  overflow: hidden;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.archive-achievement .pagination {
  margin-bottom: 40px;
}

.archive-news .block-wrapper {
  background-color: white;
  padding: 40px;
}
.archive-news .filter-bottom-buttons {
  display: flex;
  justify-content: space-between;
}
.archive-news .filter-bottom-buttons .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  display: flex;
  margin-top: 12px !important;
}
.archive-news .filter-bottom-buttons .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.archive-news .filter-bottom-buttons .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.archive-news .filter-bottom-buttons .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.archive-news .filter-bottom-buttons .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.archive-news .filter-bottom-buttons .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.archive-news .filter-bottom-buttons .view-all-news .wpgb-facet button {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 28px;
  position: relative;
  display: flex;
  align-items: center;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  background-color: transparent;
  padding: 0;
}
.archive-news .filter-bottom-buttons .view-all-news .wpgb-facet button::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='9' viewBox='0 0 25 9' fill='none'%3E%3Cpath d='M24.3536 4.85355C24.5488 4.65829 24.5488 4.34171 24.3536 4.14645L21.1716 0.964466C20.9763 0.769204 20.6597 0.769204 20.4645 0.964466C20.2692 1.15973 20.2692 1.47631 20.4645 1.67157L23.2929 4.5L20.4645 7.32843C20.2692 7.52369 20.2692 7.84027 20.4645 8.03553C20.6597 8.2308 20.9763 8.2308 21.1716 8.03553L24.3536 4.85355ZM0 5H24V4H0V5Z' fill='%23231F20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  transition: transform 0.3s ease-in-out;
}
.archive-news .filter-bottom-buttons .view-all-news .wpgb-facet button:hover {
  color: #DB351F;
}
.archive-news .filter-bottom-buttons .view-all-news .wpgb-facet button:hover::after {
  transform: translateX(5px);
}
.archive-news .total-results,
.archive-news .selected-filters,
.archive-news .results,
.archive-news .pagination,
.archive-news .view-all-news {
  display: none;
}
.archive-news .search {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .archive-news .search {
    flex-direction: column;
  }
}
.archive-news .search .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 32px;
}
.archive-news .search .archive-news-facet-search {
  max-width: 420px;
  width: 100%;
}
.archive-news .search .archive-news-facet-search fieldset {
  margin-bottom: 0px;
}
.archive-news .search .archive-news-facet-search label {
  width: 420px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.5;
}
@media only screen and (max-width: 992px) {
  .archive-news .search .archive-news-facet-search label {
    max-width: 100%;
    width: 100%;
  }
}
.archive-news .search .archive-news-facet-search input {
  display: flex;
  width: 420px;
  height: 48px;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  background: #E6E3E0;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  border: none;
  text-indent: 0px;
}
@media only screen and (max-width: 992px) {
  .archive-news .search .archive-news-facet-search input {
    max-width: 100%;
    width: 100%;
  }
}
.archive-news .search .archive-news-facet-search svg {
  left: unset;
  right: 0;
  border: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
  top: 0;
  stroke: white;
  height: 20px;
  width: 19px;
}
.archive-news .search .archive-news-facet-search svg path {
  cursor: pointer;
}
.archive-news .filters {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.archive-news .filters .dropdown {
  max-width: 100%;
  width: 100%;
}
.archive-news .filters .dropdown .label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.5;
}
.archive-news .filters .dropdown .select {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .archive-news .filters .dropdown .select {
    flex-direction: column;
  }
}
.archive-news .filters .dropdown .select .wpgb-select-values .wpgb-select-value {
  max-width: 80%;
}
.archive-news .filters .dropdown .select h4 {
  display: none;
}
.archive-news .filters .dropdown .select fieldset {
  margin-bottom: 0px;
}
.archive-news .filters .dropdown .select .wpgb-date-facet {
  border-bottom: 1px solid #CECECE !important;
  border-radius: 0px !important;
  padding: 5px 8px;
}
.archive-news .filters .dropdown .select .wpgb-date-facet label > svg {
  left: unset !important;
  right: 0 !important;
}
.archive-news .filters .dropdown .select .wpgb-date-facet input {
  border: none;
  text-indent: 0px;
}
.archive-news .filters .dropdown .select .archive-news-facet-practice,
.archive-news .filters .dropdown .select .archive-news-facet-industry,
.archive-news .filters .dropdown .select .archive-news-facet-type,
.archive-news .filters .dropdown .select .archive-news-facet-date,
.archive-news .filters .dropdown .select .archive-news-facet-lawyer {
  width: 25% !important;
  max-width: 258px;
}
@media only screen and (max-width: 992px) {
  .archive-news .filters .dropdown .select .archive-news-facet-practice,
  .archive-news .filters .dropdown .select .archive-news-facet-industry,
  .archive-news .filters .dropdown .select .archive-news-facet-type,
  .archive-news .filters .dropdown .select .archive-news-facet-date,
  .archive-news .filters .dropdown .select .archive-news-facet-lawyer {
    width: 100% !important;
    max-width: 100%;
  }
}
.archive-news .filters .dropdown input {
  height: 24px;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.48px;
  padding: 18px 0px;
}
.archive-news .filters .dropdown input::-moz-placeholder {
  color: #231F20;
}
.archive-news .filters .dropdown input::placeholder {
  color: #231F20;
}
.archive-news .filters .dropdown svg {
  stroke: #DB341F;
}
.archive-news .filters .dropdown .wpgb-select-separator {
  display: none;
}
.archive-news .total-results {
  margin-top: 40px;
  margin-bottom: 27px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.archive-news .total-results .archive-news-facet-result {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-weight: 450;
  line-height: 24px;
  letter-spacing: 0.6px;
}
.archive-news .total-results .archive-news-facet-sort {
  display: flex;
  align-items: center;
}
.archive-news .total-results .archive-news-facet-sort .wpgb-facet-title {
  margin-bottom: 0px;
  overflow: hidden;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.42px;
}
.archive-news .total-results .archive-news-facet-sort fieldset {
  margin-bottom: 0px;
}
.archive-news .total-results .archive-news-facet-sort input {
  max-width: 88px;
}
.archive-news .total-results .archive-news-facet-sort input::-moz-placeholder {
  color: #DB341F;
}
.archive-news .total-results .archive-news-facet-sort input::placeholder {
  color: #DB341F;
}
.archive-news .total-results .archive-news-facet-sort .wpgb-select {
  border: none !important;
}
.archive-news .total-results .archive-news-facet-sort .wpgb-select-separator {
  display: none;
}
.archive-news .total-results .archive-news-facet-sort .wpgb-select .wpgb-select-controls button svg {
  stroke: #DB341F;
}
.archive-news .selected-filters {
  display: flex;
  margin: 20px 0;
}
.archive-news .selected-filters .archive-selected-filters {
  margin-right: 12px;
}
.archive-news .selected-filters .archive-selected-filters fieldset {
  margin-bottom: 0px;
}
.archive-news .selected-filters .archive-selected-filters .wpgb-button {
  display: flex;
  padding: 10px 12px 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 5px;
  background: #FFF;
  border: none;
  flex-direction: row-reverse;
}
.archive-news .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-label {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.archive-news .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-control:before, .archive-news .selected-filters .archive-selected-filters .wpgb-button .wpgb-button-control:after {
  background: #DB341F;
  opacity: 0.5;
}
.archive-news .selected-filters .archive-reset {
  display: flex;
  margin-left: 0px;
}
.archive-news .selected-filters .archive-reset .wpgb-reset {
  margin-bottom: 0px;
  background: none;
  padding: 0px;
  color: #DB341F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.28px;
  padding: 8px 4px;
  transition: 0.2s all ease;
}
.archive-news .results {
  margin-top: 40px;
  margin-bottom: 40px;
}
.archive-news .results .news-results-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}
.archive-news .results .news-card {
  display: flex;
  flex-direction: column;
  background: white;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease-in-out;
  border-top: 1px solid #DB341F;
  min-height: 100%;
  max-width: 286px;
}
.archive-news .results .news-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.archive-news .results .news-card__image {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.archive-news .results .news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.archive-news .results .news-card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
.archive-news .results .news-card__title {
  font-size: 18px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #231F20;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.archive-news .results .news-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #999;
}
.archive-news .results .news-card__meta .news-card__type {
  display: none;
  color: #DB341F;
  font-weight: 600;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.archive-news .pagination {
  margin-bottom: 40px;
}

.training-main-content {
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
}
.training-main-content .graphic-bg {
  left: unset;
  position: absolute;
  width: 100%;
  height: 110%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -1;
  bottom: 0;
  right: 0;
  -o-object-position: 79%;
     object-position: 79%;
  transform: scale(1.5);
}
.training-main-content .block_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 740px;
  width: 100%;
}
.training-main-content .block_wrapper .title {
  color: #171717;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1;
  margin-bottom: 64px;
}
@media only screen and (max-width: 992px) {
  .training-main-content .block_wrapper .title {
    margin-bottom: 40px;
  }
}
.training-main-content .block_wrapper p {
  margin-bottom: 29px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
}
.training-main-content .block_wrapper p b,
.training-main-content .block_wrapper p strong {
  font-weight: 600;
}
.training-main-content .block_wrapper b {
  font-weight: 600;
}
.training-main-content .block_wrapper a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  transition: 0.2s all ease-in;
}
.training-main-content .block_wrapper a:hover {
  color: #DB351F;
}
.training-main-content .block_wrapper ul {
  list-style: disc;
  padding-left: 16px;
}
.training-main-content .block_wrapper ol {
  list-style: decimal;
  padding-left: 16px;
}

.in-page-nav {
  padding: 40px 0px;
  z-index: 1;
  position: relative;
  background: #F9F6F3;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  z-index: 999;
  position: sticky;
}
.in-page-nav ul {
  display: flex;
  gap: 5%;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
}
.in-page-nav ul li a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 93%;
  letter-spacing: 0.48px;
  text-decoration: none;
  transition: 0.2s all ease-in;
  position: relative;
}
.in-page-nav ul li a::after {
  content: "";
  position: absolute;
  height: 1px;
  bottom: 0px;
  width: 100%;
  background: #DB341F;
  left: 0;
  opacity: 0;
  transition: 0.2s all ease-in;
}
.in-page-nav ul li a.active {
  font-weight: 600;
}
.in-page-nav ul li a.active::after {
  opacity: 1;
}
.in-page-nav ul li a:hover {
  color: #DB341F;
}
.in-page-nav nav.long ul {
  flex-wrap: wrap;
  gap: 3%;
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}
.in-page-nav nav.long ul::-webkit-scrollbar {
  height: 8px;
  /* Height for horizontal scrollbar */
}
.in-page-nav nav.long ul::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}
.in-page-nav nav.long ul::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.in-page-nav nav.long ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.in-page-nav nav.long ul li {
  white-space: nowrap;
}
.in-page-nav .bio-laywer-details {
  display: none;
}
.in-page-nav .bio-laywer-details img {
  max-height: 100px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.in-page-nav.is-now-sticky {
  display: flex;
  justify-content: space-between;
  padding-top: 0px;
  padding-bottom: 0px;
}
.in-page-nav.is-now-sticky .bio-laywer-details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 992px) {
  .in-page-nav.is-now-sticky .bio-laywer-details {
    display: none;
  }
}
.in-page-nav.is-now-sticky .container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .in-page-nav.is-now-sticky .container {
    flex-direction: column;
    align-items: start;
  }
}
.in-page-nav.is-now-sticky .name-email {
  white-space: nowrap;
  overflow: hidden;
  display: block;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.in-page-nav.is-now-sticky .name-email .name {
  color: #191415;
  font-size: 22px;
  font-weight: 400;
  line-height: 93%;
}
.in-page-nav.is-now-sticky .name-email .email {
  color: #DB351F;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 84%;
  transition: 0.2s all ease-in;
  text-decoration: none;
  display: block;
}
.in-page-nav.is-now-sticky .name-email .email:hover {
  color: #191415;
}
.in-page-nav.is-now-sticky .name-email .number {
  color: #231F20;
  font-size: 14px;
  font-weight: 450;
  line-height: 84%;
  text-decoration: none;
  font-family: "neue-haas-grotesk-display", sans-serif;
  white-space: nowrap;
}
.in-page-nav.is-now-sticky .name-email .number span {
  font-weight: 700;
  margin-right: 8px;
}
.in-page-nav.is-now-sticky nav {
  width: 100%;
}
.in-page-nav.is-now-sticky nav ul {
  justify-content: end;
}
@media only screen and (max-width: 992px) {
  .in-page-nav.is-now-sticky nav ul {
    justify-content: start;
    padding-top: 30px;
    padding-bottom: 30px;
    gap: 16px;
  }
}
@media only screen and (max-width: 600px) {
  .in-page-nav.is-now-sticky nav ul {
    flex-wrap: nowrap;
    overflow: auto;
  }
}
@media only screen and (max-width: 470px) {
  .in-page-nav.is-now-sticky nav ul {
    justify-content: start !important;
    padding-left: 1px !important;
  }
}

.single-capability .in-page-nav .page-name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 102%;
  letter-spacing: -0.48px;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: none;
}
.single-capability .in-page-nav .page-name:after {
  content: "";
  position: absolute;
  left: -14px;
  top: 0px;
  transform: translate(-50%);
  height: 15px;
  width: 15px;
  background: #DB351F;
}
@media only screen and (max-width: 992px) {
  .single-capability .in-page-nav .page-name {
    display: none;
  }
}
.single-capability .in-page-nav nav ul {
  transition: 0.2s all ease-in;
  margin-right: 19.4%;
}
@media only screen and (max-width: 992px) {
  .single-capability .in-page-nav nav ul {
    margin-right: 0px;
    flex-wrap: nowrap;
    justify-content: unset !important;
  }
  .single-capability .in-page-nav nav ul a {
    white-space: nowrap;
  }
}
.single-capability .in-page-nav .container {
  display: flex;
}
.single-capability .in-page-nav .container nav {
  width: 100%;
}

.single-capability .in-page-nav.is-now-sticky {
  justify-content: center;
}
.single-capability .in-page-nav.is-now-sticky .container {
  align-items: center;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (max-width: 992px) {
  .single-capability .in-page-nav.is-now-sticky .container {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}
.single-capability .in-page-nav.is-now-sticky .page-name {
  display: block;
}
@media only screen and (max-width: 992px) {
  .single-capability .in-page-nav.is-now-sticky .page-name {
    display: none;
  }
}
.single-capability .in-page-nav.is-now-sticky nav ul {
  justify-content: end;
}

.page-template-default .sticky-in-page {
  padding: 15px;
}
.page-template-default .sticky-in-page-up {
  padding: 15px;
}
.page-template-default .in-page-nav.is-now-sticky nav ul {
  justify-content: center;
}

.hero-alumni {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-alumni .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.5;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero-alumni .block_wrapper .content {
  z-index: 2;
  position: relative;
  gap: 16px;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .block_wrapper .content {
    max-width: 100%;
    flex-direction: column;
  }
}
.hero-alumni .block_wrapper .content .main {
  display: flex;
  gap: 20px;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
.hero-alumni .block_wrapper .content .main h1.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.hero-alumni .block_wrapper .content .main h1.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.hero-alumni .block_wrapper .content .main h1.tag span {
  margin-left: 20px;
}
.hero-alumni .block_wrapper .content .main .title {
  display: flex;
  gap: 32px;
  align-items: end;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .block_wrapper .content .main .title {
    flex-direction: column;
  }
}
.hero-alumni .block_wrapper .content .main .title h2 {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.hero-alumni .block_wrapper .content .main .title .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6px;
  margin-top: 0px;
}
.hero-alumni .block_wrapper .content .main .title .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.hero-alumni .block_wrapper .content .main .title .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.hero-alumni .block_wrapper .content .main .title .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.hero-alumni .block_wrapper .content .main .title .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.hero-alumni .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.hero-alumni .block_wrapper .content .bottom {
  margin-top: 120px;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .block_wrapper .content .bottom {
    flex-direction: column;
    margin-top: 50px;
  }
}
.hero-alumni .block_wrapper .content .bottom .left {
  max-width: 240px;
  width: 100%;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .block_wrapper .content .bottom .left {
    max-width: 100%;
  }
}
.hero-alumni .block_wrapper .content .bottom .left .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.48px;
  margin-bottom: 24px;
}
.hero-alumni .block_wrapper .content .bottom .left .list {
  margin-bottom: 24px;
}
.hero-alumni .block_wrapper .content .bottom .left .list h4,
.hero-alumni .block_wrapper .content .bottom .left .list a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.48px;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}
.hero-alumni .block_wrapper .content .bottom .left .list a:hover {
  text-decoration: underline;
}
.hero-alumni .block_wrapper .content .bottom .left .list ul li {
  margin-bottom: 8px;
}
.hero-alumni .block_wrapper .content .bottom .left .list ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.42px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.hero-alumni .block_wrapper .content .bottom .left .list ul li a:hover {
  color: #231F20;
  text-decoration: none;
}
.hero-alumni .block_wrapper .content .bottom .right {
  max-width: 740px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .hero-alumni .block_wrapper .content .bottom .right {
    max-width: 100%;
  }
}
.hero-alumni .block_wrapper .content .bottom .right img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 32px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-alumni .block_wrapper .content .bottom .right h3 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
.hero-alumni .block_wrapper .content .bottom .right .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: -0.54px;
  margin-bottom: 32px;
}
.hero-alumni .block_wrapper .content .bottom .right .content p b {
  font-weight: 700;
}
.hero-alumni .block_wrapper .content .bottom .right .content b {
  font-weight: 700;
}
.hero-alumni .block_wrapper .content .bottom .right .content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.hero-alumni .block_wrapper .content .bottom .right .content ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 14px;
}
.hero-alumni .block_wrapper .content .bottom .right .content ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.hero-alumni .block_wrapper .content .bottom .right .content ul em {
  font-style: italic;
}
.hero-alumni .block_wrapper .content .bottom .right .content em {
  font-style: italic;
}
.hero-alumni .block_wrapper .content .bottom .right .content strong,
.hero-alumni .block_wrapper .content .bottom .right .content b {
  font-weight: 700;
}
.hero-alumni .block_wrapper .content .bottom .right .content a {
  padding: 0px;
  color: #DB351F;
  transition: 0.2 all ease-in;
  text-decoration: none;
}
.hero-alumni .block_wrapper .content .bottom .right .content a:hover {
  color: rgb(174.324, 42.188, 24.676);
}

.spotlight-alumni {
  position: relative;
  background-color: white;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
.spotlight-alumni .graphic-bg {
  left: -31%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .spotlight-alumni .graphic-bg {
    height: 100%;
    left: -10%;
    top: 0;
  }
}
.spotlight-alumni .content {
  max-width: 740px;
  margin-left: auto;
}
.spotlight-alumni .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
.spotlight-alumni .content .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
}
.spotlight-alumni .content .cards-c .card-wrapper {
  margin-top: 70px;
  padding-bottom: 32px;
  border-bottom: 1px solid #DB341F;
}
.spotlight-alumni .content .cards-c .card-c {
  background: #F9F6F3;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 700px) {
  .spotlight-alumni .content .cards-c .card-c {
    flex-direction: column;
  }
}
.spotlight-alumni .content .cards-c .card-c .text {
  padding: 20px 40px;
  margin-right: auto;
}
.spotlight-alumni .content .cards-c .card-c .text .interviewof {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.spotlight-alumni .content .cards-c .card-c .text .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.96px;
  margin-bottom: 8px;
}
.spotlight-alumni .content .cards-c .card-c .text .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.spotlight-alumni .content .cards-c .card-c img {
  max-width: 304px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 700px) {
  .spotlight-alumni .content .cards-c .card-c img {
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
  }
}
.spotlight-alumni .content .cards-c .card-description {
  margin-top: 32px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
}
.spotlight-alumni .content .cards-c .card-description strong,
.spotlight-alumni .content .cards-c .card-description b {
  font-weight: 700;
}
.spotlight-alumni .content .cards-c .card-description strong span,
.spotlight-alumni .content .cards-c .card-description b span {
  font-weight: 700;
}
.spotlight-alumni .content .cards-c .card-description > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.spotlight-alumni .content .cards-c .card-description > * strong,
.spotlight-alumni .content .cards-c .card-description > * b {
  font-weight: 700;
}
.spotlight-alumni .content .cards-c .card-description > * strong span,
.spotlight-alumni .content .cards-c .card-description > * b span {
  font-weight: 700;
}
.spotlight-alumni .content .cards-c .card-description a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  text-decoration: none;
}
.spotlight-alumni .content .cards-c .card-description a:hover {
  color: #231F20;
}
.spotlight-alumni .content .cards-c .card-description ul li {
  margin-bottom: 8px;
}
.spotlight-alumni .content .cards-c .card-description ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.42px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.spotlight-alumni .content .cards-c .card-description ul li a:hover {
  color: #231F20;
  text-decoration: none;
}
.spotlight-alumni .content .cards-c .card-description.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 6000px;
}
.spotlight-alumni .content .cards-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
  display: flex;
}
.spotlight-alumni .content .cards-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.spotlight-alumni .content .cards-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.spotlight-alumni .content .cards-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.spotlight-alumni .content .cards-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.spotlight-alumni .content .cards-c .link-arrow-right span.minus {
  line-height: 9px;
}
.spotlight-alumni .content .cards-c .card-wrapper.hide-read-more .card-description {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 6000px;
}
.spotlight-alumni .content .cards-c .card-wrapper.hide-read-more .link-arrow-right {
  display: none;
}

.launch-series-alumni {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}
.launch-series-alumni.light {
  background: #F9F6F3;
}
.launch-series-alumni.dark {
  background: #093C59;
}
.launch-series-alumni.dark .content .title {
  color: white;
}
.launch-series-alumni.dark .content .description {
  color: white;
}
.launch-series-alumni.dark .content .description > * {
  color: white;
}
.launch-series-alumni.dark .content .cards-c .card-c .text .name,
.launch-series-alumni.dark .content .cards-c .card-c .text .title {
  color: white;
}
.launch-series-alumni.dark .content .cards-c .card-description > * {
  color: white;
}
.launch-series-alumni.dark .content .cards-c .link-arrow-right .icon svg path {
  fill: white;
}
.launch-series-alumni .graphic-bg {
  left: -31%;
  top: -100px;
  position: absolute;
  height: 135%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: -2;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (max-width: 992px) {
  .launch-series-alumni .graphic-bg {
    height: 100%;
    left: -10%;
    top: 0;
  }
}
.launch-series-alumni .content {
  max-width: 740px;
  margin-left: auto;
}
.launch-series-alumni .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
  margin-bottom: 32px;
}
.launch-series-alumni .content .description {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
}
.launch-series-alumni .content .cards-c .card-wrapper {
  margin-top: 70px;
  padding-bottom: 32px;
  border-bottom: 1px solid #DB341F;
}
.launch-series-alumni .content .cards-c .card-c {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 700px) {
  .launch-series-alumni .content .cards-c .card-c {
    flex-direction: column;
  }
}
.launch-series-alumni .content .cards-c .card-c .text {
  padding: 20px 40px;
}
.launch-series-alumni .content .cards-c .card-c .text .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: 0.44px;
}
.launch-series-alumni .content .cards-c .card-c .text .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 29px;
  letter-spacing: 0.4px;
}
.launch-series-alumni .content .cards-c .card-c img {
  max-width: 304px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 700px) {
  .launch-series-alumni .content .cards-c .card-c img {
    max-width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
  }
}
.launch-series-alumni .content .cards-c .card-description {
  margin-top: 32px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
}
.launch-series-alumni .content .cards-c .card-description strong span,
.launch-series-alumni .content .cards-c .card-description b span {
  font-weight: 700;
}
.launch-series-alumni .content .cards-c .card-description > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.launch-series-alumni .content .cards-c .card-description > * strong span,
.launch-series-alumni .content .cards-c .card-description > * b span {
  font-weight: 700;
}
.launch-series-alumni .content .cards-c .card-description a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description a:hover {
  color: #231F20;
}
.launch-series-alumni .content .cards-c .card-description ul li {
  margin-bottom: 8px;
}
.launch-series-alumni .content .cards-c .card-description ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.42px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description ul li a:hover {
  color: #231F20;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description strong,
.launch-series-alumni .content .cards-c .card-description b {
  font-weight: 700;
}
.launch-series-alumni .content .cards-c .card-description strong.expanded,
.launch-series-alumni .content .cards-c .card-description b.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 2000px;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
  display: flex;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right.hidden {
  display: none;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right strong,
.launch-series-alumni .content .cards-c .card-description .link-arrow-right b {
  font-weight: 700;
}
.launch-series-alumni .content .cards-c .card-description .link-arrow-right strong span,
.launch-series-alumni .content .cards-c .card-description .link-arrow-right b span {
  font-weight: 700;
}
.launch-series-alumni .content .cards-c .card-description a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description a:hover {
  color: #231F20;
}
.launch-series-alumni .content .cards-c .card-description ul li {
  margin-bottom: 8px;
}
.launch-series-alumni .content .cards-c .card-description ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.42px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description ul li a:hover {
  color: #231F20;
  text-decoration: none;
}
.launch-series-alumni .content .cards-c .card-description.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 2000px;
}
.launch-series-alumni .content .cards-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
  display: flex;
}
.launch-series-alumni .content .cards-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.launch-series-alumni .content .cards-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.launch-series-alumni .content .cards-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.launch-series-alumni .content .cards-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.launch-series-alumni .content .cards-c .link-arrow-right span.minus {
  line-height: 9px;
}
.launch-series-alumni .content .cards-c .card-wrapper.hide-read-more .card-description {
  display: block;
  -webkit-line-clamp: unset;
  max-height: 6000px;
}
.launch-series-alumni .content .cards-c .card-wrapper.hide-read-more .link-arrow-right {
  display: none;
}

.listing-more-accordion {
  position: relative;
  z-index: 1;
  background: #294F59;
  padding-top: 80px;
  padding-bottom: 80px;
}
.listing-more-accordion.bg-blue {
  background: #093C59;
}
@media only screen and (max-width: 992px) {
  .listing-more-accordion {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.listing-more-accordion .more {
  position: relative;
}
.listing-more-accordion .more .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media only screen and (max-width: 992px) {
  .listing-more-accordion .more .container {
    flex-direction: column;
    align-items: start;
    padding: 40px 32px;
  }
}
.listing-more-accordion .more .container .content {
  max-width: 539px;
}
.listing-more-accordion .more .container .content h4 {
  width: 100%;
  color: #F9F6F3;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  margin-bottom: 33px;
}
@media only screen and (max-width: 992px) {
  .listing-more-accordion .more .container .content h4 {
    margin-bottom: 30px;
    max-width: 100%;
  }
}
.listing-more-accordion .more .container .content .description > * {
  color: #FFF;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.listing-more-accordion .more .container .content .description > * b,
.listing-more-accordion .more .container .content .description > * strong {
  font-weight: 700;
}
.listing-more-accordion .more .container .content .description b,
.listing-more-accordion .more .container .content .description strong {
  font-weight: 700;
}
.listing-more-accordion .more .container .accordion {
  max-width: 528px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .listing-more-accordion .more .container .accordion {
    max-width: 100%;
  }
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-header {
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-content,
.listing-more-accordion .more .container .accordion .accordion-item a {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  color: white;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-content ul,
.listing-more-accordion .more .container .accordion .accordion-item a ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-content ul li,
.listing-more-accordion .more .container .accordion .accordion-item a ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-content ul li:before,
.listing-more-accordion .more .container .accordion .accordion-item a ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.listing-more-accordion .more .container .accordion .accordion-item .accordion-content > *,
.listing-more-accordion .more .container .accordion .accordion-item a > * {
  margin-bottom: 16px;
}
.listing-more-accordion .more .container .accordion .accordion-item a {
  padding: 0px;
}
.listing-more-accordion .more .container .accordion .accordion-item.active .accordion-content {
  margin-top: 20px;
  max-height: 500px;
}

.listing-scholar-accordion {
  position: relative;
  z-index: 1;
  background: #F9F6F3;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 992px) {
  .listing-scholar-accordion {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.listing-scholar-accordion .graphic-bg {
  left: -38%;
  top: -8%;
  position: absolute;
  height: 120%;
  width: 120%;
  -o-object-position: left;
     object-position: left;
  max-height: 1100px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .listing-scholar-accordion .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 500px;
    top: 0;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.listing-scholar-accordion .more {
  position: relative;
}
.listing-scholar-accordion .more .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media only screen and (max-width: 992px) {
  .listing-scholar-accordion .more .container {
    flex-direction: column;
    align-items: start;
    padding: 40px 32px;
  }
}
.listing-scholar-accordion .more .container .content {
  max-width: 360px;
  background: #F9F6F3;
  padding: 100px 40px;
  text-align: center;
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
}
.listing-scholar-accordion .more .container .content h4 {
  width: 100%;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 127%;
}
@media only screen and (max-width: 992px) {
  .listing-scholar-accordion .more .container .content h4 {
    max-width: 100%;
  }
}
.listing-scholar-accordion .more .container .accordion {
  max-width: 528px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .listing-scholar-accordion .more .container .accordion {
    max-width: 100%;
  }
}
.listing-scholar-accordion .more .container .accordion .description {
  margin-bottom: 32px;
}
.listing-scholar-accordion .more .container .accordion .description > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.listing-scholar-accordion .more .container .accordion .description > * b,
.listing-scholar-accordion .more .container .accordion .description > * strong {
  font-weight: 700;
}
.listing-scholar-accordion .more .container .accordion .description b,
.listing-scholar-accordion .more .container .accordion .description strong {
  font-weight: 700;
}
.listing-scholar-accordion .more .container .accordion .description a {
  color: #DB351F;
  text-decoration: none;
  transition: 0.2s all ease-in;
}
.listing-scholar-accordion .more .container .accordion .description a:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-header {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid #231F20;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-header svg {
  transition: 0.3s all ease-in;
  min-width: 12px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-header svg path {
  fill: #DB351F;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content,
.listing-scholar-accordion .more .container .accordion .accordion-item a {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content ul,
.listing-scholar-accordion .more .container .accordion .accordion-item a ul {
  list-style: circle;
  margin-bottom: 32px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content ul li,
.listing-scholar-accordion .more .container .accordion .accordion-item a ul li {
  margin-bottom: 10px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content > * b,
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content > * strong {
  font-weight: 700;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content b,
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content strong {
  font-weight: 700;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}
.listing-scholar-accordion .more .container .accordion .accordion-item .accordion-content ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.listing-scholar-accordion .more .container .accordion .accordion-item a {
  padding: 0px;
}
.listing-scholar-accordion .more .container .accordion .accordion-item.active .accordion-content {
  margin-top: 20px;
  max-height: 500px;
  border-bottom: 1px solid #231F20;
}
.listing-scholar-accordion .more .container .accordion .accordion-item.active .accordion-header {
  border-bottom: 0px solid #231F20;
}
.listing-scholar-accordion .more .container .accordion .accordion-item.active svg {
  transform: rotate(180deg);
}

.listing-dual-accordion {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.listing-dual-accordion .graphic-bg-one {
  left: unset;
  right: -31%;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-position: right;
     object-position: right;
  max-height: 467px;
  transform: rotate(66.567deg);
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .graphic-bg-one {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.listing-dual-accordion .graphic-bg-two {
  left: -25%;
  right: unset;
  transform: translateY(-50%);
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-position: left;
     object-position: left;
  max-height: 467px;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .graphic-bg-two {
    -o-object-position: center 100%;
       object-position: center 100%;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.listing-dual-accordion .more {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.listing-dual-accordion .more .container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 32px;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more .container {
    flex-direction: column;
    align-items: start;
    padding: 0px 32px;
  }
}
.listing-dual-accordion .more .container .content {
  max-width: 630px;
  z-index: 1;
}
.listing-dual-accordion .more .container .content h4 {
  width: 100%;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more .container .content h4 {
    max-width: 100%;
  }
}
.listing-dual-accordion .more .container .content .description ul {
  list-style-type: disc;
  padding-left: 0px;
  list-style: none;
  margin-top: 32px;
  margin-bottom: 32px;
}
.listing-dual-accordion .more .container .content .description ul.two-column {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.listing-dual-accordion .more .container .content .description ul.three-column {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more .container .content .description ul.three-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.listing-dual-accordion .more .container .content .description ul.four-column {
  -moz-columns: 4;
       columns: 4;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more .container .content .description ul.four-column {
    -moz-columns: 1;
         columns: 1;
  }
}
.listing-dual-accordion .more .container .content .description ul li {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 8px;
  text-align: left;
  position: relative;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
  padding-left: 20px;
  color: #231F20;
}
.listing-dual-accordion .more .container .content .description ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 7px;
  height: 7px;
  background-color: #DB341F;
}
.listing-dual-accordion .more .container .content .description a {
  color: #DB351F;
  text-decoration: none;
}
.listing-dual-accordion .more .container .content .description a:hover {
  color: #A02012;
}
.listing-dual-accordion .more .container .content .description h2 {
  font-size: 32px;
  font-weight: 500;
}
.listing-dual-accordion .more .container .content .description h3 {
  font-size: 18px;
  font-weight: 500;
}
.listing-dual-accordion .more .container .content .description p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
}
.listing-dual-accordion .more .container .content .description p strong {
  font-weight: 600;
}
.listing-dual-accordion .more .container .content .description p.light {
  font-weight: 250;
  letter-spacing: 0.64px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.listing-dual-accordion .more .container .content .description p.heavy {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
}
.listing-dual-accordion .more .container .content .description em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.listing-dual-accordion .more .container .content .description > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.listing-dual-accordion .more .container .content .description > * b,
.listing-dual-accordion .more .container .content .description > * strong {
  font-weight: 600;
}
.listing-dual-accordion .more .container .content .description b,
.listing-dual-accordion .more .container .content .description strong {
  font-weight: 600;
}
.listing-dual-accordion .more .container .accordion {
  max-width: 630px;
  width: 100%;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more .container .accordion {
    max-width: 100%;
  }
}
.listing-dual-accordion .more .container .accordion .accordion-item .accordion-header {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid #231F20;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-dual-accordion .more .container .accordion .accordion-item .accordion-header svg path {
  stroke: #231F20;
  fill: none;
}
.listing-dual-accordion .more .container .accordion .accordion-item .accordion-content,
.listing-dual-accordion .more .container .accordion .accordion-item a {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-dual-accordion .more .container .accordion .accordion-item .accordion-content ul,
.listing-dual-accordion .more .container .accordion .accordion-item a ul {
  list-style: circle;
  margin-bottom: 32px;
}
.listing-dual-accordion .more .container .accordion .accordion-item .accordion-content ul li,
.listing-dual-accordion .more .container .accordion .accordion-item a ul li {
  margin-bottom: 10px;
}
.listing-dual-accordion .more .container .accordion .accordion-item a {
  padding: 0px;
}
.listing-dual-accordion .more .container .accordion .accordion-item.active .accordion-content {
  margin-top: 20px;
  max-height: 500px;
}
.listing-dual-accordion .more.two {
  padding-top: 180px;
  padding-bottom: 180px;
  position: unset;
}
@media only screen and (max-width: 992px) {
  .listing-dual-accordion .more.two {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.listing-dual-accordion .more.two .container {
  align-items: end;
}

.single-quote {
  margin-bottom: 100px;
}
@media only screen and (max-width: 992px) {
  .single-quote {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.single-quote .quote-wrapper {
  padding: 40px;
  border-top: 1px solid #DB341F;
  border-bottom: 1px solid #DB341F;
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 600px) {
  .single-quote .quote-wrapper {
    flex-direction: column;
  }
}
.single-quote .quote-wrapper img {
  max-width: 143px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 600px) {
  .single-quote .quote-wrapper img {
    max-width: 100%;
  }
}
.single-quote .quote-wrapper .quote-content {
  display: flex;
  gap: 22px;
  flex-direction: column;
}
.single-quote .quote-wrapper .quote-content p.quote-c {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -0.96px;
}
.single-quote .quote-wrapper .quote-content .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin-top: 0px;
}
.single-quote .quote-wrapper .quote-content .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.single-quote .quote-wrapper .quote-content .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.single-quote .quote-wrapper .quote-content .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.single-quote .quote-wrapper .quote-content .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.single-quote .slide blockquote p {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.96px;
}
.single-quote .slide .name {
  color: #231F20;
  text-align: center;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.54px;
  margin-top: 32px;
  margin-right: 16px;
}

.practice-experience {
  position: relative;
  background-color: #F9F6F3;
}
.practice-experience .graphic-bg {
  left: 0;
  top: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 0;
  -o-object-position: left;
     object-position: left;
}
@media only screen and (max-width: 992px) {
  .practice-experience .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.practice-experience .container {
  display: flex;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: start;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.practice-experience .container .left {
  display: flex;
  gap: 50px;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .left {
    gap: 20px;
    max-width: 100%;
  }
}
.practice-experience .container .left h4 {
  color: #000;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  width: 320px;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .left h4 {
    max-width: 496px;
    max-width: 100%;
  }
}
.practice-experience .container .left .list {
  margin-bottom: 24px;
  margin-top: 50px;
}
.practice-experience .container .left .list .title {
  margin-bottom: 8px;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
  padding-bottom: 16px;
}
.practice-experience .container .left .list ul li {
  margin-bottom: 8px;
  padding-bottom: 16px;
}
.practice-experience .container .left .list ul li a {
  color: #DB351F;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.42px;
  transition: 0.2s all ease-in;
  text-decoration: none;
}
.practice-experience .container .left .list ul li a:hover {
  color: #231F20;
}
.practice-experience .container .left .links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .left .links {
    gap: 16px;
  }
}
.practice-experience .container .left .links .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.practice-experience .container .left .links .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.practice-experience .container .left .links .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.practice-experience .container .left .links .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.practice-experience .container .left .links .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.practice-experience .container .right {
  position: relative;
  z-index: 1;
  max-width: 715px;
  width: 100%;
}
.practice-experience .container .right .experience-search-form {
  display: flex;
  align-items: center;
}
.practice-experience .container .right .experience-search-form #clear-experience-search {
  cursor: pointer;
  outline: none;
  background: transparent;
  border: transparent;
  color: #DB351F;
  font-size: 16px;
  margin-bottom: 60px;
  margin-left: 3rem;
}
.practice-experience .container .right .experience-search-form #clear-experience-search:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M14.9995%203.49375C14.9864%203.59866%2014.9364%203.69504%2014.859%203.76485C14.7815%203.83465%2014.6819%203.87307%2014.5789%203.87292H14.522L13.2004%203.695C14.149%204.94313%2014.6574%206.48434%2014.6426%208.06712C14.6278%209.64991%2014.0907%2011.1808%2013.1189%2012.4101C12.1471%2013.6393%2010.7981%2014.4943%209.29183%2014.8354C7.7856%2015.1766%206.21115%2014.9839%204.82541%2014.2887C3.43966%2013.5935%202.32443%2012.4368%201.66171%2011.0075C0.998983%209.57821%200.82789%207.96059%201.17635%206.41865C1.52481%204.87671%202.37224%203.50148%203.58037%202.51737C4.78849%201.53326%206.28598%200.998377%207.82847%201C7.94154%201%208.04998%201.0461%208.12994%201.12814C8.20989%201.21019%208.25481%201.32147%208.25481%201.4375C8.25481%201.55354%208.20989%201.66482%208.12994%201.74686C8.04998%201.82891%207.94154%201.875%207.82847%201.875C6.47405%201.87444%205.15971%202.3466%204.10136%203.21392C3.04302%204.08124%202.3036%205.29215%202.00457%206.64772C1.70554%208.0033%201.86468%209.42293%202.45586%2010.6734C3.04703%2011.9239%204.03508%2012.9309%205.2577%2013.529C6.48031%2014.127%207.8648%2014.2806%209.18371%2013.9644C10.5026%2013.6483%2011.6776%2012.8812%2012.5155%2011.7893C13.3534%2010.6973%2013.8045%209.34537%2013.7947%207.95553C13.7848%206.5657%2013.3147%205.22062%2012.4614%204.14125L12.3903%205.83292C12.3852%205.94487%2012.3384%206.05055%2012.2597%206.12816C12.1809%206.20576%2012.076%206.24938%2011.9668%206.25H11.9469C11.8909%206.24814%2011.8358%206.23483%2011.7849%206.21083C11.734%206.18683%2011.6883%206.15263%2011.6504%206.11025C11.6126%206.06786%2011.5833%206.01814%2011.5644%205.96401C11.5456%205.90987%2011.5374%205.85241%2011.5405%205.795L11.6542%203.07959C11.6526%203.07288%2011.6526%203.06588%2011.6542%203.05917C11.6528%203.04462%2011.6528%203.02997%2011.6542%203.01542V2.97167V2.95417C11.6529%202.9484%2011.6529%202.94243%2011.6542%202.93667C11.6615%202.91861%2011.6701%202.90107%2011.6797%202.88417C11.6914%202.86452%2011.7047%202.84598%2011.7195%202.82875C11.7451%202.79834%2011.7748%202.77183%2011.8076%202.75C11.8265%202.73663%2011.8465%202.72492%2011.8673%202.715L11.9242%202.69459H11.9412H11.9896H12.0919L14.5902%203.03584C14.6465%203.03808%2014.7017%203.05174%2014.7528%203.07601C14.8039%203.10029%2014.8498%203.13471%2014.8879%203.17728C14.9259%203.21986%2014.9554%203.26974%2014.9745%203.32406C14.9937%203.37837%2015.0022%203.43605%2014.9995%203.49375Z%22%20fill%3D%22black%22%20stroke%3D%22black%22%20stroke-width%3D%220.2%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .right .experience-search-form #clear-experience-search {
    margin-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .right .experience-search-form {
    flex-direction: column;
    align-items: baseline;
  }
}
.practice-experience .container .right .search-bar {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 350px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .practice-experience .container .right .search-bar {
    max-width: 350px;
  }
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .right .search-bar {
    max-width: 700px;
  }
}
.practice-experience .container .right .search-bar input {
  flex: 1;
  border: none;
  padding: 0 20px;
  height: 100%;
  font-size: 16px;
  color: #231f20;
  max-width: 580px;
  background-color: #e8e6e3;
}
.practice-experience .container .right .search-bar input::-moz-placeholder {
  color: #717171;
  font-size: 16px;
}
.practice-experience .container .right .search-bar input::placeholder {
  color: #717171;
  font-size: 16px;
}
.practice-experience .container .right .search-bar input:focus {
  outline: none;
}
.practice-experience .container .right .search-bar .search-icon {
  width: 60px;
  height: 100%;
  background-color: #DB351F;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px 10px 0;
  cursor: pointer;
}
.practice-experience .container .right .search-bar .search-icon svg {
  width: 20px;
  height: 20px;
}
.practice-experience .container .right .card-c {
  padding-bottom: 40px;
  padding-top: 40px;
  border-bottom: 1px solid #D9D9D9;
}
.practice-experience .container .right .card-c:first-of-type {
  padding-top: 0px;
}
@media only screen and (max-width: 992px) {
  .practice-experience .container .right {
    max-width: 100%;
  }
}
.practice-experience .container .right .content {
  overflow: hidden;
  margin-bottom: 26px;
  transition: max-height 0.4s ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  transition: max-height 0.4s ease;
}
.practice-experience .container .right .content.no-margin-bottom {
  margin-bottom: 0px;
}
.practice-experience .container .right .content.no-margin-bottom .description > *:last-of-type {
  margin-bottom: 0px;
}
.practice-experience .container .right .content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  max-height: auto;
  margin-bottom: 0px;
}
.practice-experience .container .right .content p,
.practice-experience .container .right .content a {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content p strong,
.practice-experience .container .right .content p b,
.practice-experience .container .right .content a strong,
.practice-experience .container .right .content a b {
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content p a,
.practice-experience .container .right .content a a {
  text-decoration: underline;
}
.practice-experience .container .right .content em {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
}
.practice-experience .container .right .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: normal;
  margin-bottom: 12px;
}
.practice-experience .container .right .content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 23px;
}
.practice-experience .container .right .content ul > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content ul > * strong,
.practice-experience .container .right .content ul > * b {
  font-weight: 600;
  line-height: 140%;
  letter-spacing: normal;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content ul li {
  position: relative;
  margin-bottom: 10px;
}
.practice-experience .container .right .content ul li span {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 154%;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content ul li:before {
  content: "";
  position: absolute;
  left: -14px;
  top: 5px;
  transform: translate(-50%);
  height: 10px;
  width: 10px;
  background: #DB351F;
}
.practice-experience .container .right .content ul li strong,
.practice-experience .container .right .content ul li b {
  font-weight: 600;
  line-height: 140%;
}
.practice-experience .container .right .content ul li i {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .content ul li i span {
  font-style: italic;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.5px;
}
.practice-experience .container .right .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-top: 0px;
  display: flex;
  align-items: center;
}
.practice-experience .container .right .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.practice-experience .container .right .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.practice-experience .container .right .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.practice-experience .container .right .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.practice-experience .container .right .link-arrow-right span.minus-e {
  display: flex;
}
.practice-experience .container .right .results.single-result .card-c {
  border-bottom: 0px solid #D9D9D9;
  padding-bottom: 0px;
}

.mto-impact {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  background: #F9F6F3;
  padding-top: 50px;
}
.mto-impact .container {
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .mto-impact .container {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.mto-impact .block_wrapper .content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mto-impact .block_wrapper .content strong,
.mto-impact .block_wrapper .content b {
  color: var(--Text-gray_dark, #231F20);
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 116%;
  /* 27.84px */
  margin-bottom: 11px;
}
.mto-impact .block_wrapper .content .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
@media only screen and (max-width: 992px) {
  .mto-impact .block_wrapper .content {
    max-width: 100%;
  }
}
.mto-impact .block_wrapper .content .main {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
.mto-impact .block_wrapper .content .main h1.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .mto-impact .block_wrapper .content .main h1.title {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 550px) {
  .mto-impact .block_wrapper .content .main h1.title {
    font-size: 40px;
    line-height: 93%;
    letter-spacing: -1.2px;
  }
}
.mto-impact .block_wrapper .content .main .text > * {
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  font-family: "neue-haas-grotesk-display", sans-serif;
}
.mto-impact .block_wrapper .content .cards {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 992px) {
  .mto-impact .block_wrapper .content .cards {
    margin-top: 30px;
    gap: 64px;
  }
}
.mto-impact .block_wrapper .content .cards .card-c {
  max-width: 565px;
  display: flex;
  gap: 16px;
  align-items: start;
}
.mto-impact .block_wrapper .content .cards .card-c iframe {
  height: 55px;
  width: 55px;
}
.mto-impact .block_wrapper .content .cards .card-c .title h2,
.mto-impact .block_wrapper .content .cards .card-c .title h3,
.mto-impact .block_wrapper .content .cards .card-c .title h3,
.mto-impact .block_wrapper .content .cards .card-c .title h5 {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 116%;
  margin-bottom: 11px;
}
.mto-impact .block_wrapper .content .cards .card-c .title p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 116%;
  max-width: 462px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
}
.mto-impact .block_wrapper .content .cards .card-c .title p strong {
  font-weight: 500;
}
.mto-impact .block_wrapper .content .cards .card-c .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
}
.mto-impact .block_wrapper .content .cards .card-c .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.mto-impact .block_wrapper .content .cards .card-c .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.mto-impact .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.mto-impact .block_wrapper .content .cards .card-c .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.mto-impact .block_wrapper .content .cards .card-c:last-of-type {
  margin-left: auto;
}
.mto-impact .block_wrapper .content .cards .card-c:first-of-type iframe {
  transform: rotate(45deg);
}
.mto-impact .block_wrapper .content .cards .card-c .animated-graphic {
  position: relative;
  width: 85px;
  height: 85px;
  margin-right: 16px;
  transform: rotate(-45deg);
  display: flex;
  align-content: center;
  justify-content: center;
}
.mto-impact .block_wrapper .content .cards .card-c .graphic-bg {
  display: block;
  width: 80px;
  height: 80px;
}
.mto-impact .block_wrapper .content .cards .card-c:last-child .graphic-bg {
  width: 80px;
  height: 60px;
}
@media only screen and (max-width: 620px) {
  .mto-impact .block_wrapper .content .cards .card-c:last-child .graphic-bg {
    width: 80px;
  }
}

.listing-news-accordion {
  position: relative;
  z-index: 1;
  background: #F9F6F3;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .listing-news-accordion {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.listing-news-accordion .more {
  position: relative;
}
.listing-news-accordion .more .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
@media only screen and (max-width: 992px) {
  .listing-news-accordion .more .container {
    flex-direction: column;
    align-items: start;
    padding: 40px 32px;
  }
}
.listing-news-accordion .more .container h4.heading {
  width: 100%;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 127%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 992px) {
  .listing-news-accordion .more .container h4.heading {
    max-width: 100%;
  }
}
.listing-news-accordion .more .container .accordion {
  max-width: 740px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .listing-news-accordion .more .container .accordion {
    max-width: 100%;
  }
}
.listing-news-accordion .more .container .accordion .description {
  margin-bottom: 32px;
}
.listing-news-accordion .more .container .accordion .description > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  letter-spacing: 0.32px;
  margin-bottom: 16px;
}
.listing-news-accordion .more .container .accordion .description > * b,
.listing-news-accordion .more .container .accordion .description > * strong {
  font-weight: 700;
}
.listing-news-accordion .more .container .accordion .description b,
.listing-news-accordion .more .container .accordion .description strong {
  font-weight: 700;
}
.listing-news-accordion .more .container .accordion .description ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 20px;
}
.listing-news-accordion .more .container .accordion .description ul li {
  margin-bottom: 10px;
  padding-left: 6px;
  position: relative;
}
.listing-news-accordion .more .container .accordion .description ul li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 8px;
  transform: translate(-50%);
  height: 8px;
  width: 8px;
  background: #DB351F;
}
.listing-news-accordion .more .container .accordion .description a {
  color: #231F20;
}
.listing-news-accordion .more .container .accordion .accordion-item .accordion-header {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.4px;
  padding: 20px 0px;
  border: none;
  border-bottom: 1px solid #231F20;
  background: transparent;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.listing-news-accordion .more .container .accordion .accordion-item .accordion-header svg path {
  fill: #231F20;
}
.listing-news-accordion .more .container .accordion .accordion-item .accordion-content,
.listing-news-accordion .more .container .accordion .accordion-item a {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.listing-news-accordion .more .container .accordion .accordion-item .accordion-content ul,
.listing-news-accordion .more .container .accordion .accordion-item a ul {
  list-style: circle;
  margin-bottom: 32px;
}
.listing-news-accordion .more .container .accordion .accordion-item .accordion-content ul li,
.listing-news-accordion .more .container .accordion .accordion-item a ul li {
  margin-bottom: 10px;
}
.listing-news-accordion .more .container .accordion .accordion-item a {
  padding: 0px;
}
.listing-news-accordion .more .container .accordion .accordion-item.active .accordion-content {
  margin-top: 20px;
  max-height: 500px;
}

.newsletter-signup {
  position: relative;
  background-color: #F9F6F3;
}
.newsletter-signup .container {
  display: flex;
  justify-content: space-between;
  padding-top: 140px;
  padding-bottom: 140px;
  align-items: start;
  z-index: 1;
  position: relative;
  max-width: 1144px;
}
@media only screen and (max-width: 992px) {
  .newsletter-signup .container {
    flex-direction: column;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
    align-items: start;
  }
}
.newsletter-signup .container .left {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .newsletter-signup .container .left {
    max-width: 100%;
  }
}
.newsletter-signup .container .left .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.newsletter-signup .container .left h3.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 992px) {
  .newsletter-signup .container .left h3.title {
    max-width: 496px;
    max-width: 100%;
  }
}
.newsletter-signup .container .left .content > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.newsletter-signup .container .right {
  max-width: 488px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .newsletter-signup .container .right {
    max-width: 100%;
  }
}
.newsletter-signup .container .right .wpforms-container {
  margin-top: 20px;
  margin-bottom: 0px;
}
.newsletter-signup .container .right .wpforms-container .wpforms-field-container .wpforms-field {
  padding-top: 0px;
  padding-bottom: 12px;
}
.newsletter-signup .container .right .wpforms-container .wpforms-field-container .wpforms-field input {
  display: flex;
  height: 48px;
  padding: 8px 16px;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), var(--Surface-clay_light, #F2EFEC);
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 154%;
  letter-spacing: 0.32px;
  max-width: 100%;
}
.newsletter-signup .container .right .wpforms-container .wpforms-field-container .wpforms-field input[type=checkbox] {
  background: none;
  display: block;
  max-width: 20px;
  padding: 0px;
}
.newsletter-signup .container .right .wpforms-container .wpforms-field-checkbox label {
  font-weight: bold;
}
.newsletter-signup .container .right .wpforms-container .wpforms-submit-container button.wpforms-submit {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  background: #DB341F;
  color: #FFF;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 20px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  transition: 0.2s all ease-in;
}
.newsletter-signup .container .right .wpforms-container .wpforms-submit-container button.wpforms-submit:hover {
  background-color: #A02012;
  font-size: 16.5px;
}

.search-hero {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
.search-hero .graphic-bg {
  left: 10%;
  top: -60px;
  position: absolute;
  height: 155%;
  width: 100%;
  -o-object-position: 92%;
  object-position: 102%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.2);
  margin-top: -60px;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .search-hero .graphic-bg {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.search-hero .container {
  padding-bottom: 160px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding-top: 160px;
}
@media only screen and (max-width: 992px) {
  .search-hero .container {
    padding-bottom: 40px;
  }
}
.search-hero .block_wrapper .content {
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 992px) {
  .search-hero .block_wrapper .content {
    max-width: 100%;
  }
}
.search-hero .block_wrapper .content .main {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.search-hero .block_wrapper .content .main h2.tag {
  position: relative;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 154%;
  text-transform: uppercase;
  font-family: "neue-haas-grotesk-display", sans-serif;
  transition: 0.2s all ease-in;
}
.search-hero .block_wrapper .content .main h2.tag:after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.search-hero .block_wrapper .content .main h2.tag span {
  margin-left: 20px;
}
.search-hero .block_wrapper .content .main h1.title {
  color: #231F20;
  font-size: 42px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.26px;
  font-family: "neue-haas-grotesk-text", sans-serif;
  margin-bottom: 16px;
}
.search-hero .block_wrapper .content .main .search-input .wpgb-clear-button {
  display: none;
}
.search-hero .block_wrapper .content .main .search-input label {
  cursor: pointer;
}
.search-hero .block_wrapper .content .main .search-input input.wpgb-input {
  width: 90%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 48px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-indent: 0px;
}
.search-hero .block_wrapper .content .main .search-input input.wpgb-input::-moz-placeholder {
  font-size: inherit;
}
.search-hero .block_wrapper .content .main .search-input input.wpgb-input::placeholder {
  font-size: inherit;
}
.search-hero .block_wrapper .content .main .search-input svg {
  left: unset;
  right: 0;
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  padding: 14px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
  top: 0;
  stroke: white;
  height: 20px;
  width: 19px;
}
.search-hero .block_wrapper .content .main .search-input svg path {
  cursor: pointer;
}

.global-search {
  background: #F9F6F3;
  z-index: 1;
  position: relative;
}
.global-search .filter-by {
  z-index: 1;
  position: relative;
}
.global-search .filter-by .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 50px;
}
@media only screen and (max-width: 992px) {
  .global-search .filter-by .container {
    flex-direction: column;
    gap: 32px;
  }
}
.global-search .filter-by .wrapper {
  background: #F9F6F3;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  padding-top: 30px;
  padding-bottom: 30px;
}
.global-search .filter-by .wrapper .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 450;
  line-height: 127%;
  text-transform: capitalize;
  white-space: nowrap;
}
.global-search .filter-by .wrapper .wpgb-facet {
  max-width: 100%;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset {
  margin-bottom: 0px;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul {
    flex-wrap: wrap;
    justify-content: start;
  }
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li {
  margin-top: 0px;
  margin-right: 50px;
}
@media only screen and (max-width: 992px) {
  .global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li {
    margin-right: 16px;
  }
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li:last-of-type {
  margin-right: 0px;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-control {
  display: none;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-label {
  padding-left: 0px;
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 8px;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li .wpgb-radio[aria-pressed=true] .wpgb-radio-label {
  position: relative;
}
.global-search .filter-by .wrapper .wpgb-facet fieldset .wpgb-radio-facet ul li .wpgb-radio[aria-pressed=true] .wpgb-radio-label:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: #DB341F;
  left: 0;
}
.global-search .filter-by .results-for {
  margin-top: 40px;
  margin-bottom: 32px;
}
.global-search .filter-by .results-for .container {
  justify-content: start;
  gap: 0px;
}
@media only screen and (max-width: 992px) {
  .global-search .filter-by .results-for .container {
    flex-direction: row;
  }
}
.global-search .filter-by .results-for .container p.title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 131%;
  letter-spacing: -0.54px;
}
.global-search .filter-by .results-for .container .fallback-all {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
  margin-left: 8px;
}
.global-search .filter-by .results-for .container .wpgb-facet fieldset {
  margin-bottom: 0px;
}
.global-search .filter-by .results-for .container .wpgb-facet fieldset .wpgb-button {
  background: none;
  border: none;
  padding: 0px;
  cursor: auto;
}
.global-search .filter-by .results-for .container .wpgb-facet fieldset .wpgb-button .wpgb-button-control {
  display: none;
}
.global-search .filter-by .results-for .container .wpgb-facet fieldset .wpgb-button .wpgb-button-label {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 131%;
  letter-spacing: -0.54px;
}
.global-search .showing {
  margin-top: 32px;
  margin-bottom: 32px;
}
.global-search .showing .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .global-search .showing .container {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }
}
.global-search .showing .container .left {
  display: flex;
  gap: 5px;
}
.global-search .showing .container .left > * {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-weight: 450;
  line-height: 24px;
  letter-spacing: 0.6px;
}
.global-search .showing .container .right .wpgb-facet {
  display: flex;
  align-items: center;
}
.global-search .showing .container .right .wpgb-facet .wpgb-facet-title {
  margin-bottom: 0px;
  overflow: hidden;
  color: #231F20;
  text-overflow: ellipsis;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.45px;
}
.global-search .showing .container .right .wpgb-facet fieldset {
  margin-bottom: 0px;
}
.global-search .showing .container .right .wpgb-facet input {
  max-width: 88px;
}
.global-search .showing .container .right .wpgb-facet input::-moz-placeholder {
  color: #DB341F;
}
.global-search .showing .container .right .wpgb-facet input::placeholder {
  color: #DB341F;
}
.global-search .showing .container .right .wpgb-facet .wpgb-select {
  border: none !important;
}
.global-search .showing .container .right .wpgb-facet .wpgb-select-separator {
  display: none;
}
.global-search .showing .container .right .wpgb-facet .wpgb-select .wpgb-select-controls button svg {
  stroke: #DB341F;
}
.global-search .search-results {
  margin-top: 32px;
}
.global-search .search-results .lawyer-capability {
  margin-bottom: 80px;
}
.global-search .search-results .lawyer-capability .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 700px) {
  .global-search .search-results .lawyer-capability .container {
    flex-direction: column;
    gap: 50px;
  }
}
.global-search .search-results .lawyer-capability .container .hr {
  height: auto;
  background: #D4D4D4;
  width: 1px;
  margin-right: 48px;
  margin-left: 48px;
}
.global-search .search-results .lawyer-capability .container .group-result {
  max-width: 572px;
  width: 100%;
}
.global-search .search-results .lawyer-capability .container .group-result .header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.global-search .search-results .lawyer-capability .container .group-result .header p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
}
.global-search .search-results .lawyer-capability .container .group-result .header .count {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 15px;
  font-weight: 450;
  line-height: 24px;
  letter-spacing: 0.6px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 40px;
}
@media only screen and (max-width: 992px) {
  .global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a {
  display: flex;
  text-decoration: none;
  gap: 14px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a img {
  max-width: 100px;
  max-height: 100px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a .content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 4px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a .content .top .name {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 19.2px */
  letter-spacing: 0.64px;
  margin-bottom: 4px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a .content .top .title {
  color: #717171;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.56px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a .content .location {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.56px;
}
.global-search .search-results .lawyer-capability .container .group-result.lawyers-group .results .group-list a:hover .name {
  text-decoration: underline;
}
.global-search .search-results .lawyer-capability .container .group-result.practices-group .group-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.global-search .search-results .lawyer-capability .container .group-result.practices-group .group-list a {
  color: #231F20;
  text-decoration: none;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.global-search .search-results .lawyer-capability .container .group-result.practices-group .group-list a:hover {
  text-decoration: underline;
}
.global-search .search-results .lawyer-capability .container .group-result .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  margin-top: 48px;
}
.global-search .search-results .lawyer-capability .container .group-result .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.global-search .search-results .lawyer-capability .container .group-result .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.global-search .search-results .lawyer-capability .container .group-result .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.global-search .search-results .lawyer-capability .container .group-result .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.global-search .search-results .lawyer-capability.selected .container .group-result.lawyers-group {
  max-width: 100%;
}
.global-search .search-results .lawyer-capability.selected .container .group-result.lawyers-group .results .group-list {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: row;
}
@media only screen and (max-width: 992px) {
  .global-search .search-results .lawyer-capability.selected .container .group-result.lawyers-group .results .group-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 580px) {
  .global-search .search-results .lawyer-capability.selected .container .group-result.lawyers-group .results .group-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.global-search .search-results .lawyer-capability.selected .practices-group {
  max-width: 180%;
}
.global-search .search-results .lawyer-capability.selected .practices-group .results .group-list {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}
@media only screen and (max-width: 992px) {
  .global-search .search-results .lawyer-capability.selected .practices-group .results .group-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 580px) {
  .global-search .search-results .lawyer-capability.selected .practices-group .results .group-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.global-search .search-results .lawyer-capability.selected .hr {
  display: none;
}
.global-search .achievement-results,
.global-search .news-results {
  padding-top: 50px;
  padding-bottom: 50px;
  background: white;
}
.global-search .achievement-results .header,
.global-search .news-results .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media only screen and (max-width: 580px) {
  .global-search .achievement-results .header,
  .global-search .news-results .header {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: start;
  }
  .global-search .achievement-results .header a,
  .global-search .news-results .header a {
    margin-top: 16px !important;
  }
}
.global-search .achievement-results .header p,
.global-search .news-results .header p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.96px;
}
.global-search .achievement-results .header .link-arrow-right,
.global-search .news-results .header .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 400;
  margin-top: 48px;
}
.global-search .achievement-results .header .link-arrow-right .icon,
.global-search .news-results .header .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.global-search .achievement-results .header .link-arrow-right:hover,
.global-search .news-results .header .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.global-search .achievement-results .header .link-arrow-right:hover .icon,
.global-search .news-results .header .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.global-search .achievement-results .header .link-arrow-right:hover .icon svg path,
.global-search .news-results .header .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.global-search .achievement-results .group-list,
.global-search .news-results .group-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .global-search .achievement-results .group-list,
  .global-search .news-results .group-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.global-search .achievement-results .group-list .card-c,
.global-search .news-results .group-list .card-c {
  display: flex;
  min-height: 250px;
  height: auto;
  width: 290px;
  align-items: flex-start;
  background-color: #F9F6F3;
  text-decoration: none;
  border-top: 1px solid #DB341F;
  justify-content: space-between;
  align-items: start;
  text-align: left;
  flex-direction: column;
}
@media only screen and (max-width: 750px) {
  .global-search .achievement-results .group-list .card-c,
  .global-search .news-results .group-list .card-c {
    width: 100%;
  }
}
.global-search .achievement-results .group-list .card-c:last-of-type,
.global-search .news-results .group-list .card-c:last-of-type {
  margin-right: 0px;
}
.global-search .achievement-results .group-list .card-c a,
.global-search .news-results .group-list .card-c a {
  padding: 24px;
  text-decoration: none;
  flex: 1;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.global-search .achievement-results .group-list .card-c .title,
.global-search .news-results .group-list .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  width: 100%;
  transition: 0.2s all ease-in;
}
@media only screen and (max-width: 500px) {
  .global-search .achievement-results .group-list .card-c .title,
  .global-search .news-results .group-list .card-c .title {
    max-width: 100%;
    width: 100%;
  }
}
.global-search .achievement-results .group-list .card-c p,
.global-search .news-results .group-list .card-c p {
  color: #717171;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%;
  letter-spacing: 0.64px;
  margin-top: 32px;
}
@media only screen and (max-width: 992px) {
  .global-search .achievement-results .group-list .card-c,
  .global-search .news-results .group-list .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    padding: 32px;
  }
  .global-search .achievement-results .group-list .card-c:last-child,
  .global-search .news-results .group-list .card-c:last-child {
    border: none;
  }
}
@media only screen and (max-width: 500px) {
  .global-search .achievement-results .group-list .card-c,
  .global-search .news-results .group-list .card-c {
    max-width: 100%;
    width: 100%;
  }
}
.global-search .achievement-results .group-list .card-c:hover .title,
.global-search .news-results .group-list .card-c:hover .title {
  text-decoration: underline;
}
.global-search .news-results {
  background: #F9F6F3;
}
.global-search .news-results .group-list .card-c {
  background: white;
}
.global-search .news-results.selected {
  padding-top: 0px;
}
.global-search .news-results.selected .news-group .group-list {
  flex-wrap: wrap;
}
@media only screen and (max-width: 992px) {
  .global-search .news-results.selected .news-group .group-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.archive-clerkship {
  padding-top: 130px;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .archive-clerkship {
    padding-top: 40px;
  }
}
.archive-clerkship .block-wrapper {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 100px;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .block-wrapper {
    flex-direction: column;
  }
}
.archive-clerkship .block-wrapper .left .content {
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 582px;
  width: 100%;
  gap: 16px;
  margin: 0px 0px;
}
@media only screen and (max-width: 992px) {
  .archive-clerkship .block-wrapper .left .content {
    width: 100%;
  }
}
.archive-clerkship .block-wrapper .left .content .tag {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 127%;
  text-transform: uppercase;
}
.archive-clerkship .block-wrapper .left .content .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
}
.archive-clerkship .block-wrapper .left .content p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.64px;
}
.archive-clerkship .block-wrapper .left .content .links {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 35px;
}
.archive-clerkship .block-wrapper .left .content .links a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: 0.2s all ease-in;
}
.archive-clerkship .block-wrapper .left .content .links a:hover {
  font-weight: 500;
  gap: 8px;
}
.archive-clerkship .block-wrapper .left .content .links a.active {
  font-weight: 500;
  gap: 8px;
}
.archive-clerkship .block-wrapper .right {
  width: 100%;
  max-width: 420px;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .block-wrapper .right {
    max-width: 100%;
  }
}
.archive-clerkship .block-wrapper .right .select {
  /*
                  .wpgb-facet.archive-clerkship-facet-judge,
                  .wpgb-facet.archive-clerkship-facet-lawyer {






                      input.wpgb-input {
                          width: 100%;
                          border-radius: 2px;
                          border: 0.5px solid #CECECE;
                          background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
                          color: $gray-brand;
                          font-size: 16px;
                          font-weight: 400;
                          line-height: 16px;
                          height: 48px;
                          max-height: 48px;
                          padding: 8px 16px;
                          padding-right: 30px;
                          border-top-left-radius: 5px;
                          border-bottom-left-radius: 5px;
                          font-family: $font-display;
                          text-indent: 0px;

                          &::placeholder {
                              font-size: inherit;
                          }
                      }

                      svg {
                          left: unset;
                          right: 0;
                          border: none;
                          padding: none;
                          background: #DB341F;
                          cursor: pointer;
                          max-height: 48px;
                          padding: 14px;
                          border-top-right-radius: 5px;
                          border-bottom-right-radius: 5px;
                          margin: 0px;
                          top: 0;
                          stroke: white;
                          height: 20px;
                          width: 19px;

                          path {
                              cursor: pointer;
                          }
                      }

                  }
  */
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet-title {
  display: none;
}
.archive-clerkship .block-wrapper .right .select fieldset {
  margin-bottom: 16px;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet .wpgb-clear-button {
  display: none;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-placeholder {
  padding: 0px;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-placeholder .wpgb-select-value {
  position: absolute;
  z-index: 1;
  padding-left: 10px;
  left: 16px;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-controls .wpgb-select-clear {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  border-top: 0.5px solid #CECECE;
  border-bottom: 0.5px solid #CECECE;
  color: #555;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-controls .wpgb-select-separator {
  display: none;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-controls .wpgb-select-toggle {
  padding: 0px;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-controls .wpgb-select-toggle svg {
  left: unset;
  right: 0;
  border: none;
  padding: none;
  background: #DB341F;
  cursor: pointer;
  max-height: 48px;
  padding: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  margin: 0px;
  top: 0;
  stroke: white;
  height: 20px;
  width: 19px;
  height: 100%;
  width: 47px;
}
.archive-clerkship .block-wrapper .right .select .wpgb-select-controls .wpgb-select-toggle svg path {
  cursor: pointer;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-judge .wpgb-select,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-lawyer .wpgb-select,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-court .wpgb-select,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-year .wpgb-select {
  border: none !important;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-judge .wpgb-select .wpgb-select-search,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-lawyer .wpgb-select .wpgb-select-search,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-court .wpgb-select .wpgb-select-search,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-year .wpgb-select .wpgb-select-search {
  border-bottom: none !important;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-judge .wpgb-select .wpgb-select-search input,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-lawyer .wpgb-select .wpgb-select-search input,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-court .wpgb-select .wpgb-select-search input,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-year .wpgb-select .wpgb-select-search input {
  width: 100%;
  border-radius: 2px;
  border: 0.5px solid #CECECE;
  border-right: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 100%), #F2EFEC;
  color: #231F20;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  height: 48px;
  max-height: 48px;
  padding: 8px 16px;
  padding-right: 30px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-family: "neue-haas-grotesk-display", sans-serif;
  text-indent: 0px;
  min-width: 100%;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-judge .wpgb-select .wpgb-select-search input::-moz-placeholder, .archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-lawyer .wpgb-select .wpgb-select-search input::-moz-placeholder, .archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-court .wpgb-select .wpgb-select-search input::-moz-placeholder, .archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-year .wpgb-select .wpgb-select-search input::-moz-placeholder {
  font-size: inherit;
}
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-judge .wpgb-select .wpgb-select-search input::placeholder,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-lawyer .wpgb-select .wpgb-select-search input::placeholder,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-court .wpgb-select .wpgb-select-search input::placeholder,
.archive-clerkship .block-wrapper .right .select .wpgb-facet.archive-clerkship-facet-year .wpgb-select .wpgb-select-search input::placeholder {
  font-size: inherit;
}
.archive-clerkship .block-wrapper .right .archive-reset {
  display: flex;
  justify-content: end;
}
.archive-clerkship .block-wrapper .right .archive-reset .wpgb-reset {
  background: none;
  border: none;
  color: #c93c1e;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0px;
}
.archive-clerkship .block-wrapper .right .archive-reset .wpgb-reset[disabled] {
  display: none;
}
.archive-clerkship .accordion {
  position: relative;
  background: white;
}
.archive-clerkship .accordion .bg-graphic {
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .archive-clerkship .accordion .bg-graphic {
    display: none !important;
  }
}
.archive-clerkship .accordion .container {
  position: relative;
}
.archive-clerkship .accordion .tabs {
  position: absolute;
  top: -54px;
  left: 32px;
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .accordion .tabs {
    left: 16px;
    width: auto;
  }
}
.archive-clerkship .accordion .tabs .tab {
  width: 210.289px;
  height: 54px;
  border-radius: 5px 5px 0px 0px;
  background: #E7E4E1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .accordion .tabs .tab {
    padding: 0px 16px;
    width: auto;
  }
}
.archive-clerkship .accordion .tabs .tab p {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.6px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .accordion .tabs .tab p {
    font-size: 16px;
    gap: 16px;
  }
}
.archive-clerkship .accordion .tabs .tab p svg {
  height: 21px;
}
@media only screen and (max-width: 700px) {
  .archive-clerkship .accordion .tabs .tab p svg {
    height: 16px;
  }
}
.archive-clerkship .accordion .tabs .tab p svg path {
  fill: #9F9F9F !important;
}
.archive-clerkship .accordion .tabs .tab p svg rect {
  fill: #9F9F9F !important;
}
.archive-clerkship .accordion .tabs .tab.active {
  background: white;
}
.archive-clerkship .accordion .tabs .tab.active svg path {
  fill: #DB351F !important;
}
.archive-clerkship .accordion .tabs .tab.active svg rect {
  fill: #DB351F !important;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type fieldset {
  margin: 0px;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul {
  display: flex;
  gap: 63px;
  justify-content: center;
  flex-wrap: wrap;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li {
  margin: 0px;
  transition: 0.3s all ease-in;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:first-of-type {
  display: none;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-control {
  display: none;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-label {
  max-width: 258px;
  padding: 72px 21px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 262px;
  line-height: normal;
  background: #F9F6F3;
  color: #000;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 28px;
  font-weight: 600;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-label span {
  display: block;
  margin-top: 20px;
  color: #DB351F;
  line-height: normal;
  text-align: center;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li .wpgb-radio .wpgb-radio-label span.number {
  font-size: inherit;
  color: #888;
  margin: 0;
  display: none;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:hover .wpgb-radio-label {
  color: white;
  background: #DB341F;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:hover .wpgb-radio-label span {
  color: white;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:has(input[value=u-s-supreme-court]) {
  order: 1;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:has(input[value=u-s-court-of-appeals]) {
  order: 2;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:has(input[value=u-s-district-court]) {
  order: 3;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:has(input[value=state-supreme-court]) {
  order: 4;
}
.archive-clerkship .accordion .second-filters .archive-clerkship-facet-court-type .wpgb-radio-facet ul li:has(input[value=""]) {
  order: 0;
  /* "All" stays at top */
}
.archive-clerkship .archive-clerkship-facet-court-type {
  display: block;
  padding-top: 250px;
  padding-bottom: 250px;
}
@media only screen and (max-width: 992px) {
  .archive-clerkship .archive-clerkship-facet-court-type {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.archive-clerkship .results {
  display: none;
}
.archive-clerkship .results .archive-clerkship-facet-court-type {
  padding: 0px;
  padding-top: 74px;
  padding-bottom: 74px;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list {
  justify-content: unset;
  gap: 20px;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio[aria-pressed=true]::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background-color: #DB351F;
  margin-right: 6px;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio[aria-pressed=true]::before .wpgb-radio-label {
  font-weight: 700;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio .wpgb-radio-label {
  padding: 0px !important;
  height: auto;
  width: auto;
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  min-height: auto;
  background: none;
  white-space: nowrap;
  display: block;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio .wpgb-radio-label span {
  display: none;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio .wpgb-radio-label span.number {
  display: inline-block;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li .wpgb-radio .wpgb-radio-label:hover {
  background: none;
}
.archive-clerkship .results .archive-clerkship-facet-court-type .wpgb-radio-facet ul.wpgb-hierarchical-list li:has(.wpgb-radio input[value=state-supreme-court]) {
  order: 999;
  /* High number to ensure it's always last */
}
.archive-clerkship .results .clerkship-results-list {
  padding-bottom: 50px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-item {
  border-bottom: 1px solid #DB351F;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-item:last-child {
  border-bottom: none;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-header h3 {
  margin: 0;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -0.6px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-header.active h3 {
  color: #000;
  font-weight: 600;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-header.active .plus-icon {
  display: none;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-header.active .minus-icon {
  display: block !important;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-icon {
  width: 24px;
  height: 24px;
  color: #666;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-icon svg {
  width: 100%;
  height: 100%;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-content {
  padding: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  max-height: 0;
  opacity: 0;
  background: #F2EFEC;
  margin-bottom: 16px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .accordion-content.show {
  max-height: 5000px;
  opacity: 1;
  padding: 16px 32px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerkships-table {
  display: flex;
  gap: 80px;
  position: relative;
}
@media (max-width: 768px) {
  .archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerkships-table {
    flex-direction: column;
    gap: 30px;
  }
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .column-divider {
  background: #D7D7D7;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerkships-column {
  flex: 1;
  min-width: 0;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-group {
  margin-bottom: 35px;
  margin-top: 32px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-group:last-child {
  margin-bottom: 0;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-group:first-child {
  margin-top: 16px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-header {
  margin-bottom: 10px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-header .judge-label {
  color: #000;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .judge-header .judge-name {
  color: #000;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerk-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerk-row:first-child {
  padding-top: 0;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerk-row .clerk-name {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion .clerk-row .year {
  color: #000;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.archive-clerkship .results .clerkship-results-list .clerkship-accordion p {
  margin: 0;
}

.stats-clerkship {
  position: relative;
  max-width: 100%;
  margin-top: 120px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  background: #294F59;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .stats-clerkship {
    padding-bottom: 40px;
    padding-top: 40px;
    margin-top: 40px;
  }
}
.stats-clerkship .graphic-bg {
  left: 0;
  position: absolute;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  opacity: 0.1;
  bottom: 0;
}
@media only screen and (min-width: 1800px) {
  .stats-clerkship .graphic-bg {
    max-height: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .stats-clerkship .graphic-bg {
    -o-object-position: center 100%;
       object-position: center 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.stats-clerkship .block_wrapper .title {
  margin-bottom: 80px;
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
}
@media only screen and (max-width: 992px) {
  .stats-clerkship .block_wrapper .title {
    margin-bottom: 30px;
  }
}
.stats-clerkship .block_wrapper .cards {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 992px) {
  .stats-clerkship .block_wrapper .cards {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
  }
}
.stats-clerkship .block_wrapper .cards .card-c {
  display: flex;
  width: 33%;
  align-items: flex-start;
  text-decoration: none;
  justify-content: start;
  align-items: start;
  flex-direction: row;
  text-align: left;
  gap: 10px;
}
@media only screen and (max-width: 750px) {
  .stats-clerkship .block_wrapper .cards .card-c {
    width: 100%;
  }
}
.stats-clerkship .block_wrapper .cards .card-c .title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -1.66px;
  margin-bottom: 16px;
  color: white;
}
@media only screen and (max-width: 500px) {
  .stats-clerkship .block_wrapper .cards .card-c .title {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px;
  }
}
.stats-clerkship .block_wrapper .cards .card-c p {
  color: #231F20;
  font-family: "neue-haas-grotesk-display", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 350;
  line-height: 140%;
  height: 42%;
  letter-spacing: 0.36px;
  color: white;
}
@media only screen and (max-width: 992px) {
  .stats-clerkship .block_wrapper .cards .card-c {
    border-bottom: 1px solid #D9D9D9;
    max-width: 100%;
    width: 100%;
    padding-bottom: 30px;
  }
  .stats-clerkship .block_wrapper .cards .card-c:last-child {
    border: none;
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 500px) {
  .stats-clerkship .block_wrapper .cards .card-c {
    max-width: 100%;
    width: 100%;
    flex-direction: column;
  }
}

.back-to-top {
  position: relative;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-top: 24px;
  padding-bottom: 60px;
  overflow: hidden;
  background: white;
}
@media only screen and (max-width: 500px) {
  .back-to-top {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}
.back-to-top .container {
  position: relative;
  z-index: 1;
}
.back-to-top .link-arrow-right {
  color: #DB351F;
  font-size: 16px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: 0.32px;
  text-decoration: none;
  margin-top: 22px;
  position: relative;
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
  transition: 0.2s all ease-in;
  font-family: "neue-haas-grotesk-text", sans-serif;
  color: black;
  margin-top: 0px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}
.back-to-top .link-arrow-right .icon {
  margin-left: 8px;
  transition: 0.2s all ease-in;
}
.back-to-top .link-arrow-right:hover {
  color: rgb(174.324, 42.188, 24.676);
}
.back-to-top .link-arrow-right:hover .icon {
  margin-left: 16px;
}
.back-to-top .link-arrow-right:hover .icon svg path {
  fill: rgb(174.324, 42.188, 24.676);
}
.back-to-top .link-arrow-right:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #DB351F;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s all ease-in;
}
.back-to-top .link-arrow-right span {
  padding-left: 25px;
}
.back-to-top .link-arrow-right span.icon {
  padding-left: 0px;
}
.back-to-top .link-arrow-right svg {
  transition: 0.2s all ease-in;
}
.back-to-top .link-arrow-right:hover .icon {
  margin-left: 8px;
  margin-bottom: 3px;
}
.back-to-top .link-arrow-right:hover .icon svg {
  margin-bottom: 4px;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

.red-period {
  color: #DB341F;
}

body {
  background: #F9F6F3;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  width: 100%;
  min-height: 100vh;
}
body i,
body em {
  font-style: italic !important;
}

@media only screen and (max-width: 1100px) {
  #wp-admin-bar-my-account {
    display: none;
  }
}
body.admin-bar header#header-desktop {
  top: 32px;
  transition: 0.2s all ease-in;
}

#main {
  contain: paint;
  margin-top: -60px;
}
#main article {
  padding-top: 60px;
}
#main .post-2272 {
  padding-top: 0px;
}

[id] {
  scroll-margin-top: 100px;
}

.in-page-nav.sticky-in-page {
  top: 48px;
}
.in-page-nav.sticky-in-page-up {
  top: 100px;
}

.bring-up {
  z-index: 2;
}

body.admin-bar .in-page-nav.sticky-in-page {
  transition: 0.2s all ease-in;
  top: 79px;
}

body.admin-bar .in-page-nav.sticky-in-page-up {
  top: 130px;
}

@media (max-width: 992px) {
  .in-page-nav.sticky-in-page {
    top: 0;
  }
  .in-page-nav.sticky-in-page-up {
    top: 48px;
  }
  body.admin-bar .in-page-nav.sticky-in-page {
    top: 32px;
  }
  body.admin-bar .in-page-nav.sticky-in-page-up {
    top: 32px;
  }
}
@media (max-width: 600px) {
  body.admin-bar .in-page-nav.sticky-in-page-up {
    top: 0px;
  }
  body.admin-bar .in-page-nav.sticky-in-page {
    top: 0px;
  }
  .page-template-default .in-page-nav.is-now-sticky nav ul {
    padding: 16px;
  }
}
.wpgb-button.wpgb-reset {
  position: relative;
}
.wpgb-button.wpgb-reset:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  /* space between text and icon */
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M14.9995%203.49375C14.9864%203.59866%2014.9364%203.69504%2014.859%203.76485C14.7815%203.83465%2014.6819%203.87307%2014.5789%203.87292H14.522L13.2004%203.695C14.149%204.94313%2014.6574%206.48434%2014.6426%208.06712C14.6278%209.64991%2014.0907%2011.1808%2013.1189%2012.4101C12.1471%2013.6393%2010.7981%2014.4943%209.29183%2014.8354C7.7856%2015.1766%206.21115%2014.9839%204.82541%2014.2887C3.43966%2013.5935%202.32443%2012.4368%201.66171%2011.0075C0.998983%209.57821%200.82789%207.96059%201.17635%206.41865C1.52481%204.87671%202.37224%203.50148%203.58037%202.51737C4.78849%201.53326%206.28598%200.998377%207.82847%201C7.94154%201%208.04998%201.0461%208.12994%201.12814C8.20989%201.21019%208.25481%201.32147%208.25481%201.4375C8.25481%201.55354%208.20989%201.66482%208.12994%201.74686C8.04998%201.82891%207.94154%201.875%207.82847%201.875C6.47405%201.87444%205.15971%202.3466%204.10136%203.21392C3.04302%204.08124%202.3036%205.29215%202.00457%206.64772C1.70554%208.0033%201.86468%209.42293%202.45586%2010.6734C3.04703%2011.9239%204.03508%2012.9309%205.2577%2013.529C6.48031%2014.127%207.8648%2014.2806%209.18371%2013.9644C10.5026%2013.6483%2011.6776%2012.8812%2012.5155%2011.7893C13.3534%2010.6973%2013.8045%209.34537%2013.7947%207.95553C13.7848%206.5657%2013.3147%205.22062%2012.4614%204.14125L12.3903%205.83292C12.3852%205.94487%2012.3384%206.05055%2012.2597%206.12816C12.1809%206.20576%2012.076%206.24938%2011.9668%206.25H11.9469C11.8909%206.24814%2011.8358%206.23483%2011.7849%206.21083C11.734%206.18683%2011.6883%206.15263%2011.6504%206.11025C11.6126%206.06786%2011.5833%206.01814%2011.5644%205.96401C11.5456%205.90987%2011.5374%205.85241%2011.5405%205.795L11.6542%203.07959C11.6526%203.07288%2011.6526%203.06588%2011.6542%203.05917C11.6528%203.04462%2011.6528%203.02997%2011.6542%203.01542V2.97167V2.95417C11.6529%202.9484%2011.6529%202.94243%2011.6542%202.93667C11.6615%202.91861%2011.6701%202.90107%2011.6797%202.88417C11.6914%202.86452%2011.7047%202.84598%2011.7195%202.82875C11.7451%202.79834%2011.7748%202.77183%2011.8076%202.75C11.8265%202.73663%2011.8465%202.72492%2011.8673%202.715L11.9242%202.69459H11.9412H11.9896H12.0919L14.5902%203.03584C14.6465%203.03808%2014.7017%203.05174%2014.7528%203.07601C14.8039%203.10029%2014.8498%203.13471%2014.8879%203.17728C14.9259%203.21986%2014.9554%203.26974%2014.9745%203.32406C14.9937%203.37837%2015.0022%203.43605%2014.9995%203.49375Z%22%20fill%3D%22black%22%20stroke%3D%22black%22%20stroke-width%3D%220.2%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.rank-math-html-sitemap {
  max-width: 1304px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  margin-bottom: 90px;
}
.rank-math-html-sitemap .rank-math-html-sitemap__title {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 116%;
  letter-spacing: -1.14px;
  margin-bottom: 16px;
}
.rank-math-html-sitemap ul {
  margin-bottom: 30px;
}
.rank-math-html-sitemap ul li {
  padding: 5px 0px;
}
.rank-math-html-sitemap ul li a {
  color: #231F20;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.36px;
  text-decoration: none;
  position: relative;
  transition: 0.2s all ease-in;
}
.rank-math-html-sitemap ul li a:hover {
  color: #DB341F;
}
.rank-math-html-sitemap ul li .rank-math-html-sitemap__list {
  margin-left: 30px;
  margin-bottom: 0px;
}

.block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100% !important;
}

.gutenburgPreview h1 {
  color: #231F20;
  font-size: 52px;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -1.56px;
}
.gutenburgPreview p {
  color: #DB341F;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 119%;
  letter-spacing: -0.84px;
}

:where(.editor-styles-wrapper) .archive-lawyer .block_wrapper .search fieldset .wpgb-facet-title,
:where(.editor-styles-wrapper) .archive-news .block_wrapper .wpgb-facet-title,
:where(.editor-styles-wrapper) .archive-capability .block_wrapper .wpgb-facet-title {
  display: none;
}

:where(.editor-styles-wrapper) .archive-lawyer .block_wrapper .search fieldset label span,
:where(.editor-styles-wrapper) .archive-news .block_wrapper fieldset label span,
:where(.editor-styles-wrapper) .archive-news .block_wrapper .select fieldset legend,
:where(.editor-styles-wrapper) .archive-news .block_wrapper .select fieldset legend.wpgb-facet-title .wpgb-sr-only,
:where(.editor-styles-wrapper) .archive-capability .block_wrapper fieldset label span {
  display: none;
}

:where(.editor-styles-wrapper) .archive-capability .block_wrapper fieldset label svg,
:where(.editor-styles-wrapper) .archive-news .block_wrapper fieldset label svg,
:where(.editor-styles-wrapper) .archive-lawyer .block_wrapper .search fieldset label svg {
  fill: none;
}

:where(.editor-styles-wrapper) .archive-lawyer .block_wrapper .search fieldset label,
:where(.editor-styles-wrapper) .archive-news .block_wrapper fieldset label,
:where(.editor-styles-wrapper) .archive-capability .block_wrapper fieldset label {
  display: flex;
}

:where(.editor-styles-wrapper) .archive-lawyer .filter-by-letter fieldset legend,
:where(.editor-styles-wrapper) .archive-news .filter-by-letter fieldset legend,
:where(.editor-styles-wrapper) .archive-capability .filter-by-letter fieldset legend {
  display: none;
}

:where(.editor-styles-wrapper) .archive-capability .filter-by-letter fieldset .wpgb-inline-list,
:where(.editor-styles-wrapper) .archive-news .filter-by-letter fieldset .wpgb-inline-list,
:where(.editor-styles-wrapper) .archive-lawyer .filter-by-letter fieldset .wpgb-inline-list {
  display: flex;
  gap: 10px;
}

:where(.editor-styles-wrapper) .wpgb-facet-title,
:where(.editor-styles-wrapper) .archive-news .filters .dropdown .select fieldset .wpgb-sr-only {
  display: none !important;
}

:where(.editor-styles-wrapper) .archive-news .filters .dropdown .select fieldset select {
  max-height: 40px;
}

:where(.editor-styles-wrapper) .archive-clerkship .wpgb-sr-only {
  display: none;
}

:where(.editor-styles-wrapper) .archive-clerkship .wpgb-search-facet label {
  display: flex;
}

:where(.editor-styles-wrapper) .archive-clerkship .wpgb-search-facet label svg {
  fill: none;
}
