@charset "UTF-8";
/* --------------------------------------
* Imports
* ------------------------------------ */
/* ----------------------------------------------------------------------------
* Modular Mixins
* ------------------------------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #888888;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

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

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

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

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

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

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

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

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

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

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.aligncenter h1,
div.aligncenter h1 {
  margin: 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #d4d1d6;
  max-width: 100%;
  padding: 2rem;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

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

.wp-caption .wp-caption-text,
.gallery-caption {
  margin: 0;
  padding: 0.5rem;
}

.textwidget img {
  margin: 1rem 0;
}

.bypostauthor {
  background: inherit;
}

/* ----------------------------------------------------------------------------
 * Recommended sizes
 * ------------------------------------------------------------------------- */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

/* ----------------------------------------------------------------------------
 * Responsive
 * ------------------------------------------------------------------------- */
.wp-caption .wp-caption-text,
.gallery-caption {
  font: 300 1.4rem/1.8rem sans-serif;
}
@media only screen and (min-width: 480px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.55rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 640px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.8rem/1.8 sans-serif;
  }
}
@media only screen and (min-width: 768px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 1.9rem/1.7 sans-serif;
  }
}
@media screen and (min-width: 1100px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}
@media screen and (min-width: 1400px) {
  .wp-caption .wp-caption-text,
  .gallery-caption {
    font: 300 2rem/3.1rem sans-serif;
  }
}

/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  outline: 0;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--animate_opacity {
  opacity: 0.001;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  cursor: -webkit-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container, .pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.pswp__container, .pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container, .pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: 0;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus, .pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: 0;
  opacity: 0.9;
}

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

.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  background: url(../img/default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg);
  }
  .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
    background: 0;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
  background: 0;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

.pswp__counter, .pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3e5c9a;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3e5c9a;
}

a.pswp__share--twitter:hover {
  background: #55acee;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #ce272d;
}

a.pswp__share--download:hover {
  background: #DDD;
}

.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px;
}

.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

.pswp__caption--fake {
  visibility: hidden;
}

.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  background: url(preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: 0;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: 0;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar, .pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3);
}

.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
  opacity: 0.001;
}

.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: 0;
}

.title, .full-width {
  width: 100%;
  -webkit-column-width: 100%;
     -moz-column-width: 100%;
          column-width: 100%;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.col-container.vert-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.alignnone {
  margin: 0;
}

.alignleft {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignleft {
    float: left;
    margin: 0 50px 50px 0;
  }
}

.alignright {
  margin: 0 0 50px;
}
@media only screen and (min-width: 768px) {
  .alignright {
    float: right;
    margin: 0 0 50px 50px;
  }
}

.light-background {
  background: #edecee;
}

.primary-background {
  background: #101585;
}

.secondary-background {
  background: #A78BFA;
}

.white-background, .white {
  background: #fff;
}

.getin-touch.col-container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.getin-touch.col-container .button-row {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
}
.getin-touch.col-container .btn, .getin-touch.col-container form input[type=submit], form .getin-touch.col-container input[type=submit],
.getin-touch.col-container form input[type=button],
form .getin-touch.col-container input[type=button] {
  min-width: 300px;
  width: auto;
  margin: 0 auto 15px;
}
.getin-touch.col-container .btn:last-child, .getin-touch.col-container form input[type=submit]:last-child, form .getin-touch.col-container input[type=submit]:last-child,
.getin-touch.col-container form input[type=button]:last-child,
form .getin-touch.col-container input[type=button]:last-child {
  margin-bottom: 0;
}
.getin-touch.col-container .btn i, .getin-touch.col-container form input[type=submit] i, form .getin-touch.col-container input[type=submit] i,
.getin-touch.col-container form input[type=button] i,
form .getin-touch.col-container input[type=button] i {
  margin-right: 8px;
}

.logo-carousel {
  margin: 0 60px;
  width: calc(100% - 120px);
  padding: 0 20px;
  border-left: 1px solid #e1e1e2;
  border-right: 1px solid #e1e1e2;
}
.logo-carousel .logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px;
}
.logo-carousel .logo-item img {
  width: auto;
  height: auto;
  margin: auto;
  max-height: 70px;
  -webkit-filter: none;
          filter: none;
  max-width: 90%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.logo-carousel .logo-item a:hover img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.logo-carousel.arrows {
  padding: 0 15px;
}
.logo-carousel.arrows .owl-nav .owl-prev, .logo-carousel.arrows .owl-nav .owl-next {
  opacity: 1;
  width: 40px;
  background: none;
  color: #A78BFA;
  font-size: 3.125em;
  line-height: 1.4em;
  height: 70px;
}
.logo-carousel.arrows .owl-nav .owl-prev:hover, .logo-carousel.arrows .owl-nav .owl-next:hover {
  background: #101585;
}
.logo-carousel.arrows .owl-nav .owl-prev {
  left: -60px;
}
.logo-carousel.arrows .owl-nav .owl-next {
  right: -60px;
}

.icon-boxes .col {
  margin: 0 0 20px;
  text-align: center;
}
.icon-boxes i {
  font-size: 3.75em;
  line-height: 1em;
  margin: 0 0 20px;
  color: #A78BFA;
}
.icon-boxes h3 {
  margin: 0 0 15px;
}
.icon-boxes p {
  font-size: 0.9375em;
  line-height: 1.7333333333em;
  margin: 0 auto;
  max-width: 310px;
}
.icon-boxes .btn, .icon-boxes form input[type=submit], form .icon-boxes input[type=submit],
.icon-boxes form input[type=button],
form .icon-boxes input[type=button] {
  padding: 8px 0;
  margin-top: 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
.icon-boxes.small .col {
  text-align: left;
  position: relative;
  padding-left: 60px;
}
.icon-boxes.small h3 {
  margin-bottom: 10px;
  font-size: 1.25em;
  line-height: 1.4em;
}
.icon-boxes.small p {
  margin: 0;
}
.icon-boxes.small .btn, .icon-boxes.small form input[type=submit], form .icon-boxes.small input[type=submit],
.icon-boxes.small form input[type=button],
form .icon-boxes.small input[type=button] {
  margin-top: 10px;
}
.icon-boxes.small i {
  font-size: 1.875em;
  line-height: 1em;
  position: absolute;
  top: 2px;
  left: 0;
  width: 40px;
  text-align: center;
}

.landing-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.landing-items {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 480px) {
  .landing-items {
    width: calc(50% - 10px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items {
    width: calc(33.33% - 15px);
  }
}
.landing-items a.landing-image {
  position: relative;
  overflow: hidden;
  display: block;
}
.landing-items a.landing-image.border {
  border: 1px solid #e1e1e2;
}
.landing-items a.landing-image.no-image {
  background: #e1e1e2;
}
.landing-items a.landing-image:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.landing-items a.landing-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items a.landing-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
.landing-items .text {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(16, 21, 133, 0.9);
  padding: 15px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .landing-items .text {
    padding: 25px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.landing-items .text h3 {
  font-size: 1.125em;
  line-height: 1.3333333333em;
  color: white;
  margin: 0;
  font-family: "Inter", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}
.landing-items .text i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  color: #101585;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing-items:hover a img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.landing-items:hover .text {
  background: rgba(167, 139, 250, 0.9);
}
.landing-items:hover .text h3 {
  color: white;
}

.scrolling-landing {
  overflow: hidden;
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .landing.owl-carousel {
    padding: 0 90px;
  }
}
.landing.owl-carousel .owl-stage-outer {
  overflow: visible;
}
.landing.owl-carousel .owl-stage, .landing.owl-carousel .owl-item, .landing.owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.landing.owl-carousel .box-item {
  opacity: 0.3;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.landing.owl-carousel .owl-item.active .box-item {
  opacity: 1;
}

.box-item {
  background: white;
  width: 100%;
  border: 1px solid #e1e1e2;
}
.box-item .landing-image {
  position: relative;
  background: #A78BFA;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  display: block;
}
.box-item .landing-image:before {
  padding-top: 65%;
  content: "";
  display: block;
}
.box-item .landing-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .box-item .landing-image img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.box-item .landing-image:after {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: rgba(16, 21, 133, 0.8);
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: white;
  font-weight: 700;
  font-size: 2.375em;
  line-height: 1.1842105263em;
  opacity: 0;
}
.box-item .landing-text {
  padding: 30px 25px 60px;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .box-item .landing-text {
    padding: 30px 25px 60px;
  }
}
.box-item .landing-link {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  display: inline-block;
  position: relative;
  color: #101585;
  font-size: 0.875em;
  line-height: 2em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 35px;
}
.box-item .landing-link:before {
  height: 1px;
  background: #101585;
  opacity: 0.3;
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  right: 0;
}
.box-item .landing-link:hover:before {
  opacity: 1;
}
.box-item:hover .landing-image:after {
  opacity: 1;
}
.box-item p {
  margin-bottom: 15px;
}
.box-item h2 {
  font-size: 1.5em;
  line-height: 1.25em;
  letter-spacing: 0.5px;
  color: #101585;
  margin-bottom: 15px;
}
.box-item h2 a {
  font-weight: 600;
}

.row.image-block {
  position: relative;
  height: 500px;
  background: #101585;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block {
    height: 600px;
  }
}
.row.image-block.has-text {
  height: auto;
}
.row.image-block.padded {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.padded {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
.row.image-block img {
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.row.image-block img:first-child {
  left: 0;
}
.row.image-block .box {
  position: relative;
  z-index: 2;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.row.image-block .box h2, .row.image-block .box h3 {
  margin-bottom: 25px;
}
.row.image-block .box p:last-child {
  margin-bottom: 0;
}
.row.image-block.images-1 img {
  width: 100%;
  right: 0;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img, .row.image-block.images-3 img {
    width: 50%;
  }
}
.row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
  display: none;
}
@media only screen and (min-width: 640px) {
  .row.image-block.images-2 img:last-of-type, .row.image-block.images-3 img:last-of-type {
    right: 0;
    display: block;
    left: auto;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img {
    width: 33.33%;
  }
}
.row.image-block.images-3 img:first-child + img {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.images-3 img:first-child + img {
    left: 33.33%;
    display: block;
  }
}
.row.image-block.opacity-image img {
  opacity: 0.5;
}
.row.image-block.opacity-image .box h2, .row.image-block.opacity-image .box h3, .row.image-block.opacity-image .box p {
  color: white;
}
.row.image-block.opacity-image .box p {
  font-size: 1.1875em;
  line-height: 1.8947368421em;
}
.row.image-block.box-left .box {
  margin: 0;
  text-align: left;
}
.row.image-block.box-right .box {
  margin: 0;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.box-right .box {
    margin-left: auto;
  }
}
.row.image-block.white-box .box {
  background: white;
  padding: 30px;
  max-width: 700px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.image-block.white-box .box {
    padding: 50px;
  }
}

.wp-block-gallery .blocks-gallery-item {
  padding: 0;
}
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}
.wp-block-gallery .blocks-gallery-item a {
  overflow: hidden;
  position: relative;
}
.wp-block-gallery .blocks-gallery-item a:before {
  content: "";
  background: #101585;
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
.wp-block-gallery .blocks-gallery-item a:hover:before {
  width: 1000px;
  height: 1000px;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.wp-block-gallery .blocks-gallery-item a:after {
  content: "\f065";
  font-family: "Font Awesome 6 Pro";
  font-size: 2.5em;
  line-height: 1em;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  z-index: 10;
  font-weight: 900;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.wp-block-gallery .blocks-gallery-item a:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
  background-position: center;
}

.before-after {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}
.before-after .img-comp-responsive {
  height: 0;
  width: 100%;
  padding-bottom: 75%;
}
.before-after .img-comp-responsive .image-gallery {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.before-after .img-comp-responsive .image-gallery.img-comp-overlay {
  width: 50%;
  z-index: 2;
}
.before-after .img-comp-responsive .image-gallery img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  vertical-align: middle;
}
.before-after .slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 50px;
  height: 100%;
  left: calc(50% - 25px);
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.before-after .slider:before {
  width: 5px;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  left: 50%;
  background: white;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.before-after .slider:after {
  display: block;
  content: "\f07e";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  font-family: "Font Awesome 6 Pro";
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  z-index: 2;
  background: #A78BFA;
}

.main-image img {
  height: auto;
}

.thumb-image {
  margin: 20px 0 0;
}
.thumb-image .thumbnail-item {
  position: relative;
  width: 100%;
  cursor: pointer;
}
.thumb-image .thumbnail-item:before {
  padding-top: 100%;
  display: block;
  content: "";
}
.thumb-image .thumbnail-item img {
  inset: 0;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.thumb-image .active .thumbnail-item img {
  opacity: 1;
}
.thumb-image.arrows {
  padding: 0;
}
.thumb-image.arrows .owl-nav .owl-prev, .thumb-image.arrows .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.gallery.standard .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 16px;
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-2-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-3-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-4-row .gallery-item {
    width: calc(25% - 12px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-5-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media only screen and (min-width: 480px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(50% - 8px);
  }
}
@media only screen and (min-width: 768px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(33.33% - 10.66px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(20% - 12.8px);
  }
}
@media screen and (min-width: 1100px) {
  .gallery.lightbox-6-row .gallery-item {
    width: calc(16.66% - 13.33px);
  }
}
.gallery span {
  position: relative;
  display: block;
  height: 100%;
}
.gallery span img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .gallery span:before {
    content: "";
    background: #101585;
    display: block;
    height: 0;
    width: 0;
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    opacity: 0.7;
    filter: alpha(opacity=70);
  }
  .gallery span:after {
    content: "\f065";
    font-family: "Font Awesome 6 Pro";
    font-size: 2.5em;
    line-height: 1em;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
    z-index: 10;
    font-weight: 400;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.gallery .gallery-item {
  overflow: hidden;
  margin: 0;
}
.gallery .gallery-item a {
  display: block;
  widtH: 100%;
  overflow: hidden;
  position: relative;
}
.gallery .gallery-item a .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:before {
    width: 1000px;
    height: 1000px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .gallery .gallery-item a:hover span:after {
    opacity: 1;
    filter: alpha(opacity=100);
    background-position: center;
  }
}
.gallery.masonry .gallery-item {
  margin-bottom: 16px;
}
.gallery.scrolling .gallery-item {
  width: 100%;
}
.gallery.grid .gallery-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.gallery.grid .gallery-item {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 300px;
  margin: 0;
  overflow: hidden;
  position: relative;
  max-width: 600px;
}
@media screen and (min-width: 1400px) {
  .gallery.grid .gallery-item {
    height: 350px;
  }
}
.gallery.grid .gallery-item a {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  height: 100%;
  text-decoration: none;
}
.gallery.grid .gallery-item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.col-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

.col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .col {
    width: auto;
    margin: 0;
  }
}
.col p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.no-margin-bottom {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .col.two-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col.two-col {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-col {
    width: calc(33.33% - 50px);
    -ms-flex-preferred-size: calc(33.33% - 50px);
        flex-basis: calc(33.33% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .col.four-col, .col.one-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col, .col.one-quarter-col {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
.col.four-col-land, .col.one-quarter-col-land {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.four-col-land, .col.one-quarter-col-land {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-quarter-col.leftsidebar {
    width: calc(25% - 25px);
    -ms-flex-preferred-size: calc(25% - 25px);
        flex-basis: calc(25% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.one-quarter-col.leftsidebar {
    width: calc(25% - 37.5px);
    -ms-flex-preferred-size: calc(25% - 37.5px);
        flex-basis: calc(25% - 37.5px);
  }
}
@media only screen and (min-width: 768px) {
  .col.five-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.five-col {
    width: calc(20% - 40px);
    -ms-flex-preferred-size: calc(20% - 40px);
        flex-basis: calc(20% - 40px);
  }
}
@media only screen and (min-width: 768px) {
  .col.six-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.six-col {
    width: calc(33.33% - 33.3333px);
    -ms-flex-preferred-size: calc(33.33% - 33.3333px);
        flex-basis: calc(33.33% - 33.3333px);
  }
}
@media screen and (min-width: 1100px) {
  .col.six-col {
    width: calc(16.66% - 42.22222px);
    -ms-flex-preferred-size: calc(16.66% - 42.22222px);
        flex-basis: calc(16.66% - 42.22222px);
  }
}
@media only screen and (min-width: 768px) {
  .col.one-third-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.two-thirds-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col {
    width: calc(66.66% - 62.5px);
    -ms-flex-preferred-size: calc(66.66% - 62.5px);
        flex-basis: calc(66.66% - 62.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.one-third-col-land {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.two-thirds-col-land {
    width: calc(66.66% - 25px);
    -ms-flex-preferred-size: calc(66.66% - 25px);
        flex-basis: calc(66.66% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}
@media only screen and (min-width: 768px) {
  .col.three-quarter-col.rightbar {
    width: calc(100% - 0px);
    -ms-flex-preferred-size: calc(100% - 0px);
        flex-basis: calc(100% - 0px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col.rightbar {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}
@media screen and (min-width: 1100px) {
  .col.three-quarter-col.rightbar {
    width: calc(75% - 37.5px);
    -ms-flex-preferred-size: calc(75% - 37.5px);
        flex-basis: calc(75% - 37.5px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col.three-quarter-col-land {
    width: calc(75% - 25px);
    -ms-flex-preferred-size: calc(75% - 25px);
        flex-basis: calc(75% - 25px);
  }
}

.columns .leftsidebar {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .columns .leftsidebar {
    display: block;
    border-left: 1px solid #e1e1e2;
    padding-left: 40px;
  }
}
.quote p {
  border-left: 5px solid #edecee;
  padding-left: 30px;
  margin: 0 0 30px;
}
.quote p strong {
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1em;
  color: #101585;
  display: block;
  margin: 20px 0 0;
}

.blockquote, blockquote {
  border-left: 5px solid #101585;
  padding: 10px 0 10px 30px;
  margin-bottom: 35px;
}
.blockquote p, blockquote p {
  margin-bottom: 15px;
  font-size: 1.0625em;
  line-height: 1.6470588235em;
}
.blockquote p:last-child, blockquote p:last-child {
  margin-bottom: 0;
}
.blockquote strong, blockquote strong {
  font-family: "Inter", sans-serif;
  color: #101585;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  position: relative;
  width: 100%;
  border: 0;
  height: 1px;
  background: #e1e1e2;
  max-width: 1460px;
  margin: 52.5px auto;
}
hr.margin {
  margin: 52.5px auto;
}
hr:after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #101585;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-box-shadow: 0 0 0 8px #fff;
          box-shadow: 0 0 0 8px #fff;
}

section.padded + hr {
  margin: 0 auto;
}

.image-background {
  position: relative;
  overflow: hidden;
  background: #101585;
}
.image-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.5;
}

@media only screen and (min-width: 768px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-box.col-container .image {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials-box.noimage .image {
  display: none;
}

@media only screen and (min-width: 640px) {
  .testimonials-list {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials-list {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media screen and (min-width: 1400px) {
  .testimonials-list {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.testimoniallist-item {
  border: 1px solid #e1e1e2;
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
  margin-bottom: 15px;
}
.testimoniallist-item i {
  font-size: 1.875em;
  line-height: 1em;
  margin-bottom: 10px;
  font-weight: 700;
  color: #101585;
}
.testimoniallist-item p {
  margin-bottom: 20px;
  font-size: 1.0625em;
  line-height: 1.7647058824em;
}
.testimoniallist-item strong {
  font-size: 1em;
  line-height: 1.25em;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.6px;
  color: #A78BFA;
  text-transform: uppercase;
}
.testimoniallist-item .companyname {
  font-size: 0.875em;
  line-height: 2.1428571429em;
  display: block;
  opacity: 0.8;
}

.testimonials {
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) {
  .col-container .testimonials {
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .col-container .testimonials {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonials .owl-stage, .testimonials .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.testimonials .testimonial-item {
  padding: 2px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 900px;
  margin: auto;
}
.image-background .testimonials .testimonial-item {
  color: white;
}
.col-container .testimonials .testimonial-item {
  text-align: left;
}
.testimonials .testimonial-item .testimonial-body {
  position: relative;
}
.testimonials .testimonial-item .testimonial-body p {
  margin-bottom: 25px;
  font-size: 1.25em;
  line-height: 1.9em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .testimonials .testimonial-item .testimonial-body p {
    font-size: 1.875em;
    line-height: 1.6em;
  }
}
.image-background .testimonials .testimonial-item .testimonial-body p {
  color: white;
}
.testimonials .testimonial-item strong {
  font-size: 1.125em;
  line-height: 1.6666666667em;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.6px;
  color: #A78BFA;
  text-transform: uppercase;
}
.image-background .testimonials .testimonial-item strong {
  color: white;
}
.testimonials .testimonial-item .companyname {
  font-size: 0.9375em;
  line-height: 2em;
  display: inline-block;
}
.col-container .testimonials .testimonial-item .companyname {
  margin-top: 4px;
  display: block;
}
.testimonials .testimonial-item .companyname:before {
  content: " - ";
  display: inline;
}
.col-container .testimonials .testimonial-item .companyname:before {
  display: none;
}
.testimonials.arrows {
  padding-left: 0;
  padding-right: 0;
}
.testimonials.arrows .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.col-container .testimonials.arrows .owl-nav {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.testimonials.arrows .owl-nav .owl-prev, .testimonials.arrows .owl-nav .owl-next {
  position: relative;
  top: auto;
  left: auto;
  right: 0;
  line-height: 55px;
  width: 55px;
  height: 55px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.testimonials.arrows .slide-num {
  margin: 0 20px;
  color: #101585;
  font-size: 1.25em;
  line-height: 1em;
}
.image-background .testimonials.arrows .slide-num {
  color: white;
}

.image-left-text-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.image-left-text-right .image {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
  }
}
.image-left-text-right .image img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .image img {
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}
.image-left-text-right .text {
  padding: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    width: calc(50% - 0px);
    -ms-flex-preferred-size: calc(50% - 0px);
        flex-basis: calc(50% - 0px);
    padding: 50px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right .text {
    padding: 60px 80px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right .text {
    padding-left: calc((100% - 1460px) / 2);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .image-left-text-right.large-padding .text {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media screen and (min-width: 1520px) {
  .image-left-text-right.image-position-left .text {
    padding-left: 80px;
    padding-right: calc((100% - 1460px) / 2);
  }
}

.slideshow.arrows, .image-slideshow.arrows, .main-image.arrows {
  padding: 0;
}
.row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
  margin: 0 -20px;
  width: calc(100% + 40px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin: 0 -30px;
    width: calc(100% + 60px);
  }
}
@media screen and (min-width: 1400px) {
  .row .slideshow.arrows, .row .image-slideshow.arrows, .row .main-image.arrows {
    margin: 0;
    width: 100%;
  }
}
.slideshow.arrows .owl-nav .owl-prev, .image-slideshow.arrows .owl-nav .owl-prev, .main-image.arrows .owl-nav .owl-prev {
  left: 0;
}
.slideshow.arrows .owl-nav .owl-next, .image-slideshow.arrows .owl-nav .owl-next, .main-image.arrows .owl-nav .owl-next {
  right: 0;
}
@media only screen and (min-width: 768px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    margin: 0;
    width: calc(50% - 25px);
    -ms-flex-preferred-size: calc(50% - 25px);
        flex-basis: calc(50% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .slideshow.arrows.two-col, .image-slideshow.arrows.two-col, .main-image.arrows.two-col {
    width: calc(50% - 50px);
    -ms-flex-preferred-size: calc(50% - 50px);
        flex-basis: calc(50% - 50px);
  }
}
.slideshow .slide-num, .image-slideshow .slide-num, .main-image .slide-num {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 4;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 10px;
  font-size: 0.875em;
  line-height: 1em;
}

.slideshow img {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slideshow .slideshow-item {
  position: relative;
  width: 100%;
}
.slideshow .slideshow-item:before {
  padding-top: 90%;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow .slideshow-item:before {
    padding-top: 35%;
  }
  .row .slideshow .slideshow-item:before {
    padding-top: 45%;
  }
}
.slideshow h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  z-index: 5;
  color: white;
  font-size: 2.1875em;
  line-height: 1.2857142857em;
  margin-bottom: 25px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .slideshow h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}

.before-and-after .one-third-col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .before-and-after .one-third-col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.image-position-left .image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.image-position-left .text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.col-container.image-full {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.col-container.image-full .col {
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .col-container.image-full .col {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.col-container.image-full img.background-image {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) {
  .col-container.image-full img.background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
    height: 100%;
  }
}

.image-slideshow.arrows .owl-nav .owl-next {
  right: 2px;
}
.image-slideshow .owl-stage-outer {
  height: 100%;
}
.image-slideshow .owl-stage, .image-slideshow .owl-item, .image-slideshow .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-slideshow img.background-image {
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.image-slideshow .active img.background-image {
  opacity: 1;
}

.image-text-box .owl-item {
  position: relative;
  overflow: hidden;
}
.image-text-box .col.image {
  padding-top: 0;
  padding-bottom: 0;
}
.image-text-box .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.image-text-box .image.two-images {
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.two-images {
    height: auto;
  }
}
.image-text-box .image.two-images img.background-image {
  width: calc(50% - 10px);
  position: absolute;
}
.image-text-box .image.two-images img.background-image:last-child {
  left: auto;
  right: 0;
}
.image-text-box .image.three-images {
  height: 400px;
}
@media only screen and (min-width: 768px) {
  .image-text-box .image.three-images {
    height: auto;
  }
}
.image-text-box .image.three-images img.background-image {
  width: calc(33.33% - 10px);
  position: absolute;
}
.image-text-box .image.three-images img.background-image:first-child + img.background-image {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  right: auto;
}
.image-text-box .image.three-images img.background-image:last-child {
  left: auto;
  right: 0;
}

@media only screen and (min-width: 768px) {
  .sticky-image.col-container .one-third-col {
    position: sticky;
    top: 120px;
    height: calc(100vh - 130px);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-image.col-container .one-third-col {
    top: 120px;
    height: calc(100vh - 150px);
  }
}

.package-list.col-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.flex-content .price-box {
  border: 1px solid #e1e1e2;
  padding: 30px 30px 90px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 350px;
  position: relative;
}
.flex-content .price-box h3 {
  margin: 0 0 15px;
}
.flex-content .price-box p {
  margin: 0 0 15px;
}
.flex-content .price-box .price {
  color: #A78BFA;
  margin: 0 0 15px;
}
.flex-content .price-box .price .suffix {
  display: inline-block;
  font-size: 0.625em;
  line-height: 1em;
}
.flex-content .price-box .btn, .flex-content .price-box form input[type=submit], form .flex-content .price-box input[type=submit],
.flex-content .price-box form input[type=button],
form .flex-content .price-box input[type=button] {
  width: calc(100% - 60px);
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
}
.flex-content .price-box ul {
  border-top: 1px solid #e1e1e2;
  padding: 20px;
  margin: 0;
}
.flex-content .price-box.highlight {
  background: #101585;
  border-color: #101585;
}
@media only screen and (min-width: 768px) {
  .flex-content .price-box.highlight {
    margin: -20px 0 0;
  }
}
.flex-content .price-box.highlight p, .flex-content .price-box.highlight ul li, .flex-content .price-box.highlight h3 {
  color: white;
}
.flex-content .price-box.highlight .btn:hover, .flex-content .price-box.highlight form input[type=submit]:hover, form .flex-content .price-box.highlight input[type=submit]:hover,
.flex-content .price-box.highlight form input[type=button]:hover,
form .flex-content .price-box.highlight input[type=button]:hover {
  color: #101585;
  background: white;
}

.accordian {
  margin: 20px 0 0;
}
.accordian .accordian-group {
  margin-top: 20px;
  border: 1px solid #e1e1e2;
}
.accordian .accordian-group:first-child {
  margin-top: 0;
}
.accordian .accordian-group .text {
  padding: 0 25px 0;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.accordian .accordian-group .text p:last-child {
  margin-bottom: 30px;
}
.accordian .accordian-group h3.active + .text {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
.accordian h3.title {
  background: white;
  padding: 20px 25px;
  font-size: 1em;
  line-height: 1.1875em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-family: "Inter", sans-serif;
  color: #101585;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.accordian h3.title:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #A78BFA;
  font-size: 16px;
  line-height: 16px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.accordian h3.title i {
  color: #A78BFA;
  margin-right: 10px;
  width: 30px;
  font-size: 1.375em;
  line-height: 1em;
}
.accordian h3.title.active {
  margin-bottom: 15px;
}
.accordian h3.title.active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.accordian h3.title:first-child {
  margin-top: 0;
}

.accordion-images .accordion-nav {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    width: 25%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 25px 0;
  }
  .accordion-images .accordion-nav .accordionnav-item:last-child {
    margin-bottom: 0;
  }
}
.accordion-images .accordion-box {
  width: 100%;
  display: block;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordion-box {
    width: 75%;
  }
}
.accordion-images .accordionbox-item {
  position: relative;
  margin: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item {
    display: none;
    height: 100%;
    z-index: 4;
    max-height: none;
    padding: 50px;
    background: #edecee;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item {
    padding: 50px 100px 50px 0;
    min-height: 600px;
  }
}
.accordion-images .accordionbox-item.mobile-active {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.accordion-images .accordionbox-item .background-image {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .background-image {
    display: block;
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.accordion-images .accordionbox-item .box {
  background: white;
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 590px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  border: 1px solid #e1e1e2;
  border-top: 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box {
    margin: auto;
    border: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .accordion-images .accordionbox-item .box {
    margin-left: auto;
    margin-right: 0;
    padding: 50px;
  }
}
.accordion-images .accordionbox-item .box p:last-child {
  margin: 0;
}
.accordion-images .accordionbox-item .box h3 {
  display: none;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionbox-item .box h3 {
    display: block;
    margin-bottom: 20px;
  }
}
.accordion-images .accordionnav-item, .accordion-images .mobile-title {
  background: white;
  padding: 20px 40px 20px 25px;
  font-size: 1em;
  line-height: 1.1875em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 0 0 15px;
  border: 1px solid #e1e1e2;
  color: #101585;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  z-index: 5;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item, .accordion-images .mobile-title {
    width: calc(100% - 20px);
  }
}
.accordion-images .accordionnav-item span, .accordion-images .mobile-title span {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f107";
  color: #A78BFA;
  font-size: 16px;
  line-height: 16px;
  z-index: 2;
  font-weight: 400;
  -webkit-transform: translateY(-50%) rotate(0);
      -ms-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:after, .accordion-images .mobile-title:after {
    content: "\f105";
  }
}
.accordion-images .accordionnav-item:before, .accordion-images .mobile-title:before {
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  position: absolute;
  display: block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #101585;
  content: "";
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .accordion-images .accordionnav-item:not(.active):hover, .accordion-images .mobile-title:not(.active):hover {
    color: white;
  }
  .accordion-images .accordionnav-item:not(.active):hover:before, .accordion-images .mobile-title:not(.active):hover:before {
    width: 100%;
  }
}
.accordion-images .accordionnav-item.active, .accordion-images .mobile-title.active {
  background: #101585;
  color: white;
  border-color: #101585;
  margin-right: -38px;
  width: calc(100% + 38px);
}
.accordion-images .mobile-title {
  margin: 20px 0 0;
}
@media only screen and (min-width: 768px) {
  .accordion-images .mobile-title {
    display: none;
  }
}
.accordion-images .mobile-title.mobile-active:after {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.download-row {
  border-bottom: 1px solid #e1e1e2;
  background: 0;
  padding: 25px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.download-row .download-filesize {
  font-weight: 600;
  color: #A78BFA;
  margin-right: 0;
  margin-left: auto;
  padding-right: 20px;
}
.download-row a {
  background: #101585;
  font-weight: 600;
  padding: 10px 15px;
  font-size: 0.875em;
  line-height: 1.3571428571em;
  letter-spacing: 1px;
  color: white;
  display: inline-block;
  text-align: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.download-row a i {
  margin-left: 5px;
}
.download-row a:hover {
  background: #A78BFA;
  color: white;
}

.video-box .open-youtube {
  font-size: 0.8125em;
  line-height: 1.0769230769em;
  color: white;
  background: #FF0000;
  font-weight: 600;
  padding: 10px 15px;
}
.video-box .open-youtube:hover {
  background: #101585;
}
.video-box .open-youtube i {
  margin-right: 8px;
}
.video-box .video-item {
  border: 1px solid #e1e1e2;
  border-radius: 0;
  padding: 15px 15px 25px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .video-item {
    margin-bottom: 40px;
  }
}
.video-box .video-item .video-container {
  margin: 0 0 20px;
  position: relative;
  width: 100%;
}
.video-box .video-item .video-container:before {
  content: "";
  padding-bottom: 56.25%;
  display: block;
}
.video-box .video-item .video-container iframe, .video-box .video-item .video-container video, .video-box .video-item .video-container embed, .video-box .video-item .video-container object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-box .video-item h3 {
  margin: 0;
  color: #101585;
  font-size: 1.25em;
  line-height: 1.5em;
}
.video-box .video-text {
  padding: 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 1400px) {
  .video-box .two-col.col {
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    width: calc(50% - 20px);
  }
}

.home-text p {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.recent-news-holder {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recent-news-holder .recent-news-item {
  border: 1px solid #e1e1e2;
}
.recent-news-holder .recent-news-item .featured-image {
  position: relative;
  overflow: hidden;
}
.recent-news-holder .recent-news-item .featured-image:before {
  display: block;
  padding-top: 70%;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image img {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  widtH: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -o-object-fit: cover;
     object-fit: cover;
}
.recent-news-holder .recent-news-item .featured-image:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #101585;
  opacity: 0.4;
  z-index: 3;
  display: block;
  content: "";
}
.recent-news-holder .recent-news-item .featured-image h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 0 20px;
  margin: 0;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 4;
  width: calc(100% - 40px);
  font-weight: 600;
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
.recent-news-holder .recent-news-item .featured-image h4 a {
  color: white !important;
}
.recent-news-holder .recent-news-item .featured-image h4 a:hover {
  text-decoration: none;
}
.recent-news-holder .recent-news-item .recent-news-body {
  padding: 30px;
}
.recent-news-holder .recent-news-item:hover .featured-image img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

iframe[src*="https://www.google.com/maps"], iframe[src*="https://www.youtube.com/embed/"] {
  width: 100%;
  display: block;
}

form label {
  display: block;
  font-family: "Inter", sans-serif;
  color: #101585;
  font-size: 0.9375em;
  line-height: 1em;
  font-weight: 600;
  color: #101585;
  text-transform: uppercase;
}
form input[type=text], form input[type=email], form input[type=url], form input[type=tel], form input[type=search], form input[type=date], form input[type=number], form input[type=password], form textarea, form select {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-shadow: none;
  border: 1px solid #d4d4d5;
  border-radius: 0;
  padding: 13px 15px;
  font-size: 1em;
  line-height: 1.25em;
  width: 100%;
  min-height: 48px;
  color: #6b7280;
  background: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
          box-shadow: 3px 4px 5px 0px rgba(0, 0, 0, 0.03);
  width: 100%;
  margin: 6px 0 25px;
}
form input[type=text]:hover, form input[type=email]:hover, form input[type=url]:hover, form input[type=tel]:hover, form input[type=search]:hover, form input[type=date]:hover, form input[type=number]:hover, form input[type=password]:hover, form textarea:hover, form select:hover {
  outline: none;
}
form input[type=text]:focus, form input[type=email]:focus, form input[type=url]:focus, form input[type=tel]:focus, form input[type=search]:focus, form input[type=date]:focus, form input[type=number]:focus, form input[type=password]:focus, form textarea:focus, form select:focus {
  outline: none;
  text-shadow: none;
  border-color: #adadb0;
}
form input[type=text]:-webkit-autofill, form input[type=email]:-webkit-autofill, form input[type=url]:-webkit-autofill, form input[type=tel]:-webkit-autofill, form input[type=search]:-webkit-autofill, form input[type=date]:-webkit-autofill, form input[type=number]:-webkit-autofill, form input[type=password]:-webkit-autofill, form textarea:-webkit-autofill, form select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px white inset;
  -webkit-text-fill-color: #888888 !important;
}
form textarea {
  max-width: 100%;
  height: 200px;
}
form input[type=submit],
form input[type=button] {
  display: block;
}
form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
form .wpcf7-form-control-wrap input[type=email], form .wpcf7-form-control-wrap input[type=tel], form .wpcf7-form-control-wrap input[type=text], form .wpcf7-form-control-wrap select, form .wpcf7-form-control-wrap textarea {
  padding-left: 55px;
}
form .wpcf7-form-control-wrap input[type=email].wpcf7-not-valid, form .wpcf7-form-control-wrap input[type=tel].wpcf7-not-valid, form .wpcf7-form-control-wrap input[type=text].wpcf7-not-valid, form .wpcf7-form-control-wrap select.wpcf7-not-valid, form .wpcf7-form-control-wrap textarea.wpcf7-not-valid {
  border-color: #e74c3c;
}
form .wpcf7-form-control-wrap:before {
  content: "\f0c1";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: 0;
  top: 15px;
  color: #A78BFA;
  font-weight: 300;
  width: 45px;
  text-align: center;
  border-right: 1px solid #e1e1e2;
  font-size: 0.9375em;
  line-height: 1.6666666667em;
}
form .wpcf7-form-control-wrap[data-name=your-email]:before {
  content: "\f0e0";
}
form .wpcf7-form-control-wrap[data-name=phone]:before {
  content: "\f095";
}
form .wpcf7-form-control-wrap[data-name=your-name]:before {
  content: "\f007";
}
form .wpcf7-form-control-wrap[data-name=your-subject]:before {
  content: "\f05a";
}
form .wpcf7-form-control-wrap[data-name=your-message]:before {
  content: "\f086";
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wpcf7-form .textarea {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .two-col {
    width: calc(50% - 20px);
    -ms-flex-preferred-size: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .three-col {
    width: calc(33.33% - 20px);
    -ms-flex-preferred-size: calc(33.33% - 20px);
        flex-basis: calc(33.33% - 20px);
  }
}
.wpcf7-form .input {
  width: 100%;
  text-align: left;
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wpcf7-form .wpcf7-submit {
    width: auto;
    min-width: 250px;
  }
}

.email-heading, .contact-form h2, .getin-touch.col-container h2 {
  margin-bottom: 25px;
}
.email-heading:before, .contact-form h2:before, .getin-touch.col-container h2:before {
  color: #A78BFA;
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 13px;
  content: "\e16f";
  font-weight: 100;
}

.contact-heading {
  margin-bottom: 10px;
  padding-left: 50px;
}
.contact-heading:before {
  font-size: 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  font-weight: 300;
  color: #A78BFA;
  font-family: "Font Awesome 6 Pro";
  text-align: center;
}
.contact-heading.tel:before {
  content: "\f095";
}
.contact-heading.address:before {
  content: "\f3c5";
}
.contact-heading.mobile:before {
  content: "\f10b";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.email:before {
  content: "\f0e0";
}
.contact-heading.socials:before {
  content: "\f086";
}
.contact-heading.opening:before {
  content: "\f017";
}

.col .contact-heading:last-of-type + p {
  border-bottom: 0;
}

.contact-heading + .socials, .contact-heading + .opening-hours {
  padding: 0 0 30px 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e1e1e2;
}

.contact-heading + p {
  padding: 0 0 30px 50px;
  border-bottom: 1px solid #e1e1e2;
}
.contact-heading + p a {
  color: #6b7280;
  font-weight: 300;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: #A78BFA;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .contact-heading + p a:hover:before {
    width: 100%;
  }
}

.contact-form {
  text-align: center;
}
.contact-form h2 + p {
  margin-bottom: 40px;
}
.contact-form .wpcf7 .wpcf7-form {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
.contact-form .wpcf7 .wpcf7-submit {
  margin-left: auto;
  margin-right: auto;
}

.wpcf7-not-valid-tip {
  margin: -15px 0 10px !important;
  font-size: 14px !important;
  line-height: 14px !important;
}

.ajax-loader {
  display: none !important;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  padding: 15px !important;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  width: 100%;
  margin: 25px 0 0 !important;
  background: #edecee;
  color: #101585;
  font-weight: 700;
  border: 0 !important;
}
form.invalid .wpcf7-response-output, form.unaccepted .wpcf7-response-output, form.payment-required .wpcf7-response-output {
  background: #e74c3c;
  color: white;
}
form.sent .wpcf7-response-output {
  background: #2ecc71;
  color: white;
}

.wpcf7-validation-errors {
  border-color: #e74c3c !important;
}

.leftsidebar [class*=widget_] {
  padding: 20px 0 0;
  margin: 0 0 30px;
}
.leftsidebar [class*=widget_] h3 {
  margin: 0 0 20px;
  padding-bottom: 15px;
  font-family: "Inter", sans-serif;
  color: #101585;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
  font-size: 1.1875em;
  line-height: 1em;
  border-bottom: 1px solid #e1e1e2;
}
.leftsidebar [class*=widget_] ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leftsidebar [class*=widget_] ul li {
  padding: 0;
  margin: 0 0 5px;
}
.leftsidebar [class*=widget_] ul li .post-date {
  font-size: 0.875em;
  line-height: 1em;
  color: #101585;
  font-weight: 700;
  display: block;
  text-transform: uppercase;
  margin-top: 2px;
}
.leftsidebar [class*=widget_] ul li a {
  color: #6b7280;
  font-weight: 300;
}
.leftsidebar [class*=widget_] ul li a:hover {
  color: #101585;
}
.leftsidebar [class*=widget_] ul li a[aria-current] {
  color: #101585;
  font-weight: 700;
}
.pagebody .leftsidebar [class*=widget_] ul li:before {
  display: none;
}

.arrows {
  padding: 0 10px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows {
    padding: 0 80px;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-stage .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.arrows .owl-nav {
  overflow: hidden;
}
.arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
  background: rgba(167, 139, 250, 0.8);
  line-height: 80px;
  width: 50px;
  height: 80px;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev, .arrows .owl-nav .owl-next {
    line-height: 55px;
    width: 55px;
    height: 55px;
    background: #A78BFA;
  }
}
.arrows .owl-nav .owl-prev.disabled, .arrows .owl-nav .owl-next.disabled {
  opacity: 0.7;
  cursor: default;
}
.arrows .owl-nav .owl-prev:hover, .arrows .owl-nav .owl-next:hover {
  background: #101585;
  color: white;
}
.arrows .owl-nav .owl-prev {
  left: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-prev {
    left: 0;
  }
}
.arrows .owl-nav .owl-next {
  right: -20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .arrows .owl-nav .owl-next {
    right: 0;
  }
}
.arrows.gallery-outer {
  padding: 0;
}
.arrows.gallery-outer .owl-prev {
  left: 0;
}
.arrows.gallery-outer .owl-next {
  right: 0;
}

.project-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 25px;
}

.project-image {
  background: #101585;
  position: relative;
  overflow: hidden;
  display: block;
}
.project-image:before {
  padding-top: 140%;
  display: block;
  content: "";
}
@media only screen and (min-width: 480px) {
  .project-image:before {
    padding-top: 180%;
  }
}
@media screen and (min-width: 1400px) {
  .project-image:before {
    padding-top: 140%;
  }
}
.project-image:after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(black));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  height: 80%;
  display: block;
  content: "";
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: 2;
  right: 0;
  opacity: 0.6;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .project-image:after {
    height: 60%;
  }
}
.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.project-text {
  padding: 20px;
  text-align: left;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 30px;
  right: 0;
  pointer-events: none;
}
.project-text h2 {
  font-size: 1.875em;
  line-height: 1.2666666667em;
  margin-bottom: 15px;
  color: white;
}
.project-text p {
  color: white;
  margin-bottom: 20px;
}

.icon-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-link span {
  width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: white;
  opacity: 0;
  font-weight: 400;
  font-size: 1em;
  line-height: 1em;
  text-transform: uppercase;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
}
.icon-link i {
  width: 50px;
  height: 50px;
  background: white;
  font-size: 1.5em;
  line-height: 2.0833333333em;
  color: #101585;
  text-align: center;
}

.project-item {
  position: relative;
  width: 100%;
}
.owl-carousel .project-item {
  margin-bottom: 0;
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
}
@media only screen and (min-width: 480px) {
  .project-item {
    width: calc(50% - 13px);
  }
}
@media only screen and (min-width: 768px) {
  .project-item {
    width: calc(33.33% - 17px);
  }
}
@media screen and (min-width: 1400px) {
  .project-item {
    width: calc(25% - 18.75px);
  }
}
@media only screen and (min-width: 640px) {
  .project-item:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.project-item:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.project-category {
  border: 1px solid #e1e1e2;
  padding: 30px;
  display: block;
}
.project-category h2 {
  font-size: 1.75em;
  line-height: 1.0714285714em;
  margin-bottom: 25px;
}
.project-category .icon-link span {
  color: #101585;
}
.project-category .icon-link i {
  background: #A78BFA;
  color: white;
}
.project-category:hover .icon-link span {
  width: 120px;
  opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media only screen and (min-width: 640px) {
  .project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}
.project-info label {
  font-family: "Inter", sans-serif;
  padding-right: 15px;
  color: #101585;
}
@media only screen and (min-width: 640px) {
  .project-info label {
    width: 140px;
  }
}
.project-info div.info {
  margin-bottom: 10px;
}
@media only screen and (min-width: 640px) {
  .project-info div.info {
    width: calc(100% - 140px);
  }
}

@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-box {
    position: sticky;
    top: 90px;
  }
}

.term-description {
  border-bottom: 1px solid #e1e1e2;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.blog-holder.col-container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-holder.col-container {
    gap: 37px;
  }
}
@media screen and (min-width: 1400px) {
  .blog-holder.col-container {
    gap: 40px 45px;
  }
}

.list-item {
  width: 100%;
  padding: 1px 1px 60px;
  background: white;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .list-item {
    width: calc(50% - 15px);
    -ms-flex-preferred-size: calc(50% - 15px);
        flex-basis: calc(50% - 15px);
  }
}
@media only screen and (min-width: 768px) {
  .list-item {
    width: calc(33.33% - 25px);
    -ms-flex-preferred-size: calc(33.33% - 25px);
        flex-basis: calc(33.33% - 25px);
  }
}
@media screen and (min-width: 1400px) {
  .list-item {
    width: calc(33.33% - 30px);
    -ms-flex-preferred-size: calc(33.33% - 30px);
        flex-basis: calc(33.33% - 30px);
  }
}
.owl-carousel .list-item {
  width: calc(100% - 0px);
  -ms-flex-preferred-size: calc(100% - 0px);
      flex-basis: calc(100% - 0px);
  margin: 2px;
}
.list-item.sticky:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f276";
  position: absolute;
  top: 15px;
  z-index: 2;
  color: white;
  font-weight: 400;
  left: 15px;
  font-size: 1.125em;
  line-height: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #101585;
  width: 40px;
  height: 40px;
}
.list-item .post-image a {
  position: relative;
  background: #edecee;
  overflow: hidden;
  display: block;
  z-index: 1;
  margin-bottom: 20px;
}
.list-item .post-image a:before {
  padding-top: 75%;
  content: "";
  display: block;
}
.list-item .post-image img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item .post-image img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.list-item .post-text {
  position: relative;
  background: white;
  margin: 0;
  z-index: 2;
}
.list-item .post-text h2 {
  margin-bottom: 15px;
  font-size: 1.5em;
  line-height: 1.1666666667em;
}
.list-item .post-text p {
  font-size: 0.9375em;
  line-height: 1.8666666667em;
}
.list-item .post-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #e1e1e2;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.list-item .time {
  font-size: 0.875em;
  line-height: 1em;
  opacity: 0.8;
}
.list-item .btn, .list-item form input[type=submit], form .list-item input[type=submit],
.list-item form input[type=button],
form .list-item input[type=button] {
  padding: 8px 0;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 0.9375em;
  line-height: 1em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .list-item:hover .post-image img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.category-link {
  padding: 6px 8px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
  color: #A78BFA;
  border: 1px solid #A78BFA;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 5px 10px 0;
}
.category-link:hover {
  background: #A78BFA;
  color: white;
}

.single-item .featured-image-holder {
  display: block;
  margin: 0 0 20px;
}
.single-item .featured-image-holder img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-item .post-meta {
  padding: 0 0 15px;
  margin-bottom: 20px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #858c99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e1e1e2;
  width: 100%;
}
.single-item .post-meta.has-image {
  margin-bottom: 0;
}
.single-item .single-sharethis {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.single-item .single-sharethis p {
  display: block;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: #101585;
  font-size: 1.25em;
  line-height: 1em;
}
@media only screen and (min-width: 768px) {
  .single-item .single-sharethis p {
    margin-bottom: 0;
    margin-right: 10px;
    display: inline-block;
  }
}
.single-item .single-sharethis .social-share {
  display: inline-block;
  margin-left: 5px;
  position: relative;
  text-align: center;
  color: #A78BFA;
  padding: 10px 15px;
  background: white;
  -webkit-transition: 0.3 ease-in-out;
  transition: 0.3 ease-in-out;
}
.single-item .single-sharethis .social-share span {
  display: none;
}
.single-item .single-sharethis .social-share:hover {
  text-decoration: none;
  background: #edecee;
  color: #101585;
}
.single-item .single-sharethis .social-share i {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
.single-item .comments {
  margin: 0 0 30px;
}
.single-item .comments h3.comment-reply-title {
  margin: 0 0 20px;
}
.single-item .comments h3.comment-reply-title small {
  margin-left: 30px;
  font-size: 16px;
}
.single-item .comments .comment-body {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-item .comments .comment-body p {
  width: 100%;
  margin-bottom: 15px;
}
.single-item .comments .reply {
  margin: 0;
}
.single-item .comments .comment-reply-link, .single-item .comments .comment-reply-login {
  color: #101585;
  padding: 8px 0;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  position: relative;
  font-size: 0.9375em;
  line-height: 1em;
}
.single-item .comments .comment-reply-link:before, .single-item .comments .comment-reply-login:before {
  content: "\f4b6";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-right: 10px;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #A78BFA;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:after, .single-item .comments .comment-reply-login:after {
    width: 0;
    display: block;
    background: #A78BFA;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.single-item .comments .comment-reply-link:hover, .single-item .comments .comment-reply-login:hover {
  color: #101585;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single-item .comments .comment-reply-link:hover:after, .single-item .comments .comment-reply-login:hover:after {
    width: 100%;
  }
}
.single-item .comments ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.single-item .comments ul.children {
  padding: 10px 0 0 30px;
  margin: 0;
}
.single-item .comments ul li {
  margin-bottom: 20px;
  padding: 10px 0 10px 30px;
  border-left: 1px solid #e1e1e2;
}
.single-item .comments ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-item .comments ul li img, .single-item .comments ul li .says {
  display: none;
}
.single-item .comments ul li:before {
  display: none;
}
.single-item .comments ul li .comment-author {
  margin-bottom: 0;
}
.single-item .comments ul li .comment-author cite.fn {
  font-style: normal;
  color: #101585;
  font-weight: 700;
  margin-right: 15px;
}
.single-item .comments ul li .comment-author cite.fn a {
  color: #101585;
}
.single-item .comments ul li .comment-meta {
  margin-bottom: 10px;
  font-size: 0.875em;
  line-height: 1.2857142857em;
  color: #858c99;
}
.single-item .comments ul li .comment-meta a {
  color: #858c99;
  font-weight: 300;
}

.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin: 0 0 30px;
  padding: 20px 0 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .post-navigation .nav-links {
    margin-bottom: 40px;
  }
}
.post-navigation .nav-previous, .post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  max-width: 50%;
}
.post-navigation a {
  border: 1px solid #e1e1e2;
  display: block;
  padding: 12px 20px;
  font-size: 1.125em;
  line-height: 1.4444444444em;
  font-family: "Inter", sans-serif;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.post-navigation a i {
  position: absolute;
  top: 50%;
  color: #A78BFA;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  font-size: 20px;
}
.post-navigation a span {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.8em;
  color: #A78BFA;
}
.post-navigation a:hover {
  background: #101585;
  color: white;
}
.post-navigation .nav-previous a {
  text-align: right;
}
.post-navigation .nav-previous a i {
  right: auto;
  left: 20px;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .page-numbers {
  padding: 8px 16px;
  border: 1px solid #e1e1e2;
  font-family: "Inter", sans-serif;
  background: #101585;
  color: white;
  min-width: 44px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.pagination .page-numbers:not(:last-child) {
  margin-right: 15px;
}
.pagination .page-numbers:not(.current) {
  background: white;
  color: #A78BFA;
}
.pagination .page-numbers:not(.current):hover {
  background: #101585;
  color: white;
}

.datatable {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e2;
  margin: 0 0 35px;
}
.datatable colgroup, .datatable thead {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable colgroup, .datatable thead {
    display: table-header-group;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable thead th {
    background: #101585;
    border: 0;
    padding: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    color: white;
    text-align: left;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable thead th:first-child {
    text-align: left;
  }
}
.datatable ul {
  margin-bottom: 0;
}
.datatable tr {
  border-bottom: 1px solid #e1e1e2;
  display: block;
  padding-bottom: 10px;
  padding-top: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr {
    display: table-row;
    padding: 0;
  }
}
.datatable tr:after {
  width: 100%;
  height: 1px;
  clear: both;
  display: block;
  content: "";
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tr:after {
    display: none;
  }
}
.datatable tr:last-child {
  margin: 0;
  border: 0;
}
.datatable tr:last-child td {
  border-bottom: 0;
}
.datatable tbody td, .datatable tbody th {
  display: block;
  padding: 2px 15px;
  width: 100%;
  clear: both;
  float: left;
  text-align: left;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td, .datatable tbody th {
    padding: 15px;
    float: none;
    display: table-cell;
    width: auto;
    border: 1px solid #e1e1e2;
    font-size: 1em;
    line-height: 1.75em;
    text-align: center;
  }
  .datatable tbody td:first-child, .datatable tbody th:first-child {
    text-align: left;
  }
}
.datatable tbody td:before, .datatable tbody th:before {
  content: attr(data-th);
  width: 48%;
  clear: both;
  padding-right: 15px;
  font-weight: bold;
  display: inline-block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .datatable tbody td:before, .datatable tbody th:before {
    display: none;
  }
}
.datatable tbody td tr td:nth-child(even), .datatable tbody th tr td:nth-child(even) {
  background: #fcfcfc;
}
.datatable tbody tr:nth-child(even) {
  background: #fcfcfc;
}
.widget_calendar {
  display: table;
  width: 100%;
}

#wp-calendar {
  width: 100%;
}
#wp-calendar caption {
  text-align: right;
  color: #101585;
  font-size: 12px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#wp-calendar thead {
  font-size: 10px;
}
#wp-calendar thead th {
  padding-bottom: 10px;
}
#wp-calendar tbody {
  color: #101585;
  font-family: sans-serif;
  font-weight: 300;
}
#wp-calendar tbody td {
  background: #edecee;
  border: 1px solid #edecee;
  text-align: center;
  padding: 8px;
}
#wp-calendar tbody td:hover {
  background: #edecee;
}
#wp-calendar tbody .pad {
  background: none;
}
#wp-calendar tfoot #next {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
#wp-calendar tfoot #prev {
  font-size: 10px;
  text-transform: uppercase;
  padding-top: 10px;
}

/* ============================================================
 * CHAYSE Homepage Concept - section styles
 * Uses theme mixins @include mq() and @include font(), tokens
 * $navy $yellow $lavender $greyBg. Mobile-first.
 * ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  html {
    scroll-padding-top: 96px;
  }
}

.wrapper {
  padding-top: 88px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .wrapper {
    padding-top: 96px;
  }
}
body.home .wrapper {
  padding-top: 0;
}
body.has-cy-page-header .wrapper {
  padding-top: 0;
}
.single .wrapper {
  padding-top: 88px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .single .wrapper {
    padding-top: 96px;
  }
}

.cy-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  .cy-container {
    padding: 0 48px;
  }
}

.cy-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #A78BFA;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-eyebrow span.line {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-eyebrow.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cy-eyebrow.on-dark {
  color: rgba(255, 255, 255, 0.8);
}
.cy-eyebrow.on-yellow {
  color: #101585;
}

.cy-js [data-reveal] {
  opacity: 0;
  -webkit-transform: translateY(40px);
      -ms-transform: translateY(40px);
          transform: translateY(40px);
  -webkit-transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-js [data-reveal].is-visible {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.cy-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  padding: 20px 32px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cy-btn i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-btn:hover {
  background: #fff;
  color: #101585;
}
.cy-btn:hover i {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.cy-btn.solid-white {
  background: #fff;
}
.cy-btn.solid-white:hover {
  background: #FFDD44;
}

/* -------------------------------------------------- Header */
.cy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 24px;
  color: #fff;
  -webkit-transition: background 0.3s ease, padding 0.3s ease;
  transition: background 0.3s ease, padding 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cy-header {
    padding: 24px 48px;
  }
}
.cy-header:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #101585;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.cy-header.is-scrolled:before {
  opacity: 1;
}
body:not(.home) .cy-header:before {
  opacity: 1;
}
body:not(.home) .cy-header {
  background: #101585;
}
body.has-cy-page-header .cy-header:not(.is-scrolled):before {
  opacity: 0;
}
body.has-cy-page-header .cy-header:not(.is-scrolled) {
  background: transparent;
}
body.has-cy-page-header .cy-header.is-scrolled:before {
  opacity: 1;
}
.cy-header.is-scrolled {
  background: #101585;
  padding-top: 16px;
  padding-bottom: 16px;
}
.cy-header .cy-logo {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 1.125em;
  line-height: 1.1111111111em;
}
.cy-header .cy-logo img {
  max-height: 28px;
  width: auto;
  display: block;
}
.cy-header .cy-nav {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-header .cy-nav {
    display: block;
  }
}
.cy-header .cy-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cy-header .cy-nav a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.cy-header .cy-nav a:hover {
  color: #FFDD44;
}
.cy-header .cy-nav li.menu-item-has-children {
  position: relative;
}
.cy-header .cy-nav li.menu-item-has-children > a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.cy-header .cy-nav li.menu-item-has-children > a:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro", "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-header .cy-nav li.menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 12px);
      -ms-transform: translate(-50%, 12px);
          transform: translate(-50%, 12px);
  min-width: 240px;
  margin: 0;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  background: #101585;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
}
.cy-header .cy-nav li.menu-item-has-children > .sub-menu:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.cy-header .cy-nav li.menu-item-has-children > .sub-menu li {
  width: 100%;
}
.cy-header .cy-nav li.menu-item-has-children > .sub-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
}
.cy-header .cy-nav li.menu-item-has-children > .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #FFDD44;
}
.cy-header .cy-nav li.menu-item-has-children:hover > a:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cy-header .cy-nav li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translate(-50%, 12px);
      -ms-transform: translate(-50%, 12px);
          transform: translate(-50%, 12px);
}
.cy-header .cy-header-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.cy-header .cy-header-btn {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-header .cy-header-btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 16px 32px;
    background: #fff;
    color: #101585;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75em;
    line-height: 1.3333333333em;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .cy-header .cy-header-btn:hover {
    background: #FFDD44;
  }
}
.cy-header .cy-header-cta .cy-burger {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: 0;
  cursor: pointer;
  outline: none;
}
.cy-header .cy-header-cta .cy-burger:hover, .cy-header .cy-header-cta .cy-burger:focus, .cy-header .cy-header-cta .cy-burger:active {
  background: none;
}
.cy-header .cy-header-cta .cy-burger:focus-visible {
  outline: 2px solid #FFDD44;
  outline-offset: 4px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-header .cy-header-cta .cy-burger {
    display: none;
  }
}
.cy-header .cy-header-cta .cy-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* Mobile drawer */
.cy-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 24px 40px;
  background: #101585;
  color: #fff;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  outline: none;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.55s;
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.55s;
}
@media only screen and (min-width: 768px) {
  .cy-drawer {
    padding: 0 48px 48px;
  }
}
.cy-drawer.is-open {
  clip-path: inset(0 0 0 0);
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0s;
}
.cy-drawer.is-closing {
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: clip-path 0.42s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.42s;
  transition: clip-path 0.42s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.42s;
}
.cy-drawer .cy-drawer-bar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 88px;
}
.cy-drawer .cy-drawer-logo {
  display: block;
  max-width: 190px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  font-size: 1.25em;
  line-height: 1.3em;
}
.cy-drawer .cy-drawer-logo img {
  display: block;
  width: auto;
  max-height: 40px;
}
.cy-drawer .cy-drawer-close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  height: 32px;
  padding: 8px;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  outline: none;
}
.cy-drawer .cy-drawer-close:hover {
  opacity: 0.6;
}
.cy-drawer .cy-drawer-close:focus-visible {
  opacity: 0.6;
  outline: 2px solid #FFDD44;
  outline-offset: 4px;
}
.cy-drawer .cy-drawer-close span[aria-hidden] {
  position: relative;
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cy-drawer .cy-drawer-close span[aria-hidden]:after {
  position: absolute;
  inset: 0;
  width: inherit;
  height: inherit;
  background: inherit;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  content: "";
}
.cy-drawer .cy-drawer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 520px;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
  padding: 24px 0 32px;
}
.cy-drawer .cy-drawer-menu {
  counter-reset: cy-nav-item;
  display: block;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cy-drawer .cy-drawer-menu li {
  position: relative;
  margin: 0;
  padding: 0;
}
.cy-drawer .cy-drawer-menu li:before {
  display: none;
  content: none;
}
.cy-drawer .cy-drawer-menu > li {
  counter-increment: cy-nav-item;
  padding: 16px 0;
  opacity: 0;
  -webkit-transform: translateY(16px);
      -ms-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.45s ease, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s ease, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.cy-drawer .cy-drawer-menu > li:nth-child(1) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(2) {
  -webkit-transition-delay: 0.26s;
          transition-delay: 0.26s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(3) {
  -webkit-transition-delay: 0.31s;
          transition-delay: 0.31s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(4) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(5) {
  -webkit-transition-delay: 0.41s;
          transition-delay: 0.41s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(6) {
  -webkit-transition-delay: 0.46s;
          transition-delay: 0.46s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(7) {
  -webkit-transition-delay: 0.51s;
          transition-delay: 0.51s;
}
.cy-drawer .cy-drawer-menu > li:nth-child(8) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}
.cy-drawer .cy-drawer-menu > li:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), -webkit-transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  -webkit-transition-delay: inherit;
          transition-delay: inherit;
  content: "";
}
.cy-drawer .cy-drawer-menu > li:last-child:after {
  content: none;
}
.cy-drawer .cy-drawer-menu > li > a {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 34px 4px 1fr 4px auto;
  grid-template-columns: 34px 1fr auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 4px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(21px, 5.6vw, 26px);
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.cy-drawer .cy-drawer-menu > li > a:before {
  color: #FFDD44;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1;
  content: counter(cy-nav-item, decimal-leading-zero);
}
.cy-drawer .cy-drawer-menu > li > a:hover, .cy-drawer .cy-drawer-menu > li > a:focus-visible {
  color: #fff;
}
.cy-drawer .cy-drawer-menu > li.current-menu-item > a,
.cy-drawer .cy-drawer-menu > li.current-menu-ancestor > a {
  color: #fff;
}
.cy-drawer .cy-drawer-menu > li.current-menu-item:after,
.cy-drawer .cy-drawer-menu > li.current-menu-ancestor:after {
  background: rgba(255, 221, 68, 0.9);
}
.cy-drawer .cy-drawer-menu > li.menu-item-has-children > a > .menu-parent {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: block;
  margin: 0;
}
.cy-drawer .cy-drawer-menu > li.menu-item-has-children > a > .menu-parent:before {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  line-height: 1;
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "\f107";
}
.cy-drawer .cy-drawer-menu > li.menu-item-has-children.is-open > a > .menu-parent:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cy-drawer .cy-drawer-menu .sub-menu {
  display: -ms-grid;
  display: grid;
  gap: 12px;
  max-height: 0;
  margin: 0;
  padding: 0 0 0 38px;
  list-style: none;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}
.cy-drawer .cy-drawer-menu .sub-menu a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
  font-size: 0.9375em;
  line-height: 1.3333333333em;
}
.cy-drawer .cy-drawer-menu .sub-menu a:hover, .cy-drawer .cy-drawer-menu .sub-menu a:focus-visible {
  color: #fff;
}
.cy-drawer .cy-drawer-menu .is-open > .sub-menu {
  max-height: 420px;
  padding-top: 16px;
  opacity: 1;
}
.cy-drawer.is-open .cy-drawer-menu > li {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.cy-drawer.is-open .cy-drawer-menu > li:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.cy-drawer .cy-drawer-foot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -ms-grid;
  display: grid;
  justify-items: start;
  gap: 16px;
  width: 100%;
  max-width: 520px;
  opacity: 0;
  -webkit-transform: translateY(16px);
      -ms-transform: translateY(16px);
          transform: translateY(16px);
  -webkit-transition: opacity 0.45s ease 0.34s, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
  transition: opacity 0.45s ease 0.34s, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
  transition: opacity 0.45s ease 0.34s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
  transition: opacity 0.45s ease 0.34s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s, -webkit-transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.34s;
}
.cy-drawer.is-open .cy-drawer-foot {
  opacity: 1;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.cy-drawer .cy-drawer-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.6875em;
  line-height: 1.4545454545em;
}
.cy-drawer .cy-drawer-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 30px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.8125em;
  line-height: 1.5384615385em;
}
.cy-drawer .cy-drawer-cta i {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-drawer .cy-drawer-cta:hover, .cy-drawer .cy-drawer-cta:focus-visible {
  background: #fff;
}
.cy-drawer .cy-drawer-cta:hover i, .cy-drawer .cy-drawer-cta:focus-visible i {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-drawer {
    display: none;
  }
}

body.cy-nav-open,
body.cy-nav-closing {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .cy-drawer,
  .cy-drawer.is-open,
  .cy-drawer.is-closing,
  .cy-drawer .cy-drawer-menu > li,
  .cy-drawer.is-open .cy-drawer-menu > li,
  .cy-drawer .cy-drawer-menu > li:after,
  .cy-drawer.is-open .cy-drawer-menu > li:after,
  .cy-drawer .cy-drawer-foot,
  .cy-drawer.is-open .cy-drawer-foot {
    -webkit-transition: none;
    transition: none;
  }
}
/* -------------------------------------------------- Hero */
.cy-hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  overflow: hidden;
  background: #101585;
  color: #fff;
}
.cy-hero .cy-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.cy-hero .cy-hero-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.cy-hero .cy-hero-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#101585), color-stop(50%, rgba(16, 21, 133, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, #101585 0%, rgba(16, 21, 133, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}
.cy-hero .cy-container {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-hero .cy-container {
    padding-bottom: 96px;
  }
}
.cy-hero .cy-hero-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (min-width: 1100px) {
  .cy-hero .cy-hero-grid {
    -ms-grid-columns: 3fr 1fr;
    grid-template-columns: 3fr 1fr;
  }
}
.cy-hero .cy-hero-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin: 32px 0 0;
  color: #fff;
  font-size: 64px;
}
@media only screen and (min-width: 768px) {
  .cy-hero .cy-hero-title {
    font-size: 112px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-hero .cy-hero-title {
    margin-top: 48px;
    font-size: 144px;
  }
}
.cy-hero .cy-hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px #A78BFA;
}
.cy-hero .cy-hero-title span {
  display: block;
}
.cy-hero .cy-hero-intro p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: -0.0225em;
  margin-bottom: 40px;
  font-size: 1.25em;
  line-height: 1.625em;
}
.cy-hero .cy-hero-side {
  padding-bottom: 24px;
}

/* -------------------------------------------------- Manifesto / Ethos */
.cy-manifesto {
  background: #fff;
  color: #101585;
}
.cy-manifesto .cy-manifesto-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cy-manifesto .cy-manifesto-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cy-manifesto .cy-manifesto-aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-manifesto .cy-manifesto-aside {
    width: 33.333%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0;
  }
}
.cy-manifesto .cy-manifesto-aside .cy-eyebrow {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.1893em;
}
.cy-manifesto .cy-manifesto-aside .cy-eyebrow span.line {
  width: 48px;
}
.cy-manifesto .cy-manifesto-aside p {
  letter-spacing: -0.0244em;
  max-width: 20rem;
  font-size: 1.125em;
  line-height: 1.5555555556em;
}
.cy-manifesto .cy-manifesto-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding: 24px 0 0;
}
@media only screen and (min-width: 768px) {
  .cy-manifesto .cy-manifesto-list {
    width: 66.666%;
    gap: 40vh;
    padding: 30vh 0;
  }
}
.cy-manifesto .cy-manifesto-list h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.0233em;
  line-height: 1.1;
  margin: 0;
  color: #101585;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-manifesto .cy-manifesto-list h3 {
    font-size: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-manifesto .cy-manifesto-list h3 {
    font-size: 72px;
  }
}
.cy-manifesto .cy-manifesto-list h3 .lavender {
  color: #A78BFA;
}
.cy-manifesto .cy-manifesto-list h3 .yellow {
  color: #FFDD44;
}
.cy-manifesto .cy-manifesto-list p {
  margin: 32px 0 0;
  max-width: 36rem;
  color: #6b7280;
  font-weight: 300;
  letter-spacing: 0.003em;
  font-size: 1.25em;
  line-height: 1.6em;
}
@media only screen and (min-width: 768px) {
  .cy-manifesto .cy-manifesto-list p {
    font-size: 1.5em;
    line-height: 1.625em;
  }
}

/* -------------------------------------------------- Capabilities / Arsenal */
.cy-capabilities {
  background: #fff;
  color: #101585;
}
.cy-capabilities .cy-cap-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 96px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 128px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-head .cy-cap-head-left {
    width: 33.333%;
  }
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-head .cy-cap-head-left .cy-eyebrow {
    position: sticky;
    top: 128px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-head .cy-cap-head-right {
    width: 66.666%;
  }
}
.cy-capabilities .cy-cap-head .cy-cap-head-right h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  max-width: 48rem;
  margin: 0;
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-head .cy-cap-head-right h3 {
    font-size: 60px;
  }
}
.cy-capabilities .cy-cap-stack {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-stack {
    gap: 64px;
    padding-bottom: 128px;
  }
}
.cy-capabilities .cy-cap-card {
  position: sticky;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 30px 60px -15px rgba(16, 21, 133, 0.25);
          box-shadow: 0 30px 60px -15px rgba(16, 21, 133, 0.25);
  isolation: isolate;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card {
    border-radius: 40px;
    min-height: 592px;
  }
}
.cy-capabilities .cy-cap-card.top-1 {
  top: 72px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card.top-1 {
    top: 96px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-capabilities .cy-cap-card.top-1 {
    top: 128px;
  }
}
.cy-capabilities .cy-cap-card.top-2 {
  top: 82px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card.top-2 {
    top: 112px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-capabilities .cy-cap-card.top-2 {
    top: 160px;
  }
}
.cy-capabilities .cy-cap-card.top-3 {
  top: 92px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card.top-3 {
    top: 128px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-capabilities .cy-cap-card.top-3 {
    top: 192px;
  }
}
.cy-capabilities .cy-cap-card:before, .cy-capabilities .cy-cap-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
}
.cy-capabilities .cy-cap-card:before {
  z-index: 0;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.cy-capabilities .cy-cap-card:after {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  -webkit-mask-image: linear-gradient(135deg, #fff 0%, transparent 30%);
          mask-image: linear-gradient(135deg, #fff 0%, transparent 30%);
  mix-blend-mode: overlay;
}
.cy-capabilities .cy-cap-card.theme-navy {
  background: #101585;
  color: #fff;
}
.cy-capabilities .cy-cap-card.theme-navy .cy-cap-num {
  color: #FFDD44;
}
.cy-capabilities .cy-cap-card.theme-navy .cy-cap-card-title {
  color: #fff;
}
.cy-capabilities .cy-cap-card.theme-navy p {
  color: rgba(255, 255, 255, 0.8);
}
.cy-capabilities .cy-cap-card.theme-yellow {
  background: #FFDD44;
  color: #101585;
  -webkit-box-shadow: 0 30px 60px -15px rgba(255, 221, 68, 0.4);
          box-shadow: 0 30px 60px -15px rgba(255, 221, 68, 0.4);
}
.cy-capabilities .cy-cap-card.theme-yellow .cy-cap-num, .cy-capabilities .cy-cap-card.theme-yellow .cy-cap-card-title, .cy-capabilities .cy-cap-card.theme-yellow p {
  color: #101585;
}
.cy-capabilities .cy-cap-card.theme-lavender {
  background: #A78BFA;
  color: #101585;
  -webkit-box-shadow: 0 30px 60px -15px rgba(167, 139, 250, 0.4);
          box-shadow: 0 30px 60px -15px rgba(167, 139, 250, 0.4);
}
.cy-capabilities .cy-cap-card.theme-lavender .cy-cap-num, .cy-capabilities .cy-cap-card.theme-lavender .cy-cap-card-title, .cy-capabilities .cy-cap-card.theme-lavender p {
  color: #101585;
}
.cy-capabilities .cy-cap-card .cy-cap-inner {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 24px;
  height: 100%;
}
@media only screen and (min-width: 640px) {
  .cy-capabilities .cy-cap-card .cy-cap-inner {
    gap: 40px;
    padding: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card .cy-cap-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
    padding: 56px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-capabilities .cy-cap-card .cy-cap-inner {
    padding: 80px;
  }
}
.cy-capabilities .cy-cap-card .cy-cap-text {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card .cy-cap-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 479px;
            flex: 0 0 479px;
    width: 42%;
  }
}
.cy-capabilities .cy-cap-card .cy-cap-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2393em;
  text-transform: uppercase;
  font-size: 0.875em;
  line-height: 1.4285714286em;
  margin-bottom: 32px;
}
.cy-capabilities .cy-cap-card .cy-cap-num:after {
  content: "";
  width: 48px;
  height: 2px;
  background: currentColor;
  opacity: 0.6;
}
.cy-capabilities .cy-cap-card .cy-cap-card-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.0206em;
  line-height: 1.1;
  margin: 0 0 20px;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card .cy-cap-card-title {
    font-size: 3.25em;
    line-height: 1.1em;
  }
}
@media screen and (min-width: 1400px) {
  .cy-capabilities .cy-cap-card .cy-cap-card-title {
    font-size: 3.75em;
    line-height: 1.1em;
  }
}
.cy-capabilities .cy-cap-card p {
  font-weight: 300;
  letter-spacing: -0.0225em;
  max-width: 28rem;
  margin: 0;
  font-size: 1em;
  line-height: 1.625em;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card p {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}
.cy-capabilities .cy-cap-card .cy-cap-visual {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card .cy-cap-visual {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 58%;
  }
}
.cy-capabilities .cy-cap-card .cy-cap-visual .cy-cap-visual-art {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 500/375;
  padding: 4px;
  -webkit-filter: drop-shadow(0 25px 35px rgba(16, 21, 133, 0.25));
          filter: drop-shadow(0 25px 35px rgba(16, 21, 133, 0.25));
  -webkit-transition: -webkit-transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
@media only screen and (min-width: 768px) {
  .cy-capabilities .cy-cap-card .cy-cap-visual .cy-cap-visual-art {
    padding: 24px;
  }
}
.cy-capabilities .cy-cap-card .cy-cap-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.cy-capabilities .cy-cap-card .cy-cap-visual .cy-cap-visual-panel {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  mix-blend-mode: overlay;
  -webkit-transition: background 700ms ease, -webkit-transform 700ms ease;
  transition: background 700ms ease, -webkit-transform 700ms ease;
  transition: transform 700ms ease, background 700ms ease;
  transition: transform 700ms ease, background 700ms ease, -webkit-transform 700ms ease;
}
.cy-capabilities .cy-cap-card:hover .cy-cap-visual-art {
  -webkit-transform: translateY(-8px) scale(1.08);
      -ms-transform: translateY(-8px) scale(1.08);
          transform: translateY(-8px) scale(1.08);
}
.cy-capabilities .cy-cap-card:hover .cy-cap-visual-panel {
  background: rgba(255, 255, 255, 0.08);
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/* -------------------------------------------------- Services / What We Do */
.cy-services {
  background: #fff;
  color: #101585;
  padding-top: 96px;
  padding-bottom: 96px;
}
@media only screen and (min-width: 768px) {
  .cy-services {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-container {
    max-width: 1550px;
    padding-left: 80px;
    padding-right: 80px;
  }
}
.cy-services .cy-services-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 56px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-services .cy-services-head {
    position: relative;
    display: block;
    min-height: 202px;
    margin-bottom: 44px;
  }
}
.cy-services .cy-services-head .cy-services-title {
  max-width: 700px;
}
.cy-services .cy-services-head .cy-eyebrow {
  color: #A78BFA;
  margin-bottom: 48px;
}
.cy-services .cy-services-head .cy-eyebrow .line {
  background: #A78BFA;
}
.cy-services .cy-services-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.0233em;
  line-height: 1.1;
  color: #101585;
  margin: 0;
  font-size: 40px;
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-services-head h2 {
    font-size: 72px;
  }
}
.cy-services .cy-services-head .cy-services-intro {
  color: #6a7282;
  font-weight: 300;
  letter-spacing: -0.0225em;
  max-width: 560px;
  margin: 0;
  font-size: 1.125em;
  line-height: 1.6111111111em;
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-services-head .cy-services-intro {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-services .cy-services-head .cy-services-intro {
    position: absolute;
    right: 0;
    top: 104px;
    width: 40%;
  }
}
.cy-services .cy-services-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #101585;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-services .cy-services-grid {
    -ms-grid-columns: minmax(0, 802fr) minmax(0, 578fr);
    grid-template-columns: minmax(0, 802fr) minmax(0, 578fr);
    min-height: 589px;
  }
}
.cy-services .cy-service-core {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 40px 28px;
  background: radial-gradient(circle 175px at 84.2% 115px, rgba(167, 139, 250, 0.07) 0, rgba(167, 139, 250, 0.035) 48%, rgba(167, 139, 250, 0) 78%), radial-gradient(circle 100px at 84.8% 420px, rgba(255, 221, 68, 0.075) 0, rgba(255, 221, 68, 0.038) 50%, rgba(255, 221, 68, 0) 80%), #101585;
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-service-core {
    padding: 56px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-services .cy-service-core {
    min-height: 589px;
    border-radius: 20px 0 0 20px;
  }
}
.cy-services .cy-service-core .cy-service-tag {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 8px 16px;
  border-radius: 999px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1667em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  margin-bottom: 24px;
}
.cy-services .cy-service-core h3 {
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: #fff;
  margin: 0 0 24px;
  font-size: 44px;
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-service-core h3 {
    font-size: 80px;
  }
}
.cy-services .cy-service-core p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: -0.0225em;
  max-width: 560px;
  margin: 0;
  font-size: 1.125em;
  line-height: 1.6111111111em;
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-service-core p {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}
.cy-services .cy-service-core .cy-service-core-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  position: relative;
  z-index: 2;
  margin-top: 96px;
  padding: 20px 36px;
  border-radius: 4px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1667em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-services .cy-service-core .cy-service-core-link span {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-services .cy-service-core .cy-service-core-link:hover {
  background: #ffe668;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.cy-services .cy-service-core .cy-service-core-link:hover span {
  -webkit-transform: translateX(4px);
      -ms-transform: translateX(4px);
          transform: translateX(4px);
}
.cy-services .cy-service-core .cy-service-rings {
  position: absolute;
  left: 61.1%;
  top: 240px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.28;
  z-index: 1;
}
.cy-services .cy-service-core .cy-service-rings span {
  position: absolute;
  border: 1px solid rgba(167, 139, 250, 0.26);
  border-radius: 50%;
}
.cy-services .cy-service-core .cy-service-rings span:nth-child(1) {
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
}
.cy-services .cy-service-core .cy-service-rings span:nth-child(2) {
  left: 47.5px;
  top: 47.5px;
  width: 185px;
  height: 185px;
}
.cy-services .cy-service-core .cy-service-rings span:nth-child(3) {
  left: 90px;
  top: 90px;
  width: 100px;
  height: 100px;
}
.cy-services .cy-service-core .cy-service-rings span:nth-child(4) {
  left: 118px;
  top: 118px;
  width: 44px;
  height: 44px;
}
.cy-services .cy-service-core .cy-service-dots {
  position: absolute;
  left: 54.86%;
  top: 320px;
  width: 78px;
  height: 58px;
  opacity: 0.32;
  background-image: radial-gradient(circle, rgba(167, 139, 250, 0.58) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 1;
}
.cy-services .cy-service-support {
  background: #101585;
  padding: 32px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-services .cy-service-support {
    border-radius: 0 20px 20px 0;
  }
}
.cy-services .cy-service-support .cy-support-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2182em;
  color: #FFDD44;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
  margin-bottom: 24px;
}
.cy-services .cy-service-support .cy-support-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
@media only screen and (min-width: 640px) {
  .cy-services .cy-service-support .cy-support-items {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-service-support .cy-support-items {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 768px) {
  .cy-services .cy-service-support .cy-support-items .cy-support-item:first-child,
  .cy-services .cy-service-support .cy-support-items .cy-support-item:nth-child(6) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
.cy-services .cy-service-support .cy-support-item {
  display: block;
  min-height: 117px;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease;
  transition: background 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.cy-services .cy-service-support .cy-support-item:hover {
  background: rgba(255, 255, 255, 0.09);
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.cy-services .cy-service-support .cy-support-item i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 7px;
  background: rgba(255, 221, 68, 0.15);
  color: #FFDD44;
  font-size: 1em;
  line-height: 1em;
}
.cy-services .cy-service-support .cy-support-item h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-services .cy-service-support .cy-support-item p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
}

/* -------------------------------------------------- Impact */
.cy-impact {
  background: #FFDD44;
  color: #101585;
  text-align: center;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) {
  .cy-impact {
    padding-top: 192px;
    padding-bottom: 192px;
  }
}
.cy-impact .cy-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: none;
  min-height: 420px;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 768px) {
  .cy-impact .cy-container {
    min-height: 556px;
    padding-left: 48px;
    padding-right: 48px;
  }
}
.cy-impact .cy-eyebrow {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  color: #101585;
  margin: 0 0 48px;
  font-weight: 700;
  letter-spacing: 0.2893em;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-impact .cy-eyebrow .line {
  width: 32px;
  background: #101585;
}
.cy-impact .cy-impact-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  color: #101585;
  margin: 0 auto 68px;
  width: 100%;
  max-width: 1300px;
  font-size: clamp(30px, 8.6vw, 46px);
  text-transform: uppercase;
}
.cy-impact .cy-impact-title span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cy-impact .cy-impact-title {
    font-size: min((100vw - 104px) / 11, 118px);
    line-height: 0.9;
  }
  .cy-impact .cy-impact-title span {
    white-space: nowrap;
  }
}
.cy-impact .cy-impact-title .italic {
  display: inline;
  font-style: italic;
  font-weight: 300;
}
.cy-impact .cy-impact-stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  border-top: 2px solid #101585;
  padding-top: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-impact .cy-impact-stats {
    -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 64px;
    gap: 48px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-impact .cy-impact-stats .cy-stat:nth-child(2) {
    border-left: 2px solid rgba(16, 21, 133, 0.2);
    border-right: 2px solid rgba(16, 21, 133, 0.2);
    padding: 0 34px;
  }
}
.cy-impact .cy-impact-stats .cy-stat .cy-stat-value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.0017em;
  margin-bottom: 16px;
  font-size: 56px;
}
@media only screen and (min-width: 768px) {
  .cy-impact .cy-impact-stats .cy-stat .cy-stat-value {
    font-size: 72px;
  }
}
.cy-impact .cy-impact-stats .cy-stat .cy-stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.0893em;
  color: rgba(16, 21, 133, 0.7);
  font-size: 0.875em;
  line-height: 1.4285714286em;
}

/* -------------------------------------------------- Featured Work */
.cy-work {
  background: #fff;
  color: #101585;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .cy-work {
    padding: 128px 0;
  }
}
.cy-work .cy-work-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cy-work .cy-work-head h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #101585;
  margin: 0;
  max-width: 28rem;
  font-size: 30px;
  line-height: 1.15;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-head h2 {
    font-size: 48px;
  }
}
.cy-work .cy-work-head .cy-work-all {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border-bottom: 1px solid #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  color: #101585;
  -webkit-transition: color 0.2s ease, border-color 0.2s ease;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.cy-work .cy-work-head .cy-work-all:hover {
  color: #A78BFA;
  border-color: #A78BFA;
}
.cy-work .cy-work-head .cy-work-all:hover .cy-work-arrow {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.cy-work .cy-work-head .cy-work-all .cy-work-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cy-work .cy-work-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
@media screen and (min-width: 1100px) {
  .cy-work .cy-work-body {
    -ms-grid-columns: 5fr 32px 7fr;
    grid-template-columns: 5fr 7fr;
    gap: 32px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.cy-work .cy-work-index {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-top: 1px solid #e5e7eb;
}
@media screen and (min-width: 1100px) {
  .cy-work .cy-work-index {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cy-work .cy-work-index-item {
  position: relative;
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
  cursor: pointer;
}
.cy-work .cy-work-index-item:before {
  display: none;
  content: none;
}
.cy-work .cy-work-index-item .cy-work-fill {
  position: absolute;
  inset: 0;
  background: #F9FAFB;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-work .cy-work-index-item .cy-work-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 24px 16px;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 640px) {
  .cy-work .cy-work-index-item .cy-work-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-index-item .cy-work-row {
    padding: 32px 16px;
  }
}
.cy-work .cy-work-index-item .cy-work-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 16px;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-index-item .cy-work-left {
    gap: 24px;
  }
}
.cy-work .cy-work-index-item .cy-work-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.05em;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.cy-work .cy-work-index-item .cy-work-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #9ca3af;
  font-size: 28px;
  line-height: 1.1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-index-item .cy-work-title {
    font-size: 40px;
  }
}
.cy-work .cy-work-index-item .cy-work-tag {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6a7282;
  text-align: right;
  font-size: 0.6875em;
  line-height: 1.4545454545em;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-index-item .cy-work-tag {
    font-size: 0.75em;
    line-height: 1.3333333333em;
  }
}
.cy-work .cy-work-index-item .cy-work-panel {
  display: none;
  position: relative;
  overflow: hidden;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1), -ms-grid-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-work .cy-work-index-item .cy-work-panel-inner {
  min-height: 0;
  overflow: hidden;
}
.cy-work .cy-work-index-item .cy-work-panel-link {
  display: block;
}
.cy-work .cy-work-index-item .cy-work-panel-img {
  display: block;
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  border-radius: 12px;
  border: 1px solid rgba(16, 21, 133, 0.12);
}
.cy-work .cy-work-index-item .cy-work-open {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 16px 0 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #101585;
  font-size: 0.6875em;
  line-height: 1.4545454545em;
}
.cy-work .cy-work-index-item .cy-work-open i {
  font-size: 0.625em;
  line-height: 1em;
}
.cy-work .cy-work-index-item.active .cy-work-fill, .cy-work .cy-work-index-item:hover .cy-work-fill {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.cy-work .cy-work-index-item.active .cy-work-num, .cy-work .cy-work-index-item:hover .cy-work-num {
  color: #A78BFA;
}
.cy-work .cy-work-index-item.active .cy-work-title, .cy-work .cy-work-index-item:hover .cy-work-title {
  color: #101585;
}
.cy-work .cy-work-index-item.active .cy-work-tag, .cy-work .cy-work-index-item:hover .cy-work-tag {
  opacity: 1;
  color: #101585;
}
@media (hover: none), (pointer: coarse) {
  .cy-work .cy-work-index-item .cy-work-panel {
    display: -ms-grid;
    display: grid;
    padding: 0 16px;
  }
  .cy-work .cy-work-index-item.active .cy-work-panel {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}
.cy-work .cy-work-stage {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (hover: none), (pointer: coarse) {
  .cy-work .cy-work-stage {
    display: none;
  }
}
@media screen and (min-width: 1100px) {
  .cy-work .cy-work-stage {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.cy-work .cy-work-corner {
  position: absolute;
  z-index: 2;
  width: 56px;
  height: 56px;
  pointer-events: none;
}
.cy-work .cy-work-corner.cy-work-corner-tl {
  top: -10px;
  left: -10px;
  border-top: 3px solid #A78BFA;
  border-left: 3px solid #A78BFA;
}
.cy-work .cy-work-corner.cy-work-corner-br {
  right: -10px;
  bottom: -10px;
  border-right: 3px solid #FFDD44;
  border-bottom: 3px solid #FFDD44;
}
@media only screen and (min-width: 768px) {
  .cy-work .cy-work-corner {
    width: 72px;
    height: 72px;
  }
  .cy-work .cy-work-corner.cy-work-corner-tl {
    top: -14px;
    left: -14px;
  }
  .cy-work .cy-work-corner.cy-work-corner-br {
    right: -14px;
    bottom: -14px;
  }
}
.cy-work .cy-work-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #101585;
}
@media screen and (min-width: 1100px) {
  .cy-work .cy-work-preview {
    aspect-ratio: auto;
    height: 100%;
  }
}
.cy-work .cy-work-preview .cy-work-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  opacity: 0;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-work .cy-work-preview .cy-work-preview-img.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* -------------------------------------------------- Pricing / Packages */
.cy-pricing {
  background: #101585;
  color: #fff;
  padding: 160px 0;
}
.cy-pricing.primary-background {
  background: #101585;
  color: #fff;
}
.cy-pricing.secondary-background {
  background: #A78BFA;
  color: #101585;
}
.cy-pricing.light-background {
  background: #edecee;
  color: #101585;
}
.cy-pricing.whitesmoke-background, .cy-pricing.whitesmoke {
  background: whitesmoke;
  color: #101585;
}
.cy-pricing.white-background, .cy-pricing.white {
  background: #fff;
  color: #101585;
}
.cy-pricing.secondary-background .cy-pricing-eyebrow,
.cy-pricing.secondary-background h2, .cy-pricing.light-background .cy-pricing-eyebrow,
.cy-pricing.light-background h2, .cy-pricing.whitesmoke-background .cy-pricing-eyebrow,
.cy-pricing.whitesmoke-background h2, .cy-pricing.whitesmoke .cy-pricing-eyebrow,
.cy-pricing.whitesmoke h2, .cy-pricing.white-background .cy-pricing-eyebrow,
.cy-pricing.white-background h2, .cy-pricing.white .cy-pricing-eyebrow,
.cy-pricing.white h2 {
  color: #101585;
}
.cy-pricing.secondary-background .cy-pricing-intro, .cy-pricing.light-background .cy-pricing-intro, .cy-pricing.whitesmoke-background .cy-pricing-intro, .cy-pricing.whitesmoke .cy-pricing-intro, .cy-pricing.white-background .cy-pricing-intro, .cy-pricing.white .cy-pricing-intro {
  color: rgba(16, 21, 133, 0.72);
}
.cy-pricing.padded, .cy-pricing.padded-top, .cy-pricing.padded-bottom {
  padding: 160px 0;
}
.cy-pricing .cy-pricing-wrap {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-wrap {
    padding: 0 48px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-pricing .cy-pricing-wrap {
    padding: 0 80px;
  }
}
.cy-pricing .cy-pricing-eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0;
  color: #FFDD44;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
}
.secondary-background .cy-pricing .cy-pricing-eyebrow, .light-background .cy-pricing .cy-pricing-eyebrow, .whitesmoke-background .cy-pricing .cy-pricing-eyebrow, .whitesmoke .cy-pricing .cy-pricing-eyebrow, .white-background .cy-pricing .cy-pricing-eyebrow, .white .cy-pricing .cy-pricing-eyebrow {
  color: #101585;
}
.cy-pricing .cy-pricing-eyebrow .line {
  width: 32px;
  height: 1px;
  background: #FFDD44;
}
.cy-pricing h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.023em;
  color: #fff;
  margin: 0;
  padding: 48px 0 24px;
  font-size: clamp(36px, 11vw, 48px);
  line-height: 1.1;
}
.secondary-background .cy-pricing h2, .light-background .cy-pricing h2, .whitesmoke-background .cy-pricing h2, .whitesmoke .cy-pricing h2, .white-background .cy-pricing h2, .white .cy-pricing h2 {
  color: #101585;
}
.cy-pricing h2 span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cy-pricing h2 {
    font-size: 72px;
    line-height: 1.1;
  }
}
.cy-pricing .cy-pricing-intro {
  margin: 0;
  padding-bottom: 80px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: -0.0225em;
  font-size: 1.25em;
  line-height: 1.625em;
}
.secondary-background .cy-pricing .cy-pricing-intro, .light-background .cy-pricing .cy-pricing-intro, .whitesmoke-background .cy-pricing .cy-pricing-intro, .whitesmoke .cy-pricing .cy-pricing-intro, .white-background .cy-pricing .cy-pricing-intro, .white .cy-pricing .cy-pricing-intro {
  color: rgba(16, 21, 133, 0.72);
}
.cy-pricing .cy-pricing-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-cards {
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.cy-pricing .cy-pricing-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  -ms-flex-item-align: start;
      -ms-grid-row-align: start;
      align-self: start;
}
.cy-pricing .cy-pricing-card.cy-pricing-starter {
  background: #f9fafb;
  color: #101585;
}
.cy-pricing .cy-pricing-card.cy-pricing-growth {
  background: #FFDD44;
  color: #101585;
}
.cy-pricing .cy-pricing-card.cy-pricing-bespoke {
  background: #e8e4ff;
  color: #101585;
}
.cy-pricing .cy-pricing-card .cy-pricing-badge {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #101585;
  color: #FFDD44;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
}
.cy-pricing .cy-pricing-card .cy-pricing-card-inner {
  padding: 48px 28px;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-card .cy-pricing-card-inner {
    padding: 48px 40px;
  }
}
.cy-pricing .cy-pricing-card .cy-pricing-label {
  margin: 0;
  color: #99a1af;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.154em;
  font-size: 0.8125em;
  line-height: 1.2307692308em;
}
.cy-pricing-card.cy-pricing-growth .cy-pricing .cy-pricing-card .cy-pricing-label {
  color: rgba(16, 21, 133, 0.6);
}
.cy-pricing-card.cy-pricing-bespoke .cy-pricing .cy-pricing-card .cy-pricing-label {
  color: rgba(16, 21, 133, 0.8);
}
.cy-pricing .cy-pricing-card h3 {
  padding-top: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0;
  color: #101585;
  font-size: clamp(28px, 8vw, 40px);
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-card h3 {
    font-size: 2.5em;
    line-height: 1.1em;
  }
}
.cy-pricing .cy-pricing-card .cy-pricing-price {
  padding-top: 32px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  color: #101585;
  letter-spacing: -0.038em;
  font-size: clamp(34px, 10vw, 52px);
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-card .cy-pricing-price {
    font-size: 3.25em;
    line-height: 1em;
  }
}
.cy-pricing .cy-pricing-card.cy-pricing-bespoke .cy-pricing-price {
  letter-spacing: -0.0375em;
}
@media only screen and (min-width: 768px) {
  .cy-pricing .cy-pricing-card.cy-pricing-bespoke .cy-pricing-price {
    font-size: 2.5em;
    line-height: 1.2em;
  }
}
.cy-pricing .cy-pricing-card .cy-pricing-subtitle {
  margin: 0;
  padding-top: 8px;
  color: rgba(16, 21, 133, 0.38);
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-pricing .cy-pricing-card .cy-pricing-divider {
  margin: 0;
  margin-top: 33px;
  height: 1px;
  background: rgba(16, 21, 133, 0.2);
}
.cy-pricing-card.cy-pricing-starter .cy-pricing .cy-pricing-card .cy-pricing-divider {
  background: #e5e7eb;
}
.cy-pricing .cy-pricing-card .cy-pricing-desc {
  margin: 0;
  padding-top: 32px;
  font-weight: 300;
  color: rgba(16, 21, 133, 0.62);
  letter-spacing: -0.01875em;
  font-size: 1em;
  line-height: 1.625em;
}
.cy-pricing-card.cy-pricing-growth .cy-pricing .cy-pricing-card .cy-pricing-desc, .cy-pricing-card.cy-pricing-bespoke .cy-pricing .cy-pricing-card .cy-pricing-desc {
  color: rgba(16, 21, 133, 0.8);
}
.cy-pricing .cy-pricing-card .cy-pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 32px;
}
.cy-pricing .cy-pricing-card .cy-pricing-features li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #101585;
  font-weight: 400;
  font-size: 0.9375em;
  line-height: 1.4666666667em;
  padding-left: 0;
  list-style: none !important;
}
.cy-pricing .cy-pricing-card .cy-pricing-features li::before {
  display: none;
}
.cy-pricing .cy-pricing-card .cy-pricing-features .cy-pricing-dash {
  color: #a78bfa;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1em;
  line-height: 1em;
  line-height: 1;
}
.cy-pricing-card.cy-pricing-growth .cy-pricing .cy-pricing-card .cy-pricing-features .cy-pricing-dash, .cy-pricing-card.cy-pricing-bespoke .cy-pricing .cy-pricing-card .cy-pricing-features .cy-pricing-dash {
  color: #101585;
}
.cy-pricing .cy-pricing-card .cy-pricing-features .cy-pricing-feature-text {
  display: inline-block;
}
.cy-pricing .cy-pricing-card .cy-pricing-btn {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 18px 12px;
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.165em;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.75em;
  line-height: 1em;
  cursor: default;
  background: transparent;
  border: 2px solid #101585;
  color: #101585;
}
.cy-pricing-card.cy-pricing-growth .cy-pricing .cy-pricing-card .cy-pricing-btn {
  background: #101585;
  border-color: #101585;
  color: #FFDD44;
}

/* -------------------------------------------------- Testimonial */
.cy-testimonial {
  background: #101585;
  color: #fff;
  overflow: hidden;
  padding: 128px 0;
}
@media only screen and (min-width: 768px) {
  .cy-testimonial {
    padding: 160px 0;
  }
}
.cy-testimonial .cy-testimonial-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 1100px) {
  .cy-testimonial .cy-testimonial-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 88px;
  }
}
.cy-testimonial .cy-testimonial-media {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .cy-testimonial .cy-testimonial-media {
    width: 33.333%;
  }
}
.cy-testimonial .cy-testimonial-media .cy-testimonial-frame {
  position: relative;
  aspect-ratio: 3/4;
}
.cy-testimonial .cy-testimonial-media .cy-testimonial-frame:before {
  content: "";
  position: absolute;
  top: 16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(167, 139, 250, 0.5);
  z-index: 0;
}
.cy-testimonial .cy-testimonial-media .cy-testimonial-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.cy-testimonial .cy-testimonial-body {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .cy-testimonial .cy-testimonial-body {
    width: 66.666%;
  }
}
.cy-testimonial .cy-testimonial-body .cy-rule {
  width: 48px;
  height: 1px;
  background: #FFDD44;
  margin-bottom: 48px;
}
.cy-testimonial .cy-testimonial-body blockquote {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  letter-spacing: 0.004em;
  max-width: 832px;
  margin: 0 0 48px;
  font-size: 24px;
  border-left: none;
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  .cy-testimonial .cy-testimonial-body blockquote {
    font-size: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-testimonial .cy-testimonial-body blockquote {
    font-size: 60px;
  }
}
.cy-testimonial .cy-testimonial-body .cy-testimonial-name {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #FFDD44;
  font-size: 1.25em;
  line-height: 1.4em;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.cy-testimonial .cy-testimonial-body .cy-testimonial-role {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-testimonial.noimage .cy-testimonial-grid {
  gap: 0;
}
.cy-testimonial.noimage .cy-testimonial-body {
  width: 100%;
}

/* -------------------------------------------------- Studio */
.cy-studio {
  background: #fff;
  color: #101585;
  padding: 128px 0;
}
.cy-studio.padded, .cy-studio.padded-top, .cy-studio.padded-bottom {
  padding: 128px 0;
}
.cy-studio .cy-studio-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (min-width: 1100px) {
  .cy-studio .cy-studio-grid {
    -ms-grid-columns: minmax(0, 608px) 128px minmax(0, 608px);
    grid-template-columns: repeat(2, minmax(0, 608px));
    gap: 128px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 760px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cy-studio .cy-studio-image {
  position: relative;
  width: 100%;
  aspect-ratio: 608/760;
  overflow: hidden;
  background: #f3f4f6;
}
@media screen and (min-width: 1100px) {
  .cy-studio .cy-studio-image {
    height: 760px;
  }
}
.cy-studio .cy-studio-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.cy-studio .cy-studio-body {
  width: 100%;
}
@media screen and (min-width: 1100px) {
  .cy-studio .cy-studio-body {
    max-width: 608px;
  }
}
.cy-studio .cy-studio-body .cy-eyebrow {
  margin-bottom: 0;
  gap: 16px;
  color: #A78BFA;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.cy-studio .cy-studio-body .cy-eyebrow .line {
  width: 32px;
  background: #A78BFA;
}
.cy-studio .cy-studio-body h3 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.0206em;
  line-height: 1.1;
  margin: 0;
  color: #101585;
  padding-top: 32px;
  font-size: clamp(28px, 8.4vw, 40px);
}
@media only screen and (min-width: 768px) {
  .cy-studio .cy-studio-body h3 {
    font-size: 60px;
  }
}
.cy-studio .cy-studio-body p {
  color: #888888;
  font-weight: 300;
  margin: 0;
  padding-top: 32px;
  line-height: 1.625;
  letter-spacing: -0.0225em;
  font-size: 1.25em;
  line-height: 1.625em;
}
.cy-studio .cy-studio-stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  border-top: 1px solid #e5e7eb;
  margin-top: 48px;
  padding-top: 32px;
}
.cy-studio .cy-studio-stats .cy-stat-value {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 2.25em;
  line-height: 1.1111111111em;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.cy-studio .cy-studio-stats .cy-stat-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.089em;
  color: #9ca3af;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}

/* -------------------------------------------------- CTA */
.cy-cta {
  background: #101585;
  color: #fff;
  text-align: center;
  padding: 192px 0;
}
.cy-cta.padded, .cy-cta.padded-top, .cy-cta.padded-bottom {
  padding: 192px 0;
}
.cy-cta .cy-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cy-cta .cy-cta-rule {
  width: 64px;
  height: 1px;
  background: #A78BFA;
  margin-bottom: 48px;
}
.cy-cta h2 {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.98;
  color: #fff;
  margin: 0 0 48px;
  font-size: 56px;
}
@media only screen and (min-width: 768px) {
  .cy-cta h2 {
    font-size: 112px;
  }
}
.cy-cta h2 .solid {
  display: block;
}
.cy-cta h2 .outline {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 2px #A78BFA;
  padding-top: 6px;
}
.cy-cta .cy-btn-yellow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 24px 40px;
  border-radius: 0;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  text-decoration: none;
  -webkit-transition: background 0.25s ease;
  transition: background 0.25s ease;
}
.cy-cta .cy-btn-yellow:hover {
  background: #ffe46d;
}

/* -------------------------------------------------- Shared section spacing */
section.flex-content[class*=cy-]:not(.cy-page-header) {
  padding-top: 0;
  padding-bottom: 0;
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded {
    padding-top: 192px;
    padding-bottom: 192px;
  }
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded.tight {
  padding-top: 48px;
  padding-bottom: 48px;
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded-top {
  padding-top: 64px;
}
@media only screen and (min-width: 768px) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded-top {
    padding-top: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded-top {
    padding-top: 192px;
  }
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded-top.tight {
  padding-top: 48px;
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded-bottom {
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded-bottom {
    padding-bottom: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  section.flex-content[class*=cy-]:not(.cy-page-header).padded-bottom {
    padding-bottom: 192px;
  }
}
section.flex-content[class*=cy-]:not(.cy-page-header).padded-bottom.tight {
  padding-bottom: 48px;
}

/* -------------------------------------------------- Footer */
.cy-footer {
  background: #101585;
  color: #fff;
  padding: 48px 24px 32px;
}
@media only screen and (min-width: 768px) {
  .cy-footer {
    padding: 48px 48px 32px;
  }
}
.cy-footer .cy-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 40px;
}
@media only screen and (min-width: 768px) {
  .cy-footer .cy-footer-inner {
    padding-top: 64px;
  }
}
.cy-footer .cy-footer-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}
@media only screen and (min-width: 768px) {
  .cy-footer .cy-footer-grid {
    -ms-grid-columns: minmax(0, 1fr) 32px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 32px;
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-footer .cy-footer-grid {
    -ms-grid-columns: minmax(0, 1.6fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr) 32px minmax(0, 1fr);
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}
.cy-footer .cy-footer-brand .cy-footer-logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 0 32px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  font-size: 40px;
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .cy-footer .cy-footer-brand .cy-footer-logo {
    font-size: 60px;
  }
}
.cy-footer .cy-footer-brand .cy-footer-logo img {
  display: block;
  width: auto;
  max-width: min(360px, 100%);
  max-height: 70px;
}
.cy-footer .cy-footer-brand .cy-footer-logo span {
  display: block;
}
.cy-footer .cy-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  max-width: 24rem;
  font-size: 1.125em;
  line-height: 1.5555555556em;
}
.cy-footer .cy-footer-col {
  width: 100%;
}
.cy-footer .cy-footer-col h4 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #A78BFA;
  font-size: 0.8125rem;
  line-height: 1.35;
  margin: 0 0 20px;
}
.cy-footer .cy-footer-col ul {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  gap: 0 !important;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cy-footer .cy-footer-col ul li {
  display: block !important;
  width: 100%;
  margin: 0 0 10px !important;
  padding: 0 !important;
  text-align: left !important;
}
.cy-footer .cy-footer-col ul a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.014em;
  white-space: nowrap;
  font-size: 0.9375rem;
  line-height: 1.4;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.cy-footer .cy-footer-col ul a i {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cy-footer .cy-footer-col ul a:hover {
  color: #FFDD44;
}
.cy-footer .cy-footer-col ul a:hover i {
  -webkit-transform: translate(2px, -2px);
      -ms-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.cy-footer .cy-footer-contact ul li {
  margin: 0 0 14px !important;
}
.cy-footer .cy-footer-contact .cy-footer-contact-label {
  display: block;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.6875rem;
  line-height: 1.4;
}
.cy-footer .cy-footer-contact .cy-footer-contact-value,
.cy-footer .cy-footer-contact a {
  white-space: normal;
}
.cy-footer .cy-footer-contact .cy-footer-contact-value {
  display: block;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.014em;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.cy-footer .cy-footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.35;
}
@media only screen and (min-width: 768px) {
  .cy-footer .cy-footer-bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cy-footer .cy-footer-bottom .cy-footer-legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px 32px;
}
.cy-footer .cy-footer-bottom .cy-footer-legal span {
  color: rgba(255, 255, 255, 0.4);
}
.cy-footer .cy-footer-bottom .cy-footer-legal a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #FFDD44;
  font-weight: 700;
}
.cy-footer .cy-footer-bottom .cy-footer-legal a i {
  font-size: 0.8em;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cy-footer .cy-footer-bottom .cy-footer-legal a:hover {
  color: #fff;
}
.cy-footer .cy-footer-bottom .cy-footer-legal a:hover i {
  -webkit-transform: translate(2px, -2px);
      -ms-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.cy-footer .cy-footer-bottom p {
  margin: 0;
}

/* -------------------------------------------------- Page Header (inner pages) */
.cy-page-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  background: #101585;
  color: #fff;
  text-align: center;
  padding: 140px 0 80px;
  min-height: 420px;
}
@media only screen and (min-width: 768px) {
  .cy-page-header {
    padding: 180px 0 100px;
    min-height: 520px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-page-header.cy-page-header-short {
    min-height: 440px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-page-header.cy-page-header-tall {
    min-height: 680px;
  }
}
.cy-page-header .cy-page-header-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cy-page-header .cy-page-header-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cy-page-header .cy-page-header-bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 133, 0.55);
}
.cy-page-header .cy-container {
  position: relative;
  z-index: 1;
}
.cy-page-header .cy-page-header-content {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cy-page-header .cy-page-header-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  margin: 0 0 32px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFDD44;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
@media only screen and (min-width: 768px) {
  .cy-page-header .cy-page-header-eyebrow {
    margin-bottom: 48px;
  }
}
.cy-page-header .cy-page-header-eyebrow .line {
  display: block;
  width: 32px;
  height: 1px;
  background: #FFDD44;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-page-header .cy-page-header-title {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.0233em;
  line-height: 1.097;
  font-size: 44px;
  max-width: 920px;
}
@media only screen and (min-width: 768px) {
  .cy-page-header .cy-page-header-title {
    font-size: 72px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-page-header .cy-page-header-title {
    font-size: 72px;
  }
}
.cy-page-header .cy-page-header-intro {
  max-width: 700px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: -0.0225em;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
@media only screen and (min-width: 768px) {
  .cy-page-header .cy-page-header-intro {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}

/* -------------------------------------------------- Contact (Get in Touch) */
section.cy-contact.flex-content {
  background: #fff;
  color: #101585;
  padding: 64px 0;
}
section.cy-contact.flex-content.padded, section.cy-contact.flex-content.padded-top, section.cy-contact.flex-content.padded-bottom {
  padding: 64px 0;
}
@media only screen and (min-width: 768px) {
  section.cy-contact.flex-content {
    padding: 96px 0;
  }
  section.cy-contact.flex-content.padded, section.cy-contact.flex-content.padded-top, section.cy-contact.flex-content.padded-bottom {
    padding: 96px 0;
  }
}
@media screen and (min-width: 1100px) {
  section.cy-contact.flex-content {
    padding: 128px 0;
  }
  section.cy-contact.flex-content.padded, section.cy-contact.flex-content.padded-top, section.cy-contact.flex-content.padded-bottom {
    padding: 128px 0;
  }
}
section.cy-contact.flex-content .cy-container {
  max-width: 1550px;
  padding-left: 24px;
  padding-right: 24px;
}
@media only screen and (min-width: 768px) {
  section.cy-contact.flex-content .cy-container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media screen and (min-width: 1100px) {
  section.cy-contact.flex-content .cy-container {
    padding-left: 80px;
    padding-right: 80px;
  }
}
section.cy-contact.flex-content .cy-contact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 56px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  section.cy-contact.flex-content .cy-contact-grid {
    -ms-grid-columns: 1fr 80px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
section.cy-contact.flex-content .cy-contact-form-col,
section.cy-contact.flex-content .cy-contact-info-col {
  min-width: 0;
}
section.cy-contact.flex-content .cy-contact-heading {
  margin-bottom: 48px;
}
section.cy-contact.flex-content .cy-contact-form-title {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #101585;
  letter-spacing: -0.85px;
  font-size: 2.25em;
  line-height: 1.1111111111em;
}
@media only screen and (min-width: 768px) {
  section.cy-contact.flex-content .cy-contact-form-title {
    font-size: 3em;
    line-height: 1em;
  }
}
section.cy-contact.flex-content .cy-contact-rule {
  display: block;
  width: 64px;
  height: 1px;
  background: #A78BFA;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7,
section.cy-contact.flex-content .cy-contact-form .wpcf7-form {
  width: 100%;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
}
section.cy-contact.flex-content .cy-contact-form .cy-form-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}
@media only screen and (min-width: 640px) {
  section.cy-contact.flex-content .cy-contact-form .cy-form-row {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
section.cy-contact.flex-content .cy-contact-form .cy-form-row > p,
section.cy-contact.flex-content .cy-contact-form .wpcf7-form > p,
section.cy-contact.flex-content .cy-contact-form .cy-form-field,
section.cy-contact.flex-content .cy-contact-form p {
  width: 100%;
  margin: 0;
  padding: 0;
}
section.cy-contact.flex-content .cy-contact-form label {
  display: block;
  margin: 0 0 12px;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #99a1af;
  font-size: 0.75em;
  line-height: 1.3333333333em;
}
section.cy-contact.flex-content .cy-contact-form #altEmail_container,
section.cy-contact.flex-content .cy-contact-form .altEmail_container,
section.cy-contact.flex-content .cy-contact-form .wpa_hidden_field {
  position: absolute !important;
  left: -9999px !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  z-index: -1000 !important;
}
section.cy-contact.flex-content .cy-contact-form #altEmail_container label,
section.cy-contact.flex-content .cy-contact-form #altEmail_container input,
section.cy-contact.flex-content .cy-contact-form .altEmail_container label,
section.cy-contact.flex-content .cy-contact-form .altEmail_container input,
section.cy-contact.flex-content .cy-contact-form .wpa_hidden_field label,
section.cy-contact.flex-content .cy-contact-form .wpa_hidden_field input {
  height: 1px !important;
  width: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
  width: 100%;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-form-control-wrap:before {
  display: none;
  content: none;
}
section.cy-contact.flex-content .cy-contact-form input[type=text],
section.cy-contact.flex-content .cy-contact-form input[type=email],
section.cy-contact.flex-content .cy-contact-form input[type=tel],
section.cy-contact.flex-content .cy-contact-form input[type=url],
section.cy-contact.flex-content .cy-contact-form select,
section.cy-contact.flex-content .cy-contact-form textarea {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-shadow: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #6a7282;
  letter-spacing: -0.3px;
  font-size: 1em;
  line-height: 1.625em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]:focus,
section.cy-contact.flex-content .cy-contact-form input[type=email]:focus,
section.cy-contact.flex-content .cy-contact-form input[type=tel]:focus,
section.cy-contact.flex-content .cy-contact-form input[type=url]:focus,
section.cy-contact.flex-content .cy-contact-form select:focus,
section.cy-contact.flex-content .cy-contact-form textarea:focus {
  outline: none;
  border-color: #A78BFA;
  background: #fff;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]::-webkit-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=email]::-webkit-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=tel]::-webkit-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=url]::-webkit-input-placeholder, section.cy-contact.flex-content .cy-contact-form select::-webkit-input-placeholder, section.cy-contact.flex-content .cy-contact-form textarea::-webkit-input-placeholder {
  color: #6a7282;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]::-moz-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=email]::-moz-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=tel]::-moz-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=url]::-moz-placeholder, section.cy-contact.flex-content .cy-contact-form select::-moz-placeholder, section.cy-contact.flex-content .cy-contact-form textarea::-moz-placeholder {
  color: #6a7282;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]:-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=email]:-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=tel]:-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=url]:-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form select:-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form textarea:-ms-input-placeholder {
  color: #6a7282;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]::-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=email]::-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=tel]::-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form input[type=url]::-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form select::-ms-input-placeholder, section.cy-contact.flex-content .cy-contact-form textarea::-ms-input-placeholder {
  color: #6a7282;
}
section.cy-contact.flex-content .cy-contact-form input[type=text]::placeholder,
section.cy-contact.flex-content .cy-contact-form input[type=email]::placeholder,
section.cy-contact.flex-content .cy-contact-form input[type=tel]::placeholder,
section.cy-contact.flex-content .cy-contact-form input[type=url]::placeholder,
section.cy-contact.flex-content .cy-contact-form select::placeholder,
section.cy-contact.flex-content .cy-contact-form textarea::placeholder {
  color: #6a7282;
}
section.cy-contact.flex-content .cy-contact-form input,
section.cy-contact.flex-content .cy-contact-form select {
  height: 64px;
  min-height: 64px;
}
section.cy-contact.flex-content .cy-contact-form textarea {
  height: 160px;
  min-height: 160px;
  max-height: 160px;
  resize: vertical;
}
section.cy-contact.flex-content .cy-contact-form select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23101585' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}
section.cy-contact.flex-content .cy-contact-form .cy-select,
section.cy-contact.flex-content .cy-contact-form .wpcf7-form-control-wrap[data-name=your-package] {
  position: relative;
  display: block;
}
section.cy-contact.flex-content .cy-contact-form .cy-select::after,
section.cy-contact.flex-content .cy-contact-form .wpcf7-form-control-wrap[data-name=your-package]::after {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #101585;
  border-bottom: 2px solid #101585;
  content: "";
  pointer-events: none;
  -webkit-transform: translateY(-65%) rotate(45deg);
      -ms-transform: translateY(-65%) rotate(45deg);
          transform: translateY(-65%) rotate(45deg);
}
section.cy-contact.flex-content .cy-contact-form .cy-select select,
section.cy-contact.flex-content .cy-contact-form .wpcf7-form-control-wrap[data-name=your-package] select {
  background-image: none;
  -webkit-transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit-wrap {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-top: 24px;
  padding: 24px 40px;
  max-width: 100%;
  height: 64px;
  background: #FFDD44;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit-wrap img {
  display: block;
  width: 20px;
  height: 20px;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit-wrap:hover {
  background: #fff;
  -webkit-box-shadow: inset 0 0 0 1px #101585;
          box-shadow: inset 0 0 0 1px #101585;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit,
section.cy-contact.flex-content .cy-contact-form input[type=submit] {
  display: block;
  margin: 0;
  padding: 0;
  min-width: 0;
  height: 16px;
  width: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  cursor: pointer;
  font-size: 0.75em;
  line-height: 1.3333333333em;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit:hover,
section.cy-contact.flex-content .cy-contact-form input[type=submit]:hover {
  background: transparent;
  color: #101585;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 24px 40px;
  height: 64px;
  background: #FFDD44;
}
section.cy-contact.flex-content .cy-contact-form .cy-contact-submit img {
  display: block;
  width: 20px;
  height: 20px;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-response-output {
  margin: 16px 0 0;
  border-radius: 8px;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-not-valid-tip {
  color: #d64545;
  font-size: 0.8125em;
  line-height: 1.3846153846em;
}
section.cy-contact.flex-content .cy-contact-form .cy-input {
  display: block;
}
section.cy-contact.flex-content .cy-contact-form .wpcf7-spinner {
  display: none;
}
section.cy-contact.flex-content .cy-contact-info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
}
section.cy-contact.flex-content .cy-contact-info-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
section.cy-contact.flex-content .cy-contact-info-eyebrow {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #A78BFA;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
section.cy-contact.flex-content .cy-contact-info-heading {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #101585;
  letter-spacing: -0.85px;
  font-size: 2.25em;
  line-height: 1.1111111111em;
}
@media only screen and (min-width: 768px) {
  section.cy-contact.flex-content .cy-contact-info-heading {
    font-size: 3em;
    line-height: 1em;
  }
}
section.cy-contact.flex-content .cy-contact-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
section.cy-contact.flex-content .cy-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  width: 100%;
  min-height: 40px;
  margin: 0;
  padding: 0;
  color: #101585;
  font-size: 1em;
  line-height: 1.625em;
}
section.cy-contact.flex-content .cy-contact-item:before {
  display: none;
  content: none;
}
section.cy-contact.flex-content .cy-contact-item-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #F9FAFB;
  border: 1px solid #e5e7eb;
  color: #101585;
  font-size: 1.125em;
  line-height: 1.1111111111em;
}
section.cy-contact.flex-content .cy-contact-item-icon img {
  display: block;
  width: 20px;
  height: 20px;
}
section.cy-contact.flex-content .cy-contact-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  min-height: 40px;
  min-width: 0;
  word-break: break-word;
}
section.cy-contact.flex-content .cy-contact-item-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #99a1af;
  font-size: 0.625em;
  line-height: 1.6em;
}
section.cy-contact.flex-content .cy-contact-item-value {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #101585;
  letter-spacing: -0.3px;
  font-size: 1em;
  line-height: 1.5em;
}
section.cy-contact.flex-content .cy-contact-item-value:hover {
  color: #A78BFA;
}
section.cy-contact.flex-content .cy-contact-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 0;
}
section.cy-contact.flex-content .cy-contact-social-label {
  margin: 0 0 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: #99a1af;
  font-size: 0.625em;
  line-height: 1.6em;
}
section.cy-contact.flex-content .cy-contact-social-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
section.cy-contact.flex-content .cy-contact-social-pill {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #101585;
  border: 1px solid #101585;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.8125em;
  line-height: 1.2307692308em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
section.cy-contact.flex-content .cy-contact-social-pill img {
  display: block;
  width: 16px;
  height: 16px;
}
section.cy-contact.flex-content .cy-contact-social-pill i {
  display: block;
  width: 16px;
  height: 16px;
  color: #fff;
  text-align: center;
  font-size: 1em;
  line-height: 1em;
}
section.cy-contact.flex-content .cy-contact-social-pill:hover {
  background: #A78BFA;
  border-color: #A78BFA;
  color: #101585;
}
section.cy-contact.flex-content .cy-contact-social-pill:hover i {
  color: #101585;
}

/* -------------------------------------------------- Process (How it Works) */
.cy-process {
  background: #101585;
  color: #fff;
  padding: 80px 0;
}
.cy-process.padded, .cy-process.padded-top, .cy-process.padded-bottom {
  padding: 80px 0;
}
@media only screen and (min-width: 768px) {
  .cy-process {
    padding: 160px 0;
  }
  .cy-process.padded, .cy-process.padded-top, .cy-process.padded-bottom {
    padding: 160px 0;
  }
}
.cy-process .cy-process-wrap {
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-wrap {
    padding: 0 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 1100px) {
  .cy-process .cy-process-wrap {
    gap: 140px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 470px;
            flex: 0 0 470px;
    position: sticky;
    top: 128px;
  }
}
.cy-process .cy-process-head {
  margin-bottom: 48px;
}
.cy-process .cy-process-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #A78BFA;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
.cy-process .cy-process-eyebrow .line {
  display: block;
  width: 32px;
  height: 1px;
  background: #A78BFA;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-process .cy-process-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.03;
  margin: 0;
  font-size: 48px;
  color: white;
}
.cy-process .cy-process-title span {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-title {
    font-size: 72px;
  }
}
.cy-process .cy-process-intro {
  margin: 24px 0 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.0225em;
  font-size: 1.125em;
  line-height: 1.5555555556em;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-intro {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}
.cy-process .cy-process-stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-stack {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 32px;
    margin-top: 0;
    min-width: 0;
  }
}
.cy-process .cy-process-step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  color: #101585;
  -webkit-box-shadow: 0 18px 20px rgba(16, 21, 133, 0.1);
          box-shadow: 0 18px 20px rgba(16, 21, 133, 0.1);
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step {
    position: sticky;
    top: 128px;
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step:nth-child(1) {
    top: 128px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step:nth-child(2) {
    top: 160px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step:nth-child(3) {
    top: 192px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step:nth-child(4) {
    top: 224px;
  }
}
.cy-process .cy-process-step .cy-process-step-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
.cy-process .cy-process-step .cy-process-step-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(167, 139, 250, 0.13);
  border: 1px solid rgba(167, 139, 250, 0.2);
  border-radius: 14px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-process .cy-process-step .cy-process-step-icon i {
  color: #A78BFA;
  font-size: 1.375em;
  line-height: 1em;
}
.cy-process .cy-process-step .cy-process-step-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.cy-process .cy-process-step .cy-process-step-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #A78BFA;
  line-height: 1;
  font-size: 3em;
  line-height: 1em;
}
.cy-process .cy-process-step .cy-process-step-status {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid #A78BFA;
  border-radius: 100px;
  color: #A78BFA;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.625em;
  line-height: 1.4em;
}
.cy-process .cy-process-step .cy-process-step-status:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #A78BFA;
  border-radius: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-process .cy-process-step:nth-child(even) .cy-process-step-status {
  border-color: #FFDD44;
  color: #101585;
}
.cy-process .cy-process-step:nth-child(even) .cy-process-step-status:before {
  background: #FFDD44;
}
.cy-process .cy-process-step .cy-process-step-body {
  margin-bottom: 24px;
}
.cy-process .cy-process-step .cy-process-step-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 12px;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step .cy-process-step-title {
    font-size: 1.75em;
    line-height: 1.1428571429em;
  }
}
.cy-process .cy-process-step .cy-process-step-desc {
  margin: 0;
  color: #6a7282;
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 1em;
  line-height: 1.625em;
}
@media only screen and (min-width: 768px) {
  .cy-process .cy-process-step .cy-process-step-desc {
    font-size: 1.125em;
    line-height: 1.4444444444em;
  }
}
.cy-process .cy-process-step .cy-process-step-bullets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.cy-process .cy-process-step .cy-process-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  font-size: 0.75em;
  line-height: 1.3333333333em;
}
.cy-process .cy-process-step .cy-process-bullet i {
  color: #A78BFA;
  font-size: 0.875em;
  line-height: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-process.white-background .cy-process-step, .cy-process.white .cy-process-step, .cy-process.whitesmoke-background .cy-process-step, .cy-process.whitesmoke .cy-process-step, .cy-process.light-background .cy-process-step {
  border-color: #d1d5db;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) {
  background: #101585;
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  -webkit-box-shadow: 0 18px 24px rgba(16, 21, 133, 0.18), 0 32px 64px -22px rgba(16, 21, 133, 0.7);
          box-shadow: 0 18px 24px rgba(16, 21, 133, 0.18), 0 32px 64px -22px rgba(16, 21, 133, 0.7);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-num,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-status,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-bullet i {
  color: #FFDD44;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-status {
  border-color: #FFDD44;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-status:before {
  background: #FFDD44;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-icon {
  background: rgba(255, 221, 68, 0.12);
  border-color: rgba(255, 221, 68, 0.28);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-icon i {
  color: #FFDD44;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-title,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-bullet {
  color: #fff;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-desc {
  color: rgba(255, 255, 255, 0.76);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(1) .cy-process-step-bullets {
  border-color: rgba(255, 255, 255, 0.2);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) {
  background: #FFDD44;
  border-color: rgba(16, 21, 133, 0.12);
  color: #101585;
  -webkit-box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(255, 221, 68, 0.75);
          box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(255, 221, 68, 0.75);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-num,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-status,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-title,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-bullet,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-bullet i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-status {
  border-color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-status:before {
  background: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-icon {
  background: rgba(16, 21, 133, 0.08);
  border-color: rgba(16, 21, 133, 0.18);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-icon i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-desc {
  color: rgba(16, 21, 133, 0.72);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(2) .cy-process-step-bullets {
  border-color: rgba(16, 21, 133, 0.18);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) {
  background: #A78BFA;
  border-color: rgba(16, 21, 133, 0.12);
  color: #101585;
  -webkit-box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(167, 139, 250, 0.7);
          box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(167, 139, 250, 0.7);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-num,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-status,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-title,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-bullet,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-bullet i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-status {
  border-color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-status:before {
  background: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-icon {
  background: rgba(16, 21, 133, 0.08);
  border-color: rgba(16, 21, 133, 0.18);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-icon i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-desc {
  color: rgba(16, 21, 133, 0.72);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(3) .cy-process-step-bullets {
  border-color: rgba(16, 21, 133, 0.18);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) {
  background: #e8e4ff;
  border-color: rgba(16, 21, 133, 0.12);
  color: #101585;
  -webkit-box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(167, 139, 250, 0.5);
          box-shadow: 0 18px 24px rgba(16, 21, 133, 0.12), 0 32px 64px -22px rgba(167, 139, 250, 0.5);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-num,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-status,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-title,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-bullet,
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-bullet i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-status {
  border-color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-status:before {
  background: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-icon {
  background: rgba(16, 21, 133, 0.08);
  border-color: rgba(16, 21, 133, 0.16);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-icon i {
  color: #101585;
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-desc {
  color: rgba(16, 21, 133, 0.7);
}
.cy-process.arsenal-card-themes .cy-process-step:nth-child(4) .cy-process-step-bullets {
  border-color: rgba(16, 21, 133, 0.16);
}

/* -------------------------------------------------- FAQ */
.cy-faq {
  background: #fff;
  color: #101585;
  padding: 80px 0;
}
.cy-faq.padded, .cy-faq.padded-top, .cy-faq.padded-bottom {
  padding: 80px 0;
}
@media only screen and (min-width: 768px) {
  .cy-faq {
    padding: 160px 0;
  }
  .cy-faq.padded, .cy-faq.padded-top, .cy-faq.padded-bottom {
    padding: 160px 0;
  }
}
.cy-faq .cy-faq-wrap {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (min-width: 768px) {
  .cy-faq .cy-faq-wrap {
    max-width: 906px;
    padding: 0 48px;
  }
}
.cy-faq .cy-faq-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cy-faq .cy-faq-head {
    margin-bottom: 80px;
  }
}
.cy-faq .cy-faq-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0;
  color: #A78BFA;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.171em;
  font-size: 0.875em;
  line-height: 1.1428571429em;
}
.cy-faq .cy-faq-eyebrow .line {
  width: 32px;
  height: 1px;
  background: #A78BFA;
}
.cy-faq .cy-faq-title {
  margin: 0;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.0233em;
  line-height: 1.097;
  font-size: 44px;
}
@media only screen and (min-width: 768px) {
  .cy-faq .cy-faq-title {
    font-size: 72px;
  }
}
.cy-faq .cy-faq-list {
  border-bottom: 1px solid #e5e7eb;
}
.cy-faq .cy-faq-item {
  border-top: 1px solid #e5e7eb;
}
.cy-faq button.cy-faq-question {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  width: 100%;
  margin: 0;
  min-height: 0;
  padding: 28px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #101585 !important;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  white-space: normal !important;
  font-size: 1em;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
  .cy-faq button.cy-faq-question {
    padding: 32px 0 !important;
    font-size: 1.125em;
    line-height: 1.3333333333em;
  }
}
.cy-faq button.cy-faq-question i {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #101585 !important;
  text-align: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  font-size: 1.25em;
  line-height: 1em;
}
.cy-faq .cy-faq-item.is-open .cy-faq-question i {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cy-faq .cy-faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.35s ease, opacity 0.25s ease;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.cy-faq .cy-faq-answer p {
  padding: 0 0 28px;
}
@media only screen and (min-width: 768px) {
  .cy-faq .cy-faq-answer p {
    padding-bottom: 32px;
  }
}
.cy-faq .cy-faq-answer p {
  margin: 0;
  color: #6a7282;
  font-weight: 300;
  letter-spacing: -0.01875em;
  font-size: 1em;
  line-height: 1.625em;
}
.cy-faq .cy-faq-item.is-open .cy-faq-answer {
  max-height: 200px;
  opacity: 1;
}

/* ---------------------------------------------------------------------------
 * Case Studies (CPT) — archive + single
 * ------------------------------------------------------------------------- */
.cy-cs-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.19em;
  color: #A78BFA;
  font-size: 0.8125em;
  line-height: 1.5384615385em;
}
.cy-cs-eyebrow .line {
  display: block;
  width: 32px;
  height: 1px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-cs-eyebrow .line.line-yellow {
  background: #FFDD44;
}
.cy-cs-eyebrow .line.line-lav {
  background: #A78BFA;
}
.cy-cs-eyebrow .line.line-navy {
  background: #101585;
}
.cy-cs-eyebrow.cy-cs-eyebrow-lav {
  color: #A78BFA;
}
.cy-cs-eyebrow.cy-cs-eyebrow-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #101585;
}
.cy-cs-eyebrow.cy-cs-eyebrow-center-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  color: #A78BFA;
}

/* ── Archive ─────────────────────────────────────────────────────────── */
.cy-cs-archive .cy-cs-archive-hero {
  background: #101585;
  padding: 140px 0 80px;
}
.cy-cs-archive .cy-cs-archive-hero.has-image {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cy-cs-archive .cy-cs-archive-hero.has-image:before {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 21, 133, 0.94)), color-stop(55%, rgba(16, 21, 133, 0.76)), to(rgba(16, 21, 133, 0.54)));
  background: linear-gradient(90deg, rgba(16, 21, 133, 0.94) 0%, rgba(16, 21, 133, 0.76) 55%, rgba(16, 21, 133, 0.54) 100%);
  content: "";
}
.cy-cs-archive .cy-cs-archive-hero.has-image .cy-container {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-archive-hero {
    padding: 200px 0 120px;
  }
}
.cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-title {
  margin: 0 0 32px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.96;
  font-size: 52px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-title {
    font-size: 76px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-title {
    font-size: 96px;
  }
}
.cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-title .accent {
  font-weight: 300;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1.5px #A78BFA;
}
.cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-intro {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: -0.0225em;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-archive-hero .cy-cs-archive-intro {
    font-size: 1.25em;
    line-height: 1.625em;
  }
}
.cy-cs-archive .cy-cs-filterbar {
  display: none;
  background: #fff;
  border-bottom: 1px solid #F9FAFB;
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-filterbar {
    padding: 40px 0;
  }
}
.cy-cs-archive .cy-cs-filterbar .cy-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-filterbar .cy-container {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.cy-cs-archive .cy-cs-filterbar .cy-cs-filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.cy-cs-archive .cy-cs-filterbar button.cy-cs-pill {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  margin: 0;
  padding: 0 16px !important;
  border: 1px solid transparent !important;
  border-radius: 4px;
  background: #F9FAFB !important;
  color: rgba(16, 21, 133, 0.7) !important;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cy-cs-archive .cy-cs-filterbar button.cy-cs-pill:hover {
  background: #edf0f3 !important;
  color: #101585 !important;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}
.cy-cs-archive .cy-cs-filterbar button.cy-cs-pill.is-active {
  background: #101585 !important;
  color: #fff !important;
  border-color: #101585 !important;
}
.cy-cs-archive .cy-cs-filterbar .cy-cs-sort {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  white-space: nowrap;
  border: 1px solid #F9FAFB;
  border-radius: 4px;
  padding: 0 14px;
  height: 34px;
}
.cy-cs-archive .cy-cs-filterbar .cy-cs-sort span {
  color: #99a1af;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
  padding-right: 10px;
  border-right: 1px solid #F9FAFB;
  margin-right: 10px;
}
.cy-cs-archive .cy-cs-filterbar .cy-cs-sort strong {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.75em;
  line-height: 1.1666666667em;
}
.cy-cs-archive .cy-cs-filterbar .cy-cs-sort strong i {
  font-size: 9px;
  color: rgba(16, 21, 133, 0.5);
}
.cy-cs-archive .cy-cs-featured {
  background: #fff;
  padding: 64px 0;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-featured {
    padding: 88px 0 128px;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  background: #101585;
  color: #fff;
  -webkit-box-shadow: 0 28px 72px rgba(16, 21, 133, 0.14);
          box-shadow: 0 28px 72px rgba(16, 21, 133, 0.14);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-card {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 480px;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 56px;
  padding: 40px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-text {
    padding: 56px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    padding: 56px;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-title {
  margin: 16px 0 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-title {
    font-size: 52px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-title {
    font-size: 60px;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-title .accent {
  font-weight: 300;
  font-style: italic;
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-desc {
  margin: 40px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: -0.015em;
  font-size: 0.9375em;
  line-height: 1.6em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-desc {
    font-size: 1em;
    line-height: 1.625em;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-facts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-facts .k {
  margin: 0 0 8px;
  color: #A78BFA;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.6875em;
  line-height: 1.4545454545em;
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-facts .v {
  margin: 0;
  color: #fff;
  font-size: 1em;
  line-height: 1.375em;
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-image {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #090b18;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-archive .cy-cs-featured .cy-cs-featured-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
  }
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-cs-archive .cy-cs-featured .cy-cs-featured-card:hover .cy-cs-featured-image img {
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
}
.cy-cs-archive .cy-cs-grid-section {
  background: #f5f6f8;
  padding: 72px 0 96px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-grid-section {
    padding: 112px 0 160px;
  }
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading {
    margin-bottom: 64px;
  }
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading .cy-cs-eyebrow {
  margin-bottom: 16px;
  color: #101585;
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading h2 {
  margin: 0;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  font-size: 38px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading h2 {
    font-size: 56px;
  }
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading h2 span {
  color: #A78BFA;
  font-weight: 300;
  font-style: italic;
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading > p {
  display: none;
  margin: 0 0 6px;
  color: #7c8494;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-grid-section .cy-cs-grid-heading > p {
    display: block;
  }
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-archive .cy-cs-grid-section .cy-cs-grid {
    gap: 48px;
  }
}
.cy-cs-archive .cy-cs-grid-section .cy-cs-empty {
  margin: 40px 0 0;
  color: #6a7282;
  font-weight: 300;
}

.cy-cs-card {
  --cy-card-surface: #101585;
  --cy-card-ink: #fff;
  --cy-card-muted: rgba(255, 255, 255, 0.7);
  --cy-card-accent: #FFDD44;
  --cy-card-button: #FFDD44;
  --cy-card-button-ink: #101585;
  --cy-card-rule: rgba(255, 255, 255, 0.18);
}
.cy-cs-card:nth-child(3n+2) {
  --cy-card-surface: #FFDD44;
  --cy-card-ink: #101585;
  --cy-card-muted: rgba(16, 21, 133, 0.7);
  --cy-card-accent: #101585;
  --cy-card-button: #101585;
  --cy-card-button-ink: #fff;
  --cy-card-rule: rgba(16, 21, 133, 0.16);
}
.cy-cs-card:nth-child(3n) {
  --cy-card-surface: #A78BFA;
  --cy-card-ink: #101585;
  --cy-card-muted: rgba(16, 21, 133, 0.7);
  --cy-card-accent: #101585;
  --cy-card-button: #101585;
  --cy-card-button-ink: #fff;
  --cy-card-rule: rgba(16, 21, 133, 0.16);
}
.cy-cs-card .cy-cs-card-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 133, 0.06);
  border-radius: 24px;
  background: var(--cy-card-surface);
  color: inherit;
  -webkit-box-shadow: 0 24px 64px rgba(16, 21, 133, 0.12);
          box-shadow: 0 24px 64px rgba(16, 21, 133, 0.12);
  -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), -webkit-box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), -webkit-box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), -webkit-box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-card .cy-cs-card-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 480px;
  }
  .cy-cs-card .cy-cs-card-link .cy-cs-card-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .cy-cs-card .cy-cs-card-link .cy-cs-card-content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.cy-cs-card .cy-cs-card-image {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #e7e9ed;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-card .cy-cs-card-image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    width: auto;
    aspect-ratio: auto;
  }
}
.cy-cs-card .cy-cs-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.cy-cs-card .cy-cs-card-content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  min-width: 0;
  padding: 36px;
  background: var(--cy-card-surface);
  color: var(--cy-card-ink);
}
@media only screen and (min-width: 768px) {
  .cy-cs-card .cy-cs-card-content {
    padding: 48px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-card .cy-cs-card-content {
    padding: 56px;
  }
}
.cy-cs-card .cy-cs-card-eyebrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--cy-card-accent);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.625em;
  line-height: 1.4em;
}
.cy-cs-card .cy-cs-card-eyebrow .line {
  width: 24px;
  height: 1px;
  background: currentColor;
}
.cy-cs-card .cy-cs-card-title {
  margin: 0;
  color: var(--cy-card-ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  font-size: 38px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-card .cy-cs-card-title {
    font-size: 48px;
  }
}
.cy-cs-card .cy-cs-card-title span,
.cy-cs-card .cy-cs-card-title em {
  display: inline;
}
.cy-cs-card .cy-cs-card-title em {
  margin-left: 6px;
  font-weight: 300;
  font-style: italic;
}
.cy-cs-card .cy-cs-card-desc {
  margin: 28px 0 0;
  color: var(--cy-card-muted);
  font-weight: 300;
  font-size: 0.9375em;
  line-height: 1.6em;
}
.cy-cs-card .cy-cs-card-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.cy-cs-card .cy-cs-card-facts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--cy-card-rule);
}
.cy-cs-card .cy-cs-card-facts p {
  margin: 0;
  color: var(--cy-card-ink);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.8125em;
  line-height: 1.4615384615em;
}
.cy-cs-card .cy-cs-card-facts span {
  display: block;
  margin-bottom: 7px;
  color: var(--cy-card-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.5625em;
  line-height: 1.3333333333em;
}
.cy-cs-card .cy-cs-card-view {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--cy-card-button);
  color: var(--cy-card-button-ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  white-space: nowrap;
  font-size: 0.625em;
  line-height: 1.4em;
}
.cy-cs-card .cy-cs-card-view i {
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.cy-cs-card:hover .cy-cs-card-link {
  -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
          transform: translateY(-6px);
  -webkit-box-shadow: 0 34px 80px rgba(16, 21, 133, 0.18);
          box-shadow: 0 34px 80px rgba(16, 21, 133, 0.18);
}
.cy-cs-card:hover .cy-cs-card-image img {
  -webkit-transform: scale(1.025);
      -ms-transform: scale(1.025);
          transform: scale(1.025);
}
.cy-cs-card:hover .cy-cs-card-view i {
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

/* ── Single ──────────────────────────────────────────────────────────── */
body.cy-mockup-open {
  overflow: hidden;
}
body.cy-mockup-open .cy-header {
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes cy-mockup-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cy-mockup-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes cy-mockup-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.985);
            transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes cy-mockup-enter {
  from {
    opacity: 0;
    -webkit-transform: translateY(18px) scale(0.985);
            transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cy-cs-mockup-modal.is-open .cy-cs-mockup-backdrop,
  .cy-cs-mockup-modal.is-open .cy-cs-mockup-dialog {
    -webkit-animation: none;
            animation: none;
  }
}
.cy-cs-single .cy-cs-hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  min-height: 620px;
  padding: 64px 0;
  background-color: #101585;
  background-size: cover;
  background-position: center;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-hero {
    min-height: 860px;
    padding: 100px 0;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-hero {
    min-height: 986px;
  }
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 21, 133, 0.6);
}
.cy-cs-single .cy-cs-hero .cy-container {
  position: relative;
  z-index: 2;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-layout {
  width: 100%;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.cy-cs-single .cy-cs-hero .cy-cs-eyebrow {
  color: #fff;
  margin: 0;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-title {
  margin: 0;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-hero .cy-cs-hero-title {
    font-size: 78px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-hero .cy-cs-hero-title {
    font-size: 104px;
  }
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-title .cy-cs-hero-title-accent {
  font-weight: 300;
  font-style: italic;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.6875em;
  line-height: 1.2727272727em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link i,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 14px;
  height: 14px;
  font-size: 14px;
  line-height: 1;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link:hover,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link:hover {
  background: #FFDD44;
  border-color: #FFDD44;
  color: #101585;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link:focus-visible,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link:focus-visible {
  outline: 3px solid #FFDD44;
  outline-offset: 4px;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link.cy-cs-hero-link-mockup,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link.cy-cs-hero-link-mockup {
  border-color: #FFDD44;
  background: #FFDD44;
  color: #101585;
}
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions a.cy-cs-hero-link.cy-cs-hero-link-mockup:hover,
.cy-cs-single .cy-cs-hero .cy-cs-hero-actions button.cy-cs-hero-link.cy-cs-hero-link-mockup:hover {
  border-color: #fff;
  background: #fff;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 720px;
  padding: 120px 0 72px;
  overflow: hidden;
  background: #101585;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode {
    min-height: 780px;
    padding: 136px 0 84px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode {
    min-height: 860px;
    padding: 150px 0 96px;
  }
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-overlay {
  background: radial-gradient(circle at 82% 38%, rgba(167, 139, 250, 0.24), transparent 32%), linear-gradient(135deg, rgba(5, 8, 68, 0.18), rgba(16, 21, 133, 0.92));
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-layout {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 42px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-layout {
    -ms-grid-columns: minmax(280px, 0.72fr) 72px minmax(0, 1.45fr);
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.45fr);
    gap: 72px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-layout {
    -ms-grid-columns: minmax(340px, 0.68fr) 96px minmax(0, 1.5fr);
    grid-template-columns: minmax(340px, 0.68fr) minmax(0, 1.5fr);
    gap: 96px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-title {
    font-size: 84px;
  }
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-title .cy-cs-hero-title-accent {
  display: block;
  max-width: 100%;
  font-size: 0.84em;
  line-height: 1.05;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-actions {
  margin-top: 18px;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #070a0a;
  border-radius: 12px;
  background: #070a0a;
  -webkit-box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
          box-shadow: 0 36px 100px rgba(0, 0, 0, 0.48);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview {
    width: calc(100% + 5vw);
    max-width: 980px;
  }
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview:after {
  position: absolute;
  inset: 30px 0 0;
  border-radius: 0 0 11px 11px;
  -webkit-box-shadow: inset -3px -3px 0 #070a0a;
          box-shadow: inset -3px -3px 0 #070a0a;
  content: "";
  pointer-events: none;
  z-index: 1;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger {
    position: absolute;
    inset: 30px 0 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 0 0 11px 11px;
    background: rgba(7, 10, 10, 0);
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    -webkit-transition: background 0.35s ease;
    transition: background 0.35s ease;
  }
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:focus, .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:focus-visible, .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:active {
    background: rgba(7, 10, 10, 0);
  }
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:hover {
    background: rgba(7, 10, 10, 0.58);
  }
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:hover .cy-cs-hero-preview-cue {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-trigger:focus-visible {
    outline: 2px solid #FFDD44;
    outline-offset: -4px;
  }
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-cue {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
  font-size: 0.75em;
  line-height: 1.3333333333em;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview .cy-cs-hero-preview-cue i {
  font-size: 0.875em;
  line-height: 1em;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  height: 30px;
  padding: 0 12px;
  background: #15171b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar span:first-child {
  background: #ff6b6b;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar span:nth-child(2) {
  background: #FFDD44;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar span:nth-child(3) {
  background: #4ade80;
}
.cy-cs-single .cy-cs-hero.cy-cs-hero-preview-mode .cy-cs-hero-preview-bar small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.5em;
  line-height: 1.5em;
}
.cy-cs-single .cy-cs-mockup-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
.cy-cs-single .cy-cs-mockup-modal[hidden] {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-mockup-modal {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-mockup-modal {
    padding: 24px;
  }
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-backdrop {
  position: absolute;
  inset: 0;
  background: #101585;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-dialog {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 1680px;
  height: 100%;
  overflow: hidden;
  background: #F9FAFB;
  -webkit-box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
          box-shadow: 0 32px 100px rgba(0, 0, 0, 0.45);
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-dialog {
    height: calc(100vh - 40px);
    border-radius: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-dialog {
    height: calc(100vh - 48px);
  }
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-dialog:focus {
  outline: none;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 64px;
  padding: 12px 16px 12px 20px;
  background: #24298f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar {
    padding: 14px 20px 14px 28px;
  }
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar p {
  margin: 0;
  color: inherit;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875em;
  line-height: 1.4545454545em;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar button.cy-cs-mockup-close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  position: relative;
  z-index: 4;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar button.cy-cs-mockup-close:hover {
  border-color: #FFDD44;
  background: #FFDD44;
  color: #101585;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar button.cy-cs-mockup-close:focus-visible {
  outline: 3px solid #FFDD44;
  outline-offset: 3px;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-bar button.cy-cs-mockup-close i {
  font-size: 18px;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  background: #e9ebf2;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #343956 #11152c;
  scrollbar-width: thin;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll::-webkit-scrollbar {
  width: 10px;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll::-webkit-scrollbar-track {
  background: #11152c;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll::-webkit-scrollbar-thumb {
  border: 2px solid #11152c;
  border-radius: 999px;
  background: #4b5274;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  margin: 0 auto;
}
.cy-cs-single .cy-cs-mockup-modal .cy-cs-mockup-scroll:focus-visible {
  outline: 3px solid #FFDD44;
  outline-offset: -3px;
}
.cy-cs-single .cy-cs-mockup-modal.is-open .cy-cs-mockup-backdrop {
  -webkit-animation: cy-mockup-fade 0.25s ease both;
          animation: cy-mockup-fade 0.25s ease both;
}
.cy-cs-single .cy-cs-mockup-modal.is-open .cy-cs-mockup-dialog {
  -webkit-animation: cy-mockup-enter 0.3s ease both;
          animation: cy-mockup-enter 0.3s ease both;
}
.cy-cs-single .cy-cs-metabar {
  background: #fff;
  border-bottom: 1px solid #F9FAFB;
  padding: 48px 0;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-metabar {
    padding: 64px 0;
  }
}
.cy-cs-single .cy-cs-metabar .cy-cs-meta-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 36px 32px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-metabar .cy-cs-meta-grid {
    -ms-grid-columns: minmax(130px, 1fr) clamp(56px, 5vw, 88px) minmax(160px, 1fr) clamp(56px, 5vw, 88px) minmax(280px, 1.45fr) clamp(56px, 5vw, 88px) minmax(150px, 0.85fr);
    grid-template-columns: minmax(130px, 1fr) minmax(160px, 1fr) minmax(280px, 1.45fr) minmax(150px, 0.85fr);
    -webkit-column-gap: clamp(56px, 5vw, 88px);
       -moz-column-gap: clamp(56px, 5vw, 88px);
            column-gap: clamp(56px, 5vw, 88px);
    row-gap: 40px;
  }
}
.cy-cs-single .cy-cs-metabar .cy-cs-meta {
  min-width: 0;
}
.cy-cs-single .cy-cs-metabar .cy-cs-meta .k {
  margin: 0 0 12px;
  color: #A78BFA;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.6875em;
  line-height: 1.8181818182em;
}
.cy-cs-single .cy-cs-metabar .cy-cs-meta .v {
  margin: 0;
  color: #101585;
  font-weight: 500;
  overflow-wrap: anywhere;
  font-size: 1.125em;
  line-height: 1.5555555556em;
}
.cy-cs-single .cy-cs-metabar .cy-cs-visit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-left: 8px;
  color: #A78BFA;
  font-weight: 700;
  font-size: 0.8125em;
  line-height: 1.5384615385em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-metabar .cy-cs-visit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 4px 0 0;
  }
}
.cy-cs-single .cy-cs-textblock {
  background: #fff;
  padding: 72px 0;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-textblock {
    padding: 128px 0;
  }
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-textblock .cy-cs-textblock-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 120px;
  }
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-textblock .cy-cs-textblock-label {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
  }
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-label .cy-cs-eyebrow {
  margin: 0;
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-body h2 {
  margin: 0 0 32px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-textblock .cy-cs-textblock-body h2 {
    font-size: 48px;
  }
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-body .cy-cs-prose {
  max-width: 700px;
  color: #6a7282;
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-textblock .cy-cs-textblock-body .cy-cs-prose {
    font-size: 1.25em;
    line-height: 1.6em;
  }
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-body .cy-cs-prose p {
  margin: 0 0 20px;
}
.cy-cs-single .cy-cs-textblock .cy-cs-textblock-body .cy-cs-prose p:last-child {
  margin-bottom: 0;
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story {
  padding: 0;
  color: #101585;
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-grid {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-grid {
    gap: 0;
  }
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding-top: 48px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-label {
    width: 33.333%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-top: 0;
  }
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-label .cy-cs-eyebrow {
  margin-bottom: 16px;
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-label .cy-cs-eyebrow span.line {
  width: 48px;
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-textblock-label .cy-cs-brief-aside-text {
  max-width: 20rem;
  margin: 0;
  color: #6b7280;
  font-weight: 300;
  letter-spacing: -0.0244em;
  font-size: 1.125em;
  line-height: 1.5555555556em;
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 64px;
  padding: 24px 0 72px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-list {
    width: 66.666%;
    gap: 40vh;
    padding: 30vh 0;
  }
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-item h3 {
  margin: 0;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.0233em;
  line-height: 1.1;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-item h3 {
    font-size: 56px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-item h3 {
    font-size: 64px;
  }
}
.cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-item p {
  margin: 28px 0 0;
  max-width: 36rem;
  color: #6b7280;
  font-weight: 300;
  letter-spacing: 0.003em;
  font-size: 1.25em;
  line-height: 1.6em;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-textblock.cy-cs-brief-story .cy-cs-brief-item p {
    font-size: 1.5em;
    line-height: 1.625em;
  }
}
.cy-cs-single .cy-cs-fullbleed {
  position: relative;
  width: 100%;
  padding: 32px 0;
  background: #F9FAFB;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed {
    padding: 48px 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-fullbleed {
    padding: 64px 0;
  }
}
.cy-cs-single .cy-cs-fullbleed .slideshow {
  position: relative;
  width: min(100% - 48px, 1440px);
  margin: 0 auto;
  border-radius: 24px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .slideshow {
    width: min(100% - 96px, 1440px);
  }
}
.cy-cs-single .cy-cs-fullbleed .owl-stage-outer,
.cy-cs-single .cy-cs-fullbleed .owl-stage,
.cy-cs-single .cy-cs-fullbleed .owl-item {
  height: auto;
}
.cy-cs-single .cy-cs-fullbleed .owl-stage-outer {
  overflow: hidden;
  border-radius: 24px;
}
.cy-cs-single .cy-cs-fullbleed .cy-cs-fullbleed-slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 320px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 21, 133, 0.1);
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 24px 64px rgba(16, 21, 133, 0.1);
          box-shadow: 0 24px 64px rgba(16, 21, 133, 0.1);
}
@media only screen and (min-width: 640px) {
  .cy-cs-single .cy-cs-fullbleed .cy-cs-fullbleed-slide {
    height: 420px;
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .cy-cs-fullbleed-slide {
    height: 560px;
    padding: 28px;
    border-radius: 24px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-fullbleed .cy-cs-fullbleed-slide {
    height: min(68vw, 760px);
    max-height: 760px;
    padding: 32px;
  }
}
.cy-cs-single .cy-cs-fullbleed img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  position: relative !important;
  inset: auto !important;
}
.cy-cs-single .cy-cs-fullbleed .owl-nav {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.cy-cs-single .cy-cs-fullbleed .owl-nav.disabled {
  display: none !important;
}
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-prev,
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(16, 21, 133, 0.16);
  background: #fff !important;
  -webkit-box-shadow: 0 12px 32px rgba(16, 21, 133, 0.18);
          box-shadow: 0 12px 32px rgba(16, 21, 133, 0.18);
  color: #101585 !important;
  opacity: 1 !important;
  pointer-events: auto;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-prev,
  .cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-next {
    width: 52px;
    height: 52px;
  }
}
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-prev i,
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-next i {
  display: block;
  font-size: 20px;
  line-height: 1;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-prev i,
  .cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-next i {
    font-size: 24px;
  }
}
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-prev:hover,
.cy-cs-single .cy-cs-fullbleed .owl-nav button.owl-next:hover {
  background: #FFDD44 !important;
  color: #101585 !important;
  -webkit-transform: translateY(-50%) scale(1.04);
      -ms-transform: translateY(-50%) scale(1.04);
          transform: translateY(-50%) scale(1.04);
}
.cy-cs-single .cy-cs-fullbleed .owl-nav .owl-prev {
  left: -10px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .owl-nav .owl-prev {
    left: -26px;
  }
}
.cy-cs-single .cy-cs-fullbleed .owl-nav .owl-next {
  right: -10px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-fullbleed .owl-nav .owl-next {
    right: -26px;
  }
}
.cy-cs-single .cy-cs-fullbleed .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  z-index: 6;
}
.cy-cs-single .cy-cs-fullbleed .owl-dots .owl-dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(16, 21, 133, 0.2) !important;
}
.cy-cs-single .cy-cs-fullbleed .owl-dots .owl-dot span {
  display: none;
}
.cy-cs-single .cy-cs-fullbleed .owl-dots .owl-dot.active {
  background: #FFDD44 !important;
}
.cy-cs-single .cy-cs-comparison {
  padding: 72px 0;
  background: #F9FAFB;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-comparison {
    padding: 128px 0;
  }
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-comparison .cy-cs-comparison-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 120px;
    margin-bottom: 64px;
  }
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-head .cy-cs-eyebrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-comparison .cy-cs-comparison-head .cy-cs-eyebrow {
    -ms-flex-preferred-size: 400px;
        flex-basis: 400px;
  }
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy h2 {
  margin: 0 0 20px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy h2 {
    font-size: 48px;
  }
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy .cy-cs-prose {
  max-width: 700px;
  color: #6b7280;
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy .cy-cs-prose p {
  margin: 0 0 20px;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-copy .cy-cs-prose p:last-child {
  margin-bottom: 0;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-stage {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16/10;
  border-radius: 18px;
  background: #101585;
  -webkit-box-shadow: 0 22px 60px rgba(16, 21, 133, 0.12);
          box-shadow: 0 22px 60px rgba(16, 21, 133, 0.12);
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top center;
     object-position: top center;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-image figcaption {
  position: absolute;
  top: 16px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(16, 21, 133, 0.88);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.625em;
  line-height: 1.4em;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-before figcaption {
  left: 16px;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-after figcaption {
  right: 16px;
  background: #FFDD44;
  color: #101585;
}
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-range,
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-handle,
.cy-cs-single .cy-cs-comparison .cy-cs-comparison-hint {
  display: none;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-stage {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/8.5;
    border-radius: 24px;
    background: #101585;
    -webkit-box-shadow: 0 28px 80px rgba(16, 21, 133, 0.16);
            box-shadow: 0 28px 80px rgba(16, 21, 133, 0.16);
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-image {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-image figcaption {
    top: 24px;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-before {
    z-index: 2;
    clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-before figcaption {
    left: 24px;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-after {
    z-index: 1;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-after figcaption {
    right: 24px;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-range {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    cursor: ew-resize;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--comparison-position);
    z-index: 3;
    display: block;
    width: 3px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background: #fff;
    -webkit-box-shadow: 0 0 22px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 22px rgba(0, 0, 0, 0.3);
    pointer-events: none;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-handle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 56px;
    height: 56px;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    border: 2px solid #fff;
    border-radius: 50%;
    background: #101585;
    -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-handle i {
    position: absolute;
    top: 50%;
    z-index: 1;
    color: #fff;
    font-size: 13px;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-handle .fa-chevron-left {
    left: -19px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-handle .fa-chevron-right {
    left: 10px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-range:focus-visible + .cy-cs-comparison-handle:before {
    outline: 4px solid #FFDD44;
    outline-offset: 4px;
  }
  .cy-cs-single .cy-cs-comparison.is-enhanced .cy-cs-comparison-hint {
    display: block;
    margin: 18px 0 0;
    color: #6a7282;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.625em;
    line-height: 1.4em;
  }
}
.cy-cs-single .cy-cs-impact {
  background: #FFDD44;
  padding: 80px 0;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-impact {
    padding: 160px 0;
  }
}
.cy-cs-single .cy-cs-impact .cy-cs-eyebrow {
  margin: 0 0 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cy-cs-single .cy-cs-impact .cy-cs-impact-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-impact .cy-cs-impact-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
.cy-cs-single .cy-cs-impact .cy-cs-stat {
  text-align: center;
}
.cy-cs-single .cy-cs-impact .cy-cs-stat-value {
  margin: 0 0 16px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 56px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-impact .cy-cs-stat-value {
    font-size: 80px;
  }
}
.cy-cs-single .cy-cs-impact .cy-cs-stat-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin: 0;
  color: #6a7282;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125em;
  line-height: 1.5384615385em;
}
.cy-cs-single .cy-cs-impact .cy-cs-stat-label .line {
  display: block;
  width: 16px;
  height: 1px;
  background: #A78BFA;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.cy-cs-single .cy-cs-closing-showcase {
  padding: 48px 0;
  background: #F9FAFB;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-closing-showcase {
    padding: 72px 0;
  }
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-grid {
    -ms-grid-columns: minmax(0, 1fr) 56px minmax(0, 2fr);
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    gap: 56px;
  }
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-copy h2 {
  margin: 28px 0 20px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-copy h2 {
    font-size: 48px;
  }
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-copy > p:not(.cy-cs-eyebrow):not(.cy-cs-closing-note) {
  max-width: 32rem;
  margin: 0;
  color: #6b7280;
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-copy .cy-cs-closing-note {
  margin: 28px 0 0;
  color: #A78BFA;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.625em;
  line-height: 1.4em;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-media {
  position: relative;
  min-width: 0;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider {
  position: relative;
  width: 100%;
  border: 1px solid rgba(16, 21, 133, 0.1);
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 0 20px 56px rgba(16, 21, 133, 0.1);
          box-shadow: 0 20px 56px rgba(16, 21, 133, 0.1);
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-stage-outer {
  overflow: hidden;
  border-radius: 24px;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .cy-cs-closing-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 360px;
  margin: 0;
  padding: 16px;
  background: #fff;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .cy-cs-closing-slide {
    height: 440px;
    padding: 24px;
  }
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .cy-cs-closing-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav.disabled {
  display: none !important;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav button {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid rgba(16, 21, 133, 0.15);
  border-radius: 50%;
  background: #fff !important;
  -webkit-box-shadow: 0 8px 20px rgba(16, 21, 133, 0.16);
          box-shadow: 0 8px 20px rgba(16, 21, 133, 0.16);
  color: #101585 !important;
  pointer-events: auto;
  -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, -webkit-transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease;
  transition: background 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav button i {
  font-size: 18px;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav button:hover {
  background: #FFDD44 !important;
  -webkit-transform: translateY(-50%) scale(1.04);
      -ms-transform: translateY(-50%) scale(1.04);
          transform: translateY(-50%) scale(1.04);
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav .owl-prev {
  left: -20px;
}
.cy-cs-single .cy-cs-closing-showcase .cy-cs-closing-slider .owl-nav .owl-next {
  right: -20px;
}
.cy-cs-single .cy-cs-next {
  background: #101585;
  text-align: center;
  padding: 96px 0;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-next {
    padding: 192px 0;
  }
}
.cy-cs-single .cy-cs-next .cy-cs-eyebrow {
  margin: 0 0 48px;
}
.cy-cs-single .cy-cs-next .cy-cs-next-title {
  margin: 0 0 48px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  font-size: 52px;
}
@media only screen and (min-width: 768px) {
  .cy-cs-single .cy-cs-next .cy-cs-next-title {
    font-size: 88px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-cs-single .cy-cs-next .cy-cs-next-title {
    font-size: 112px;
  }
}
.cy-cs-single .cy-cs-next .cy-cs-next-title .accent {
  font-weight: 300;
  font-style: italic;
}

/* -------------------------------------------------- Service Detail (Services page) */
.cy-service-detail {
  background: #fff;
}
.cy-service-detail .cy-service-detail-head {
  max-width: 760px;
  margin: 0 0 56px;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-detail-head {
    margin-bottom: 88px;
  }
}
.cy-service-detail .cy-service-detail-head .cy-service-detail-title {
  margin: 0 0 20px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: 36px;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-detail-head .cy-service-detail-title {
    font-size: 56px;
  }
}
.cy-service-detail .cy-service-detail-head .cy-service-detail-intro {
  margin: 0;
  color: #6a7282;
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.6666666667em;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-detail-head .cy-service-detail-intro {
    font-size: 1.25em;
    line-height: 1.6em;
  }
}
.cy-service-detail .cy-service-detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-detail-list {
    gap: 40px;
  }
}
@media screen and (min-width: 1100px) {
  .cy-service-detail.is-stacked .cy-service-detail-list {
    gap: 36px;
    padding-bottom: 112px;
  }
  .cy-service-detail.is-stacked .cy-service-block {
    --cy-stack-index: 0;
    position: sticky;
    top: calc(120px + var(--cy-stack-index) * 14px);
    z-index: calc(10 + var(--cy-stack-index));
    -webkit-box-shadow: 0 28px 60px -24px rgba(16, 21, 133, 0.28);
            box-shadow: 0 28px 60px -24px rgba(16, 21, 133, 0.28);
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(2) {
    --cy-stack-index: 1;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(3) {
    --cy-stack-index: 2;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(4) {
    --cy-stack-index: 3;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(5) {
    --cy-stack-index: 4;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(6) {
    --cy-stack-index: 5;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(7) {
    --cy-stack-index: 6;
  }
  .cy-service-detail.is-stacked .cy-service-block:nth-child(8) {
    --cy-stack-index: 7;
  }
}
@media screen and (min-width: 1100px) {
  .cy-service-detail.is-stack-measuring .cy-service-block {
    position: relative;
    top: auto;
  }
}
.cy-service-detail .cy-service-block {
  --cy-accent: #A78BFA;
  --cy-surface: #f3efff;
  scroll-margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(16, 21, 133, 0.1);
  border-radius: 20px;
  background: var(--cy-surface);
  -webkit-transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease, -webkit-box-shadow 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 1100px) {
  .cy-service-detail .cy-service-block {
    scroll-margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(40px, 5vw, 72px);
    min-height: 380px;
    padding: 52px;
  }
}
@media screen and (min-width: 1400px) {
  .cy-service-detail .cy-service-block {
    min-height: 420px;
    padding: 64px 72px;
  }
}
.cy-service-detail .cy-service-block:hover {
  border-color: rgba(16, 21, 133, 0.18);
  -webkit-box-shadow: 0 30px 60px rgba(16, 21, 133, 0.08);
          box-shadow: 0 30px 60px rgba(16, 21, 133, 0.08);
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.cy-service-detail .cy-service-block.cy-svc-theme-lavender {
  --cy-accent: #A78BFA;
  --cy-surface: #eee8ff;
}
.cy-service-detail .cy-service-block.cy-svc-theme-amber {
  --cy-accent: #c95432;
  --cy-surface: #ffebe5;
}
.cy-service-detail .cy-service-block.cy-svc-theme-indigo {
  --cy-accent: #6366f1;
  --cy-surface: #e9eaff;
}
.cy-service-detail .cy-service-block.cy-svc-theme-teal {
  --cy-accent: #0fa896;
  --cy-surface: #ddf7f2;
}
.cy-service-detail .cy-service-block.cy-svc-theme-navy {
  --cy-accent: #FFDD44;
  --cy-surface: #101585;
}
.cy-service-detail .cy-service-block.is-flagship {
  background: #101585;
  border-color: #101585;
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-title {
  color: #fff;
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-tagline {
  color: #FFDD44;
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-desc {
  color: rgba(255, 255, 255, 0.7);
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-num {
  color: rgba(255, 255, 255, 0.4);
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-points li {
  color: rgba(255, 255, 255, 0.82);
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-points i {
  color: #FFDD44;
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-media {
  background: rgba(255, 255, 255, 0.04);
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-tile {
  background: rgba(255, 221, 68, 0.15);
  color: #FFDD44;
}
.cy-service-detail .cy-service-block.is-flagship .cy-service-block-link {
  color: #FFDD44;
}
.cy-service-detail .cy-service-block-media {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 250px;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block-media {
    width: 46%;
    min-height: 290px;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}
@media screen and (min-width: 1400px) {
  .cy-service-detail .cy-service-block-media {
    min-height: 320px;
  }
}
.cy-service-detail .cy-service-block-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cy-service-detail .cy-service-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cy-service-detail .cy-service-scene-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(color-mix(in srgb, var(--cy-accent) 34%, transparent) 1px, transparent 1.6px);
  background-size: 20px 20px;
  opacity: 0.38;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, transparent 88%);
  mask-image: radial-gradient(ellipse at center, #000 48%, transparent 88%);
}
.cy-service-detail .cy-web-visual,
.cy-service-detail .cy-brand-visual,
.cy-service-detail .cy-marketing-visual,
.cy-service-detail .cy-hosting-visual,
.cy-service-detail .cy-growth-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.cy-service-detail .cy-web-layer,
.cy-service-detail .cy-web-mobile,
.cy-service-detail .cy-web-cursor {
  transform-box: fill-box;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.cy-service-detail .cy-web-layer-back {
  -webkit-animation: cy-web-back 6s ease-in-out infinite;
          animation: cy-web-back 6s ease-in-out infinite;
}
.cy-service-detail .cy-web-layer-main {
  -webkit-animation: cy-web-main 6s ease-in-out infinite;
          animation: cy-web-main 6s ease-in-out infinite;
}
.cy-service-detail .cy-web-mobile {
  -webkit-animation: cy-web-mobile 6s ease-in-out infinite;
          animation: cy-web-mobile 6s ease-in-out infinite;
}
.cy-service-detail .cy-web-cursor {
  -webkit-animation: cy-web-cursor 6s ease-in-out infinite;
          animation: cy-web-cursor 6s ease-in-out infinite;
}
.cy-service-detail .cy-web-cursor-path {
  -webkit-animation: cy-web-path 6s ease-in-out infinite;
          animation: cy-web-path 6s ease-in-out infinite;
  stroke-dasharray: 5 6;
}
.cy-service-detail .cy-web-cta {
  -webkit-animation: cy-web-cta 6s ease-in-out infinite;
          animation: cy-web-cta 6s ease-in-out infinite;
}
.cy-service-detail .cy-brand-primary,
.cy-service-detail .cy-brand-specimen,
.cy-service-detail .cy-brand-chips {
  transform-box: fill-box;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.cy-service-detail .cy-brand-primary {
  -webkit-animation: cy-brand-assemble 5.8s ease-in-out infinite;
          animation: cy-brand-assemble 5.8s ease-in-out infinite;
}
.cy-service-detail .cy-brand-specimen {
  -webkit-animation: cy-brand-specimen 5.8s ease-in-out infinite;
          animation: cy-brand-specimen 5.8s ease-in-out infinite;
}
.cy-service-detail .cy-brand-chips {
  -webkit-animation: cy-brand-chips 5.8s ease-in-out infinite;
          animation: cy-brand-chips 5.8s ease-in-out infinite;
}
.cy-service-detail .cy-marketing-creative,
.cy-service-detail .cy-marketing-panel,
.cy-service-detail .cy-hosting-cloud,
.cy-service-detail .cy-hosting-node,
.cy-service-detail .cy-growth-kpis,
.cy-service-detail .cy-growth-chart-panel {
  transform-box: fill-box;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.cy-service-detail .cy-marketing-creative {
  -webkit-animation: cy-marketing-creative 6s ease-in-out infinite;
          animation: cy-marketing-creative 6s ease-in-out infinite;
}
.cy-service-detail .cy-marketing-panel {
  -webkit-animation: cy-marketing-panel 6s ease-in-out infinite;
          animation: cy-marketing-panel 6s ease-in-out infinite;
}
.cy-service-detail .cy-marketing-chart {
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  -webkit-animation: cy-marketing-chart 6s ease-in-out infinite;
          animation: cy-marketing-chart 6s ease-in-out infinite;
}
.cy-service-detail .cy-marketing-cta {
  -webkit-animation: cy-marketing-cta 6s ease-in-out infinite;
          animation: cy-marketing-cta 6s ease-in-out infinite;
}
.cy-service-detail .cy-hosting-cloud {
  -webkit-animation: cy-hosting-cloud 6.2s ease-in-out infinite;
          animation: cy-hosting-cloud 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-hosting-node {
  -webkit-animation: cy-hosting-node 6.2s ease-in-out infinite;
          animation: cy-hosting-node 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-hosting-backup {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.cy-service-detail .cy-hosting-shield {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.cy-service-detail .cy-hosting-uptime {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}
.cy-service-detail .cy-growth-kpis {
  -webkit-animation: cy-growth-kpis 6.2s ease-in-out infinite;
          animation: cy-growth-kpis 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-growth-chart-panel {
  -webkit-animation: cy-growth-panel 6.2s ease-in-out infinite;
          animation: cy-growth-panel 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-growth-chart-line {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  -webkit-animation: cy-growth-chart 6.2s ease-in-out infinite;
          animation: cy-growth-chart 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-growth-area {
  -webkit-animation: cy-growth-area 6.2s ease-in-out infinite;
          animation: cy-growth-area 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-growth-chart-node {
  transform-box: fill-box;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-animation: cy-growth-node 6.2s ease-in-out infinite;
          animation: cy-growth-node 6.2s ease-in-out infinite;
}
.cy-service-detail .cy-service-tile {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 22px;
  background: color-mix(in srgb, var(--cy-accent) 15%, #fff);
  color: var(--cy-accent);
  font-size: 32px;
  z-index: 2;
}
.cy-service-detail .cy-service-flagship-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cy-service-detail .cy-service-flagship-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid rgba(167, 139, 250, 0.32);
  border-radius: 50%;
}
.cy-service-detail .cy-service-flagship-rings span:nth-child(1) {
  width: 120px;
  height: 120px;
}
.cy-service-detail .cy-service-flagship-rings span:nth-child(2) {
  width: 180px;
  height: 180px;
}
.cy-service-detail .cy-service-flagship-rings span:nth-child(3) {
  width: 240px;
  height: 240px;
}
.cy-service-detail .cy-service-flagship-rings span:nth-child(4) {
  width: 300px;
  height: 300px;
}
.cy-service-detail .cy-brand-board,
.cy-service-detail .cy-campaign-board,
.cy-service-detail .cy-host-stage,
.cy-service-detail .cy-support-stage,
.cy-service-detail .cy-crm-stage,
.cy-service-detail .cy-chat-stage,
.cy-service-detail .cy-growth-stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: 172px;
  -webkit-transform: translate(-50%, -50%) scale(0.86);
      -ms-transform: translate(-50%, -50%) scale(0.86);
          transform: translate(-50%, -50%) scale(0.86);
}
@media only screen and (min-width: 640px) {
  .cy-service-detail .cy-brand-board,
  .cy-service-detail .cy-campaign-board,
  .cy-service-detail .cy-host-stage,
  .cy-service-detail .cy-support-stage,
  .cy-service-detail .cy-crm-stage,
  .cy-service-detail .cy-chat-stage,
  .cy-service-detail .cy-growth-stage {
    -webkit-transform: translate(-50%, -50%) scale(1.22);
        -ms-transform: translate(-50%, -50%) scale(1.22);
            transform: translate(-50%, -50%) scale(1.22);
  }
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-brand-board,
  .cy-service-detail .cy-campaign-board,
  .cy-service-detail .cy-host-stage,
  .cy-service-detail .cy-support-stage,
  .cy-service-detail .cy-crm-stage,
  .cy-service-detail .cy-chat-stage,
  .cy-service-detail .cy-growth-stage {
    -webkit-transform: translate(-50%, -50%) scale(1.34);
        -ms-transform: translate(-50%, -50%) scale(1.34);
            transform: translate(-50%, -50%) scale(1.34);
  }
}
@media screen and (min-width: 1400px) {
  .cy-service-detail .cy-brand-board,
  .cy-service-detail .cy-campaign-board,
  .cy-service-detail .cy-host-stage,
  .cy-service-detail .cy-support-stage,
  .cy-service-detail .cy-crm-stage,
  .cy-service-detail .cy-chat-stage,
  .cy-service-detail .cy-growth-stage {
    -webkit-transform: translate(-50%, -50%) scale(1.46);
        -ms-transform: translate(-50%, -50%) scale(1.46);
            transform: translate(-50%, -50%) scale(1.46);
  }
}
.cy-service-detail .cy-brand-board {
  border: 1px solid color-mix(in srgb, var(--cy-accent) 24%, transparent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  -webkit-box-shadow: 0 18px 50px rgba(16, 21, 133, 0.08);
          box-shadow: 0 18px 50px rgba(16, 21, 133, 0.08);
}
.cy-service-detail .cy-brand-board > .fa-solid {
  position: absolute;
  top: 22px;
  left: 22px;
  color: var(--cy-accent);
  font-size: 22px;
}
.cy-service-detail .cy-brand-mark {
  position: absolute;
  top: 46px;
  left: 50%;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-size: 56px;
  font-weight: 800;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: cy-brand-mark 5s ease-in-out infinite;
          animation: cy-brand-mark 5s ease-in-out infinite;
}
.cy-service-detail .cy-brand-type {
  position: absolute;
  top: 116px;
  left: 50%;
  width: 64px;
  height: 4px;
  border-radius: 4px;
  background: var(--cy-accent);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cy-service-detail .cy-brand-swatches {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.cy-service-detail .cy-brand-swatches i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #101585;
  -webkit-animation: cy-brand-swatch 5s ease-in-out infinite;
          animation: cy-brand-swatch 5s ease-in-out infinite;
}
.cy-service-detail .cy-brand-swatches i:nth-child(2) {
  background: var(--cy-accent);
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.cy-service-detail .cy-brand-swatches i:nth-child(3) {
  background: #FFDD44;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.cy-service-detail .cy-campaign-icon {
  position: absolute;
  top: 52px;
  left: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--cy-accent) 15%, #fff);
  color: var(--cy-accent);
  font-size: 27px;
  -webkit-animation: cy-campaign-icon 5.5s ease-in-out infinite;
          animation: cy-campaign-icon 5.5s ease-in-out infinite;
}
.cy-service-detail .cy-campaign-wave {
  position: absolute;
  left: 100px;
  height: 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--cy-accent) 25%, #fff);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-animation: cy-campaign-wave 5.5s ease-in-out infinite;
          animation: cy-campaign-wave 5.5s ease-in-out infinite;
}
.cy-service-detail .cy-campaign-wave-a {
  top: 62px;
  width: 104px;
}
.cy-service-detail .cy-campaign-wave-b {
  top: 88px;
  width: 74px;
  -webkit-animation-delay: 0.18s;
          animation-delay: 0.18s;
}
.cy-service-detail .cy-campaign-metric {
  position: absolute;
  right: 6px;
  bottom: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #101585;
  color: #fff;
  -webkit-box-shadow: 0 12px 30px rgba(16, 21, 133, 0.18);
          box-shadow: 0 12px 30px rgba(16, 21, 133, 0.18);
  -webkit-animation: cy-campaign-metric 5.5s ease-in-out infinite;
          animation: cy-campaign-metric 5.5s ease-in-out infinite;
}
.cy-service-detail .cy-campaign-metric strong, .cy-service-detail .cy-campaign-metric small {
  display: block;
}
.cy-service-detail .cy-campaign-metric strong {
  color: #FFDD44;
  font-size: 17px;
}
.cy-service-detail .cy-campaign-metric small {
  margin-top: 2px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cy-service-detail .cy-host-domain {
  position: absolute;
  top: 4px;
  left: 50%;
  padding: 8px 13px;
  border: 1px solid color-mix(in srgb, var(--cy-accent) 25%, transparent);
  border-radius: 999px;
  background: #fff;
  color: #101585;
  font-size: 11px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cy-service-detail .cy-host-domain i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #22c55e;
  -webkit-animation: cy-host-light 2.2s ease-in-out infinite;
          animation: cy-host-light 2.2s ease-in-out infinite;
}
.cy-service-detail .cy-host-server {
  position: absolute;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 48px;
  padding: 0 17px;
  border: 1px solid color-mix(in srgb, var(--cy-accent) 24%, transparent);
  border-radius: 12px;
  background: #fff;
  color: var(--cy-accent);
  -webkit-box-shadow: 0 12px 30px rgba(16, 21, 133, 0.07);
          box-shadow: 0 12px 30px rgba(16, 21, 133, 0.07);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: cy-host-server 4.8s ease-in-out infinite;
          animation: cy-host-server 4.8s ease-in-out infinite;
}
.cy-service-detail .cy-host-server b {
  width: 6px;
  height: 6px;
  margin-left: auto;
  border-radius: 50%;
  background: #22c55e;
}
.cy-service-detail .cy-host-server b + b {
  margin-left: 6px;
  background: #FFDD44;
}
.cy-service-detail .cy-host-server-a {
  top: 48px;
}
.cy-service-detail .cy-host-server-b {
  top: 104px;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}
.cy-service-detail .cy-host-status {
  position: absolute;
  right: 6px;
  bottom: -8px;
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cy-service-detail .cy-support-browser {
  position: absolute;
  inset: 8px 28px 14px 8px;
  border: 1px solid color-mix(in srgb, var(--cy-accent) 24%, transparent);
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0 16px 40px rgba(16, 21, 133, 0.08);
          box-shadow: 0 16px 40px rgba(16, 21, 133, 0.08);
}
.cy-service-detail .cy-support-browser > i {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 14px 0 0 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--cy-accent) 45%, #fff);
}
.cy-service-detail .cy-support-browser > i:first-child {
  margin-left: 14px;
}
.cy-service-detail .cy-support-browser span {
  position: absolute;
  inset: 42px 18px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--cy-accent) 13%, #fff), #fff);
}
.cy-service-detail .cy-support-browser span:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 62%;
  height: 7px;
  border-radius: 5px;
  background: color-mix(in srgb, var(--cy-accent) 28%, #fff);
}
.cy-service-detail .cy-support-tool,
.cy-service-detail .cy-support-check {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  color: #fff;
}
.cy-service-detail .cy-support-tool {
  right: 2px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: var(--cy-accent);
  font-size: 22px;
  -webkit-box-shadow: 0 14px 30px color-mix(in srgb, var(--cy-accent) 28%, transparent);
          box-shadow: 0 14px 30px color-mix(in srgb, var(--cy-accent) 28%, transparent);
  -webkit-animation: cy-support-tool 4.8s ease-in-out infinite;
          animation: cy-support-tool 4.8s ease-in-out infinite;
}
.cy-service-detail .cy-support-check {
  top: 0;
  right: 15px;
  width: 34px;
  height: 34px;
  background: #22c55e;
  font-size: 13px;
  -webkit-animation: cy-support-check 4.8s ease-in-out infinite;
          animation: cy-support-check 4.8s ease-in-out infinite;
}
.cy-service-detail .cy-crm-contact,
.cy-service-detail .cy-crm-node,
.cy-service-detail .cy-crm-task {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cy-service-detail .cy-crm-contact {
  left: 2px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  color: var(--cy-accent);
  -webkit-box-shadow: 0 8px 24px rgba(16, 21, 133, 0.1);
          box-shadow: 0 8px 24px rgba(16, 21, 133, 0.1);
  -webkit-animation: cy-crm-contact 5.8s ease-in-out infinite;
          animation: cy-crm-contact 5.8s ease-in-out infinite;
}
.cy-service-detail .cy-crm-contact-a {
  margin-top: -30px;
}
.cy-service-detail .cy-crm-contact-b {
  margin-top: 30px;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.cy-service-detail .cy-crm-flow {
  position: absolute;
  top: 50%;
  left: 44px;
  width: 142px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(var(--cy-accent)), to(transparent));
  background: linear-gradient(90deg, transparent, var(--cy-accent), transparent);
}
.cy-service-detail .cy-crm-flow:after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cy-accent);
  -webkit-animation: cy-crm-flow 3s ease-in-out infinite;
          animation: cy-crm-flow 3s ease-in-out infinite;
}
.cy-service-detail .cy-crm-node {
  left: 92px;
  width: 68px;
  height: 68px;
  border-radius: 19px;
  background: #101585;
  color: #fff;
  font-size: 25px;
  -webkit-box-shadow: 0 15px 34px rgba(16, 21, 133, 0.2);
          box-shadow: 0 15px 34px rgba(16, 21, 133, 0.2);
}
.cy-service-detail .cy-crm-task {
  right: 0;
  gap: 7px;
  padding: 12px 13px;
  border-radius: 11px;
  background: #fff;
  color: #101585;
  -webkit-box-shadow: 0 10px 26px rgba(16, 21, 133, 0.1);
          box-shadow: 0 10px 26px rgba(16, 21, 133, 0.1);
  -webkit-animation: cy-crm-task 5.8s ease-in-out infinite;
          animation: cy-crm-task 5.8s ease-in-out infinite;
}
.cy-service-detail .cy-crm-task i {
  color: #22c55e;
}
.cy-service-detail .cy-crm-task b {
  font-size: 10px;
}
.cy-service-detail .cy-chat-icon {
  position: absolute;
  top: 45px;
  left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #25d366;
  color: #fff;
  font-size: 34px;
  -webkit-box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
          box-shadow: 0 14px 34px rgba(37, 211, 102, 0.28);
}
.cy-service-detail .cy-chat-bubble {
  position: absolute;
  left: 96px;
  padding: 13px 16px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 28px rgba(16, 21, 133, 0.08);
          box-shadow: 0 10px 28px rgba(16, 21, 133, 0.08);
}
.cy-service-detail .cy-chat-bubble i {
  display: block;
  height: 5px;
  border-radius: 4px;
}
.cy-service-detail .cy-chat-in {
  top: 16px;
  width: 142px;
  background: #fff;
  -webkit-animation: cy-chat-in 5.6s ease-in-out infinite;
          animation: cy-chat-in 5.6s ease-in-out infinite;
}
.cy-service-detail .cy-chat-in i {
  width: 90px;
  background: #dfe3e8;
}
.cy-service-detail .cy-chat-in i + i {
  width: 58px;
  margin-top: 7px;
}
.cy-service-detail .cy-chat-out {
  top: 100px;
  left: 118px;
  width: 132px;
  background: #dcf8c6;
  -webkit-animation: cy-chat-out 5.6s ease-in-out infinite;
          animation: cy-chat-out 5.6s ease-in-out infinite;
}
.cy-service-detail .cy-chat-out i {
  width: 0;
  background: #84c78a;
  -webkit-animation: cy-chat-type 5.6s ease-in-out infinite;
          animation: cy-chat-type 5.6s ease-in-out infinite;
}
.cy-service-detail .cy-chat-out i:nth-child(2) {
  max-width: 75px;
  margin-top: 7px;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.cy-service-detail .cy-chat-out i:nth-child(3) {
  max-width: 42px;
  margin-top: 7px;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.cy-service-detail .cy-chat-trigger {
  position: absolute;
  top: 78px;
  left: 94px;
  padding: 4px 7px;
  border-radius: 5px;
  background: #101585;
  color: #FFDD44;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  -webkit-animation: cy-chat-trigger 5.6s ease-in-out infinite;
          animation: cy-chat-trigger 5.6s ease-in-out infinite;
}
.cy-service-detail .cy-growth-bars {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 10px;
  height: 132px;
}
.cy-service-detail .cy-growth-bars i {
  width: 28px;
  height: 34px;
  border-radius: 8px 8px 3px 3px;
  background: color-mix(in srgb, var(--cy-accent) 28%, #fff);
  -webkit-transform-origin: bottom;
      -ms-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-animation: cy-growth-bar 5.4s ease-in-out infinite;
          animation: cy-growth-bar 5.4s ease-in-out infinite;
}
.cy-service-detail .cy-growth-bars i:nth-child(2) {
  height: 58px;
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.cy-service-detail .cy-growth-bars i:nth-child(3) {
  height: 86px;
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
.cy-service-detail .cy-growth-bars i:nth-child(4) {
  height: 122px;
  background: var(--cy-accent);
  -webkit-animation-delay: 0.36s;
          animation-delay: 0.36s;
}
.cy-service-detail .cy-growth-line {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #101585;
  font-size: 34px;
  -webkit-animation: cy-growth-line 5.4s ease-in-out infinite;
          animation: cy-growth-line 5.4s ease-in-out infinite;
}
.cy-service-detail .cy-growth-score {
  position: absolute;
  right: 4px;
  bottom: 22px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #101585;
  color: #fff;
  -webkit-box-shadow: 0 12px 30px rgba(16, 21, 133, 0.18);
          box-shadow: 0 12px 30px rgba(16, 21, 133, 0.18);
}
.cy-service-detail .cy-growth-score strong, .cy-service-detail .cy-growth-score small {
  display: block;
}
.cy-service-detail .cy-growth-score strong {
  color: #FFDD44;
  font-size: 19px;
}
.cy-service-detail .cy-growth-score small {
  margin-top: 2px;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@-webkit-keyframes cy-web-back {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(8px, -6px);
            transform: translate(8px, -6px);
  }
}
@keyframes cy-web-back {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(8px, -6px);
            transform: translate(8px, -6px);
  }
}
@-webkit-keyframes cy-web-main {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-4px, 3px);
            transform: translate(-4px, 3px);
  }
}
@keyframes cy-web-main {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  50% {
    -webkit-transform: translate(-4px, 3px);
            transform: translate(-4px, 3px);
  }
}
@-webkit-keyframes cy-web-mobile {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@keyframes cy-web-mobile {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
}
@-webkit-keyframes cy-web-cursor {
  0%, 20%, 100% {
    -webkit-transform: translate(-12px, 12px);
            transform: translate(-12px, 12px);
    opacity: 0;
  }
  45%, 82% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-web-cursor {
  0%, 20%, 100% {
    -webkit-transform: translate(-12px, 12px);
            transform: translate(-12px, 12px);
    opacity: 0;
  }
  45%, 82% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-web-path {
  0%, 18%, 100% {
    stroke-dashoffset: 80;
    opacity: 0;
  }
  45%, 82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@keyframes cy-web-path {
  0%, 18%, 100% {
    stroke-dashoffset: 80;
    opacity: 0;
  }
  45%, 82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}
@-webkit-keyframes cy-web-cta {
  0%, 50%, 100% {
    opacity: 1;
  }
  65% {
    opacity: 0.55;
  }
}
@keyframes cy-web-cta {
  0%, 50%, 100% {
    opacity: 1;
  }
  65% {
    opacity: 0.55;
  }
}
@-webkit-keyframes cy-brand-assemble {
  0%, 100% {
    -webkit-transform: scale(0.94) rotate(-2deg);
            transform: scale(0.94) rotate(-2deg);
  }
  45%, 75% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
@keyframes cy-brand-assemble {
  0%, 100% {
    -webkit-transform: scale(0.94) rotate(-2deg);
            transform: scale(0.94) rotate(-2deg);
  }
  45%, 75% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
@-webkit-keyframes cy-brand-specimen {
  0%, 100% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    opacity: 0.58;
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-brand-specimen {
  0%, 100% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    opacity: 0.58;
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-brand-chips {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes cy-brand-chips {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes cy-marketing-creative {
  0%, 100% {
    -webkit-transform: translateY(3px) rotate(-1deg);
            transform: translateY(3px) rotate(-1deg);
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes cy-marketing-creative {
  0%, 100% {
    -webkit-transform: translateY(3px) rotate(-1deg);
            transform: translateY(3px) rotate(-1deg);
  }
  45%, 75% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes cy-marketing-panel {
  0%, 100% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
    opacity: 0.72;
  }
  45%, 82% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-marketing-panel {
  0%, 100% {
    -webkit-transform: translateX(7px);
            transform: translateX(7px);
    opacity: 0.72;
  }
  45%, 82% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-marketing-chart {
  0%, 15% {
    stroke-dashoffset: 150;
    opacity: 0;
  }
  50%, 85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-marketing-chart {
  0%, 15% {
    stroke-dashoffset: 150;
    opacity: 0;
  }
  50%, 85% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-marketing-cta {
  0%, 45%, 100% {
    opacity: 1;
  }
  62% {
    opacity: 0.5;
  }
}
@keyframes cy-marketing-cta {
  0%, 45%, 100% {
    opacity: 1;
  }
  62% {
    opacity: 0.5;
  }
}
@-webkit-keyframes cy-hosting-cloud {
  0%, 100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@keyframes cy-hosting-cloud {
  0%, 100% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
  50% {
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
@-webkit-keyframes cy-hosting-node {
  0%, 22%, 100% {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    opacity: 0.55;
  }
  44%, 82% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes cy-hosting-node {
  0%, 22%, 100% {
    -webkit-transform: scale(0.92);
            transform: scale(0.92);
    opacity: 0.55;
  }
  44%, 82% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes cy-growth-kpis {
  0%, 100% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    opacity: 0.72;
  }
  42%, 80% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-growth-kpis {
  0%, 100% {
    -webkit-transform: translateY(4px);
            transform: translateY(4px);
    opacity: 0.72;
  }
  42%, 80% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-growth-panel {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  42%, 80% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes cy-growth-panel {
  0%, 100% {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  42%, 80% {
    -webkit-transform: none;
            transform: none;
  }
}
@-webkit-keyframes cy-growth-chart {
  0%, 14% {
    stroke-dashoffset: 260;
    opacity: 0;
  }
  48%, 86% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-growth-chart {
  0%, 14% {
    stroke-dashoffset: 260;
    opacity: 0;
  }
  48%, 86% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-growth-area {
  0%, 18% {
    opacity: 0;
  }
  52%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-growth-area {
  0%, 18% {
    opacity: 0;
  }
  52%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-growth-node {
  0%, 38%, 100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
  55%, 86% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes cy-growth-node {
  0%, 38%, 100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
  55%, 86% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes cy-brand-mark {
  0%, 100% {
    letter-spacing: -0.08em;
    opacity: 0.72;
  }
  50% {
    letter-spacing: 0.05em;
    opacity: 1;
  }
}
@keyframes cy-brand-mark {
  0%, 100% {
    letter-spacing: -0.08em;
    opacity: 0.72;
  }
  50% {
    letter-spacing: 0.05em;
    opacity: 1;
  }
}
@-webkit-keyframes cy-brand-swatch {
  0%, 100%, 60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@keyframes cy-brand-swatch {
  0%, 100%, 60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  30% {
    -webkit-transform: translateY(-6px);
            transform: translateY(-6px);
  }
}
@-webkit-keyframes cy-campaign-icon {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  45% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
  }
}
@keyframes cy-campaign-icon {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  45% {
    -webkit-transform: rotate(-7deg);
            transform: rotate(-7deg);
  }
}
@-webkit-keyframes cy-campaign-wave {
  0%, 15% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  45%, 85% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-campaign-wave {
  0%, 15% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
  45%, 85% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-campaign-metric {
  0%, 35% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 0;
  }
  55%, 90% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-campaign-metric {
  0%, 35% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    opacity: 0;
  }
  55%, 90% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-host-light {
  50% {
    opacity: 0.25;
    -webkit-box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
            box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
  }
}
@keyframes cy-host-light {
  50% {
    opacity: 0.25;
    -webkit-box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
            box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.12);
  }
}
@-webkit-keyframes cy-host-server {
  0%, 100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translate(-50%, -3px);
            transform: translate(-50%, -3px);
  }
}
@keyframes cy-host-server {
  0%, 100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translate(-50%, -3px);
            transform: translate(-50%, -3px);
  }
}
@-webkit-keyframes cy-support-tool {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  45%, 55% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
@keyframes cy-support-tool {
  0%, 100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  45%, 55% {
    -webkit-transform: rotate(-12deg);
            transform: rotate(-12deg);
  }
}
@-webkit-keyframes cy-support-check {
  0%, 45% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
  60%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-support-check {
  0%, 45% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
    opacity: 0;
  }
  60%, 90% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-crm-contact {
  0%, 100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  45% {
    -webkit-transform: translate(7px, -50%);
            transform: translate(7px, -50%);
  }
}
@keyframes cy-crm-contact {
  0%, 100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  45% {
    -webkit-transform: translate(7px, -50%);
            transform: translate(7px, -50%);
  }
}
@-webkit-keyframes cy-crm-flow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(132px);
            transform: translateX(132px);
    opacity: 0;
  }
}
@keyframes cy-crm-flow {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(132px);
            transform: translateX(132px);
    opacity: 0;
  }
}
@-webkit-keyframes cy-crm-task {
  0%, 50% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    opacity: 0;
  }
  65%, 90% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cy-crm-task {
  0%, 50% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
    opacity: 0;
  }
  65%, 90% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes cy-chat-in {
  0%, 100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
  15%, 80% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-chat-in {
  0%, 100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
  15%, 80% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-chat-trigger {
  0%, 30%, 100% {
    opacity: 0;
  }
  42%, 72% {
    opacity: 1;
  }
}
@keyframes cy-chat-trigger {
  0%, 30%, 100% {
    opacity: 0;
  }
  42%, 72% {
    opacity: 1;
  }
}
@-webkit-keyframes cy-chat-out {
  0%, 42%, 100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
  55%, 88% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-chat-out {
  0%, 42%, 100% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
    opacity: 0;
  }
  55%, 88% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes cy-chat-type {
  0%, 48% {
    width: 0;
  }
  70%, 100% {
    width: 90px;
  }
}
@keyframes cy-chat-type {
  0%, 48% {
    width: 0;
  }
  70%, 100% {
    width: 90px;
  }
}
@-webkit-keyframes cy-growth-bar {
  0%, 100% {
    -webkit-transform: scaleY(0.78);
            transform: scaleY(0.78);
  }
  45%, 75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes cy-growth-bar {
  0%, 100% {
    -webkit-transform: scaleY(0.78);
            transform: scaleY(0.78);
  }
  45%, 75% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@-webkit-keyframes cy-growth-line {
  0%, 100% {
    -webkit-transform: translate(-8px, 8px);
            transform: translate(-8px, 8px);
    opacity: 0.5;
  }
  50%, 75% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@keyframes cy-growth-line {
  0%, 100% {
    -webkit-transform: translate(-8px, 8px);
            transform: translate(-8px, 8px);
    opacity: 0.5;
  }
  50%, 75% {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cy-service-detail .cy-service-scene * {
    -webkit-animation: none !important;
            animation: none !important;
  }
}
.cy-service-detail .cy-service-block-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.cy-service-detail .cy-service-block-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cy-service-detail .cy-service-block-num {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: rgba(16, 21, 133, 0.3);
  letter-spacing: 0.1em;
  font-size: 1em;
  line-height: 1.25em;
}
.cy-service-detail .cy-service-block-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #FFDD44;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.625em;
  line-height: 1.2em;
}
.cy-service-detail .cy-service-block-title {
  margin: 0 0 10px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: 28px;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block-title {
    font-size: 36px;
  }
}
.cy-service-detail .cy-service-block-tagline {
  margin: 0 0 16px;
  color: var(--cy-accent);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1em;
  line-height: 1.5em;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block-tagline {
    font-size: 1.125em;
    line-height: 1.4444444444em;
  }
}
.cy-service-detail .cy-service-block-desc {
  margin: 0 0 24px;
  max-width: 560px;
  color: #6a7282;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.6875em;
}
@media only screen and (min-width: 768px) {
  .cy-service-detail .cy-service-block-desc {
    font-size: 1.0625em;
    line-height: 1.6470588235em;
  }
}
.cy-service-detail .cy-service-block-points {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
@media only screen and (min-width: 640px) {
  .cy-service-detail .cy-service-block-points {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.cy-service-detail .cy-service-block-points li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #101585;
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1.4285714286em;
}
.cy-service-detail .cy-service-block-points > li:before {
  display: none;
  content: none;
}
.cy-service-detail .cy-service-block-points i {
  color: var(--cy-accent);
  font-size: 0.9375em;
  line-height: 1em;
}
.cy-service-detail .cy-service-block-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #101585;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75em;
  line-height: 1.3333333333em;
  -webkit-transition: gap 0.2s ease, color 0.2s ease;
  transition: gap 0.2s ease, color 0.2s ease;
}
.cy-service-detail .cy-service-block-link:hover {
  gap: 14px;
  color: var(--cy-accent);
}

/* --------------------------------------
* Media Queries
*
* $breakpoint-mobile-small:   480px; //@include mq(mobile-small)
* $breakpoint-mobile-landscape: 640px; //@include mq(mobile-landscape)
* $breakpoint-tablet:       768px; //@include mq(tablet)
* $breakpoint-tablet-landscape: 960px; //@include mq(tablet-landscape)
* $breakpoint-desktop-small:    1100px; //@include mq(desktop-small)
* $breakpoint-desktop:      1200px; //@include mq(desktop)
*
------------------------------------ */
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.5;
  color: #6b7280;
  text-align: left;
  font-weight: 300;
  background-color: white;
}
body.nav-open {
  overflow-y: hidden;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  body.nav-open {
    overflow: visible;
  }
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #101585;
  font-weight: 700;
  position: relative;
  font-family: "Inter", sans-serif;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    margin-bottom: 35px;
  }
}
h1 .underline, .h1 .underline, h2 .underline, .h2 .underline, h3 .underline, .h3 .underline, h4 .underline, .h4 .underline, h5 .underline, .h5 .underline, h6 .underline, .h6 .underline {
  position: relative;
}
h1 .underline:after, .h1 .underline:after, h2 .underline:after, .h2 .underline:after, h3 .underline:after, .h3 .underline:after, h4 .underline:after, .h4 .underline:after, h5 .underline:after, .h5 .underline:after, h6 .underline:after, .h6 .underline:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: #888888;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
  color: #101585;
}

h1, .h1 {
  font-size: 1.75em;
  line-height: 1.4285714286em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h1, .h1 {
    font-size: 2.5625em;
    line-height: 1.3170731707em;
  }
}
.single h1, .single .h1 {
  margin-bottom: 20px;
}

h2, .h2, .comment-reply-title {
  font-size: 1.625em;
  line-height: 1.2307692308em;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  h2, .h2, .comment-reply-title {
    font-size: 2em;
    line-height: 1em;
  }
}

h3, .h3 {
  font-size: 1.5em;
  line-height: 1.5em;
}

h4, .h4 {
  font-size: 1.375em;
  line-height: 1.4545454545em;
}

h5, .h5 {
  font-size: 1.25em;
  line-height: 1.3em;
}

h6, .h6 {
  font-size: 1.0625em;
  line-height: 1.1764705882em;
}

a {
  color: #101585;
  text-decoration: none;
  outline: none;
  font-weight: 700;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #888888;
  text-decoration: none;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
  margin-bottom: 35px;
  color: #6b7280;
  font-weight: 300;
  font-size: 1em;
  line-height: 1.75em;
}

strong {
  font-weight: 600;
}

.notes {
  font-size: 0.875em;
  line-height: 1.2142857143em;
}

.flex-content ul {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.flex-content ul > li {
  margin: 0;
  padding: 0 0 10px 22px;
  color: #6b7280;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ul > li:last-child {
  padding-bottom: 0;
}
.flex-content ul > li:before {
  position: absolute;
  left: 0;
  top: 13px;
  width: 10px;
  height: 2px;
  background: #A78BFA;
  display: block;
  content: "";
}
.flex-content ul > li ul, .flex-content ul > li ol {
  margin: 15px 0 0;
}
.flex-content ul.check > li {
  padding-left: 30px;
}
.flex-content ul.check > li:before {
  width: auto;
  height: auto;
  background: none;
  color: #A78BFA;
  font-family: "Font Awesome 6 Pro";
  content: "\f00c";
  top: 0;
  font-weight: 400;
}

.flex-content ol {
  list-style: none;
  counter-reset: li;
  margin: 0 0 30px;
  padding: 0;
}
.flex-content ol > li {
  margin: 0 0 10px;
  padding: 0 0 10px 50px;
  color: #6b7280;
  font-size: 1em;
  line-height: 1.75em;
  position: relative;
}
.flex-content ol > li:last-child {
  margin-bottom: 0;
}
.flex-content ol > li:before {
  color: #A78BFA;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 600;
  content: counter(li, decimal) ".";
  counter-increment: li;
  margin-right: 10px;
  padding: 0 10px 0 5px;
  width: 35px;
  border-right: 1px solid #e1e1e2;
}
.flex-content ol > li ul, .flex-content ol > li ol {
  margin: 15px 0 0;
}

.btn, form input[type=submit],
form input[type=button], input[type=submit], input[type=button], button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):not([class*=cy-]):not([class*=owl-]) {
  display: inline-block;
  background: #101585;
  font-weight: 400;
  padding: 18px 30px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  text-align: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 1.0625em;
  line-height: 1em;
  color: white;
  letter-spacing: 0.3px;
  cursor: pointer;
}
.btn:hover, .btn:focus, .btn.active, input[type=submit]:hover, input[type=submit]:focus, input[type=submit].active, input[type=button]:hover, input[type=button]:focus, input[type=button].active, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):not([class*=cy-]):not([class*=owl-]):hover, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):not([class*=cy-]):not([class*=owl-]):focus, button:not(.mfp-arrow):not(.mfp-close):not(.pswp__button):not([class*=cy-]):not([class*=owl-]).active {
  background: #A78BFA;
  color: white;
}

.btn.light, form input.light[type=submit],
form input.light[type=button] {
  background: none;
  padding-left: 0;
  padding-right: 0;
  color: #101585;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.btn.light:hover, form input.light[type=submit]:hover,
form input.light[type=button]:hover {
  color: #101585;
}
.btn.light:after, form input.light[type=submit]:after,
form input.light[type=button]:after {
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 6 Pro";
  margin-left: 10px;
  font-weight: 300;
  font-size: 0.875em;
  line-height: 1.2142857143em;
  color: #A78BFA;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:before, form input.light[type=submit]:before,
  form input.light[type=button]:before {
    width: 0;
    display: block;
    background: #A78BFA;
    height: 2px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.btn.light:hover, form input.light[type=submit]:hover,
form input.light[type=button]:hover {
  color: #101585;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.light:hover:before, form input.light[type=submit]:hover:before,
  form input.light[type=button]:hover:before {
    width: 100%;
  }
}
.btn.outline, form input.outline[type=submit],
form input.outline[type=button] {
  border: 3px solid #101585;
  background: none;
  color: #101585;
  padding-top: 14px;
  padding-bottom: 14px;
  z-index: 2;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:before, form input.outline[type=submit]:before,
  form input.outline[type=button]:before {
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: #101585;
    display: block;
    position: absolute;
    z-index: -1;
    content: "";
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  #front-page-banner .btn.outline:before, #front-page-banner form input.outline[type=submit]:before, form #front-page-banner input.outline[type=submit]:before,
  #front-page-banner form input.outline[type=button]:before,
  form #front-page-banner input.outline[type=button]:before {
    background: white;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .btn.outline:hover, form input.outline[type=submit]:hover,
  form input.outline[type=button]:hover {
    color: white;
  }
  .btn.outline:hover:before, form input.outline[type=submit]:hover:before,
  form input.outline[type=button]:hover:before {
    width: 100%;
  }
  #front-page-banner .btn.outline:hover, #front-page-banner form input.outline[type=submit]:hover, form #front-page-banner input.outline[type=submit]:hover,
  #front-page-banner form input.outline[type=button]:hover,
  form #front-page-banner input.outline[type=button]:hover {
    color: #101585;
  }
}
.btn.secondary, form input.secondary[type=submit],
form input.secondary[type=button] {
  background: #A78BFA;
  color: white;
}
.btn.secondary:hover, form input.secondary[type=submit]:hover,
form input.secondary[type=button]:hover {
  background: #101585;
  color: white;
}
.btn.white, form input.white[type=submit],
form input.white[type=button] {
  background: white;
  color: #101585;
}
.btn.white:hover, form input.white[type=submit]:hover,
form input.white[type=button]:hover {
  background: #A78BFA;
  color: white;
}

.btn + .btn, form input[type=submit] + .btn,
form input[type=button] + .btn, form .btn + input[type=submit], form input[type=submit] + input[type=submit],
form input[type=button] + input[type=submit],
form .btn + input[type=button],
form input[type=submit] + input[type=button],
form input[type=button] + input[type=button] {
  margin-left: 20px;
}

.row.padded, .image-left-text-right.padded {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded, .image-left-text-right.padded {
    padding-top: 192px;
    padding-bottom: 192px;
  }
}
.row.padded-bottom, .image-left-text-right.padded-bottom {
  padding-bottom: 64px;
}
@media only screen and (min-width: 768px) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-bottom, .image-left-text-right.padded-bottom {
    padding-bottom: 192px;
  }
}
.row.padded-top, .image-left-text-right.padded-top {
  padding-top: 64px;
}
@media only screen and (min-width: 768px) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 96px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row.padded-top, .image-left-text-right.padded-top {
    padding-top: 192px;
  }
}

.row {
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .row {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (min-width: 1520px) {
  .row {
    margin: 0;
    padding-left: calc((100% - 1460px) / 2);
    padding-right: calc((100% - 1460px) / 2);
  }
}
.row.no-row {
  padding-left: 0;
  padding-right: 0;
}

.wrapper {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  left: 0;
  height: 100%;
}

#header {
  padding-top: 50px;
  padding-bottom: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: fixed;
  align-items: center;
  background: white;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #e1e1e2;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 35px;
    padding-bottom: 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
  .fixed-header #header {
    padding-top: 0;
    -webkit-box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.05);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}
@media screen and (min-width: 1400px) {
  #header {
    padding-top: 0;
  }
  #header.top-menu {
    padding-top: 35px;
  }
  .fixed-header #header.top-menu {
    padding-top: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#header .toggle-nav {
  top: calc(50% + 16px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  left: 0;
  cursor: pointer;
  display: block;
  width: 50px;
  padding: 3px 0 0 10px;
  height: 55px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header .toggle-nav {
    display: none;
  }
}
#header .toggle-nav .icon {
  position: relative;
  width: 30px;
}
#header .toggle-nav .title {
  text-transform: uppercase;
  color: #A78BFA;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 0.6875em;
  line-height: 1em;
}
#header .toggle-nav .line {
  position: absolute;
  width: 30px;
  height: 2px;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background-color: #101585;
  display: block;
  top: 21px;
}
#header .toggle-nav .line.second {
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  top: 28px;
  width: calc(100% - 15px);
}
#header .toggle-nav .line.third {
  top: 35px;
  width: calc(100% - 8px);
}

.top-tel {
  background: #101585;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  text-align: center;
  display: block;
  color: white;
  font-size: 0.875em;
  line-height: 1em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3px;
  font-weight: 600;
  padding: 10px 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    opacity: 1;
    height: 34px;
  }
  .fixed-header .top-tel {
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
}
.top-tel span {
  padding: 10px 20px;
}
.top-tel i {
  margin-right: 5px;
  color: #A78BFA;
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel i {
    display: inline-block;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
.top-tel strong {
  color: #A78BFA;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-tel strong {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 1400px) {
  .left-logo .top-tel strong {
    display: none;
  }
}
.top-tel:hover {
  background: #A78BFA;
  color: white;
}
.top-tel:hover i {
  color: #101585;
}
.top-tel:hover strong {
  color: #101585;
}
@media screen and (min-width: 1400px) {
  .left-logo .top-tel {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    background: none;
    height: auto;
    overflow: visible;
    font-size: 1em;
    line-height: 1em;
    color: #101585;
    padding-left: 20px;
    border-left: 1px solid #e1e1e2;
  }
  .fixed-header .left-logo .top-tel {
    height: auto;
    pointer-events: visible;
    opacity: 1;
  }
  .left-logo .top-tel span {
    padding: 0;
  }
  .left-logo .top-tel:hover {
    background: none;
    color: #A78BFA;
  }
}

.main-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 40px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo {
    display: none;
    margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .main-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.main-logo img {
  height: 40px;
  width: auto;
  max-width: 300px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.small {
    display: none;
  }
}
.main-logo img.large {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .main-logo img.large {
    display: block;
    max-height: 60px;
    height: auto;
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .fixed-header .main-logo img.large {
    max-height: 60px;
  }
}
@media screen and (min-width: 1100px) {
  .main-logo img.large {
    max-height: 80px;
  }
}
@media screen and (min-width: 1400px) {
  .main-logo img.large {
    max-height: 90px;
  }
}
.main-logo img.no-mobile {
  display: block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .top-menu .main-logo {
    text-align: center;
    width: calc(280px * 0.8);
  }
}
@media screen and (min-width: 1400px) {
  .top-menu .main-logo {
    width: 280px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .left-logo .main-logo {
    display: block;
  }
}

.header-logo {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .header-logo img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    height: auto;
  }
}

#header-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #101585;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav {
    position: relative;
    overflow: visible;
    left: auto;
    top: auto;
    padding-top: 0;
    width: 100%;
    height: auto;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: none;
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .left-logo #header-nav {
    width: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
.nav-open #header-nav {
  height: 100vh;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .nav-open #header-nav {
    height: auto;
  }
}
#header-nav .close-nav {
  left: 50%;
  top: 20px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  background: white;
  width: 50px;
  position: absolute;
  color: #101585;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  font-size: 1.5em;
  line-height: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .close-nav {
    display: none;
  }
}
#header-nav .close-nav:hover {
  background: #A78BFA;
  color: white;
}
#header-nav .menu {
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: calc(50% - 280px * 0.8 / 2 - 15px);
  }
}
@media screen and (min-width: 1400px) {
  #header-nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: calc(50% - 280px / 2 - 20px);
  }
}
#header-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
#header-nav ul li {
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #151cb3;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li {
    display: block;
    -webkit-animation: none;
            animation: none;
    position: relative;
    border-bottom: 0;
  }
}
#header-nav ul li:before {
  display: none;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:after {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    display: block;
    right: -1px;
    content: "";
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    top: 50%;
    background: #A78BFA;
  }
}
#header-nav ul li.current-menu-item > a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
#header-nav ul li.current-menu-item > a:after {
  display: block;
  background: #A78BFA;
  height: 4px;
  content: "";
  margin-top: 8px;
  width: 100%;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.current-menu-item > a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.current-menu-item > a:hover {
    cursor: default;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
#header-nav ul li a {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  padding: 20px 15px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  color: white;
  font-size: 1em;
  line-height: 1em;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  position: relative;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li a {
    border: 0;
    padding: 15px 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    font-size: 1em;
    line-height: 1em;
    color: #101585;
  }
  #header-nav ul li a:hover {
    color: #A78BFA;
  }
}
@media screen and (min-width: 1100px) {
  #header-nav ul li a {
    margin: 0 20px;
  }
}
#header-nav ul li.menu-item-has-children a .menu-parent {
  display: inline-block;
  margin-left: 10px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children a .menu-parent {
    margin-left: 5px;
  }
}
#header-nav ul li.menu-item-has-children a .menu-parent:before {
  display: block;
  content: "\f107";
  font-size: 14px;
  color: #A78BFA;
  font-family: "Font Awesome 6 Pro";
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children a .menu-parent:before {
    font-weight: 400;
    color: #A78BFA;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.menu-item-has-children:hover a .menu-parent:before {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
#header-nav ul li.menu-item-has-children.open a .menu-parent:before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
#header-nav ul li ul {
  margin-bottom: 0;
  z-index: 1;
  padding-bottom: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 10px 10px 15px;
    width: auto;
    -webkit-box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 40px;
            box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 40px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    pointer-events: none;
    opacity: 0;
    width: 250px;
    border-radius: 0 0 5px 5px;
    -webkit-transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    transition: opacity 200ms ease-in, top 200ms ease-in, visibility 200ms ease-in;
    background: #101585;
    max-height: none;
    overflow: visible;
    z-index: 10;
  }
  #header-nav ul li ul:before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7.5px 10px 7.5px;
    border-color: transparent transparent #101585 transparent;
    position: absolute;
    right: 0;
    display: block;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    content: "";
    top: -10px;
    left: 50%;
  }
}
#header-nav ul li ul li {
  border: 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul li {
    width: 100%;
    text-align: center;
  }
  #header-nav ul li ul li:after {
    display: none;
  }
}
#header-nav ul li ul a {
  font-size: 0.875em;
  line-height: 1em;
  padding: 12px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li ul a {
    font-size: 0.9375em;
    line-height: 1.4666666667em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    position: relative;
    text-align: center;
    text-transform: none;
    padding: 12px 15px;
    letter-spacing: 0;
    color: white;
    margin: 0 auto;
    display: inline-block;
    overflow: visible;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  #header-nav ul li ul a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
  }
  #header-nav ul li ul a:hover:before {
    width: calc(100% - 20px);
  }
  #header-nav ul li ul a:hover {
    color: white;
  }
}
#header-nav ul li.open ul {
  max-height: 5000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
  padding-bottom: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li.open ul {
    max-height: none;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav ul li:hover ul, #header-nav ul li.mega-toggle-on {
    opacity: 1;
    pointer-events: visible;
    top: 100%;
  }
  #header-nav ul li:hover ul .mega-menu-link .mega-indicator:before, #header-nav ul li.mega-toggle-on .mega-menu-link .mega-indicator:before {
    opacity: 1 !important;
    bottom: 0 !important;
  }
}
#header-nav .menu-items {
  width: 100%;
  padding: 0 30px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu-items {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #header-nav .menu-items ul li:last-child:after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #header-nav .menu-left {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    margin-top: -50px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
@-webkit-keyframes banner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes banner {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.banner {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
.banner .btn, .banner form input[type=submit], form .banner input[type=submit],
.banner form input[type=button],
form .banner input[type=button] {
  display: inline-block;
  background: white;
  width: auto;
  color: #101585;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.banner .btn:before, .banner form input[type=submit]:before, form .banner input[type=submit]:before,
.banner form input[type=button]:before,
form .banner input[type=button]:before {
  width: 0;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  background: #101585;
  content: "";
  z-index: 2;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.banner .btn span, .banner form input[type=submit] span, form .banner input[type=submit] span,
.banner form input[type=button] span,
form .banner input[type=button] span {
  position: relative;
  z-index: 3;
}
.banner .btn i, .banner form input[type=submit] i, form .banner input[type=submit] i,
.banner form input[type=button] i,
form .banner input[type=button] i {
  margin-left: 5px;
}
@media only screen and (min-width: 768px) {
  .banner .btn i, .banner form input[type=submit] i, form .banner input[type=submit] i,
  .banner form input[type=button] i,
  form .banner input[type=button] i {
    margin-left: 25px;
  }
}
.banner .btn:hover, .banner form input[type=submit]:hover, form .banner input[type=submit]:hover,
.banner form input[type=button]:hover,
form .banner input[type=button]:hover {
  color: white;
}
.banner .btn:hover:before, .banner form input[type=submit]:hover:before, form .banner input[type=submit]:hover:before,
.banner form input[type=button]:hover:before,
form .banner input[type=button]:hover:before {
  width: 100%;
}

#front-page-banner {
  height: 100vh;
}
#front-page-banner .banner-item {
  height: 100vh;
}
#front-page-banner .banner-item img.banner-image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
}
#front-page-banner .banner-item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: 50px 60px 0;
  max-width: 1260px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container {
    padding: 140px 50px 0;
  }
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
.sticky-text #front-page-banner .banner-item .container {
  padding-bottom: 160px;
}
@media only screen and (min-width: 768px) {
  .sticky-text #front-page-banner .banner-item .container {
    padding-bottom: 50px;
  }
}
#front-page-banner .banner-item .container h3 {
  color: white;
  font-size: 2.1875em;
  line-height: 1.2857142857em;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 2.5em;
    line-height: 1.25em;
  }
}
@media screen and (min-width: 1400px) {
  #front-page-banner .banner-item .container h3 {
    font-size: 4.5em;
    line-height: 1.25em;
  }
}
#front-page-banner .banner-item .container p {
  color: white;
  font-size: 1.125em;
  line-height: 1.3333333333em;
  max-width: 785px;
  margin: 0 auto 25px;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .banner-item .container p {
    font-size: 1.25em;
    line-height: 1.8em;
  }
}
#front-page-banner .banner-item .container p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item .container {
    -webkit-animation: pulse 0.6s ease-in normal;
            animation: pulse 0.6s ease-in normal;
    opacity: 1;
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) {
  #front-page-banner .owl-item.active .banner-item img.banner-image {
    -webkit-animation: banner 7s ease-in normal;
            animation: banner 7s ease-in normal;
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
}
#front-page-banner .owl-nav .owl-prev, #front-page-banner .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  font-size: 1.375em;
  line-height: 2.2727272727em;
  color: white;
  width: 50px;
  height: 50px;
  opacity: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#front-page-banner .owl-nav .owl-prev {
  left: 0;
}
#front-page-banner .owl-nav .owl-next {
  right: 0;
}
#front-page-banner:hover .owl-nav .owl-prev, #front-page-banner:hover .owl-nav .owl-next {
  opacity: 1;
}

.sticky-bannertext {
  position: sticky;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 5;
  background: rgba(16, 21, 133, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.sticky-bannertext h3, .sticky-bannertext p {
  color: white;
  margin-bottom: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .sticky-bannertext h3, .sticky-bannertext p {
    margin-bottom: 0;
  }
}

.banner-item.overlay:after, .page-header.overlay:after, .slideshow-item.overlay:after {
  background: black;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  pointer-events: none;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  opacity: 0;
}
.banner-item.overlay-10:after, .page-header.overlay-10:after, .slideshow-item.overlay-10:after {
  opacity: 0.1;
}
.banner-item.overlay-20:after, .page-header.overlay-20:after, .slideshow-item.overlay-20:after {
  opacity: 0.2;
}
.banner-item.overlay-30:after, .page-header.overlay-30:after, .slideshow-item.overlay-30:after {
  opacity: 0.3;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-40:after, .page-header.overlay-40:after, .slideshow-item.overlay-40:after {
  opacity: 0.4;
}
.banner-item.overlay-50:after, .page-header.overlay-50:after, .slideshow-item.overlay-50:after {
  opacity: 0.5;
}
.banner-item.overlay-60:after, .page-header.overlay-60:after, .slideshow-item.overlay-60:after {
  opacity: 0.6;
}
.banner-item.overlay-70:after, .page-header.overlay-70:after, .slideshow-item.overlay-70:after {
  opacity: 0.7;
}
.banner-item.overlay-80:after, .page-header.overlay-80:after, .slideshow-item.overlay-80:after {
  opacity: 0.8;
}
.banner-item.overlay-90:after, .page-header.overlay-90:after, .slideshow-item.overlay-90:after {
  opacity: 0.9;
}
.banner-item.overlay-100:after, .page-header.overlay-100:after, .slideshow-item.overlay-100:after {
  opacity: 1;
}

main.pagebody {
  z-index: 2;
  position: relative;
  background: white;
}

.page-header {
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #101585;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 105px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header {
    height: 410px;
    top: 90px;
    padding-top: 0;
  }
}
.page-header img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.page-header .row {
  z-index: 3;
  position: relative;
}
.page-header h1 {
  color: white;
  font-size: 1.875em;
  line-height: 1.3333333333em;
  margin: 0;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .page-header h1 {
    font-size: 2.5em;
    line-height: 1.2em;
  }
}
@media screen and (min-width: 1400px) {
  .page-header h1 {
    font-size: 3.125em;
    line-height: 1.16em;
  }
}

@media only screen and (min-width: 768px) {
  .socials {
    text-align: right;
  }
  main .socials {
    text-align: left;
  }
}
.socials a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: white;
  color: #A78BFA;
  text-align: center;
  font-weight: 400;
  margin-bottom: 15px;
  margin-right: 15px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  .socials a {
    margin-left: 15px;
    margin-right: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
main .socials a {
  background: #edecee;
  color: #A78BFA;
  margin: 0 15px 0 0;
}
.socials a:hover {
  background: #A78BFA;
  color: white;
}
.socials a i {
  font-size: 1.125em;
  line-height: 2.5em;
}

.opening-hours .opening-hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5px;
  max-width: 250px;
}
.opening-hours .opening-hour:last-child {
  margin-bottom: 0;
}
.opening-hours strong {
  font-weight: 300;
}

#footer {
  position: relative;
  z-index: 2;
  border-top: 0;
}
#footer #footer-section {
  background: #101585;
  padding-top: 20px;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section {
    padding-top: 40px;
  }
}
#footer #footer-section .col {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  #footer #footer-section .col {
    margin-bottom: 35px;
  }
}
#footer #footer-section .contacts i {
  width: 30px;
  display: inline-block;
  text-align: center;
  color: #A78BFA;
  margin-right: 10px;
  padding-right: 10px;
  position: absolute;
  top: 3px;
  left: 0;
  border-right: 1px solid #151cb3;
  font-size: 1.125em;
  line-height: 1.2222222222em;
}
#footer #footer-section .contacts a {
  font-weight: 300;
  display: inline-block;
  position: relative;
  color: white;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section .contacts a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-section .contacts a:hover:before {
    width: 100%;
  }
}
#footer #footer-section .contacts p {
  margin-bottom: 20px;
  position: relative;
  padding-left: 50px;
}
#footer #footer-section .contacts p:last-child {
  margin: 0;
}
#footer #footer-section p {
  color: white;
}
#footer .footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer .footer-col {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#footer .footer-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 30px 10px;
  margin-top: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 1400px) {
  #footer .footer-logos {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
#footer .footer-logos .logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(50% - 5px);
  margin: 0;
}
@media screen and (min-width: 1400px) {
  #footer .footer-logos .logo-item {
    padding: 0 30px;
    width: auto;
    border-left: 1px solid #151cb3;
  }
}
#footer .footer-logos .logo-item:first-child {
  border: 0;
}
#footer .footer-logos .logo-item:last-child {
  padding-right: 0;
}
#footer .footer-logos .logo-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
#footer .footer-logos .logo-item img {
  width: auto;
  height: auto;
  margin: auto;
  max-height: 50px;
  margin: auto;
  max-width: 100%;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
#footer #footer-end {
  background: #101585;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  width: 100%;
  border-top: 1px solid #151cb3;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-end {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#footer #footer-end .copyright {
  color: white;
  margin-bottom: 15px;
  font-size: 0.875em;
  line-height: 1em;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer #footer-end .copyright {
    margin-bottom: 0;
    width: auto;
  }
}
#footer #footer-end .copyright a {
  color: white;
  font-weight: 300;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-size: 0.875em;
  line-height: 1em;
}
#footer ul li {
  margin: 0 5px;
  padding: 0;
  display: inline-block;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul li {
    margin: 0 0 0 20px;
  }
}
#footer ul li:before {
  display: none;
}
#footer ul a {
  font-weight: 400;
  display: inline-block;
  position: relative;
  color: white;
  padding: 6px 0;
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a {
    padding: 2px 0;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a:before {
    width: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
    background: white;
    height: 1px;
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
  }
}
@media only screen and (min-width: 960px) and (orientation: landscape) {
  #footer ul a:hover:before {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */