@charset "UTF-8";
/*

  Theme Name: Wilklawfirm
  Author: 1POINT21

*/
* {
  margin: 0;
  padding: 0;
  outline: none;
}

a {
  outline: none;
}

a img {
  border: none;
  height: auto;
}

textarea {
  resize: none;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
} /* Disables scaling on landscape mobile */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1;
  font-family: "Overpass", sans-serif;
  color: #1A1A1A;
}

/*
html.fixed, body.fixed {
	overflow: hidden;
	height:100%;
}
*/
body .gform_wrapper .gform_validation_container {
  display: none;
}

.validation_error {
  display: none;
}

body img.gform_ajax_spinner {
  display: none !important;
}

li.gform_hidden {
  display: none !important;
}

.validation_message {
  margin-top: 10px;
}

header,
section,
nav,
footer {
  display: block;
}

.header-nav {
  box-shadow: 0 0 5px 2px rgba(154, 154, 154, 0.4470588235);
}

input,
textarea {
  -webkit-appearance: none;
}

.wistia_click_to_play > div > div {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-style: normal;
  font-weight: 400;
}

.tablet-only {
  display: none;
}

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-after-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .tablet-only {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .hide-sm {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hide-after-sm {
    display: none !important;
  }
  .hide-after-tab {
    display: none !important;
  }
}
@media (max-width: 1380px) {
  .hide-md {
    display: none !important;
  }
}
@media (min-width: 1381px) {
  .hide-after-md {
    display: none !important;
  }
}
.content-icon {
  height: 1em;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
}
.content-icon svg, .content-icon .fancy-svg, .content-icon img, .content-icon object {
  max-height: 100%;
  width: auto;
  height: auto;
  flex: 1 1;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-duration: 0.75s;
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-duration: 0.75s;
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-duration: 0.75s;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-duration: 2s;
  animation-name: hinge;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/*! Lity - v3.0.0-dev - 2018-07-09
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity-active,
.lity-active body {
  overflow: hidden;
}

.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: white;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close,
.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  z-index: 9994;
  width: 35px;
  height: 35px;
  /* Change to position: absolute to display close button inside content container */
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: white;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

.slick-list, .slick-slider, .slick-track {
  position: relative;
  display: block;
}

.slick-loading .slick-slide, .slick-loading .slick-track {
  visibility: hidden;
}

.slick-slider {
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after, .slick-track:before {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-next, .slick-next:focus, .slick-next:hover, .slick-prev, .slick-prev:focus, .slick-prev:hover {
  color: transparent;
  background: 0 0;
  outline: 0;
}

.slick-dots, .slick-next, .slick-prev {
  position: absolute;
  display: block;
  padding: 0;
}

.slick-dots li button:before, .slick-next:before, .slick-prev:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-weight: 400;
  font-style: normal;
}
.slick-next, .slick-prev {
  font-size: 0;
  line-height: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before, .slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

.slick-next:before, [dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

[dir=rtl] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  width: 100%;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:focus, .slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #000;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
}

.slick-list {
  filter: drop-shadow(0 0 35px rgba(0, 0, 0, 0.95));
}

.slick-track {
  display: flex !important;
}

.slick-track:before,
.slick-track:after {
  content: none;
}

.slick-slide {
  float: none;
  height: auto;
  align-self: stretch;
}

.content {
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0;
}
.content p {
  margin-bottom: 21px;
}
@media (min-width: 1200px) {
  .content ul.two-col, .content ol.two-col {
    -moz-columns: 2;
         columns: 2;
    -moz-column-gap: 3rem;
         column-gap: 3rem;
  }
  .content ul.two-col > li, .content ol.two-col > li {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
.content ol, .content ul {
  margin-bottom: 30px;
}
.content ol li, .content ul li {
  margin-left: 25px;
}
.content ol li:nth-child(n+2), .content ul li:nth-child(n+2) {
  margin-top: 20px;
}
.content ol ul, .content ol ol, .content ul ul, .content ul ol {
  margin-bottom: 0;
}
.content ol li {
  list-style-type: inherit;
}
.content ol li::marker {
  font-weight: 500;
  color: #D1322A;
}
.content ul li:before {
  content: "•";
  position: absolute;
  right: 100%;
  margin-right: calc(25px - 0.375em);
  font-size: 1.5em;
  top: 0.5625em;
  line-height: 0;
  color: #E3342B;
}
.content li {
  list-style: none;
  position: relative;
}
.content.two-col-list li,
.content .two-col-list li {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .content.two-col-list ul, .content.two-col-list ol,
  .content .two-col-list ul,
  .content .two-col-list ol {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2em;
         column-gap: 2em;
  }
  .content.two-col-list li, .content.two-col-list li:before,
  .content .two-col-list li,
  .content .two-col-list li:before {
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
.content-column {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.content-column > div {
  max-width: 550px;
  width: calc(50% - 2rem);
}
.content-column:last-child {
  margin-top: 0;
}
.content h1 a, .content h2 a, .content h3 a, .content h4 a, .content h5 a, .content h6 a {
  color: inherit;
  text-decoration: none;
}
*.h1, .content h1 {
  position: relative;
  margin-bottom: 90px;
  font-size: 55px;
  line-height: calc(1em + 10px);
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 700;
  text-decoration: none;
}
*.h1 .lines, .content h1 .lines {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
*.h1 .lines svg, .content h1 .lines svg {
  opacity: 0.3;
}

*.h2, .content h2 {
  font-size: 25px;
  letter-spacing: 0.02em;
  line-height: calc(1em + 8px);
  font-family: "abril-display", serif;
  color: #D1322A;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 21px;
}
*.h2:not(:first-child), .content h2:not(:first-child) {
  margin-top: 2rem;
}

*.h3, .content h3 {
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: calc(1em + 9px);
  color: #1A1A1A;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 11px;
}
*.h3:not(:first-child), .content h3:not(:first-child) {
  margin-top: 30px;
}

.content blockquote {
  margin: 70px auto;
  max-width: 25em;
  width: calc(100% - 90px);
  font-size: 38px;
  letter-spacing: 0.02em;
  line-height: 1.3157894737;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  text-align: center;
  text-decoration: none;
}
.content blockquote:before, .content blockquote:after {
  content: "";
  display: block;
  margin: 0 auto;
  background: #F23B32;
  height: 5px;
  width: 110px;
}
.content blockquote:before {
  margin-bottom: 0.8em;
}
.content blockquote:after {
  margin-top: 0.8em;
}
.content blockquote p {
  font: inherit;
  color: inherit;
}
.content blockquote p:last-child {
  margin: 0;
}
.content a {
  color: #D1322A;
  text-decoration: none;
}
.content a:hover {
  color: #A5A5A7;
}

@media (max-width: 1694px) {
  .content-column:last-child {
    margin-top: 0;
  }
  .content-column > div {
    max-width: 513px;
  }
  .content h4 {
    font-weight: 700;
  }
  .content h1 {
    margin-bottom: 80px;
    font-size: 50px;
  }
  .content h1 .lines {
    max-height: 180px;
  }
  .content h1 .lines svg {
    max-height: 180px;
    width: 100%;
    height: 100%;
  }
  .content blockquote {
    width: 101%;
    font-size: 40px;
    margin: 40px auto;
  }
}
@media (max-width: 1380px) {
  .content {
    font-size: 18px;
    line-height: 31px;
  }
  .content-column {
    flex-wrap: wrap;
  }
  .content-column:last-child {
    margin-top: 0;
  }
  .content-column > div {
    max-width: none;
    width: 100%;
  }
  .content h2 {
    line-height: 1.25;
    font-size: 25px;
  }
  .content h2:not(:first-child) {
    margin-top: 40px;
  }
  .content h1 {
    margin-bottom: 70px;
  }
  .content h1 .lines {
    left: -30px;
    max-height: 160px;
  }
  .content h1 .lines svg {
    max-height: 160px;
    width: 100%;
    height: 100%;
  }
  *.blockquote, .content blockquote {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 40px;
    width: calc(100% - 10px);
  }
  .content h3 {
    font-size: 17px;
  }
  .content h3:not(:first-child) {
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .content-column {
    justify-content: center;
    max-width: 587px;
    flex-wrap: wrap;
  }
  .content-column:last-child {
    margin-top: 0;
  }
  .content h1 {
    font-size: 45px;
  }
  .content h2 {
    font-size: 25px;
    line-height: 33px;
  }
  .content h2:not(:first-child) {
    margin-top: 30px;
  }
  .content h3 {
    font-size: 17px;
    line-height: 1.71;
  }
  .content h3:not(:first-child) {
    margin-top: 30px;
  }
  .content h1 {
    margin-bottom: 60px;
    font-size: 40px;
  }
  .content h1 .lines {
    left: -28px;
    max-height: 155px;
  }
  .content h1 .lines svg {
    width: 100%;
    height: 100%;
    max-height: 155px;
  }
  *.blockquote, .content blockquote {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .content-column {
    flex-wrap: wrap;
  }
  .content-column:last-of-type {
    margin-top: 0;
  }
  .content h1 {
    font-size: 35px;
  }
  .content h2 {
    font-size: 25px;
    line-height: 33px;
  }
  .content h2:not(:first-child) {
    margin-top: 40px;
  }
  .content h3 {
    font-size: 17px;
    line-height: 22px;
  }
  .content h3:not(:first-child) {
    margin-top: 40px;
  }
  .content h1 {
    font-size: 30px;
    line-height: 1.28;
    margin: 0 auto 60px;
  }
  .content h1 .lines {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
  }
  *.blockquote, .content blockquote {
    margin-top: 50px;
    margin-bottom: 60px;
    font-size: 30px;
    width: 100%;
  }
  .content img {
    max-width: 100%;
    height: auto;
  }
}
/* ================================================================================
* Supported WP Core Classes/ Styles
================================================================================ */
/* Wordpress Core Classes
--------------------------------------------------------------- */
/* Align Classes */
*.alignleft,
*.alignright,
*.aligncenter,
*.alignnone {
  margin-bottom: 0.5em;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 1199px) {
  *.alignleft,
  *.alignright,
  *.aligncenter,
  *.alignnone {
    display: block;
  }
}
@media only screen and (min-width: 1200px) {
  *.alignleft {
    display: inline;
    float: left;
    clear: right;
    margin-right: 0.5em;
    margin-top: 0.5em;
  }
  *.alignright {
    display: inline;
    float: right;
    clear: right;
    margin-left: 0.5em;
    margin-top: 0.5em;
  }
  *.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
/* WP Captions */
.wp-caption {
  background: var(--color-light);
  border: 1px solid var(--color-light-alt);
  max-width: 100%;
  padding: 0.5em;
  text-align: center;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 0.75em;
  line-height: 1.25;
  margin: 0;
}

/* Screen reader */
.screen-reader-text:focus, *:focus-within > .screen-reader-text {
  background-color: var(--color-light-alt);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: var(--color-neutral);
  position: fixed;
  display: block;
  font-size: 1em;
  height: auto;
  left: 0.25rem;
  line-height: normal;
  padding: 1rem 1.5rem;
  text-decoration: none;
  top: 0.25rem;
  width: auto;
  z-index: 9999999;
}

header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 999;
  top: 0;
  left: 0;
}
header .header-bar {
  background: #1A1A1A;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 3rem;
  height: 80px;
}
header .header-button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 74px;
  width: 74px;
  background: #1A1A1A;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
header .header-button:not(:hover):not(:focus-within) span:nth-child(2) {
  width: 24px;
  margin-right: 10px;
}
header .header-button span:not(:last-child) {
  width: 34px;
  height: 3px;
  background: #FFFFFF;
  margin-bottom: 8px;
  transition: all 0.25s ease-in;
}
header .header-text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header-text .text {
  color: #F23B32;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding-top: 0;
}
header .header-text .text:not(:last-child):after {
  content: "•";
  color: #F23B32;
  margin: 0 7px 0 4px;
}
header .header-text .text:last-child:after {
  display: none;
}
header .header-end {
  display: flex;
  align-items: right;
  flex-direction: column;
}
header .header-phone {
  display: flex;
}
header .header-phone .toll-free, header .header-phone .phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: right;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5em;
}
header .header-phone .toll-free span, header .header-phone .phone span {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
header .header-phone .toll-free span:after, header .header-phone .phone span:after {
  display: inline;
  content: "•";
  font-size: 20px;
  color: #F23B32;
  margin: 0 5px;
}
header .header-phone .phone {
  margin-left: 1.75em;
}
header .header-phone a {
  font-size: 30px;
  letter-spacing: 0.015em;
  line-height: 1;
  font-family: "Overpass", sans-serif;
  color: white;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
header .header-nav .nav-menu .menu {
  display: flex;
  justify-content: center;
  list-style: none;
}
header .header-nav .nav-menu .menu li {
  position: relative;
}
header .header-nav .nav-menu .menu li a {
  font-size: 18px;
  line-height: 1.5;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  padding: 1rem 1.25rem;
  text-decoration: none;
  text-align: center;
  display: block;
  line-height: 1.5;
  max-width: 18em;
  margin-left: auto;
  margin-right: auto;
}
header .header-nav .nav-menu .menu ul.sub-menu {
  display: none;
}
header .header-nav .nav-menu .menu > li {
  margin: 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
header .header-nav .nav-menu .menu > li > a {
  padding: 0.61em 0;
  max-width: none;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.6;
  color: inherit;
  font-weight: 500;
  text-decoration: none;
}
header .header-nav .nav-menu .menu > li.menu-item-has-children > a:after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background: none;
  border-right: 0.16em solid;
  border-bottom: 0.16em solid;
  display: inline-block;
  margin-left: 0.5rem;
  transform: rotate(45deg);
  margin-bottom: 3px;
}

@media (min-width: 1200px) {
  header .header-bar {
    padding: 0.85rem 1rem;
  }
  header .header-text .text {
    font-size: 15px;
  }
  header .header-phone .toll-free span, header .header-phone .phone span {
    font-size: 15px;
  }
  header .header-phone .phone {
    margin-left: 1.25em;
  }
  header .header-phone a {
    font-size: 28px;
  }
  header .header-start svg {
    max-width: 467px;
  }
  header .header-nav .nav-menu .menu {
    background: #FFFFFF;
    color: #1A1A1A;
  }
  header .header-nav .nav-menu .menu li:hover > ul.sub-menu {
    display: block;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 3, 16, 0.2);
  }
  header .header-nav .nav-menu .menu ul.sub-menu {
    position: absolute;
    background: white;
    color: #1A1A1A;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    width: 295px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    top: 100%;
  }
  header .header-nav .nav-menu .menu ul.sub-menu ul.sub-menu {
    transform: none;
    background: #e6e6e6;
    top: -5px;
    left: 100%;
  }
  header .header-nav .nav-menu .menu ul.sub-menu ul.sub-menu li:hover {
    background-color: #e6e6e6;
  }
  header .header-nav .nav-menu .menu ul.sub-menu li {
    padding: 0;
  }
  header .header-nav .nav-menu .menu ul.sub-menu li:hover {
    color: #D1322A;
    background: #1A1A1A;
  }
  header .header-nav .nav-menu .menu > li.current-menu-item, header .header-nav .nav-menu .menu > li:hover {
    box-shadow: inset 0 -5px 0 0 #F23B32;
  }
}
@media (max-width: 1199px) {
  a.show-after-tab {
    display: none !important;
  }
}
@media (min-width: 1381px) {
  header .header-bar {
    height: 90px;
  }
  header .header-text .text {
    font-weight: 700;
    font-size: 17px;
  }
  header .header-phone a {
    font-size: 30px;
  }
  header .header-start svg {
    max-width: 510px;
  }
  header .header-nav .nav-menu .menu > li > a {
    padding: 0.75em 0 0.5em;
    font-size: 18px;
    font-weight: 700;
  }
}
@media (max-width: 1199px) {
  html.menu-active {
    overflow: hidden;
  }
  header {
    box-shadow: 0 0 20px rgba(0, 3, 16, 0.2);
  }
  html.menu-active header {
    z-index: 999;
  }
  html.menu-active header .header-nav {
    top: 74px;
  }
  html.menu-active header .header-nav.active {
    background: white;
    height: 100vh;
    z-index: 1;
    position: absolute;
    width: 100%;
    padding-bottom: 5rem;
    overflow-y: scroll;
  }
  html.menu-active header .header-nav .nav-menu {
    height: 100%;
  }
  html.menu-active header .header-nav .nav-menu .menu {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  html.menu-active header .header-nav .nav-menu .menu li:hover > a {
    color: #F23B32;
  }
  html.menu-active header .header-nav .nav-menu .menu li.active > a {
    background: #1A1A1A;
    color: white;
    box-shadow: 0 3px 6px rgba(0, 6, 35, 0.26);
    position: relative;
    z-index: 4;
    max-width: none;
  }
  html.menu-active header .header-nav .nav-menu .menu li.active > .sub-menu {
    display: block;
  }
  html.menu-active header .header-nav .nav-menu .menu .sub-menu {
    background: #E8EBEF;
    padding: 5px 0;
    list-style: none;
  }
  html.menu-active header .header-nav .nav-menu .menu > li {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  html.menu-active header .header-nav .nav-menu .menu > li.current-menu-item a {
    padding-bottom: 18px;
    border-bottom: none;
  }
  html.menu-active header .header-nav .nav-menu .menu > li.menu-item-has-children > a {
    transition: all 0.3s ease-in-out;
    text-indent: 14px;
  }
  html.menu-active header .header-nav .nav-menu .menu > li > a {
    color: #1A1A1A;
    display: block;
    width: 100%;
    padding: 18px 20px;
  }
  html.menu-active header .header-text .text:last-child:after {
    display: block;
    content: "•";
    color: #E3342B;
    margin: 0 8px 0 5px;
  }
  header .header-nav {
    display: none;
  }
  header .header-nav.active {
    display: block;
  }
  header .header-button {
    order: 2;
    width: 74px;
    display: flex;
    background: linear-gradient(to bottom, #F23B32, #A72B23);
  }
  header .header-bar {
    box-shadow: 0 0 5px 2px rgba(154, 154, 154, 0.4470588235);
    background: white;
    padding: 0;
    height: 74px;
    flex-wrap: wrap;
  }
  header .header-end {
    background: #FFFFFF;
    order: 4;
    width: calc(100% - 276px);
    height: 40px;
    flex-grow: 1;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    padding: 0 10px 0 0;
  }
  header .header-text {
    display: flex;
    justify-content: flex-start;
    padding-left: 13px;
    background: #FFFFFF;
    order: 3;
    height: 40px;
    width: 267px;
  }
  header .header-text .text {
    color: #F23B32;
    padding-top: 0.25em;
    font-size: 15px;
    line-height: 1.23;
    text-align: right;
  }
}
@media (max-width: 1199px) and (min-width: 768px) {
  header .header-text .text:not(:last-child):after {
    display: none;
  }
}
@media (max-width: 1199px) {
  header .header-phone {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-family: "Overpass", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
  }
  header .header-phone a {
    font-size: 21px;
    line-height: 1.54;
    color: #1A1A1A;
  }
  header .header-phone .toll-free {
    margin-top: 0;
  }
  header .header-phone .toll-free span {
    color: #1A1A1A;
    font-size: 13px;
  }
  header .header-phone .phone {
    margin-top: 0;
    margin-left: 10px;
  }
  header .header-phone .phone span {
    color: #1A1A1A;
    font-size: 13px;
  }
  header .header-start {
    order: 1;
    width: calc(100% - 74px);
    height: 74px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    background: #1A1A1A;
  }
  header .header-start a {
    padding-top: 5px;
  }
  header .header-start svg, header .header-start img {
    max-height: 52px;
    max-width: 493px;
  }
  header .header-start svg .st0, header .header-start img .st0 {
    fill: #1A1A1A;
  }
  header .mobile-header-end {
    display: flex;
    width: 100%;
    order: 3;
    box-shadow: 0 0 20px rgba(0, 3, 16, 0.4);
    justify-content: center;
  }
}
@media (max-width: 767px) {
  html.menu-active header {
    z-index: 999;
  }
  html.menu-active header .header-nav {
    top: 74px;
  }
  html.menu-active header .header-nav .nav-menu {
    height: 100%;
    overflow-y: scroll;
  }
  html.menu-active header .header-nav .nav-menu .menu {
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
  }
  html.menu-active header .header-nav .nav-menu .menu li a {
    margin: 0 auto;
    padding: 10px 20px;
  }
  html.menu-active header .header-nav .nav-menu .menu > li {
    width: 100%;
  }
  html.menu-active header .header-nav .nav-menu .menu > li.current-menu-item a {
    padding-bottom: 18px;
    border-bottom: none;
  }
  html.menu-active header .header-nav .nav-menu .menu > li > a {
    color: #1A1A1A;
    display: block;
    width: 100%;
    padding: 18px 20px;
  }
  header .header-button {
    display: flex;
    order: 2;
    background: #D1322A;
  }
  header .header-bar {
    background: #FFFFFF;
    padding: 0;
    height: unset;
    flex-wrap: wrap;
    box-shadow: none;
  }
  header .header-end {
    width: 100%;
    height: auto;
    background: #FFFFFF;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    padding: 8px 25px 4px;
    order: 3;
  }
  header .header-text .text {
    color: #1A1A1A;
    font-size: 11px;
    line-height: 1.45;
  }
  header .header-text.hide-after-sm {
    display: flex;
    width: 100%;
    height: auto;
    background: linear-gradient(to bottom, #F23B32 -10%, #A72B23 100%);
    order: 4;
    justify-content: center;
    padding: 6px 0;
  }
  header .header-text.hide-after-sm .text {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
  }
  header .header-text.hide-after-sm .text::after {
    display: none;
  }
  header .header-phone .toll-free {
    border-right: 1px solid #A5A5A7;
    padding-right: 12px;
  }
  header .header-phone .toll-free, header .header-phone .phone {
    flex-direction: column;
    align-items: flex-start;
  }
  header .header-phone .toll-free span, header .header-phone .phone span {
    font-size: 12px;
    color: #F23B32;
    text-align: left;
  }
  header .header-phone .toll-free span::after, header .header-phone .phone span::after {
    display: none;
  }
  header .header-phone a {
    font-size: 19px;
    line-height: 25px;
    color: #1A1A1A;
  }
  header .header-start {
    background: #1A1A1A;
    order: 1;
    height: 74px;
    flex-grow: 1;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .header-start svg, header .header-start img {
    max-width: 320px;
  }
  header .mobile-header-end {
    flex-wrap: wrap;
  }
}
@media (max-width: 405px) {
  header .header-text .text {
    font-size: 10px;
  }
  header .header-text .text:not(:last-child):after {
    margin: 0 5px 0 4px;
  }
}
.banner {
  position: relative;
  padding: 5.25rem 0 8.5rem;
}
.banner:not(.banner-small) {
  background-color: #1A1A1A;
  color: white;
}
.home .banner {
  background-color: #000;
}
.banner-cta-shift-mobile {
  display: none;
  margin: 25px auto 40px;
}
.banner .scroll-down {
  position: absolute;
  bottom: 2.25rem;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 1.25rem;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: lowercase;
  text-decoration: none;
}
.banner .scroll-down span {
  padding: 0 1em;
}
.banner .scroll-down:before, .banner .scroll-down:after {
  color: #F23B32;
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}
.banner .scroll-down:before {
  font-size: 9px;
  width: 1em;
  height: 1em;
  border-top: 2px solid;
  border-left: 2px solid;
  transform-origin: center center;
  transform: rotate(-135deg);
}
.banner .scroll-down:after {
  width: 0;
  top: 0;
  border-left: 2px solid;
}
.banner .container {
  max-width: 1710px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 17px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.banner .container .banner-right {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 50%;
}
.banner .container .banner-right .color-1 {
  color: #F23B32;
  font-style: italic;
}
.banner .container .banner-cta {
  margin-top: 0;
}
.banner .container .banner-subtitle {
  font-size: 20px;
  letter-spacing: 0.01em;
  line-height: calc(1em + 10px);
  font-family: "Overpass", sans-serif;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 2rem;
  margin-top: 0.75rem;
}
.banner .container .banner-subtitle p:before {
  content: "•";
  color: #F23B32;
  margin: 0 0.625em;
}
.banner .container .banner-title {
  margin-bottom: 0;
  font-weight: 500;
  color: inherit;
}
.home .banner .container .banner-title {
  display: block;
  position: relative;
  font-size: 75px;
}
.home .banner .container .banner-title .lines {
  position: absolute;
  top: -20px;
  left: -45px;
  z-index: -1;
}
.banner picture img {
  position: absolute;
  top: 0;
  bottom: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: top;
     object-position: top;
}
.banner-internal {
  padding: 5rem 0 5rem;
}
.banner-internal .container {
  justify-content: center;
}
.banner-internal .container .banner-title {
  font-size: 45px;
  text-align: center;
}
.banner-internal .container .banner-title .lines {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.banner-internal .container .banner-title .lines svg {
  max-height: 145px;
}
.banner-internal .container .banner-right {
  width: 673px;
  text-align: center;
}
.banner-internal .container .banner-cta {
  margin-top: 2rem;
  text-align: center;
}
.small-banner .banner-small,
.page-template-template-bio .banner-small,
.page-template-template-contact .banner-small,
.error404 .banner-small {
  padding: 5.5rem 0 5rem;
  background: transparent;
}
.small-banner .banner-small .container .banner-title,
.page-template-template-bio .banner-small .container .banner-title,
.page-template-template-contact .banner-small .container .banner-title,
.error404 .banner-small .container .banner-title {
  color: #1A1A1A;
  margin-bottom: 0;
  font-size: 60px;
}
.small-banner .banner-small .container .banner-title .lines,
.page-template-template-bio .banner-small .container .banner-title .lines,
.page-template-template-contact .banner-small .container .banner-title .lines,
.error404 .banner-small .container .banner-title .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
  top: -10px;
}
.small-banner .banner-small .container .banner-title .lines svg,
.page-template-template-bio .banner-small .container .banner-title .lines svg,
.page-template-template-contact .banner-small .container .banner-title .lines svg,
.error404 .banner-small .container .banner-title .lines svg {
  height: 100%;
  width: 100%;
}
.small-banner .banner-small .container .banner-title .lines svg path,
.page-template-template-bio .banner-small .container .banner-title .lines svg path,
.page-template-template-contact .banner-small .container .banner-title .lines svg path,
.error404 .banner-small .container .banner-title .lines svg path {
  fill: #1A1A1A;
  opacity: 0.06;
}

@media (max-width: 1694px) {
  .banner {
    padding-top: 6rem;
    padding-bottom: 8rem;
  }
  .banner .container {
    max-width: 1250px;
  }
  .home .banner .container .banner-title {
    font-size: 68px;
  }
  .banner .container .banner-subtitle {
    font-size: 20px;
    margin-bottom: 1.375rem;
    margin-top: 0.625rem;
  }
  .banner .container .banner-subtitle p:before {
    margin: 0 0.3em;
  }
  .banner .container .banner-right {
    width: 673px;
  }
  .banner-internal .container .banner-title {
    font-size: 45px;
  }
  .banner-internal .container .banner-cta {
    margin-top: 0.75rem;
  }
  .small-banner .banner-small,
  .page-template-template-bio .banner-small,
  .page-template-template-contact .banner-small {
    padding: 5rem 0 4rem;
  }
  .small-banner .banner-small .container .banner-title,
  .page-template-template-bio .banner-small .container .banner-title,
  .page-template-template-contact .banner-small .container .banner-title {
    margin-bottom: 0;
    text-align: center;
  }
  .small-banner .banner-small .container .banner-title .lines,
  .page-template-template-bio .banner-small .container .banner-title .lines,
  .page-template-template-contact .banner-small .container .banner-title .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .small-banner .banner-small .container .banner-title .lines svg,
  .page-template-template-bio .banner-small .container .banner-title .lines svg,
  .page-template-template-contact .banner-small .container .banner-title .lines svg {
    max-height: 60px;
  }
}
@media (max-width: 1380px) {
  .banner {
    padding: 3.5rem 0 8.25rem;
  }
  .banner .container {
    max-width: 1045px;
  }
  .banner .container .banner-right {
    width: 600px;
  }
  .home .banner .container .banner-title {
    font-size: 60px;
  }
  .home .banner .container .banner-title .lines {
    left: -25px;
    max-height: 135px;
  }
  .home .banner .container .banner-title .lines svg {
    width: 100%;
    height: 100%;
    max-height: 135px;
  }
  .banner .container .banner-subtitle {
    font-family: "Overpass", sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
  .banner .container .banner-subtitle p {
    display: inline;
  }
  .banner .container .banner-subtitle p:first-child::before {
    display: none;
  }
  .banner-internal .container .banner-title {
    font-size: 45px;
  }
  .small-banner .banner-small .container .banner-title,
  .page-template-template-bio .banner-small .container .banner-title,
  .page-template-template-contact .banner-small .container .banner-title {
    margin-bottom: 0;
    text-align: center;
  }
  .small-banner .banner-small .container .banner-title .lines,
  .page-template-template-bio .banner-small .container .banner-title .lines,
  .page-template-template-contact .banner-small .container .banner-title .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .small-banner .banner-small .container .banner-title .lines svg,
  .page-template-template-bio .banner-small .container .banner-title .lines svg,
  .page-template-template-contact .banner-small .container .banner-title .lines svg {
    max-height: 60px;
  }
}
@media (max-width: 1199px) {
  .home .banner .container .banner-right {
    width: 605px;
  }
  .banner {
    padding: 8rem 0 0;
  }
  .banner .play_btn {
    font-size: 60px;
    margin-bottom: 0.625em;
  }
  .banner .scroll-down {
    display: none;
  }
  .banner .container {
    justify-content: center;
  }
  .home .banner .container .banner-title .lines {
    display: none;
  }
  .banner .container .banner-subtitle {
    font-size: 18px;
    margin-bottom: 2rem;
    margin-top: 1rem;
  }
  .banner .container .banner-right {
    width: 565px;
    text-align: center;
  }
  .banner .container .banner-right a {
    font-size: 15px;
  }
  .banner-internal .container .banner-title {
    font-size: 38px;
  }
  .small-banner .banner-small,
  .page-template-template-bio .banner-small,
  .page-template-template-contact .banner-small {
    padding: 7rem 0 3rem;
  }
  .small-banner .banner-small .container .banner-title,
  .page-template-template-bio .banner-small .container .banner-title,
  .page-template-template-contact .banner-small .container .banner-title {
    margin-bottom: 0;
    text-align: center;
  }
  .small-banner .banner-small .container .banner-title .lines,
  .page-template-template-bio .banner-small .container .banner-title .lines,
  .page-template-template-contact .banner-small .container .banner-title .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .small-banner .banner-small .container .banner-title .lines svg,
  .page-template-template-bio .banner-small .container .banner-title .lines svg,
  .page-template-template-contact .banner-small .container .banner-title .lines svg {
    max-height: 60px;
  }
}
@media (max-width: 767px) {
  .banner {
    padding: 50px 0 0;
  }
  .home .banner {
    background: #101010;
  }
  .banner .play_btn {
    font-size: 52px;
    margin-bottom: 0.45em;
  }
  .banner-cta-shift {
    display: none;
  }
  .banner-cta-shift-mobile {
    display: block;
    text-align: center;
  }
  .home .banner .container .banner-title {
    font-family: "abril-display", serif;
    font-size: 36px;
    line-height: 42px;
  }
  .home .banner .container .banner-title .lines {
    display: none;
  }
  .banner .container .banner-subtitle {
    font-size: 17px;
    margin-bottom: 2rem;
  }
  .banner .container .banner-subtitle:before {
    content: "••";
    color: #E3342B;
    display: block;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: 0.4em;
  }
  .banner .container .banner-subtitle p {
    display: block;
  }
  .banner .container .banner-subtitle p::before {
    display: none;
  }
  .banner .container .banner-cta {
    text-align: center;
  }
  .banner .container .banner-right .color-1 {
    color: inherit;
    font-style: normal;
  }
  .banner-internal .container .banner-right {
    width: 280px;
  }
  .banner-internal .container .banner-right .color-1 {
    color: #F23B32;
    font-style: italict;
  }
  .banner-internal .container .banner-title {
    font-size: 28px;
    line-height: 30px;
  }
  .small-banner .banner-small,
  .page-template-template-bio .banner-small,
  .page-template-template-contact .banner-small {
    padding: 3rem 0;
  }
  .small-banner .banner-small .container .banner-right,
  .page-template-template-bio .banner-small .container .banner-right,
  .page-template-template-contact .banner-small .container .banner-right {
    width: 340px;
  }
  .small-banner .banner-small .container .banner-title,
  .page-template-template-bio .banner-small .container .banner-title,
  .page-template-template-contact .banner-small .container .banner-title {
    font-size: 45px;
    line-height: 1;
    text-align: center;
    margin-bottom: 0;
  }
  .small-banner .banner-small .container .banner-title .lines,
  .page-template-template-bio .banner-small .container .banner-title .lines,
  .page-template-template-contact .banner-small .container .banner-title .lines {
    display: block;
    max-height: 50px;
    top: -2px;
  }
  .small-banner .banner-small .container .banner-title .lines svg,
  .page-template-template-bio .banner-small .container .banner-title .lines svg,
  .page-template-template-contact .banner-small .container .banner-title .lines svg {
    max-height: 50px;
  }
}
@media (min-width: 1380px) {
  .banner .container .banner-subtitle p {
    display: inline;
  }
  .banner .container .banner-subtitle p:first-child:before {
    display: none;
  }
}
.content .btn, .btn, .gform_button {
  display: inline-block;
  background: linear-gradient(to bottom, #F23B32 -10%, #A72B23 100%);
  padding: 1.4rem 2rem 1.2rem;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 3, 16, 0.2);
  border: none;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  cursor: pointer;
  font-size: 17px;
  letter-spacing: 0.12em;
  line-height: 1.7;
  font-family: "Overpass", sans-serif;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.content .btn:after, .btn:after, .gform_button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(to bottom, #F23B32 -50%, #A72B23 50%);
  background-position: 0% -50%;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.content .btn:hover, .btn:hover, .gform_button:hover {
  color: #1A1A1A;
  background: #FFFFFF;
}
.content .btn span, .btn span, .gform_button span {
  position: relative;
  z-index: 1;
}
.content .btn.btn-link, .btn.btn-link, .gform_button.btn-link {
  color: #1A1A1A;
  border-color: #F23B32;
  border-style: solid;
  border-width: 0 0 3px;
  background: transparent;
  box-shadow: none;
  padding: 0;
  font-size: 14px;
}
.content .btn.btn-link:after, .content .btn.btn-link:before, .btn.btn-link:after, .btn.btn-link:before, .gform_button.btn-link:after, .gform_button.btn-link:before {
  content: none;
}
.content .btn.btn-link:hover, .btn.btn-link:hover, .gform_button.btn-link:hover {
  color: #D1322A;
  border-color: #D1322A;
}

@media (max-width: 1695px) {
  .content .btn, .btn, .gform_button {
    font-size: 17px;
  }
}
@media (max-width: 1380px) {
  .content .btn, .btn, .gform_button {
    font-size: 15px;
    padding: 1.5rem 1.5rem 1.3rem;
  }
}
@media (max-width: 1099px) {
  .content .btn, .btn, .gform_button {
    font-size: 14px;
  }
}
.fancy-blockquote {
  position: relative;
  margin: 4rem auto;
  text-align: center;
}
.fancy-blockquote:before {
  content: "“";
  display: block;
  margin: 0 auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  font-size: 110px;
  line-height: 0;
  font-family: "abril-display", serif;
  color: #D1322A;
  text-decoration: none;
  margin-bottom: -5px;
}
.fancy-blockquote blockquote {
  font-size: 40px;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.fancy-blockquote blockquote:first-child {
  margin-top: 0;
}
.fancy-blockquote blockquote:last-child {
  margin-bottom: 0;
}
.fancy-blockquote blockquote:before, .fancy-blockquote blockquote:after {
  content: none;
}

@media (max-width: 1695px) {
  .fancy-blockquote blockquote {
    font-size: 36px;
  }
}
@media (max-width: 1380px) {
  .fancy-blockquote blockquote {
    font-size: 36px;
  }
  .fancy-blockquote:before {
    font-size: 110px;
  }
}
@media (max-width: 1199px) {
  .fancy-blockquote blockquote {
    max-width: 17.5em;
    font-size: 36px;
    line-height: 52px;
    margin-bottom: 1.5rem;
  }
  .fancy-blockquote blockquote br {
    display: none;
  }
}
@media (max-width: 767px) {
  .fancy-blockquote blockquote {
    max-width: 100%;
    font-size: 30px;
    line-height: 40px;
  }
}
.office-wrapper {
  display: flex;
  flex-direction: column;
}

.awards {
  width: 100%;
}
.awards .container {
  display: block !important;
}
.awards-title {
  text-transform: uppercase;
  padding-bottom: 0.25em;
  border-bottom: 3px;
  color: #1A1A1A;
  letter-spacing: 0.12em;
  text-align: center;
  font-weight: 900;
  border-bottom: 3px solid #F23B32;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}
.awards .slick-list {
  filter: none;
}
.awards .award {
  height: 260px;
}
.awards .award img {
  margin: 0 auto;
  max-width: 80%;
  max-height: 100%;
}
.awards .container {
  max-width: 1550px;
  margin: 0 auto;
  position: relative;
}
.awards .container .arrow {
  display: inline-block;
  width: 25px;
  height: 25px;
  background: none;
  border: 2px solid #1A1A1A;
  border-right: none;
  border-top: none;
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: top;
  transform: rotate(45deg) translateY(-50%);
  cursor: pointer;
}
.awards .container .arrow.right {
  transform: rotate(-135deg) translateY(-50%);
  right: 0;
  left: unset;
  top: 50%;
}
.awards .container .award-slider {
  padding: 2.5rem;
}
.awards .container .award-slider .slick-track {
  display: flex !important;
}
.awards .container .award > div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media (max-width: 1694px) {
  .awards {
    margin-top: 7rem;
  }
  .awards .container {
    max-width: 1100px;
  }
}
@media (max-width: 1380px) {
  .awards {
    margin-top: 5rem;
  }
  .awards .container {
    max-width: 840px;
  }
  .awards .award {
    height: 106px;
  }
}
@media (max-width: 1199px) {
  .awards {
    margin-top: 5rem;
  }
  .awards-title {
    margin-bottom: 0;
  }
  .awards .container {
    max-width: 590px;
  }
}
@media (max-width: 767px) {
  .awards {
    margin-top: 2rem;
  }
  .awards .container {
    max-width: 550px;
  }
}
.sec-one {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  position: relative;
}
.sec-one .left {
  width: 550px;
  padding: 0 0 0 9rem;
  align-self: center;
  flex: 0 0 auto;
}
.sec-one .left .sec-one-text, .sec-one .left .sec-one-video {
  margin: 0 auto;
}
.sec-one .left .sec-one-text {
  max-width: 330px;
}
.sec-one .left .sec-one-video {
  width: 395px;
  position: relative;
}
.sec-one .left .sec-one-video .play_btn {
  font-size: 62px;
}
.sec-one .left .sec-one-video .video-block-thumb-aspect {
  width: 350px;
  height: 215px;
}
.sec-one .left .sec-one-video .video-block-thumb-aspect::after {
  box-shadow: inset 0px -50px 31px 0 #000000;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.sec-one .left .sec-one-video .video-cta {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  font-size: 15px;
  letter-spacing: 0.12em;
  line-height: 1.1;
  font-family: "Overpass", sans-serif;
  color: white;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0.25em 0.625em;
  border-bottom: 3px solid #F23B32;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 2.5em auto 0;
}
.sec-one .right {
  flex: 1 1;
  min-width: 0;
  max-width: 1322px;
}
.sec-one .right .selling-points {
  position: relative;
}
.sec-one .right .selling-points .sp-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease-in-out;
}
.sec-one .right .selling-points .sp-wrapper .content-icon {
  font-size: 65px;
  margin: 0 auto 24px;
}
.sec-one .right .selling-points .sp-title {
  display: block;
  font-size: 40px;
  letter-spacing: 0.015em;
  line-height: 1.1;
  font-family: "abril-display", serif;
  color: white;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.sec-one .right .selling-points .sp-title:after {
  content: "••";
  color: #F23B32;
  display: block;
  margin: 5px auto;
  font-size: 24px;
  letter-spacing: 0.4em;
}
.sec-one .right .selling-points .sp-description {
  max-width: 17em;
  font-size: 18px;
  letter-spacing: 0.015em;
  line-height: 1.76;
  color: white;
  text-align: center;
  text-decoration: none;
}
.sec-one .right .selling-points .arrow {
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 50px;
  max-width: 50%;
  padding-top: 0;
  left: 0;
  z-index: 1;
  background: #1A1A1A;
  box-shadow: 0 0 8px 0 #1A1A1A;
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1.5;
  color: white;
  font-weight: 800;
  text-decoration: none;
}
.sec-one .right .selling-points .arrow.right {
  right: 0;
  left: unset;
  border-left: 2px solid #1A1A1A;
}
.sec-one-title {
  display: block;
  margin-bottom: 30px;
  font-size: 40px;
  letter-spacing: 0.015em;
  line-height: 1.25;
  font-family: "abril-display", serif;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.sec-one-desc {
  display: block;
  font-size: 17px;
  letter-spacing: 0.015em;
  line-height: 1.76;
  color: white;
  text-decoration: none;
}

@media (max-width: 1694px) {
  .sec-one {
    margin-top: 120px;
  }
  .sec-one-title {
    font-size: 42px;
    line-height: 1.23;
  }
  .sec-one-desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .sec-one .left {
    max-width: 405px;
    padding: 0 2rem 0 5rem;
  }
  .sec-one .left .sec-one-video {
    width: 328px;
  }
  .sec-one .left .sec-one-video .video-block-thumb-aspect {
    height: auto;
  }
  .sec-one .right {
    max-width: 1280px;
    padding-right: 2rem;
  }
  .sec-one .right .selling-points .sp-title {
    font-size: 36px;
  }
  .sec-one .right .selling-points .sp-description {
    font-size: 16px;
  }
}
@media (max-width: 1380px) {
  .sec-one {
    margin-top: 98px;
  }
  .sec-one .left {
    width: 320px;
    padding: 0 1rem 0 3rem;
  }
  .sec-one .right {
    margin-left: 4rem;
    padding-right: 1.75rem;
  }
  .sec-one .right .selling-points .sp-title {
    font-size: 32px;
  }
  .sec-one .right .selling-points .sp-description {
    font-size: 17px;
    max-width: 13em;
  }
  .sec-one .right .selling-points .sp-wrapper .content-icon {
    font-size: 60px;
  }
  .sec-one-title {
    font-size: 32px;
    line-height: 1.18;
  }
  .sec-one-desc {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .sec-one {
    background: linear-gradient(to bottom, transparent, #101010);
    padding-top: 100px;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 0;
  }
  .sec-one .slick-list {
    filter: none;
  }
  .sec-one .slick-dots {
    bottom: -1rem;
    position: relative;
    z-index: 2;
  }
  .sec-one .slick-dots li button:before {
    font-size: 24px;
    color: #e6e6e6;
  }
  .sec-one .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #D1322A;
  }
  .sec-one .left {
    align-self: center;
  }
  .sec-one .right {
    max-width: 323px;
    width: 100%;
    padding-right: 0;
    margin-left: 0;
  }
  .sec-one .right .selling-points {
    padding-bottom: 2rem;
  }
  .sec-one .right .selling-points .sp-wrapper .content-icon {
    font-size: 55px;
  }
  .sec-one .right .selling-points .sp-description {
    font-size: 17px;
    line-height: 25px;
  }
  .sec-one .right .selling-points .arrow {
    display: flex;
    height: 67px;
    font-size: 14px;
    line-height: 1.38;
  }
}
@media (max-width: 767px) {
  .sec-one {
    padding-top: 50px;
    flex-direction: column-reverse;
  }
  .sec-one .left {
    padding-inline: 0;
    margin-inline: auto;
    margin-bottom: 2rem;
    width: 100%;
  }
  .sec-one .right {
    max-width: none;
  }
  .sec-one .right .selling-points {
    margin-inline: auto;
    padding-bottom: 2rem;
  }
  .sec-one .right .selling-points .sp-wrapper .content-icon {
    font-size: 60px;
  }
  .sec-one .right .selling-points .arrow {
    display: none !important;
  }
}
.sec-two {
  padding: 7rem 2rem;
}
.sec-two .container {
  max-width: 1283px;
  margin: 0 auto;
}
.sec-two-title {
  position: relative;
  max-width: 14em;
  display: block;
  margin: 0 auto;
  margin-bottom: 4rem;
  font-size: 85px;
  line-height: calc(1em + 10px);
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.sec-two-title .lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
  opacity: 0.2;
}
.sec-two .fancy-blockquote {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
.sec-two .content-column .bottom-left {
  max-width: 571px;
}
.sec-two .content-column .bottom-right {
  max-width: 580px;
}

@media (max-width: 1694px) {
  .sec-two {
    padding-top: 7.625rem;
  }
  .sec-two-title {
    font-size: 70px;
    margin-bottom: 4rem;
  }
  .sec-two-title .lines {
    transform: translateX(-50%) scale(1.05);
  }
  .sec-two .container {
    max-width: 1160px;
  }
}
@media (max-width: 1380px) {
  .sec-two {
    padding: 5.875rem 2rem 4rem;
  }
  .sec-two .container {
    max-width: 835px;
  }
  .sec-two-title {
    font-size: 70px;
    margin-bottom: 1.5rem;
  }
  .sec-two-title .lines {
    transform: translateX(-50%);
    max-height: 190px;
    top: -18px;
  }
  .sec-two-title .lines svg {
    width: 100%;
    height: 100%;
    max-height: 190px;
  }
  .sec-two .fancy-blockquote {
    margin-top: 5.25rem;
    margin-bottom: 4.5rem;
  }
  .sec-two .content-column .bottom-left {
    max-width: 100%;
  }
  .sec-two .content-column .bottom-right {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .sec-two {
    padding: 5rem 2rem 4rem;
  }
  .sec-two .container {
    max-width: 100%;
  }
  .sec-two-title {
    font-size: 60px;
    max-width: 10em;
  }
  .sec-two-title .lines {
    transform: translateX(-50%);
    max-height: 165px;
    top: -30px;
  }
  .sec-two-title .lines svg {
    width: 100%;
    height: 100%;
  }
  .sec-two .fancy-blockquote {
    margin-top: 4rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .sec-two {
    padding: 43px 25px 2rem;
  }
  .sec-two-title {
    font-size: 38px;
    line-height: 45px;
  }
  .sec-two-title .lines {
    transform: translateX(-50%);
    top: -20px;
  }
  .sec-two .fancy-blockquote {
    margin-top: 3.75rem;
    margin-bottom: 46px;
  }
}
.sec-three-sp {
  background: #e6e6e6;
  padding: 71px 25px 130px;
}
.sec-three-sp .top {
  text-align: center;
}
.sec-three-sp .top .sec-three-sp-title {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 20px;
  border-bottom: 3px solid #D1322A;
  padding-bottom: 5px;
}
.sec-three-sp .bottom .selling-points {
  max-width: 1293px;
  margin-top: 44px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-three-sp .bottom .selling-points .sp-wrapper {
  padding: 0 10px;
}
.sec-three-sp .bottom .selling-points .sp-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.sec-three-sp .bottom .selling-points .sp-title {
  font-family: "abril-display", serif;
  font-size: 35px;
  font-weight: 500;
  line-height: 46px;
}
.sec-three-sp .bottom .selling-points .sp-title::after {
  content: "••";
  color: #D1322A;
  display: block;
  margin: 0.1em auto;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0.4em;
}
.sec-three-sp .bottom .selling-points .sp-desc {
  font-size: 18px;
  line-height: 28px;
  max-width: 328px;
  margin: 0 auto;
}
.sec-three-sp .bottom .selling-points .slick-dots {
  margin-top: 10px;
}
.sec-three-sp .bottom .selling-points .slick-dots li {
  margin: 0;
}
.sec-three-sp .bottom .selling-points .slick-dots li button:before {
  font-size: 22px;
  color: #1A1A1A;
  opacity: 1;
}
.sec-three-sp .bottom .selling-points .slick-dots li.slick-active button:before {
  color: #D1322A;
}

.sec-three {
  position: relative;
  padding: 5.5rem 2rem;
}
.sec-three-blocks {
  display: flex;
  justify-content: space-between;
}
.sec-three .container {
  max-width: 1700px;
  margin: 0 auto;
}
.sec-three .container .left {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 5rem;
}
.sec-three .container .right {
  max-width: 915px;
  flex: 1 1;
}
.sec-three .container .right .cr-block {
  margin: 0 15px;
  display: flex;
}
.sec-three .container .right .cr-block .content-icon {
  font-size: 26px;
  margin-bottom: 1.5rem;
}
.sec-three .container .right .cr-wrapper {
  background: #1A1A1A;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.95);
  text-align: center;
  padding: 4rem 2rem;
  width: 100%;
}
.sec-three .container .right .cr-wrapper img {
  max-width: 160px;
  margin: 0 auto 40px;
}
.sec-three .container .right .cr-quote {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 14em;
  font-size: 28px;
  letter-spacing: 0.015em;
  line-height: 1.4;
  font-family: "abril-display", serif;
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.sec-three .container .right .cr-quote:after {
  content: "••";
  color: #F23B32;
  display: block;
  margin: 18px auto;
  font-size: 24px;
  letter-spacing: 0.3em;
}
.sec-three .container .right .cr-desc {
  margin: 0 auto 50px;
  max-width: 19.7em;
  font-size: 18px;
  letter-spacing: 0.015em;
  line-height: 1.76;
  color: white;
  text-decoration: none;
}
.sec-three .container .right .cr-client {
  font-size: 14px;
  letter-spacing: 0.12em;
  line-height: 1.375;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.sec-three picture img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.sec-three-title {
  display: block;
  margin-bottom: 20px;
  font-size: 75px;
  letter-spacing: 0.015em;
  line-height: calc(1em + 10px);
  font-family: "abril-display", serif;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1694px) {
  .sec-three-sp {
    padding-top: 96px;
  }
  .sec-three-sp .bottom .selling-points {
    margin-top: 62px;
  }
  .sec-three {
    padding: 3.5rem 2rem;
  }
  .sec-three .container {
    max-width: 1335px;
  }
  .sec-three .container .left {
    padding-right: 1rem;
  }
  .sec-three .container .right {
    max-width: 820px;
  }
  .sec-three .container .right .cr-quote {
    font-size: 22px;
  }
  .sec-three .container .right .cr-quote:after {
    margin: 14px auto;
  }
  .sec-three .container .right .cr-client {
    font-size: 14px;
  }
  .sec-three .container .right .cr-wrapper {
    padding: 3rem 2rem 2.5rem;
  }
  .sec-three .container .right .cr-wrapper .content-icon {
    font-size: 21px;
    margin-bottom: 30px;
  }
  .sec-three .container .right .cr-desc {
    margin: 0 auto 35px;
  }
  .sec-three-title {
    font-size: 60px;
    line-height: 1.16;
  }
  .sec-three-title .lines {
    display: none;
  }
  .sec-three-btn a {
    font-size: 16px;
  }
}
@media (max-width: 1380px) {
  .sec-three-sp {
    padding: 96px 55px 105px;
  }
  .sec-three-sp .bottom .selling-points .sp-wrapper {
    padding: 0 1.57rem;
  }
  .sec-three-sp .bottom .selling-points .sp-title {
    font-size: 32px;
  }
  .sec-three-sp .bottom .selling-points .sp-desc {
    font-size: 17px;
  }
  .sec-three {
    padding: 4rem 2rem;
  }
  .sec-three .container {
    max-width: 1110px;
  }
  .sec-three .container .left {
    max-width: 360px;
    padding-left: 0;
  }
  .sec-three .container .right {
    max-width: 720px;
  }
  .sec-three .container .right .cr-quote {
    font-size: 21px;
    line-height: 1.5;
  }
  .sec-three .container .right .cr-wrapper {
    padding: 3rem 1.5rem;
  }
  .sec-three .container .right .cr-wrapper img {
    max-width: 110px;
    margin: 0 auto 30px;
  }
  .sec-three .container .right .cr-desc {
    margin: 0 auto 40px;
    font-size: 16px;
  }
  .sec-three-title {
    font-size: 52px;
  }
  .sec-three-title .lines {
    display: none;
  }
  .sec-three-btn a {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .sec-three-sp {
    padding: 70px 0 80px;
  }
  .sec-three-sp .bottom .selling-points {
    margin-top: 45px;
  }
  .sec-three-sp .bottom .selling-points .slick-dots {
    bottom: -60px;
  }
  .sec-three {
    padding: 4rem 2rem;
  }
  .sec-three .container {
    max-width: 670px;
  }
  .sec-three .container .left {
    padding-left: 0;
  }
  .sec-three .container .right {
    max-width: 350px;
  }
  .sec-three .container .right .cr-quote {
    font-size: 21px;
    line-height: 1.5;
  }
  .sec-three .container .right .cr-quote::after {
    margin: 0 auto;
  }
  .sec-three .container .right .cr-wrapper {
    box-shadow: none;
    padding: 3.5rem 1rem 2.5rem;
  }
  .sec-three .container .right .cr-wrapper .content-icon {
    margin-bottom: 35px;
  }
  .sec-three .container .right .cr-wrapper img {
    max-width: 110px;
  }
  .sec-three .container .right .cr-block {
    margin: 0;
  }
  .sec-three .container .right .cr-desc {
    margin: 0 auto 40px;
    padding: 0 10px;
    font-size: 16px;
    line-height: 1.75;
  }
  .sec-three .container .right .cr-client {
    font-size: 13px;
    line-height: 1.84;
  }
  .sec-three-title {
    font-size: 45px;
    line-height: 1.23;
  }
  .sec-three-title .lines {
    display: none;
  }
}
@media (max-width: 767px) {
  .sec-three {
    padding: 3.5rem 25px 60px;
    background: #101010;
  }
  .sec-three-blocks {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec-three .container .right {
    max-width: 100%;
    width: 340px;
  }
  .sec-three .container .right .cr-wrapper {
    padding: 3rem 1.9rem;
  }
  .sec-three .container .right .cr-wrapper img {
    max-width: 110px;
    margin: 0 auto 30px;
  }
  .sec-three .container .right .cr-quote {
    font-size: 22px;
    line-height: 30px;
  }
  .sec-three .container .right .cr-desc {
    margin: 0 auto 10px;
    font-size: 16px;
    line-height: 28px;
  }
  .sec-three .container .right .cr-client {
    font-size: 13px;
    line-height: 20px;
  }
  .sec-three .container .left {
    width: 100%;
    padding-left: 0;
    position: relative;
    z-index: 1;
  }
  .sec-three-title {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    max-width: 274px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
  }
  .sec-three-title .lines {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -19px;
    z-index: -1;
  }
  .sec-three-title .lines svg {
    max-height: 135px;
  }
  .sec-three-title .lines svg path {
    fill: #101010;
    opacity: 1;
  }
  .sec-three picture img {
    display: none;
  }
  .sec-three-btn {
    text-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 20px auto 0;
  }
  .sec-three-btn:hover a {
    background: #FFFFFF;
    color: #1A1A1A;
  }
  .sec-three-btn a {
    font-size: 15px;
  }
}
.sec-four {
  padding: 7.5rem 2rem;
}
.sec-four .container {
  display: flex;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto;
}
.sec-four .container .left {
  max-width: 702px;
}
.sec-four .container .left ul li:nth-child(n+2) {
  margin-top: 0px;
}
.sec-four .container .right {
  max-width: 525px;
}
.sec-four-quote {
  display: block;
  margin: 40px auto 20px;
  font-size: 30px;
  line-height: 1.33;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 500;
  text-decoration: none;
}
.sec-four-quote strong, .sec-four-quote em {
  color: #A72B23;
}
@media (max-width: 1694px) {
  .sec-four {
    padding-top: 5.5rem;
  }
  .sec-four .container {
    max-width: 1170px;
  }
  .sec-four .container .left {
    max-width: 600px;
  }
  .sec-four .container .right {
    max-width: 465px;
  }
  .sec-four .container .right img {
    max-width: 100%;
  }
  .sec-four-quote {
    font-size: 30px;
  }
}
@media (max-width: 1380px) {
  .sec-four {
    padding: 7rem 2rem;
  }
  .sec-four .container {
    max-width: 990px;
  }
  .sec-four .container .right {
    max-width: 400px;
  }
  .sec-four .container .right img {
    max-width: 100%;
  }
  .sec-four .container .left {
    max-width: 520px;
  }
  .sec-four-quote {
    margin: 30px 0 25px;
    font-size: 30px;
    line-height: 1.35;
  }
  .sec-four-btn {
    padding-left: 0;
  }
}
@media (max-width: 1199px) {
  .sec-four {
    padding: 5rem 90px 6rem;
  }
  .sec-four .container {
    justify-content: center;
    max-width: none;
    width: 100%;
    flex-wrap: wrap;
  }
  .sec-four .container .left {
    width: 100%;
    max-width: none;
  }
  .sec-four .container .right {
    text-align: center;
    max-width: none;
    margin-top: 50px;
  }
  .sec-four .container .right img {
    max-width: 100%;
    width: 544px;
  }
  .sec-four-quote {
    max-width: 31ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    line-height: 1.38;
  }
}
@media (max-width: 767px) {
  .sec-four {
    padding: 3rem 25px;
  }
  .sec-four .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  .sec-four .container .right {
    max-width: 349px;
    margin-top: 0px;
  }
  .sec-four .container .right img {
    width: auto;
  }
  .sec-four-quote {
    margin: 40px auto 15px;
    font-size: 28px;
    line-height: 38px;
  }
  .sec-four-btn {
    padding-left: 0;
    text-align: center;
  }
}
.sec-five {
  background: #E6E6E6;
  padding: 5rem 2rem 7rem;
}
.sec-five .container {
  max-width: 1600px;
  margin: 0 auto;
}
.sec-five .container .practice-areas {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sec-five .container .practice-areas .pa-block {
  max-width: calc(33.3333333333% - 133px);
  margin: 0 66.5px;
}
.sec-five .container .practice-areas .pa-wrapper {
  padding: 4rem 3rem 4rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.sec-five .container .practice-areas .pa-title {
  display: block;
  position: relative;
  margin-bottom: 5px;
  font-size: 30px;
  line-height: 1.4;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.sec-five .container .practice-areas .pa-title .lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3px;
}
.sec-five .container .practice-areas .pa-title .lines svg {
  max-height: 40px;
  max-width: 40px;
  opacity: 0.5;
}
.sec-five .container .practice-areas .pa-desc {
  font-size: 17px;
  line-height: 1.76;
  margin-bottom: 35px;
}
.sec-five .container .practice-areas .pa-learn-more {
  padding-bottom: 0.25em;
  border-bottom: 2px solid #D1322A;
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.28;
  color: #D1322A;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.sec-five-btn {
  text-align: center;
}

@media (min-width: 1200px) {
  .sec-five {
    padding-top: 3rem;
    padding-bottom: 9rem;
  }
  .sec-five .container .practice-areas .pa-block {
    flex: 1 1 33%;
  }
  .sec-five .container .practice-areas .pa-block:hover .pa-wrapper {
    background: #1A1A1A;
    color: white;
  }
  .sec-five .container .practice-areas .pa-block:hover .pa-title, .sec-five .container .practice-areas .pa-block:hover .pa-desc, .sec-five .container .practice-areas .pa-block:hover .pa-learn-more {
    color: inherit;
  }
  .sec-five .container .practice-areas .pa-desc {
    font-size: 18px;
  }
}
@media (max-width: 1694px) {
  .sec-five .container .practice-areas .pa-block {
    max-width: calc(33.3333333333% - 45px);
    margin: 0 22.5px;
  }
}
@media (max-width: 1380px) {
  .sec-five {
    padding: 2.5rem 2rem 5rem;
  }
  .sec-five .container .practice-areas .pa-title {
    font-size: 27px;
    line-height: 1.45;
  }
  .sec-five .container .practice-areas .pa-desc {
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 25px;
  }
  .sec-five .container .practice-areas .pa-learn-more {
    font-size: 14px;
  }
  .sec-five .container .practice-areas .pa-block {
    max-width: calc(33.3333333333% - 18px);
    margin: 0 9px;
  }
  .sec-five .container .practice-areas .pa-wrapper {
    padding: 3rem 2rem 3.5rem;
  }
}
@media (max-width: 1199px) {
  .sec-five {
    padding: 0;
  }
  .sec-five-btn {
    display: none;
  }
  .sec-five .container .practice-areas {
    margin-bottom: 0;
  }
  .sec-five .container .practice-areas .pa-block {
    max-width: 100%;
    margin: 0;
  }
  .sec-five .container .practice-areas .pa-wrapper {
    padding: 5rem 3rem 8.5rem;
  }
  .sec-five .container .practice-areas .pa-title {
    font-size: 27px;
    line-height: 1.5;
  }
  .sec-five .container .practice-areas .pa-desc {
    font-size: 18px;
  }
  .sec-five .container .practice-areas .pa-learn-more {
    font-size: 13px;
    line-height: 1.38;
  }
  .sec-five .container .practice-areas .slick-dots {
    bottom: 40px;
  }
  .sec-five .container .practice-areas .slick-dots li {
    margin: 0;
  }
  .sec-five .container .practice-areas .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #E3342B;
  }
  .sec-five .container .practice-areas .slick-dots li button:before {
    font-size: 20px;
    opacity: 1;
    color: #1A1A1A;
  }
}
@media (max-width: 767px) {
  .sec-five {
    padding: 0;
  }
  .sec-five .container .practice-areas {
    margin-bottom: 0;
  }
  .sec-five .container .practice-areas .pa-wrapper {
    padding: 4rem 2rem 5rem;
    max-width: calc(100% - 30px);
    margin: 0 auto;
  }
  .sec-five .container .practice-areas .pa-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .sec-five .container .practice-areas .pa-title .lines svg {
    max-height: 35px;
    max-width: 35px;
  }
  .sec-five .container .practice-areas .pa-desc {
    font-size: 18px;
    line-height: 26px;
  }
  .sec-five .container .practice-areas .pa-learn-more {
    font-size: 14px;
  }
}
.about_page .awards {
  margin-top: 9rem;
}
.about_page .about_content_top {
  padding: 0 2rem;
}
.about_page .about_content_top .container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.about_page .about_content_top .container .left, .about_page .about_content_top .container .right {
  flex-basis: 550px;
}
.about_page .about_content_bottom {
  background: #E8EBEF;
}
.about_page .about_blockquote {
  padding: 2rem 2rem 6.75rem;
}
.about_page .about_blockquote .fancy-blockquote {
  margin: 5.5rem auto 3rem;
}
.about_page .about_blockquote .container {
  max-width: 1320px;
  margin: 0 auto;
}
.about_page .about_cta {
  text-align: center;
}

.about_image_row {
  padding: 1px 2rem;
  margin-top: 250px;
}
.about_image_row .image-wrap {
  display: flex;
  justify-content: center;
}
.about_image_row .container {
  max-width: 1120px;
  margin: 0 auto;
  margin-top: -175px;
}

@media (max-width: 1694px) {
  .about_page .awards {
    margin-top: 6rem;
  }
  .about_page .about_content_top .container {
    max-width: 1100px;
  }
  .about_page .about_content_top .container .left, .about_page .about_content_top .container .right {
    flex-basis: 500px;
  }
  .about_page .about_image_row {
    margin-top: 230px;
  }
  .about_page .about_image_row .container {
    max-width: 1100px;
    margin-top: -160px;
  }
  .about_page .about_image_row .image-wrap img {
    max-width: calc(33.3333333333% - 20px);
    margin: 0 10px;
  }
  .about_page .about_blockquote {
    padding: 1px 2rem 4rem;
  }
  .about_page .about_blockquote .container {
    max-width: 1100px;
  }
}
@media (max-width: 1380px) {
  .about_page .about_content_top .container {
    max-width: 840px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .about_page .about_content_top .container .left, .about_page .about_content_top .container .right {
    flex-basis: 100%;
  }
  .about_page .about_image_row {
    margin-top: 160px;
  }
  .about_page .about_image_row .container {
    max-width: 840px;
    margin-top: -125px;
  }
  .about_page .about_image_row .image-wrap img {
    max-width: calc(33.3333333333% - 20px);
    margin: 0 10px;
  }
  .about_page .about_blockquote {
    padding: 1px 2rem 3rem;
  }
  .about_page .about_blockquote .container {
    max-width: 840px;
  }
}
@media (max-width: 1199px) {
  .about_page .about_content_top .container {
    max-width: 590px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .about_page .about_image_row {
    margin-top: 170px;
  }
  .about_page .about_image_row .container {
    max-width: 590px;
    margin-top: -135px;
  }
  .about_page .about_image_row .image-wrap img {
    max-width: 80%;
    margin: 0 10px;
  }
  .about_page .about_blockquote {
    padding: 1px 2rem 3rem;
  }
  .about_page .about_blockquote .container {
    max-width: 590px;
  }
}
@media (max-width: 767px) {
  .about_page .about_content_top .container {
    flex-wrap: wrap;
    max-width: 550px;
  }
  .about_page .about_image_row {
    margin-top: 200px;
  }
  .about_page .about_image_row .container {
    max-width: 550px;
  }
  .about_page .about_image_row .image-wrap {
    justify-content: center;
  }
  .about_page .about_image_row .image-wrap img {
    max-width: 100%;
  }
  .about_page .about_image_row .image-wrap img:not(:first-child) {
    display: none;
  }
  .about_page .about_blockquote {
    padding: 0 2rem 3rem;
  }
  .about_page .about_blockquote .container {
    max-width: 550px;
  }
}
.pa-directory {
  padding: 6.25rem 2rem;
}
.pa-directory .pa-grid .container {
  max-width: 1560px;
  margin: 0 auto;
}
.pa-directory .pa-block {
  background: #e6e6e6;
  padding: 3rem;
  margin-bottom: 70px;
}
.pa-directory .pa-wrapper {
  background: white;
  padding: 4rem 3rem;
  box-shadow: 0 0 30px rgba(0, 3, 16, 0.18);
}
.pa-directory .pa-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.pa-directory .pa-wrapper ul li {
  width: calc(25% - 24px);
  margin: 0 12px;
  display: flex;
  align-items: center;
}
.pa-directory .pa-wrapper ul li:nth-child(n+5) {
  border-top: 2px solid #E8EBEF;
}
.pa-directory .pa-wrapper ul li a {
  padding: 1em 1.125em;
  transition: all 0.3s ease-in-out;
  flex: 1 1;
  font-size: 19px;
  line-height: 1.5789473684;
  color: #1A1A1A;
  text-decoration: none;
}
.pa-directory .pa-wrapper ul li a:hover {
  color: #D1322A;
}
.pa-directory .pa-title {
  display: block;
  position: relative;
  margin-bottom: 40px;
  font-size: 25px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-family: "abril-display", serif;
  color: #D1322A;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.pa-directory .pa-title .lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3px;
}
.pa-directory .pa-title .lines svg {
  max-height: 35px;
}
.pa-directory .pa-title .lines svg path {
  fill: #1A1A1A;
  opacity: 0.1;
}

@media (max-width: 1694px) {
  .pa-directory {
    padding: 4rem 2rem;
  }
  .pa-directory .pa-grid .container {
    max-width: 1260px;
  }
  .pa-directory .pa-wrapper ul li {
    width: calc(33.3333333333% - 24px);
  }
  .pa-directory .pa-wrapper ul li:nth-child(n+4) {
    border-top: 2px solid #E8EBEF;
  }
  .pa-directory .pa-wrapper ul li a {
    font-size: 16px;
  }
}
@media (max-width: 1380px) {
  .pa-directory {
    padding: 4rem 2rem;
  }
  .pa-directory .pa-grid .container {
    max-width: 1100px;
  }
  .pa-directory .pa-wrapper ul li a {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 1199px) {
  .pa-directory {
    padding: 4rem 2rem;
  }
  .pa-directory .pa-block {
    padding: 2rem;
    margin-bottom: 40px;
  }
  .pa-directory .pa-grid .container {
    max-width: 660px;
  }
  .pa-directory .pa-title {
    margin-bottom: 30px;
  }
  .pa-directory .pa-wrapper {
    padding: 3rem 2rem;
  }
  .pa-directory .pa-wrapper ul li {
    width: calc(50% - 24px);
  }
  .pa-directory .pa-wrapper ul li:nth-child(n+3) {
    border-top: 2px solid #E8EBEF;
  }
  .pa-directory .pa-wrapper ul li a {
    font-size: 15px;
    line-height: 21px;
  }
}
@media (max-width: 767px) {
  .pa-directory {
    padding: 2rem;
  }
  .pa-directory .pa-block {
    padding: 2rem;
    margin-bottom: 30px;
  }
  .pa-directory .pa-wrapper {
    padding: 3rem 1rem;
  }
  .pa-directory .pa-wrapper ul li {
    width: 100%;
  }
  .pa-directory .pa-wrapper ul li:not(:first-child) {
    border-top: 2px solid #E8EBEF;
  }
  .pa-directory .pa-wrapper ul li a {
    font-size: 16px;
    text-align: center;
  }
  .pa-directory .pa-title {
    margin-bottom: 20px;
  }
}
.testimonial-page {
  padding: 0 2rem 3rem;
}
.testimonial-page .test-grid .container {
  max-width: 1080px;
  margin: 0 auto;
}
.testimonial-page .test-block {
  background: #e6e6e6;
  padding: 50px;
  margin-bottom: 60px;
  text-align: center;
}
.testimonial-page .test-block .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
.testimonial-page .test-wrapper {
  background: white;
  padding: 5.5rem 3rem 5rem;
  box-shadow: 0 0 30px rgba(0, 3, 16, 0.18);
}
.testimonial-page .test-quote {
  display: block;
  position: relative;
  max-width: 583px;
  margin: 0 auto;
  font-size: 25px;
  letter-spacing: 0.015em;
  line-height: 1.32;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 700;
  text-decoration: none;
}
.testimonial-page .test-quote:after {
  content: "••";
  color: #D1322A;
  display: block;
  margin: 10px auto 10px auto;
  font-size: 24px;
  letter-spacing: 0.4em;
}
.testimonial-page .test-desc {
  max-width: 35em;
  margin: 0 auto 40px;
}
.testimonial-page .test-client {
  max-width: 35em;
  margin: 0 auto;
  display: block;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.5;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1380px) {
  .testimonial-page .test-grid .container {
    max-width: 950px;
  }
}
@media (max-width: 1199px) {
  .testimonial-page .test-grid .container {
    max-width: 590px;
  }
  .testimonial-page .test-block {
    padding: 30px;
    margin-bottom: 30px;
  }
  .testimonial-page .test-block .stars {
    margin-bottom: 30px;
  }
  .testimonial-page .test-block .stars svg {
    max-width: 120px;
  }
  .testimonial-page .test-wrapper {
    padding: 3rem 2rem;
  }
  .testimonial-page .test-quote {
    font-size: 22px;
  }
  .testimonial-page .test-desc {
    margin: 0 auto 30px;
  }
  .testimonial-page .test-client {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .testimonial-page .test-grid .container {
    max-width: 550px;
  }
  .testimonial-page .test-block {
    padding: 30px;
    margin-bottom: 30px;
  }
  .testimonial-page .test-block .stars {
    margin-bottom: 30px;
  }
  .testimonial-page .test-block .stars svg {
    max-width: 120px;
  }
  .testimonial-page .test-wrapper {
    padding: 3rem 2rem;
  }
  .testimonial-page .test-quote {
    font-size: 20px;
  }
  .testimonial-page .test-desc {
    margin: 0 auto 30px;
  }
  .testimonial-page .test-client {
    font-size: 14px;
  }
}
.case-results-page {
  padding: 0 2rem 3rem;
}
.case-results-page .cr-content {
  max-width: 35em;
  width: 80%;
  text-align: center;
  margin: 0 auto 6rem;
}
.case-results-page .cr-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.case-results-page .cr-grid-container {
  max-width: 1530px;
  margin: 0 auto;
}
.case-results-page .cr-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  height: 64px;
}
.case-results-page .cr-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  background: white;
  flex: 1 1;
  padding: 4rem 2rem 1rem;
  box-shadow: 0 0 15px rgba(0, 3, 16, 0.18);
  text-align: center;
}
.case-results-page .cr-amount {
  display: block;
  position: relative;
  max-width: 655px;
  margin: 0 auto;
  font-size: 48px;
  letter-spacing: 0.015em;
  line-height: 1.16;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.case-results-page .cr-amount:after {
  content: "••";
  color: #D1322A;
  display: block;
  margin: 10px auto 10px 10px;
  font-size: 28px;
  letter-spacing: 0.5em;
}
.case-results-page .cr-desc {
  max-width: 18em;
  margin: 0 auto 65px;
  font-size: 18px;
  line-height: 1.76;
  color: #1A1A1A;
  text-align: center;
  text-decoration: none;
}
.case-results-page .cr-link {
  display: inline-block;
  border-bottom: 2px solid #D1322A;
  padding-bottom: 3px;
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.28;
  color: #D1322A;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.case-results-page .cr-link:hover {
  color: #1A1A1A;
}

.case-results-page .cr-block {
  display: flex;
  background: #e6e6e6;
  width: 100%;
  padding: 0px 30px 30px 30px;
}
@media (max-width: 767px) {
  .case-results-page .cr-block:nth-child(-n+1) {
    padding-top: 30px;
  }
}

@media (min-width: 768px) {
  .case-results-page .cr-block {
    width: 50%;
    padding: 0px 15px 30px 15px;
  }
}
@media (min-width: 768px) and (max-width: 1380px) {
  .case-results-page .cr-block:nth-child(-n+2) {
    padding-top: 30px;
  }
  .case-results-page .cr-block:nth-child(2n+1) {
    padding-left: 30px;
  }
  .case-results-page .cr-block:nth-child(2n+2) {
    padding-right: 30px;
  }
}
@media (min-width: 768px) {
  .case-results-page .cr-grid {
    justify-content: flex-start;
  }
}
@media (min-width: 1381px) {
  .case-results-page .cr-block {
    margin-bottom: 60px;
    width: 33.33%;
    padding: 30px 15px;
  }
  .case-results-page .cr-block:nth-child(3n+1) {
    padding-left: 30px;
  }
  .case-results-page .cr-block:nth-child(3n+3) {
    padding-right: 30px;
  }
}
@media (min-width: 1695px) {
  .case-results-page .cr-block {
    margin-bottom: 50px;
    width: 33.33%;
    padding: 40px 20px;
  }
  .case-results-page .cr-block:nth-child(3n+1) {
    padding-left: 40px;
  }
  .case-results-page .cr-block:nth-child(3n+3) {
    padding-right: 40px;
  }
}
@media (max-width: 1694px) {
  .case-results-page .cr-grid .container {
    max-width: 1260px;
  }
  .case-results-page .cr-block {
    margin-bottom: 50px;
  }
  .case-results-page .cr-amount {
    font-size: 50px;
  }
  .case-results-page .cr-desc {
    margin-bottom: 30px;
    font-size: 15px;
  }
  .case-results-page .cr-link {
    font-size: 12px;
  }
  .case-results-page .cr-icon {
    margin-bottom: 30px;
    height: 60px;
  }
  .case-results-page .cr-icon img {
    height: 100%;
    width: 60px;
  }
}
@media (max-width: 1380px) {
  .case-results-page .cr-grid .container {
    max-width: 1100px;
  }
  .case-results-page .cr-block {
    margin-bottom: 0;
  }
  .case-results-page .cr-amount {
    font-size: 40px;
  }
  .case-results-page .cr-desc {
    margin: 0 auto 30px;
    font-size: 15px;
  }
  .case-results-page .cr-link {
    font-size: 12px;
  }
  .case-results-page .cr-icon {
    margin-bottom: 30px;
    height: 60px;
  }
  .case-results-page .cr-icon img {
    height: 100%;
    width: 60px;
  }
}
@media (max-width: 1199px) {
  .case-results-page {
    padding: 0 2rem 4rem;
  }
  .case-results-page .cr-wrapper {
    padding: 3rem 2rem 1rem;
  }
  .case-results-page .cr-wrapper:last-child {
    margin-bottom: 0;
  }
  .case-results-page .cr-block {
    flex-wrap: wrap;
  }
  .case-results-page .cr-block:last-child {
    margin-bottom: 0;
  }
  .case-results-page .cr-grid .container {
    max-width: 590px;
  }
}
@media (max-width: 767px) {
  .case-results-page .cr-block {
    flex-wrap: wrap;
  }
  .case-results-page .cr-wrapper:last-child {
    margin-bottom: 0;
  }
  .case-results-page .cr-icon {
    margin-bottom: 30px;
    height: 54px;
  }
  .case-results-page .cr-icon img {
    height: 100%;
  }
  .case-results-page .cr-amount {
    font-size: 35px;
  }
  .case-results-page .cr-desc {
    margin: 0 auto 30px;
    font-size: 16px;
  }
  .case-results-page .cr-link {
    font-size: 12px;
  }
}
/*
Popup modal. for initially hidden content. Uncomment in style.scss if needed
Markup should follow the folloowing

	.popup-trigger
	.popup
		html content to place inside the popup Note: all contents will be moved out of its containing block and into a popup markup before the bnody tag

--------------------------------------------------------------- */
.body-popup-active {
  overflow: hidden;
}

.popup {
  padding: 11vw 0;
  display: none;
  overflow-y: scroll;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  min-width: 320px;
  background: none !important;
}
.popup-content {
  display: none !important;
}
.popup::-webkit-scrollbar {
  display: none;
}
.popup-overlay {
  background: #1A1A1A;
  opacity: 0.8;
  min-height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
}
.popup-wrapper {
  background: #E8EBEF;
  position: relative;
  padding: 4.875rem;
}
.popup-close-button {
  position: absolute;
  top: 0;
  right: 1em;
  margin-top: 1em;
  background: none;
  border: 0;
  font-size: 2.5rem;
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  padding: 0;
  overflow: hidden;
  text-indent: -9999em;
}
.popup-close-button:before, .popup-close-button:after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
}
.popup-close-button:before {
  transform: rotate(45deg);
}
.popup-close-button:after {
  transform: rotate(-45deg);
}
.popup-container {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .popup-wrapper {
    padding: 4rem 2rem 2rem;
  }
  .popup-close-button {
    font-size: 2rem;
    margin-top: 1.25rem;
    right: 1.25rem;
  }
}

.team-page {
  padding: 0 2rem;
}
.team-page .team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.team-page .team-grid .container {
  max-width: 1480px;
  margin: 0 auto;
}
.team-page .team-member {
  width: calc(33.3333333333% - 60px);
  margin: 0 30px 50px;
}
.team-member-thumb {
  background: #101010;
  border: 28px solid #e6e6e6;
  position: relative;
  color: white;
}
.team-member-thumb:after,
.team-member-thumb .placeholder,
.team-member-thumb img {
  transition: opacity ease-in-out 0.5s;
}
.team-member-thumb:before {
  padding-bottom: 100%;
  content: "";
  display: block;
}
.team-member-thumb .placeholder, .team-member-thumb:after {
  content: attr(title);
  font-size: 16px;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #F23B32;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.09em;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  transform: translate(-50%, -50%);
  text-align: center;
}
.team-member-thumb:after {
  opacity: 0;
}
.team-member-thumb:is(a):hover .placeholder {
  opacity: 0;
}
.team-member-thumb:is(a):hover img {
  opacity: 0.2;
}
.team-member-thumb:is(a):hover:after {
  opacity: 1;
}
.team-member-thumb img {
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.team-page .team-member a {
  display: block;
  width: 100%;
}
.team-page .team-member-details {
  padding: 1.75rem 2rem;
}
.team-page .team-member .member-name a {
  display: block;
  font-size: 35px;
  letter-spacing: 0.015em;
  line-height: 1.35;
  font-family: "abril-display", serif;
  color: #1A1A1A;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.team-page .team-member .member-name a:after {
  content: "••";
  color: #D1322A;
  display: block;
  margin: 0 auto;
  font-size: 28px;
  letter-spacing: 0.25em;
}
.team-page .team-member .member-position {
  font-size: 16px;
  letter-spacing: 0.16em;
  line-height: 1.285;
  color: #1A1A1A;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1380px) {
  .team-page {
    padding: 0 2rem 2rem;
  }
  .team-page .team-grid .container {
    max-width: 1100px;
  }
  .team-page .team-member {
    width: calc(33.3333333333% - 28px);
    margin: 0 14px 30px;
  }
  .team-page .team-member-details {
    padding: 1.75rem 1.5rem;
  }
  .team-page .team-member .member-position {
    font-size: 12px;
  }
  .team-page .team-member .member-name a {
    font-size: 28px;
  }
}
@media (max-width: 1199px) {
  .team-page .team-member {
    width: calc(50% - 24px);
    margin: 0 12px 30px;
  }
  .team-page .team-member .member-position {
    font-size: 12px;
  }
  .team-page .team-member .member-name a {
    font-size: 26px;
  }
  .team-page .team-grid .container {
    max-width: 710px;
  }
}
@media (max-width: 767px) {
  .team-page .team-grid .container {
    max-width: 420px;
  }
  .team-page .team-member {
    width: 100%;
    margin: 0 0 10px;
  }
  .team-page .team-member .member-position {
    font-size: 13px;
  }
  .team-page .team-member .member-name a {
    font-size: 24px;
  }
}
.video-block-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: #101010;
}
.video-block-thumb:hover .play_btn {
  pointer-events: none;
}
.video-block-thumb-aspect {
  position: relative;
  width: 100%;
}
.video-block-thumb-aspect:before {
  content: "";
  display: block;
  padding-bottom: 60.6976744186%;
}
.video-block-thumb-aspect-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.play_btn + .video-block-thumb-aspect-img {
  cursor: pointer;
}

.video-block-thumb img {
  width: 100%;
  height: 100%;
}
.video-block-thumb .play_btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.play_btn {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: white;
  color: #1A1A1A;
  font-size: 76px;
  width: 1em;
  height: 1em;
  border-radius: 9999em;
  z-index: 10;
  transition: all 0.3s ease-in-out;
}
.play_btn:hover, .video-block:hover .play_btn {
  background: linear-gradient(to bottom, #F23B32 -10%, #A72B23 100%);
  transform: scale(1.1);
}
.play_btn:hover:after, .video-block:hover .play_btn:after {
  color: #FFFFFF;
}
.play_btn:before {
  content: "";
  display: block;
  background: none;
  width: calc(1em + 20px);
  height: calc(1em + 20px);
  border: 8px solid rgba(0, 3, 12, 0.24);
  position: absolute;
  border-radius: 100%;
}
.play_btn:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0.03em;
  color: #F23B32;
  border-left: 0.2em solid;
  border-top: 0.133em solid transparent;
  border-right: 0 solid transparent;
  border-bottom: 0.133em solid transparent;
  margin: auto;
}

.video-center-page {
  padding: 0 2rem;
}
.video-center-page .video-grid .container {
  max-width: 1520px;
  margin: 0 auto;
}
.video-center-page .video-grid .container .videos {
  display: flex;
  flex-wrap: wrap;
}
.video-center-page .video-block {
  width: calc(33.3333333333% - 26px);
  margin: 0 13px 80px;
}
.video-center-page .video-block,
.video-center-page .video-block a {
  color: inherit;
  text-decoration: none;
}
.video-center-page .video-block-thumb {
  background: #e6e6e6;
  padding: 25px;
}
.video-center-page .video-block a {
  display: block;
  width: 100%;
}
.video-center-page .video-block-details {
  padding: 1.75rem 2rem;
}
.video-center-page .video-desc {
  font-size: 21px;
  line-height: 1.73;
  text-align: center;
  border-bottom: 3px solid #F23B32;
  padding: 2rem 0.75rem 1rem;
  max-width: calc(100% - 47px);
  margin: 0 auto;
}

@media (max-width: 1694px) {
  .video-center-page .video-grid .container {
    max-width: 1260px;
  }
  .video-center-page .video-desc {
    font-size: 18px;
  }
}
@media (max-width: 1380px) {
  .video-center-page .video-desc {
    font-size: 17px;
  }
  .video-center-page .video-block-thumb .play_btn {
    font-size: 66px;
  }
}
@media (max-width: 1199px) {
  .video-center-page .video-block {
    width: calc(50% - 16px);
    margin: 0 8px 60px;
  }
  .video-center-page .video-block-thumb {
    padding: 20px;
  }
  .video-center-page .video-desc {
    font-size: 16px;
    padding: 1.75rem 0;
  }
  .video-center-page .video-grid .container {
    max-width: 650px;
  }
}
@media (max-width: 767px) {
  .video-center-page .video-block {
    width: 100%;
    margin: 0 0 60px;
  }
  .video-center-page .video-grid .container {
    max-width: 420px;
  }
  .video-center-page .video-desc {
    font-size: 17px;
    padding: 1.75rem 0;
  }
}
.banner.att-banner {
  background: #E8EBEF;
  padding: 9rem 2rem 6rem;
}
.banner.att-banner p {
  font-size: 19px;
  line-height: 1.73;
  letter-spacing: 0.015em;
}
.banner.att-banner .container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.banner.att-banner .container .left {
  max-width: 900px;
  width: 100%;
  padding-top: 40px;
}
.banner.att-banner .container .left h1 {
  position: relative;
  margin-bottom: 35px;
}
.banner.att-banner .container .left h1 .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
  top: -10px;
  left: 29px;
  transform: translateX(-50%);
  position: absolute;
}
.banner.att-banner .container .left h1 .lines svg {
  max-height: 145px;
  height: 100%;
  width: 100%;
}
.banner.att-banner .container .left h1 .lines svg path {
  fill: #1A1A1A;
  opacity: 0.06;
}
.banner.att-banner .container .right {
  max-width: 480px;
  width: 100%;
}

.att_page.default_page {
  padding-top: 6.25rem;
}
.att_page.default_page .awards {
  margin-top: 6em;
}
.att_page.default_page .widget {
  background: white;
  border-color: #e6e6e6;
}
.att_page.default_page .widget-title {
  border-color: #F23B32;
}
.att_page.default_page .widget:before {
  content: none;
}
.att_page .default_page_main h1 {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0.1em;
}
.att_page .default_page_main.content blockquote p {
  max-width: 790px;
}
.att_page .default_page_sidebar {
  width: 100%;
}
.att_page .default_page_sidebar .widget-title:after {
  content: none;
}
.att_page .default_page_sidebar .widget ul li:last-child {
  margin-bottom: 0;
}
.att-thumb {
  padding: 30px;
  margin-bottom: 2.25rem;
  margin-left: auto;
  margin-right: auto;
}
.att-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.att-position {
  display: block;
  margin-bottom: 60px;
  font-size: 16px;
  letter-spacing: 0.12em;
  line-height: 1.64;
  color: #D1322A;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1694px) {
  .banner.att-banner .container {
    max-width: 1160px;
  }
  .banner.att-banner .container .left {
    max-width: 650px;
    padding-top: 30px;
  }
  .banner.att-banner .container .left h1 .lines {
    top: -16px;
  }
  .banner.att-banner .container .right {
    max-width: 420px;
  }
  .banner.att-banner p {
    font-size: 17px;
    line-height: 1.76;
  }
  .banner.att-banner .att-position {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
@media (max-width: 1380px) {
  .banner.att-banner {
    padding: 7rem 2rem 5rem;
  }
  .banner.att-banner .container {
    max-width: 980px;
  }
  .banner.att-banner .container .left {
    max-width: 480px;
    padding-top: 20px;
  }
  .banner.att-banner .container .left h1 .lines {
    top: -22px;
  }
  .banner.att-banner .container .right {
    max-width: 372px;
  }
  .banner.att-banner p {
    font-size: 16px;
    line-height: 1.76;
  }
  .heading {
    text-align: center;
  }
  .att_page.default_page {
    margin-top: 30px;
    padding-top: 4.25rem;
  }
  .att-position {
    margin-bottom: 40px;
    font-size: 15px;
    text-align: center;
  }
  .att-thumb {
    max-width: 480px;
  }
}
@media (max-width: 1199px) {
  .banner.att-banner {
    padding: 1rem 2rem 3.5rem !important;
  }
  .banner.att-banner .container {
    max-width: 420px;
    flex-wrap: wrap;
  }
  .banner.att-banner .container .left {
    text-align: center;
  }
  .banner.att-banner .container .left h1 {
    margin-bottom: 30px;
    font-size: 40px;
  }
  .banner.att-banner .container .left h1 .lines {
    max-height: 70px;
    left: 50%;
  }
  .banner.att-banner .container .left h1 .lines svg {
    max-height: 70px;
  }
  .banner.att-banner .container .right {
    max-width: 550px;
  }
  .banner.att-banner p {
    display: none;
  }
  .att-position {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .att-thumb {
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 415px;
  }
}
@media (max-width: 767px) {
  .banner.att-banner {
    padding: 1rem 2rem 3.5rem !important;
  }
  .banner.att-banner .container {
    max-width: 420px;
    flex-wrap: wrap;
  }
  .banner.att-banner .container .left {
    text-align: center;
  }
  .banner.att-banner .container .left h1 {
    margin-bottom: 30px;
    font-size: 35px;
  }
  .banner.att-banner .container .left h1 .lines {
    max-height: 70px;
    left: 50%;
  }
  .banner.att-banner .container .left h1 .lines svg {
    max-height: 70px;
  }
  .banner.att-banner .container .right {
    max-width: 550px;
  }
  .banner.att-banner p {
    display: none;
  }
  .att-position {
    margin-bottom: 40px;
    font-size: 14px;
  }
  .att-thumb {
    padding: 20px;
  }
  .att_page.default_page {
    padding-top: 2rem;
  }
  .att_page .default_page_sidebar .widget ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.contact_page {
  padding-top: 7rem;
  padding-bottom: 9rem;
}
.contact_page .container {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.contact_page .container .left {
  width: 52%;
  padding: 0;
}
.contact_page .container .left .contact_info {
  max-width: 645px;
  margin: 0 auto;
}
.contact_page .container .left .contact_info .locations {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.contact_page .container .left h1 {
  font-size: 60px;
  font-weight: 500;
  position: relative;
  margin-bottom: 48px;
}
.contact_page .container .left h1 .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
  top: -10px;
  left: 29px;
  transform: translateX(-50%);
  position: absolute;
}
.contact_page .container .left h1 .lines svg {
  max-height: 145px;
  height: 100%;
  width: 100%;
}
.contact_page .container .left h1 .lines svg path {
  fill: currentColor;
  opacity: 0.06;
}
.contact_page .container .left .office-block {
  margin-bottom: 52px;
}
.contact_page .container .left .office-icon {
  margin-bottom: 19px;
}
.contact_page .container .left .office-title {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_page .container .left .office-title:after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background: #F23B32;
  margin-bottom: 21px;
}
.contact_page .container .left .office-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 116px;
       column-gap: 116px;
  row-gap: 5px;
}
.contact_page .container .left .office-address {
  font-family: "abril-display", serif;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 23px;
}
.contact_page .container .left .office_map {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  text-decoration: none;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #F23B32;
}
.contact_page .container .left .office_map:hover {
  background: #F23B32;
  color: #FFFFFF;
}
.contact_page .container .left .lc-block.bottom {
  margin-top: 10px;
  margin-bottom: 52px;
  display: flex;
}
.contact_page .container .left .phone-wrapper .phone-title {
  display: block;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact_page .container .left .phone-wrapper .phone-title:after {
  display: block;
  content: "";
  width: 100%;
  height: 2.3px;
  background: #F23B32;
  margin-bottom: 21px;
}
.contact_page .container .left .phone-wrapper .phone {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.contact_page .container .left .phone-wrapper .phone span:after {
  display: inline;
  content: "•";
  font-size: 20px;
  color: #F23B32;
  padding: 0 0 0 8px;
  line-height: 0;
}
.contact_page .container .left .phone-wrapper .phone a {
  color: #1A1A1A;
  text-decoration: none;
  font-size: 25px;
  letter-spacing: 0.02em;
}
.contact_page .container .left .phone-wrapper a {
  color: #1A1A1A;
  text-decoration: none;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.02em;
}
.contact_page .container .left .phone-wrapper:last-child {
  margin-left: 75px;
}
.contact_page .container .right {
  width: auto;
}
.contact_page .container .right img {
  border: 37px solid #e6e6e6;
  width: 770px;
  height: auto;
}
.contact_page .container .right #nav_menu-2 {
  display: none;
}

.page-template-template-contact .locations .lc-title {
  border-color: #A72B23;
}
.page-template-template-contact .locations .lc-social a {
  filter: none;
}
.page-template-template-contact .locations .btn-directions {
  color: inherit;
}
.page-template-template-contact footer {
  padding: 8rem 2rem 2rem;
}
.page-template-template-contact footer .container {
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-template-contact footer .container .left {
  max-width: 1660px;
}
.page-template-template-contact footer .container .right {
  margin-top: 3rem;
  display: inline;
  padding: 0;
  width: 100%;
  max-width: none;
}
.page-template-template-contact footer .container .right .copyright {
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  max-width: none;
  display: flex;
}
.page-template-template-contact footer .container .right .copyright .copy-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-template-template-contact footer .container .right .copyright .menu {
  display: flex;
  width: 66%;
  margin-left: 7px;
}
.page-template-template-contact footer .container .right .copyright .content-icon {
  margin-top: 0px;
}
.page-template-template-contact footer .container .contact-form .form-title {
  max-width: unset;
}
.page-template-template-contact footer .container .contact-form .form-title .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
}
.page-template-template-contact footer .container .contact-form .form-title .lines svg {
  max-height: 145px;
  height: 100%;
  width: 100%;
}
.page-template-template-contact footer .container .contact-form .form-container {
  max-width: 1430px;
}
.page-template-template-contact footer .container .contact-form .form-desc {
  max-width: 430px;
}
@media (min-width: 1695px) {
  .page-template-template-contact footer {
    padding: 8rem 2rem 2rem;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield:nth-child(-n+4) {
    grid-column: span 3;
  }
}
@media (max-width: 1694px) {
  .contact_page .container .left .contact_info {
    max-width: 550px;
  }
  .contact_page .container .left .contact_info .office-locations {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  .contact_page .container .left .contact_info .office-title {
    font-size: 15px;
  }
  .contact_page .container .left .contact_info .office-address {
    font-size: 20px;
  }
  .contact_page .container .left .contact_info .phone-wrapper .phone-title {
    font-size: 15px;
  }
  .contact_page .container .left .contact_info .phone-wrapper .phone {
    font-size: 15px;
  }
  .contact_page .container .left .contact_info .phone-wrapper .phone a {
    font-size: 20px;
  }
  .contact_page .container .left .contact_info .phone-wrapper a {
    font-size: 20px;
  }
  .contact_page .container .left .contact_info .phone-wrapper:last-child {
    margin-left: 28px;
  }
  .contact_page .container .left h1 {
    text-align: left;
  }
  .contact_page .container .left h1 .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .contact_page .container .left h1 .lines svg {
    max-height: 60px;
  }
  .contact_page .container .right img {
    width: 550px;
  }
  .page-template-template-contact footer {
    padding: 5rem 2rem;
  }
  .page-template-template-contact footer .container {
    max-width: 1260px;
  }
  .page-template-template-contact footer .container .right .copyright .menu {
    width: 55%;
  }
  .page-template-template-contact footer .container .contact-form .form-container {
    max-width: 1100px;
  }
  .page-template-template-contact footer .container .contact-form .form-desc {
    max-width: unset;
  }
  .page-template-template-contact footer .container .contact-form .gform_footer {
    margin-top: 15px;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield_html {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    text-align: left;
  }
}
@media (max-width: 1380px) {
  #contact .gfield .required {
    bottom: -110px !important;
  }
  .contact_page {
    padding-bottom: 5rem;
  }
  .contact_page .container .left .contact_info {
    max-width: 420px;
  }
  .contact_page .container .left .contact_info .lc-block.bottom {
    flex-direction: column;
  }
  .contact_page .container .left .contact_info .phone-wrapper:last-child {
    margin-top: 30px;
    margin-left: 0;
  }
  .contact_page .container .left h1 {
    margin-bottom: 60px;
    text-align: left;
  }
  .contact_page .container .left h1 .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .contact_page .container .left h1 .lines svg {
    max-height: 60px;
  }
  .contact_page .container .right .default_page_sidebar {
    max-width: 460px;
  }
  .contact_page .container .right .sidebar_form {
    display: block;
  }
  .page-template-template-contact footer {
    padding: 5rem 3rem 1rem;
  }
  .page-template-template-contact footer .container {
    max-width: 1100px;
  }
  .page-template-template-contact footer .container .contact-form {
    padding: 6rem 2rem 8rem;
  }
  .page-template-template-contact footer .container .contact-form .form-container {
    max-width: 960px;
  }
  .page-template-template-contact footer .container .contact-form .form-desc {
    max-width: unset;
  }
  .page-template-template-contact footer .container .contact-form .gform_footer {
    margin-top: 0px;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield--width-half {
    grid-column: span 6 !important;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield_html {
    position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    text-align: left;
  }
  .page-template-template-contact footer .container .right .copyright .menu {
    width: 48%;
  }
}
@media (max-width: 1199px) {
  .page-contact-us #contact .gfield .required {
    padding-top: 100px !important;
  }
  .contact_page {
    padding: 4rem 0 3rem;
  }
  .contact_page .container {
    flex-wrap: wrap;
  }
  .contact_page .container .left, .contact_page .container .right {
    width: 100%;
  }
  .contact_page .container .right {
    display: none;
  }
  .contact_page .container .left {
    padding: 3rem 2rem 2rem;
    margin: 0 auto;
  }
  .contact_page .container .left .contact_info {
    max-width: 590px;
  }
  .contact_page .container .left .contact_info .phone-wrapper:last-child {
    margin-top: 0;
  }
  .contact_page .container .left .contact_info .lc-block.bottom {
    flex-direction: row;
    gap: 78px;
  }
  .contact_page .container .left .contact_info .office-locations {
    -moz-column-gap: 110px;
         column-gap: 110px;
  }
  .contact_page .container .left h1 {
    line-height: 1.33;
    text-align: center;
    margin-bottom: 3rem;
  }
  .contact_page .container .left h1 .lines {
    display: block;
    max-height: 50px;
    top: -2px;
    left: 50%;
  }
  .contact_page .container .left h1 .lines svg {
    max-height: 50px;
  }
  .page-template-template-contact footer {
    padding: 2rem 4rem;
  }
  .page-template-template-contact footer .container .left {
    max-width: 100%;
  }
  .page-template-template-contact footer .container .right .copyright {
    display: block;
    text-align: center;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .page-template-template-contact footer .container .right .copyright .copy-text {
    margin: 0 auto;
  }
  .page-template-template-contact footer .container .right .copyright .menu {
    justify-content: center;
    width: 100%;
    margin: 0 auto;
  }
  .page-template-template-contact footer .container .contact-form .form-title {
    max-width: 400px;
  }
  .page-template-template-contact footer .container .contact-form .form-desc {
    max-width: 400px;
  }
  .page-template-template-contact footer .container .contact-form .form-container {
    max-width: 405px;
  }
  .page-template-template-contact footer .container .contact-form .gform_footer {
    margin-top: -50px;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield {
    width: 100%;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield--width-half {
    grid-column: 1/-1 !important;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield_html {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .contact_page {
    padding: 0 0 2rem;
  }
  .contact_page .container {
    flex-wrap: wrap;
  }
  .contact_page .container .left, .contact_page .container .right {
    width: 100%;
  }
  .contact_page .container .right {
    height: 350px;
  }
  .contact_page .container .left {
    padding: 3rem 2rem 0;
  }
  .contact_page .container .left .contact_info .lc-block.bottom {
    flex-direction: column;
    gap: 0;
  }
  .contact_page .container .left .contact_info .office-locations {
    justify-content: center;
    text-align: center;
  }
  .contact_page .container .left .contact_info .office-title {
    margin: 0 auto;
  }
  .contact_page .container .left .contact_info .office_map {
    margin: 0 auto;
  }
  .contact_page .container .left .contact_info .phone-wrapper {
    text-align: center;
  }
  .contact_page .container .left .contact_info .phone-wrapper:last-child {
    margin-top: 30px;
  }
  .contact_page .container .left .contact_info .phone-wrapper .phone-title {
    margin: 0 auto;
  }
  .contact_page .container .left h1 {
    line-height: 1.33;
    text-align: center;
    margin-bottom: 3rem;
  }
  .contact_page .container .left h1 .lines {
    display: block;
    max-height: 50px;
    top: -2px;
    left: 50%;
  }
  .contact_page .container .left h1 .lines svg {
    max-height: 50px;
  }
  .page-template-template-contact footer {
    padding: 3rem 0 0;
  }
  .page-template-template-contact footer .container .right {
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .page-template-template-contact footer .container .contact-form {
    padding: 2rem 2rem 3rem;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield {
    width: 100%;
  }
  .page-template-template-contact footer .container .contact-form .gform_fields .gfield_html {
    margin-bottom: 60px;
  }
}
.error404-wrapper {
  background: #e6e6e6;
  padding: 3rem;
  width: 100%;
}
.error404-content {
  background: white;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 2rem;
  box-shadow: 0 0 23px 22px rgba(154, 154, 154, 0.4470588235);
}
.error404-content h1.error-title {
  padding-bottom: 0;
  margin-bottom: 4px;
  border-bottom: none;
}
.error404-content p {
  max-width: 690px;
  margin: 0 auto 55px;
}
.error404-subtitle {
  display: block;
  margin-bottom: 31px;
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 1.55;
  color: #D1322A;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.error404 .default_page_main {
  max-width: unset;
}
.error404 .default_page_main .container {
  max-width: 1260px;
  margin: 0 auto;
}
.error404 h1 {
  position: relative;
  max-width: unset;
  margin-bottom: 35px;
}
.error404 h1 .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
}
.error404 h1 .lines svg {
  max-height: 145px;
  height: 100%;
  width: 100%;
}
.error404 h1 .lines svg path {
  fill: #1A1A1A;
  opacity: 0.14;
}

@media (max-width: 767px) {
  .error404-wrapper {
    padding: 2rem;
  }
  .error404-subtitle {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .error404-btn {
    font-size: 14px;
  }
  .error404-content {
    padding: 5rem 1rem;
  }
  .error404-content p {
    margin: 0 auto 30px;
  }
  .error404 .default_page {
    padding: 3rem 2rem;
  }
  .error404 .default_page_main .container {
    max-width: 550px;
  }
  .error404 .default_page_main .container h1 {
    font-size: 30px;
    line-height: 1.33;
    text-align: center;
    margin-bottom: 3rem;
  }
  .error404 .default_page_main .container h1 .lines {
    display: block;
    max-height: 50px;
    top: -2px;
    left: 50%;
  }
  .error404 .default_page_main .container h1 .lines svg {
    max-height: 50px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .error404-wrapper {
    padding: 2rem;
  }
  .error404-subtitle {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .error404-content {
    padding: 5rem 1rem;
  }
  .error404-content p {
    margin: 0 auto 30px;
  }
  .error404 .default_page {
    padding: 3rem 2rem;
  }
  .error404 .default_page_main .container {
    max-width: 590px;
  }
  .error404 .default_page_main .container h1 {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
  }
  .error404 .default_page_main .container h1 .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .error404 .default_page_main .container h1 .lines svg {
    max-height: 60px;
  }
}
@media (min-width: 1200px) and (max-width: 1380px) {
  .error404-wrapper {
    padding: 2rem;
  }
  .error404-subtitle {
    margin-bottom: 30px;
  }
  .error404-content {
    padding: 5rem 1rem;
  }
  .error404-content p {
    margin: 0 auto 30px;
  }
  .error404 .default_page {
    padding: 6rem 2rem 4rem;
  }
  .error404 .default_page_main .container {
    max-width: 1100px;
  }
  .error404 .default_page_main .container h1 {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
  }
  .error404 .default_page_main .container h1 .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .error404 .default_page_main .container h1 .lines svg {
    max-height: 60px;
  }
}
@media (min-width: 1381px) and (max-width: 1694px) {
  .error404-wrapper {
    padding: 2rem;
  }
  .error404-subtitle {
    margin-bottom: 35px;
  }
  .error404-content {
    padding: 5rem 2rem;
  }
  .error404-content p {
    margin: 0 auto 35px;
  }
  .error404 .default_page {
    padding: 7rem 2rem 5rem;
  }
  .error404 .default_page_main .container {
    max-width: 1260px;
  }
  .error404 .default_page_main .container h1 {
    font-size: 40px;
    margin-bottom: 35px;
    text-align: center;
  }
  .error404 .default_page_main .container h1 .lines {
    max-height: 60px;
    top: -4px;
    display: block;
  }
  .error404 .default_page_main .container h1 .lines svg {
    max-height: 60px;
  }
}
.default_page {
  padding: 5.5rem 2rem;
}
.default_page .container {
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.default_page_main {
  max-width: 900px;
  width: 100%;
}
.default_page_main h1 {
  font-size: 60px;
  font-weight: 500;
  border-bottom: 5px solid #E8EBEF;
  padding-bottom: 0.5em;
  margin-bottom: 2.5rem;
}
.default_page_sidebar {
  max-width: 480px;
  margin-top: 2.25rem;
}
.default_page_sidebar .sidebar {
  max-width: 480px;
  width: 100%;
}
.default_page_sidebar .sidebar_form {
  border: 3px solid #E8EBEF;
  padding: 1.5rem;
  margin-bottom: 50px;
}
.default_page_sidebar .sidebar_form_desc {
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.72;
  color: white;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 20px;
}
.default_page_sidebar .sidebar_form_desc span {
  color: #F23B32;
}
.default_page_sidebar .sidebar_form_title {
  display: block;
  position: relative;
  margin-bottom: 0px;
  font-size: 45px;
  line-height: calc(1em + 10px);
  font-family: "abril-display", serif;
  color: white;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.default_page_sidebar .sidebar_form_title .lines {
  position: absolute;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  top: -16px;
}
.default_page_sidebar .sidebar_form_title .lines svg {
  max-height: 135px;
}
.default_page_sidebar .sidebar_form_title .lines svg path {
  fill: #1A1A1A;
  opacity: 0.6;
}
.default_page_sidebar .sidebar_form_title:after {
  content: "••";
  color: #F23B32;
  display: block;
  margin: 0px auto;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.6em;
}
.default_page_sidebar .sidebar_form_wrapper {
  background: #101010;
  color: white;
  padding: 3.25rem 4rem 4rem;
  position: relative;
  z-index: 1;
}
.default_page_sidebar .sidebar_form_wrapper .gform_heading {
  display: none;
}
.default_page_sidebar .sidebar_form_wrapper .gform_wrapper form {
  position: relative;
  padding-bottom: 30px;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields {
  list-style: none;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield {
  width: 100%;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield .required {
  text-align: center;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield_contains_required {
  position: relative;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield_html {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
}
.gfield .required {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  text-decoration: none;
}
.gfield .required span {
  color: #F23B32;
}

.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield_label {
  display: block;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield input, .default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield textarea {
  border: none;
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 16px;
  line-height: 1.75;
  font-family: "Overpass", sans-serif;
  color: #1A1A1A;
  text-decoration: none;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield input::-moz-placeholder, .default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield textarea::-moz-placeholder {
  color: inherit;
  opacity: 1;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield input::placeholder, .default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield textarea::placeholder {
  color: inherit;
  opacity: 1;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield input:focus, .default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield textarea:focus {
  box-shadow: inset 5px 0 0 0 #D1322A;
}
.default_page_sidebar .sidebar_form_wrapper .gform_fields .gfield textarea {
  max-height: 160px;
}
.default_page_sidebar .sidebar_form_wrapper .gform_button {
  font-size: 17px;
  padding: 1.08rem 2.54rem;
}
.default_page_sidebar .sidebar_form_wrapper .gform_wrapper .gform_footer {
  margin-top: 1rem;
  padding: 0;
  text-align: center;
  justify-content: center;
}

.widget {
  --widget-padding-x: 60px;
  position: relative;
  margin-bottom: 3.25rem;
  background: #e6e6e6;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  box-shadow: 0 0 0 3px #e6e6e6;
  border: 1.75rem solid white;
}
.widget:before {
  content: "";
  border: 3px solid #E8EBEF;
  display: block;
  position: absolute;
  top: -1.75rem;
  left: -1.75rem;
  right: -1.75rem;
  bottom: -1.75rem;
}
.widget,
.widget .widget-content:not(.content) li,
.widget > ul:not(.content) li {
  padding-left: var(--widget-padding-x);
  padding-right: var(--widget-padding-x);
}
.widget .widget-content:not(.content) li,
.widget > ul:not(.content) li {
  margin-left: calc(var(--widget-padding-x) * -1);
  margin-right: calc(var(--widget-padding-x) * -1);
}
.widget-toggle {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.widget-toggle:after {
  content: "";
  display: inline-block;
  font-size: 9px;
  margin-top: 0.875em;
  width: 1em;
  height: 1em;
  background: transparent;
  border: 2px solid currentColor;
  border-bottom: none;
  border-left: none;
  flex: 0 0 auto;
  transform-origin: 67% 67%;
  transform: rotate(135deg);
}
.widget-toggle.open:after {
  transform: rotate(135deg);
}
.widget ul {
  list-style: none;
}
.widget ul li ul li.open {
  background-color: rgba(255, 255, 255, 0.1);
}
.widget ul li:not(.open):hover > a {
  color: #A72B23;
}
.widget ul li:not(.open) > ul {
  display: none;
  border: 0;
}
.widget ul li.menu-item-has-children {
  transition: all 0.3s ease-in-out;
}
.widget ul li.open {
  background: #101010;
}
.widget ul li.open > .widget-toggle {
  color: #F23B32;
  font-weight: 700;
}
.widget ul li.open a {
  color: white;
}
.widget ul li a {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 15px 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.76;
  color: #1A1A1A;
  text-decoration: none;
}
.widget-title {
  border-bottom: 3px solid #D1322A;
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.16em;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 1694px) {
  .page-template-default body .banner .container .banner-title, .post-template-default body .banner .container .banner-title, .block body .banner .container .banner-title, .archive body .banner .container .banner-title {
    font-size: 40px;
  }
  .page-template-default body .banner .container .banner-title .lines, .post-template-default body .banner .container .banner-title .lines, .block body .banner .container .banner-title .lines, .archive body .banner .container .banner-title .lines {
    max-height: 145px;
  }
  .page-template-default body .banner .container .banner-title .lines svg, .post-template-default body .banner .container .banner-title .lines svg, .block body .banner .container .banner-title .lines svg, .archive body .banner .container .banner-title .lines svg {
    width: 100%;
    height: 100%;
  }
  .banner-internal {
    padding: 4.5rem 0 3.5rem;
  }
  .default_page .container {
    max-width: 1220px;
  }
  .default_page_main h1 {
    font-size: 55px;
  }
  .default_page_sidebar {
    max-width: 460px;
  }
  .default_page_sidebar .sidebar_form_wrapper {
    padding: 3.25rem 2rem;
  }
  .default_page_sidebar .sidebar_form_wrapper .gform_footer {
    margin-top: 55px;
  }
  .default_page_sidebar .sidebar_form_wrapper .gform_wrapper {
    max-width: 300px;
    margin: 0 auto;
  }
  .default_page_sidebar .sidebar_form_wrapper .gform_button {
    font-size: 17px;
  }
  .default_page_sidebar .sidebar_form_desc {
    max-width: 300px;
    margin: 0 auto 15px;
  }
  .default_page_main {
    max-width: 675px;
  }
  .widget {
    --widget-padding-x: 50px;
  }
  .widget-title {
    margin: 0 auto 25px;
  }
}
@media (max-width: 1380px) {
  html .gfield .required {
    position: absolute;
    bottom: 127px;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  html #contact .gfield .required {
    bottom: 126px;
    text-align: center;
  }
  .page-template-default body .banner, .post-template-default body .banner, .block body .banner, .archive body .banner {
    padding: 2.5rem 0 4rem;
  }
  .page-template-default body .banner .container .banner-cta, .post-template-default body .banner .container .banner-cta, .block body .banner .container .banner-cta, .archive body .banner .container .banner-cta {
    margin-top: 30px;
  }
  .page-template-default body .banner .container .banner-title, .post-template-default body .banner .container .banner-title, .block body .banner .container .banner-title, .archive body .banner .container .banner-title {
    font-size: 35px;
  }
  .page-template-default body .banner .container .banner-title .lines, .post-template-default body .banner .container .banner-title .lines, .block body .banner .container .banner-title .lines, .archive body .banner .container .banner-title .lines {
    left: 50%;
  }
  .page-template-default body .banner picture img, .post-template-default body .banner picture img, .block body .banner picture img, .archive body .banner picture img {
    height: 100%;
  }
  .page-template-default body .banner-internal .container .banner-title .lines, .post-template-default body .banner-internal .container .banner-title .lines, .block body .banner-internal .container .banner-title .lines, .archive body .banner-internal .container .banner-title .lines {
    transform: translateX(-40%);
  }
  .banner-internal {
    padding: 2.5rem 0 2.5rem;
  }
  .default_page {
    padding: 5rem 2rem 3rem;
  }
  .default_page .container {
    max-width: none;
    justify-content: center;
    flex-wrap: wrap;
  }
  .default_page_main {
    max-width: 900px;
  }
  .default_page_sidebar {
    max-width: none;
    width: 895px;
    margin-top: 75px;
  }
  .default_page_sidebar .sidebar_form {
    display: none;
  }
  .widget {
    --widget-padding-x: 60px;
  }
}
@media (max-width: 1199px) {
  html #contact .gfield .required {
    padding-top: 25px;
  }
  .page-template-default body .banner, .post-template-default body .banner, .block body .banner, .archive body .banner {
    padding: 2.75rem 0 4rem;
  }
  .page-template-default body .banner .container .banner-title, .post-template-default body .banner .container .banner-title, .block body .banner .container .banner-title, .archive body .banner .container .banner-title {
    font-size: 30px;
  }
  .page-template-default body .banner picture img, .post-template-default body .banner picture img, .block body .banner picture img, .archive body .banner picture img {
    height: 100%;
  }
  .banner-internal {
    padding: 4.5rem 0 2rem;
  }
  .default_page {
    padding: 3.5rem 56px 1rem;
  }
  .default_page .container {
    max-width: none;
    flex-wrap: wrap;
  }
  .default_page_main h1 {
    padding-bottom: 0.625em;
    margin-bottom: 1.875rem;
  }
  .default_page_sidebar {
    width: 100%;
    max-width: none;
    margin-top: 50px;
  }
  .default_page_sidebar .sidebar_form {
    display: none;
  }
  .widget {
    --widget-padding-x: 40px;
    padding-bottom: 2rem;
  }
  .widget ul li a {
    padding: 10px 0;
  }
  .widget .widget-content:not(.content) li a,
  .widget > ul:not(.content) li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .page-template-default body .banner, .post-template-default body .banner, .block body .banner, .archive body .banner {
    padding: 3rem 0 3.5rem;
  }
  .page-template-default body .banner .container, .post-template-default body .banner .container, .block body .banner .container, .archive body .banner .container {
    max-width: 550px;
  }
  .page-template-default body .banner .container .banner-title, .post-template-default body .banner .container .banner-title, .block body .banner .container .banner-title, .archive body .banner .container .banner-title {
    font-size: 25px;
  }
  .page-template-default body .banner picture img, .post-template-default body .banner picture img, .block body .banner picture img, .archive body .banner picture img {
    height: 100%;
  }
  .home .banner picture img {
    -o-object-fit: none;
       object-fit: none;
  }
  .banner picture img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-internal {
    padding: 1rem 0 1.5rem;
  }
  .default_page {
    padding: 2.25rem 20px 50px;
  }
  .default_page_main h1 {
    font-size: 35px;
    line-height: 42px;
    padding-bottom: 0.25em;
  }
  .default_page .container {
    flex-wrap: wrap;
    max-width: 550px;
  }
  .default_page_sidebar {
    max-width: 100%;
    margin-top: 60px;
  }
  .default_page_sidebar .sidebar_form {
    display: none;
  }
  .widget {
    --widget-padding-x: 23px;
    margin-bottom: 30px;
  }
}
footer {
  background: #101010;
  color: white;
  padding: 8rem 4rem;
}
footer .container {
  max-width: 1665px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
}
footer .container .left {
  max-width: 945px;
  width: 100%;
}
footer .container .right {
  display: flex;
  flex-direction: column-reverse;
  padding-left: 92px;
  max-width: 720px;
  background: #101010;
  flex-wrap: wrap;
}
footer .container .right .office-block {
  margin-bottom: 52px;
}
footer .container .right .office-icon {
  margin-bottom: 19px;
}
footer .container .right .office-title {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .container .right .office-title:after {
  display: block;
  content: "";
  width: 100%;
  height: 2.3px;
  background: #F23B32;
  margin-bottom: 21px;
}
footer .container .right .office-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 116px;
       column-gap: 116px;
  row-gap: 5px;
}
footer .container .right .office-address {
  font-family: "abril-display", serif;
  font-size: 23px;
  line-height: 28px;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 23px;
}
footer .container .right .office_map {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #F23B32;
}
footer .container .right .office_map:hover {
  background: #F23B32;
}
footer .container .right .lc-block.bottom {
  margin-top: 10px;
  display: flex;
}
footer .container .right .phone-wrapper .phone-title {
  display: block;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .container .right .phone-wrapper .phone-title:after {
  display: block;
  content: "";
  width: 100%;
  height: 2.3px;
  background: #F23B32;
  margin-bottom: 21px;
}
footer .container .right .phone-wrapper .phone {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
footer .container .right .phone-wrapper .phone span:after {
  display: inline;
  content: "•";
  font-size: 20px;
  color: #F23B32;
  padding: 0 0 0 8px;
  line-height: 0;
}
footer .container .right .phone-wrapper .phone a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 25px;
  letter-spacing: 0.02em;
}
footer .container .right .phone-wrapper a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.02em;
}
footer .container .right .phone-wrapper:last-child {
  margin-left: 90px;
}
footer .container .right .copyright {
  background: #101010;
  font-size: 15px;
  line-height: 24px;
  text-align: left;
  color: #9F9F9F;
  padding: 0;
  margin: 56px 0 0;
  max-width: 387px;
}
footer .container .right .copyright .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 19px;
}
footer .container .right .copyright .menu li {
  margin-left: 15px;
  margin-right: 15px;
}
footer .container .right .copyright .menu li a {
  color: #9F9F9F;
  text-decoration: none;
}
footer .container .right .copyright .menu li::marker {
  color: #F23B32;
}
footer .container .right .copyright .menu li:first-child {
  margin-left: 0;
}
footer .container .right .copyright .menu li:first-child::marker {
  color: transparent;
}
footer .container .right .copyright .content-icon {
  height: 18px;
}
footer .container .right .copyright #ilawyer-logo path {
  fill: #9F9F9F;
}
footer .container .right .copyright img {
  margin-top: 25px;
  max-width: 175px;
}
footer .container .contact-form {
  background: #1A1A1A;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
}
.gform_hidden, .gform_validation_container, .gform_validation_errors, .gform_wrapper.gravity-theme .instruction {
  /* must hide elements */
  display: none !important;
}

.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  padding: 0;
  border: 0;
  margin-top: 0.125em;
  font-size: 0.75em;
  color: #F23B32;
  background: none;
}

footer .container .contact-form .form-title {
  display: block;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 80px;
  line-height: calc(1em + 10px);
  font-family: "abril-display", serif;
  font-weight: 500;
  text-decoration: none;
}
footer .container .contact-form .form-title .lines {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
footer .container .contact-form .form-title:after {
  content: "••";
  color: #F23B32;
  display: block;
  margin: 0px auto;
  font-size: 30px;
  line-height: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.3em;
}
footer .container .contact-form .form-container {
  max-width: 705px;
  margin: 0 auto;
}
footer .container .contact-form .form-desc {
  max-width: 25em;
  margin: 0 auto 37px;
  font-size: 15px;
  letter-spacing: 0.16em;
  line-height: 1.64;
  color: white;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
footer .container .contact-form .form-desc span {
  color: #F23B32;
}
footer .container .contact-form .gform_footer {
  text-align: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 2.5rem;
}
footer .container .contact-form .gform_footer .button {
  font-size: 17px;
  margin-bottom: 0;
}
footer .container .contact-form .gform_required_legend {
  display: none;
}
footer .container .contact-form .gform_fields {
  grid-gap: 18px;
}
footer .container .contact-form .gform_fields .gfield:nth-child(5) {
  width: 100%;
}
footer .container .contact-form .gform_fields .gfield.active input, footer .container .contact-form .gform_fields .gfield.active textarea {
  border-left: 6px solid #F23B32;
}
footer .container .contact-form .gform_fields .gfield_contains_required {
  position: relative;
}
footer .container .contact-form .gform_fields .gfield textarea {
  max-height: 170px;
}
footer .container .contact-form .gform_fields .gfield input, footer .container .contact-form .gform_fields .gfield textarea {
  width: 100%;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 17px;
  letter-spacing: 0.015em;
  line-height: 1.76;
  font-family: "Overpass", sans-serif;
  text-decoration: none;
}
footer .container .contact-form .gform_fields .gfield input::-moz-placeholder, footer .container .contact-form .gform_fields .gfield textarea::-moz-placeholder {
  color: #1A1A1A;
  opacity: 1;
}
footer .container .contact-form .gform_fields .gfield input::placeholder, footer .container .contact-form .gform_fields .gfield textarea::placeholder {
  color: #1A1A1A;
  opacity: 1;
}
footer .container .contact-form .gform_fields .gfield input:focus, footer .container .contact-form .gform_fields .gfield textarea:focus {
  box-shadow: inset 5px 0 0 0 #D1322A;
}
@media (max-width: 1694px) {
  footer {
    padding: 5.5rem 25px 6.5rem 117px;
  }
  footer .container {
    max-width: none;
  }
  footer .container .left {
    max-width: 640px;
  }
  footer .container .right {
    align-self: center;
    max-width: 585px;
    padding-left: 65px;
  }
  footer .container .right .office-locations {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
  footer .container .right .office-title {
    font-size: 15px;
  }
  footer .container .right .office-address {
    font-size: 20px;
  }
  footer .container .right .phone-wrapper .phone-title {
    font-size: 15px;
  }
  footer .container .right .phone-wrapper .phone {
    font-size: 15px;
  }
  footer .container .right .phone-wrapper .phone a {
    font-size: 20px;
  }
  footer .container .right .phone-wrapper a {
    font-size: 20px;
  }
  footer .container .right .phone-wrapper:last-child {
    margin-left: 45px;
  }
  footer .container .right .copyright {
    margin-top: 60px;
  }
  footer .container .right .copyright .menu li {
    margin-left: 14px;
    margin-right: 14px;
  }
  footer .container .right .copyright .menu li:first-child:before {
    content: none;
  }
  footer .container .contact-form {
    padding: 5.5rem 2rem;
  }
  footer .container .contact-form .form-title {
    font-size: 70px;
  }
  footer .container .contact-form .form-container {
    max-width: 530px;
  }
  footer .container .contact-form .gform_footer {
    margin-top: 30px;
  }
}
@media (max-width: 1380px) {
  footer {
    padding: 6rem 0 6rem 6.5rem;
  }
  footer .container {
    max-width: none;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 70px;
  }
  footer .container .left {
    max-width: 583px;
  }
  footer .container .right {
    max-width: 460px;
    padding-left: 0;
  }
  footer .container .right .lc-block.bottom {
    flex-direction: column;
  }
  footer .container .right .phone-wrapper:last-child {
    margin-top: 30px;
    margin-left: 0;
  }
  footer .container .right .copyright {
    font-size: 15px;
    margin-top: 40px;
  }
  footer .container .right .copyright img {
    max-width: 175px;
  }
  footer .container .contact-form {
    padding: 6rem 2rem 10.5rem;
  }
  footer .container .contact-form .form-title {
    font-size: 70px;
  }
  footer .container .contact-form .form-title .lines {
    max-height: 170px;
    top: -10px;
  }
  footer .container .contact-form .form-title .lines svg {
    width: 100%;
    height: 100%;
    max-height: 170px;
  }
  footer .container .contact-form .form-desc {
    font-size: 16px;
    padding: 0 20px;
  }
  footer .container .contact-form .form-container {
    max-width: 420px;
  }
  footer .container .contact-form .gform_footer {
    margin-top: 45px;
  }
  footer .container .contact-form .gform_fields .gfield label {
    margin-top: 4px;
    font-size: 18px;
  }
  footer .container .contact-form .gform_fields .gfield input, footer .container .contact-form .gform_fields .gfield textarea {
    padding: 0.87rem 1.5rem;
    font-size: 18px;
  }
  footer .container .contact-form .gform_fields .gfield:not(.gfield--width-full) {
    grid-column: 1/-1;
  }
}
@media (max-width: 1199px) {
  footer {
    padding: 90px 2rem 0;
  }
  footer .container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
  }
  footer .container .right {
    margin-top: 5rem;
    max-width: none;
  }
  footer .container .right .office-locations {
    padding: 0 0 0 4.5rem;
    row-gap: 30px;
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
  footer .container .right .copyright {
    margin: 100px auto 65px;
    text-align: center;
  }
  footer .container .right .lc-block.bottom {
    max-width: 40%;
    margin-top: -18rem;
    margin-right: 0;
    margin-left: auto;
  }
  footer .container .contact-form {
    padding-bottom: 8rem;
  }
  footer .container .contact-form .gform_wrapper {
    position: relative;
  }
  footer .container .contact-form .gform_footer {
    margin-top: 10px;
  }
  footer .container .contact-form .gform_fields .gfield_label {
    font-weight: 400;
  }
  footer .container .contact-form .gform_fields .gfield input, footer .container .contact-form .gform_fields .gfield textarea {
    padding: 0.9rem 1.5rem;
    font-size: 16px;
    border-radius: 0 !important;
  }
  footer .container .contact-form .gform_fields .gfield .required {
    position: absolute;
    top: 100%;
    text-align: center;
    max-width: 100%;
    left: 0;
    right: 0;
    padding-top: 2rem;
  }
  footer .container .contact-form .form-title {
    max-width: none;
    line-height: 1.2;
  }
  footer .container .contact-form .form-title .lines {
    max-height: 160px;
    top: -16px;
  }
  footer .container .contact-form .form-title .lines svg {
    width: 100%;
    height: 100%;
    max-height: 160px;
  }
  footer .container .contact-form .form-desc {
    max-width: 400px;
    font-size: 16px;
    line-height: 1.69;
  }
  footer .container .contact-form .form-container {
    max-width: 405px;
  }
}
@media (max-width: 767px) {
  footer {
    background: #1A1A1A;
    padding: 56px 0 0;
  }
  footer .container {
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .container .left {
    padding: 0 25px;
  }
  footer .container .right {
    padding: 57px 38px 0;
  }
  footer .container .right .office-locations {
    padding-left: 0;
    row-gap: 0;
  }
  footer .container .right .office-block {
    margin-bottom: 52px;
  }
  footer .container .right .office-icon {
    margin-bottom: 19px;
  }
  footer .container .right .office-title {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .container .right .office-title:after {
    display: block;
    content: "";
    width: 100%;
    height: 2.3px;
    background: #F23B32;
    margin-bottom: 21px;
  }
  footer .container .right .office-address {
    font-family: "abril-display", serif;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.02em;
    font-weight: 500;
    margin-bottom: 23px;
  }
  footer .container .right .office_map {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    padding: 16px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #F23B32;
  }
  footer .container .right .office_map:hover {
    background: #F23B32;
  }
  footer .container .right .lc-block.bottom {
    max-width: none;
    margin-top: 0;
  }
  footer .container .right .copyright {
    background: #101010;
    font-size: 14px;
    line-height: 24px;
    padding: 0;
    margin: 60px auto 40px;
  }
  footer .container .right .copyright .menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 19px;
  }
  footer .container .right .copyright .menu li {
    margin-right: 15px;
  }
  footer .container .right .copyright .menu li a {
    color: #9F9F9F;
    text-decoration: none;
  }
  footer .container .right .copyright .menu li::marker {
    color: #F23B32;
  }
  footer .container .right .copyright .content-icon {
    height: 18px;
  }
  footer .container .right .copyright #ilawyer-logo path {
    fill: #9F9F9F;
  }
  footer .container .right .copyright img {
    margin-top: 25px;
    max-width: 175px;
  }
  footer .container .phone-wrapper .phone-title {
    display: block;
    font-size: 15px;
    line-height: 26px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .container .phone-wrapper .phone-title:after {
    display: block;
    content: "";
    width: 100%;
    height: 2.3px;
    background: #F23B32;
    margin-bottom: 21px;
  }
  footer .container .phone-wrapper .phone {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }
  footer .container .phone-wrapper .phone span:after {
    display: inline;
    content: "•";
    font-size: 20px;
    color: #F23B32;
    padding: 0 0 0 8px;
    line-height: 0;
  }
  footer .container .phone-wrapper .phone a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 0.02em;
  }
  footer .container .phone-wrapper a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.02em;
  }
  footer .container .contact-form {
    padding: 0;
  }
  footer .container .contact-form .form-title {
    font-size: 46px;
    line-height: 52px;
  }
  footer .container .contact-form .form-title .lines {
    max-height: 125px;
    top: -20px;
  }
  footer .container .contact-form .form-title .lines svg {
    width: 100%;
    height: 100%;
  }
  footer .container .contact-form .form-desc {
    font-size: 13px;
    line-height: 20px;
    margin-bottom: 35px;
  }
  footer .container .contact-form .form-container {
    max-width: 295px;
  }
  footer .container .contact-form .gform_footer {
    margin-top: 0px;
  }
}
.blog .default_page_main .lines {
  max-height: 100px;
  max-width: 150px;
  overflow: hidden;
  left: -50px;
}
.blog .default_page_main .lines svg {
  height: 100%;
  width: 100%;
  max-height: 145px;
}
.blog .default_page_main .paged_wrapper .navigation ul {
  display: flex;
  list-style: none;
}
.blog .default_page_main .paged_wrapper .navigation ul li {
  font-size: 13px;
  padding-left: 0;
  margin: 0 20px;
}
.blog .default_page_main .paged_wrapper .navigation ul li.active, .blog .default_page_main .paged_wrapper .navigation ul li:hover {
  color: #D1322A;
}
.blog .default_page_main .paged_wrapper .navigation ul li:last-child {
  margin-right: 0;
}
.blog .default_page_main .paged_wrapper .navigation ul li:first-child {
  margin-left: 0;
}
.blog .default_page_main .paged_wrapper .navigation ul li:before {
  display: none;
}
.blog .default_page_main .paged_wrapper .navigation ul li a {
  font-size: 13px;
  letter-spacing: 0.16em;
  line-height: 1.23;
  color: inherit;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
.blog .default_page_main .paged_wrapper .navigation ul li a:hover {
  color: #1A1A1A;
}
.blog .default_page_main .paged_wrapper .navigation .blog_arrow.myprev {
  margin-right: auto;
  flex-grow: 1;
  text-align: left;
  color: #D1322A;
}
.blog .default_page_main .paged_wrapper .navigation .blog_arrow.myprev:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: none;
  border: 2px solid #1A1A1A;
  position: relative;
  top: unset;
  left: unset;
  font-size: unset;
  border-top: 0;
  border-right: 0;
  transform: rotate(45deg);
  margin-right: 5px;
}
.blog .default_page_main .paged_wrapper .navigation .blog_arrow.mynext {
  color: #D1322A;
  margin-left: auto;
  flex-grow: 1;
  text-align: right;
}
.blog .default_page_main .paged_wrapper .navigation .blog_arrow.mynext:after {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background: none;
  border: 2px solid #1A1A1A;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  margin-left: 5px;
}
.blog_meta {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #1A1A1A;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
}
.blog_meta span:not(.lines) {
  position: relative;
  display: block;
}
.blog_meta span .lines {
  position: absolute;
  left: 0;
}
.blog_meta span .lines svg {
  max-height: 13px;
  max-width: 13px;
}
.blog_meta_category a {
  color: inherit;
  text-decoration: none;
}
.blog_meta_category:before {
  content: "•";
  margin: 0 0.5em;
}
.blog_post {
  padding-bottom: 80px;
}
.blog_post .blog_title {
  display: block;
  margin-bottom: 20px;
  color: inherit;
}
.blog_post .blog_title a {
  color: #D1322A;
  text-decoration: none;
}
.blog_post p:last-of-type {
  margin-bottom: 40px;
}
.blog_post + hr {
  margin-bottom: 80px;
  height: 2px;
  border: none;
  background: #E8EBEF;
}
.blog_post + hr:last-of-type {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .blog .default_page_main h1 {
    font-size: 30px;
    line-height: 1.33;
    text-align: left;
    margin-bottom: 50px;
  }
  .blog .default_page_main h1 .lines {
    display: block;
    max-height: 50px;
    top: -2px;
    left: 50%;
  }
  .blog .default_page_main h1 .lines svg {
    max-height: 50px;
  }
  .blog_post {
    padding-bottom: 50px;
  }
  .blog_post + hr {
    margin-bottom: 50px;
  }
  .blog_post .blog_meta {
    margin-bottom: 30px;
    font-size: 13px;
  }
  .blog_post .blog_meta ul li {
    font-size: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog .default_page_main h1 {
    margin-bottom: 80px;
  }
  .blog_post {
    padding-bottom: 60px;
  }
  .blog_post + hr {
    margin-bottom: 60px;
  }
  .blog_post .blog_title a {
    font-size: 25px;
  }
  .blog_post .blog_meta {
    margin-bottom: 30px;
    font-size: 12px;
  }
  .blog_post .blog_meta ul:before {
    top: -3px;
  }
  .blog_post .blog_meta ul li {
    font-size: 12px;
  }
}

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