@charset "UTF-8";
/* ------------------------- Colors -------------------------------------------------- */
:root {
  --color-dark: #1C1D20;
  --color-dark-dark: #141517;
  --color-light: #FFFFFF;
  --color-blue: #3ee5e5;
  --color-blue-dark: #334BD3;
  --color-lightgray: #E9EAEB;
  --color-white: #FFFFFF;
  --color-border: rgba(28, 29, 32, 0.175);
  --color-border-solid: #D2D2D2;
  --color-border-light: rgba(255, 255, 255, 0.2);
  --color-border-solid-light: #545557;
  --color-text: #1C1D20;
  --color-text-light: #FFF;
  --alert-error: #ff4444;
  --alert-success: #24C958;
  --animation-primary: all .5s cubic-bezier(.7, 0, .3, 1);
  --animation-fast: all .3s cubic-bezier(.7, 0, .3, 1);
  --animation-smooth: all .7s cubic-bezier(.7, 0, .3, 1);
  --animation-slow: all .9s cubic-bezier(.7, 0, .3, 1);
  --section-padding: clamp(2em, 10vh, 6em);
  --container-padding: clamp(2.5em, 8vw, 8em);
  --gap-padding: clamp(1.5em, 4vw, 2.5em);
}

@media screen and (max-width: 1200px) {
  :root {
    --container-padding: 6vw;
  }
}
@media screen and (max-width: 720px) {
  :root {
    --section-padding: 12vh;
  }
}
@media screen and (max-width: 540px) {
  :root {
    --color-border: rgba(28, 29, 32, 0.225);
    --color-border-light: rgba(255, 255, 255, 0.225);
    --container-padding: clamp(1.25em, 4vw, 2.5em);
    --section-padding: max(2.5em, 12vh);
  }
}
/* ------------------------- Body -------------------------------------------------- */
/* ------------------------- Main Elements -------------------------------------------------- */
.section-wrap {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.section.full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section.no-padding {
  padding-top: unset;
  padding-bottom: unset;
}

.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 130em;
}

.container.large {
  padding-left: var(--gap-padding);
  padding-right: var(--gap-padding);
}

.container.medium {
  padding-left: calc(var(--container-padding) * 2);
  padding-right: calc(var(--container-padding) * 2);
}

.container.small {
  padding-left: calc(var(--container-padding) * 3);
  padding-right: calc(var(--container-padding) * 3);
}

.container.no-padding {
  padding-left: unset;
  padding-right: unset;
}

.row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.row.no-flex {
  display: block;
}

.row.no-wrap {
  flex-wrap: nowrap;
}

.flex-col {
  display: block;
  width: 100%;
  order: 2;
  position: relative;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 0;
}

img.overlay,
video.overlay {
  -o-object-fit: cover;
     object-fit: cover;
}

.line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-top: var(--gap-padding);
  margin-bottom: var(--gap-padding);
}

.stripe {
  display: block;
  width: 100%;
  height: 1px;
  border-top: 2px solid #1ba6ff;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media screen and (max-width: 540px) {
  .section.full-height {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    max-height: 100vh;
  }
  .container.medium,
  .container.small {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}
/* ------------------------- Buttons -------------------------------------------------- */
.btn {
  margin-bottom: calc(var(--gap-padding) / 2);
  position: relative;
  z-index: 1;
  border: 0;
  outline: 0;
}

.btn input {
  cursor: pointer;
}

.btn:hover {
  z-index: 15;
}

.btn:last-child {
  margin-bottom: 0;
}

.btn-click {
  cursor: pointer;
  border: 0;
  color: #fff;
  background: transparent;
  border-radius: 2.125em;
  min-width: 1em;
  height: 4em;
  padding: 0;
  font-size: 1.7rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  will-change: transform !important;
  outline: 0;
  transform: translateZ(0) rotate(0.001deg);
  -webkit-backdrop-filter: blur(0.4em);
          backdrop-filter: blur(0.4em);
}

.btn-click:hover {
  cursor: pointer;
}

.btn-normal .btn-click {
  border: 2px solid #1ba6ff;
}

.btn-fill {
  background: #151d2d;
  position: absolute;
  width: 150%;
  height: 200%;
  border-radius: 50%;
  top: -50%;
  left: -25%;
  transform: translate3d(0, -76%, 0);
  will-change: transform !important;
  transition: background-color ease-in-out 0.25s;
}

.btn-fill-lblue {
  background: #1ba6ff;
}

.btn-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 1.5em;
  z-index: 2;
  color: #fff;
  position: relative;
  transform: rotate(0.001deg);
  pointer-events: none;
  will-change: transform, color;
}

.btn-click:hover {
  text-decoration: none;
}

.btn.btn-normal.btn-center.load-more-holder {
  margin-bottom: 8em;
}

/* --- Button Normal - Theme Dark --- */
.btn-normal .btn-click {
  border: 2px solid #1ba6ff;
}

.btn-normal .btn-text .btn-text-inner {
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-align: center;
}

.btn-text-white .btn-click .btn-text .btn-text-inner {
  color: #fff !important;
}

/* --- Button Link --- */
.btn-link {
  margin: 0;
}

.btn-link .btn-click {
  border: 0;
  height: 2.75em;
  border-radius: 0;
  overflow: visible;
}

.btn-link .btn-text {
  padding: 0 calc(var(--gap-padding) / 2);
  position: relative;
}

.btn-link .btn-click::after {
  content: "";
  position: absolute;
  bottom: -0.5em;
  left: 50%;
  display: block;
  width: calc(clamp(16px, 1.2vw, 19px) / 2.75);
  height: calc(clamp(16px, 1.2vw, 19px) / 2.75);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(0.001deg);
  transition: var(--animation-fast);
  will-change: transform !important;
}

.btn-link.active .btn-click::after {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

.btn-link .btn-click:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

.links-wrap {
  display: flex;
}

.links-wrap:hover .btn-link .btn-click::after {
  transform: translate(-50%, -50%) scale(0) rotate(0.001deg);
}

.links-wrap:hover .btn-link .btn-click:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

/* --- Button Link External --- */
.btn-link.btn-link-external .btn-click {
  border: 0;
  height: 2.25em;
  border-radius: 0;
  overflow: visible;
  margin: 0 calc(var(--gap-padding) / 3);
}

.btn-link.btn-link-external .btn-text {
  padding: 0;
}

.btn-link.btn-link-external .btn-click::after {
  bottom: 0;
  width: 100%;
  height: 1px;
  border-radius: 0;
  background: var(--color-dark);
  transform: translate(-50%, -50%) scale(0, 1) rotate(0.001deg);
}

/* --- Button Link External - Theme Dark --- */
.theme-dark .btn-link.btn-link-external .btn-click::after {
  background: var(--color-white);
}

.theme-dark .btn-link .btn-click:hover::after {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

/* --- Button Circle --- */
.btn-round {
  margin: 0;
  z-index: 0;
}

.btn-round .btn-click {
  width: clamp(8.5em, 10vw, 10em);
  height: clamp(8.5em, 10vw, 10em);
  border-radius: 50%;
  border: 0;
  background: #1e283f;
}

.btn-round .btn-click.scroll-next {
  width: clamp(3.5em, 6vw, 5em);
  height: clamp(3.5em, 6vw, 5em);
  margin: 4em 0 0;
}

.btn-round.btn-blue .btn-click {
  background: #1ba6ff;
}

.btn-round .btn-text {
  padding: 0 1em;
  text-align: center;
}

.btn-round .btn-text-inner {
  color: #fff !important;
  font-weight: 300;
  letter-spacing: -0.03em;
}

.btn-round .btn-click:hover .btn-text-inner {
  color: #1ba6ff !important;
}

.btn-round .btn-fill {
  background: #273554;
}

#arrow-down {
  width: 23px;
}

/* --- Button Hamburger --- */
.btn-hamburger {
  position: fixed;
  top: -1em;
  right: -0.7em;
  transition: transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
  transform: translateY(0%) scale(1) rotate(0.001deg);
  z-index: 105;
}

.btn-hamburger:hover {
  z-index: 105;
}

.btn-hamburger .btn-click,
.btn-hamburger .btn-text {
  width: 5em;
  height: 5em;
  border-radius: 50%;
}

.btn-hamburger .btn-click {
  border: 0;
  background-color: none;
  transition: background-color 0.25s cubic-bezier(0.36, 0, 0.66, 0), box-shadow 0.25s cubic-bezier(0.36, 0, 0.66, 0);
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.nav-active .btn-hamburger .btn-click {
  /*-webkit-box-shadow: inset 0px 0px 0px 1px transparent !important; 
  box-shadow: inset 0px 0px 0px 1px transparent !important;*/
}

.btn-hamburger .btn-fill {
  background-color: #151d2d;
}

.btn-hamburger .btn-text-inner {
  color: var(--color-white);
  opacity: 0;
}

.btn-hamburger .btn-bars {
  position: absolute;
  width: 28%;
  height: 8%;
  opacity: 1;
}

.btn-hamburger .btn-text {
  position: relative;
}

.btn-hamburger .btn-bars::before,
.btn-hamburger .btn-bars::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%) rotate(0.001deg);
  background: #1ba6ff;
  transition: var(--animation-fast);
}

.btn-hamburger .btn-bars::before {
  top: 0;
  transform: translate(-50%, -50%);
}

.btn-hamburger .btn-bars::after {
  top: 100%;
  transform: translate(-50%, -50%);
}

.btn-hamburger.active .btn-bars::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-hamburger.active .btn-click {
  background-color: #232f4a;
}

.btn-hamburger.active .btn-bars::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

main.scrolled .btn-hamburger {
  transition: transform 0.4s cubic-bezier(0.34, 1.5, 0.64, 1);
  transform: translateY(0%) scale(1) rotate(0.001deg);
}

main .btn-hamburger.active {
  transform: translateY(0%) scale(1) rotate(0.001deg);
}

/* --- Button Menu --- */
.btn-menu .btn-click::after,
.links-wrap:hover .btn-menu .btn-click:hover::after {
  left: 0;
  bottom: 50%;
  transform: translate(-50%, 50%) scale(1) rotate(0.001deg);
}

.theme-dark .btn-menu .btn-click::after,
.theme-dark .btn-menu .btn-click:hover::after {
  background: var(--color-white);
}

/* --- Button Icon --- */
.btn-icon .btn-click {
  width: 4.25em;
}

.btn-icon .btn-click .btn-text-inner {
  display: flex;
}

/* ------------------------- Social Icons -------------------------------------------------- */
.s-icon {
  position: relative;
  overflow: hidden;
  width: 1.75em;
  height: 1.75em;
  margin-right: 0.15em;
  margin-left: 0.15em;
  border-radius: 50%;
  background-color: var(--primary);
  transition: var(--animation-primary);
  display: block;
  float: left;
}

.s-icon .s-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0.0001deg);
  width: 65%;
  transition: var(--animation-primary);
}

.s-icon .s-icon-wrap:nth-of-type(2) {
  transform: translate(-50%, 100%) rotate(0.0001deg);
}

.s-icon .s-icon-wrap svg {
  display: block;
  width: 100%;
}

.s-icon .s-icon-wrap svg path {
  fill: var(--white);
}

.s-icon:hover {
  background: var(--secondary);
  cursor: pointer;
}

.s-icon:hover .s-icon-wrap:nth-of-type(1) {
  transform: translate(-50%, -200%) rotate(0.0001deg);
}

.s-icon:hover .s-icon-wrap:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(0.0001deg);
}

/* ------------------------- Color Box -------------------------------------------------- */
.color-box {
  width: calc(33.333% - 1.333em);
  background: var(--primary-dark);
  font-weight: 500;
  color: var(--white);
  margin-right: 2em;
  margin-top: 2em;
}

.color-box:nth-child(3), .color-box:nth-child(6) {
  margin-right: 0;
}

.color-box:before {
  content: "";
  display: block;
  padding-top: 40%;
}

.color-box .overlay {
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.color-box.dark {
  background: var(--color-dark);
  box-shadow: inset 0 0 0 1px var(--primary-light);
  color: white;
}

.color-box.gray {
  background: var(--color-gray);
  color: white;
}

.color-box.blue {
  background: var(--color-blue);
  color: white;
}

.color-box.white {
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.color-box.light-gray {
  background: var(--color-lightgray);
  box-shadow: inset 0 0 0 1px var(--color-border);
}

.color-box.border {
  background: var(--color-border);
}

@media screen and (max-width: 1000px) {
  .color-box {
    width: calc(50% - 1em);
  }
  .color-box:nth-child(3), .color-box:nth-child(6) {
    margin-right: 2em;
  }
  .color-box:nth-child(even) {
    margin-right: 0;
  }
}
@media screen and (max-width: 720px) {
  .color-box {
    width: 100%;
  }
  .color-box:nth-child(even), .color-box:nth-child(odd) {
    margin-right: 0;
  }
}
/* ------------------------- Form -------------------------------------------------- */
.section-form {
  background: var(--color-dark);
}

.section-form + .footer-rounded-div .rounded-div {
  background: var(--color-dark);
}

.form {
  width: 100%;
  display: block;
}

.form-container {
  width: 100%;
}

.hidden-field,
.website-field {
  position: absolute;
  left: -9999px;
}

.form input, .form textarea, .form select {
  border: 0;
  box-shadow: none;
}

.grecaptcha-badge {
  top: calc(100% - 120px) !important;
  transform: translate(0, -50%);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px !important;
  visibility: hidden;
}

.form-col {
  display: block;
  width: 100%;
  font-size: 1.33em;
  border-bottom: 1px solid var(--color-border-light);
  padding: 0 2.75em;
  position: relative;
}

.form-col:nth-child(2) {
  border-top: 1px solid var(--color-border-light);
}

.form .field {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  width: 100%;
  padding: 1em 0 2em 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-weight: 450;
  font-size: 1em;
  color: var(--color-white);
  display: block;
  margin-top: -0.33em;
  background: transparent !important;
}

.form .form-col h5 {
  position: absolute;
  left: 0;
  top: 3.4em;
  opacity: 0.33;
}

.form .field:focus {
  outline: 0;
  outline-width: 1px !important;
  outline-offset: 0px;
  border-radius: 0;
  border: 0;
}

.form .field::before {
  position: absolute;
  left: 0;
  width: 0.25em;
  height: 0.25em;
  content: "";
  top: 0;
  background: var(--color-white);
  border-radius: 50%;
}

.form .field::-webkit-input-placeholder,
.form .field::placeholder {
  color: var(--color-white);
  opacity: 0.33;
  font-weight: 450;
}

.form textarea.field {
  resize: vertical;
  resize: none;
}

.form .label {
  width: 100%;
  display: block;
  margin-bottom: 0;
  color: var(--color-white);
  font-weight: 450;
  padding-top: 1.66em;
  transition: all 0.2s ease-in-out;
}

.form-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--color-white);
  z-index: 10;
}

.btn-contact-send {
  float: right;
  transform: translate(-20%, -60%);
  position: relative;
  z-index: 5;
}

.btn-contact-send .btn-text {
  pointer-events: all;
}

.form .form-col.not-empty .label {
  opacity: 0.33;
}

/* --- Arlert Options --- */
.alert {
  font-size: 1rem;
  transform: translateY(-1.5em);
  position: relative;
  line-height: 1.1em;
  background: var(--color-dark);
  padding-bottom: 0.75em;
}

.alert span,
.alert p,
.alert strong {
  color: var(--alert-error);
  font-size: 1em;
  font-weight: 450;
  line-height: 1rem;
  margin: 0;
}

.alert::before {
  position: absolute;
  content: "";
  left: -3.85em;
  width: 0.3em;
  height: 0.3em;
  background: var(--alert-error);
  border-radius: 50%;
  top: 0.35em;
}

.alert-success {
  transform: translateY(0);
}

.alert-success span,
.alert-success p,
.alert-success strong {
  color: var(--alert-success);
}

.alert-success::before {
  background: var(--alert-success);
}

/* --- Custom Checkbox --- */
.form .checkbox-button {
  display: flex;
  margin-bottom: 0.5em;
  padding-left: 1.25em;
  align-items: center;
  font-size: 1em;
  font-weight: 450;
}

.form .checkbox-button:last-child {
  margin-bottom: 2.2em;
}

.form .checkbox-button:hover {
  cursor: pointer;
}

.form .checkbox-button input {
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.form .checkbox-button span {
  height: 1.1em;
  margin-bottom: 0px;
  color: var(--color-white);
  order: 2;
  display: inline-block;
  opacity: 0.33;
}

.form .checkbox-button .custom-check {
  position: relative;
  order: 1;
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.5em;
  margin-right: 0.5em;
  margin-left: -1.25em;
  border: 1px solid var(--color-border-light);
  border-radius: 0em;
  box-shadow: 0;
  overflow: hidden;
}

.form .checkbox-button .custom-check:after {
  display: block;
  opacity: 0;
  visibility: hidden;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: var(--color-blue);
  background-image: url("../img/form-checkmark.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.form .checkbox-button input:checked ~ .custom-check:after {
  opacity: 1;
  visibility: visible;
}

.form .checkbox-button:hover input ~ .custom-check {
  background-color: rgba(255, 255, 255, 0.1);
}

.form .checkbox-button input:checked ~ .custom-check {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
}

.form .checkbox-button input:checked ~ span {
  color: var(--color-white);
  font-weight: 450;
  opacity: 1;
}

/* --- Custom Radio --- */
.form .checkbox-button .custom-radio {
  position: relative;
  order: 1;
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.5em;
  margin-right: 0.5em;
  margin-left: -1.25em;
  border: 1px solid var(--color-border-light);
  border-radius: 0em;
  box-shadow: 0;
  overflow: hidden;
  border-radius: 50%;
}

.form .checkbox-button .custom-radio:after {
  display: block;
  opacity: 0;
  visibility: hidden;
  content: "";
  width: 6px;
  height: 6px;
  top: 6px;
  left: 6px;
  position: absolute;
  background: var(--color-white);
  border-radius: 50%;
}

.form .checkbox-button input:checked ~ .custom-radio:after {
  opacity: 1;
  visibility: visible;
}

.form .checkbox-button:hover input ~ .custom-radio {
  background-color: rgba(255, 255, 255, 0.1);
}

.form .checkbox-button input:checked ~ .custom-radio {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #000;
  box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=radio] {
  -webkit-appearance: none;
}

/* ------------------------- Components Â® Code by Dennis -------------------------------------------------- */
/* ------------------------- Span Lines H4 -------------------------------------------------- */
.span-lines.animate .span-line {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.span-lines.animate .span-line .span-line-inner {
  position: relative;
  display: block;
}

/* ------------------------- Arrow -------------------------------------------------- */
.arrow {
  position: relative;
  width: clamp(0.9em, 1.1vw, 1.1em);
}

.arrow.big {
  position: relative;
  width: clamp(1.1em, 1.3vw, 1.25em);
}

.arrow svg {
  display: block;
  width: 100%;
}

/* ------------------------- PF -------------------------------------------------- */
.profile-picture {
  position: relative;
  display: inline-flex;
  border-radius: 50%;
  background: url("../img/DSC07033-Cut-Color-1080.jpg") center center no-repeat;
  background-size: cover;
  width: clamp(4.5em, 6.5vw, 8em);
  height: clamp(4.5em, 6.5vw, 8em);
}

/* ------------------------- Pattern Dots -------------------------------------------------- */
.dots {
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: url("../img/dotted.svg") bottom right;
  background-size: 1.25em 1.25em;
  position: absolute;
}

/* ------------------------- Rounded Div -------------------------------------------------- */
.rounded-div-wrap {
  width: 100%;
  top: 0;
  position: relative;
  height: 10vh;
  overflow: hidden;
}

.rounded-div {
  width: 150%;
  content: "";
  display: block;
  position: absolute;
  background: #1e283f;
  height: 750%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -86.666%);
  z-index: 1;
}

/* ------------------------- Default Header -------------------------------------------------- */
.default-header {
  padding-top: calc(var(--section-padding) * 1.33);
  padding-bottom: calc(var(--section-padding) * 0.66);
}

.default-header.theme-dark {
  background: var(--color-dark);
}

.default-header h1 span {
  display: block;
}

@media screen and (max-width: 720px) {
  .default-header {
    padding-top: calc(var(--section-padding) * 1.95);
    padding-bottom: calc(var(--section-padding) * 0.75);
  }
  .default-header h1 span {
    display: unset;
  }
}
@media screen and (max-width: 460px) {
  .default-header h1 {
    font-size: 10vw;
    font-size: calc(clamp(3.25em, 7vw, 8em) * 0.875);
  }
}
/* ------------------------- Custom Cursor V1 -------------------------------------------------- */
.custom-cursor {
  position: fixed;
  z-index: 100;
  pointer-events: none;
  transform: translate(-48%, -75%) rotate(0.001deg);
  display: none;
  opacity: 0;
  visibility: hidden;
  display: flex;
  pointer-events: none;
}

.custom-cursor .cursor-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(-10deg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 3em;
  width: 6em;
  background-color: rgba(27, 166, 255, 0.8);
  backdrop-filter: blur(0.5em);
  -webkit-backdrop-filter: blur(0.3em);
  transition: transform 0.4s cubic-bezier(0.3, 0, 0.3, 1) 0.2s;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1882352941);
}

.custom-cursor .cursor-bubble[data-cursor-bubble=active] {
  transform: translate(-48%, -65%) scale(1) rotate(0.001deg);
  transition: transform 0.6s cubic-bezier(0.3, 1, 0.3, 1) 0s;
}

.custom-cursor .cursor-bubble .cursor-before {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.custom-cursor .cursor-bubble .cursor-text {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 300;
  font-size: 1em;
  padding: 0.5em;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.3, 0, 0.3, 1) 0.2s;
}

.custom-cursor .cursor-bubble[data-cursor-bubble=active] .cursor-text {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.3, 0, 0.3, 1) 0s;
}

@media screen and (hover: hover) and (min-width: 1025px) {
  .custom-cursor[data-cursor-init=true] {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}
/* ------------------------- Style by Faultless -------------------------------------------------- */
main {
  box-sizing: border-box;
  overflow: hidden;
  width: 100vw;
  position: fixed;
  height: 100%;
}

.main-wrap::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 99%;
  left: 0;
  background: #1e283f;
  z-index: -1;
}

.main-wrap {
  box-sizing: border-box;
  width: calc(100% + 1px);
  will-change: auto;
  position: fixed;
}

main.touch {
  position: relative;
  height: auto;
}

main.touch .main-wrap {
  position: relative;
}

@media screen and (max-width: 1024px) {
  main {
    position: relative;
  }
  .main-wrap {
    position: relative;
  }
}
/* ------------------------- Page Transition -------------------------------------------------- */
.no-scroll-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 900;
  display: none;
}

.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 800;
  pointer-events: none;
  background: transparent;
}

.loading-screen {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  left: 0;
  will-change: top;
}

.loading-screen,
.loading-container .rounded-div-wrap.top .rounded-div,
.loading-container .rounded-div-wrap.bottom .rounded-div {
  background: #1e283f;
}

.loading-container .rounded-div-wrap.top .rounded-div,
.loading-container .rounded-div-wrap.bottom .rounded-div {
  height: 745%;
}

.loading-container .rounded-div-wrap.top {
  top: 0;
  position: absolute;
  transform: translateY(-99%) scale(1, -1);
  z-index: 2;
  height: 0vh;
  will-change: height;
}

.loading-container .rounded-div-wrap.bottom {
  top: unset;
  bottom: 0;
  position: absolute;
  transform: translateY(99%);
  z-index: 2;
  height: 0vh;
  will-change: height;
}

.loading-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  text-align: center;
  display: none;
}

body.page-408 .loading-logo {
  display: block;
}

@media screen and (max-width: 800px) {
  .loading-logo {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
.loading-logo > div {
  overflow: hidden; /* creates the mask */
  clip-path: ellipse(100% 52% at 51% 52%);
  padding: 3px;
}

.loading-logo svg {
  display: block;
  transform: translateY(0%); /* start hidden below */
}

.loading-container .loading-words {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  display: block;
  will-change: opacity;
}

.loading-container .loading-words h2 {
  margin: 0;
  padding: 0;
  color: #1ba6ff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  font-weight: 300;
  text-align: left;
  will-change: opacity;
  width: 90vw;
  max-width: 1200px;
}

.loading-container .loading-words h2 .blue {
  font-weight: 800;
  color: #1ba6ff;
}

.loading-container .loading-words h2.home-active,
.loading-container .loading-words h2.home-active-last {
  font-size: 3.5rem;
}

.loading-container .loading-words h2.jap {
  font-size: calc(clamp(3.25em, 5vw, 4.5em) * 0.65);
  transform: translate(-50%, 10%);
}

.loading-container .dot {
  display: block;
  position: absolute;
  border-radius: 50%;
  background: var(--color-white);
  left: 0;
  top: 47%;
  bottom: auto;
  width: calc(clamp(16px, 1.2vw, 19px) / 1.65);
  height: calc(clamp(16px, 1.2vw, 19px) / 1.65);
  transform: translate(0, 0) scale(1);
}

.loading-container .loading-words h2.active {
  display: block;
}

.loading-container .loading-words .home-active,
.loading-container .loading-words .home-active-last {
  opacity: 0;
  display: none;
}

.loading-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 90;
  background: #FFF;
  visibility: hidden;
  opacity: 0;
}

.once-in {
  will-change: transform;
}

@media screen and (max-width: 540px) {
  /* .loading-container .loading-words h2 {
     padding-left: 0;
  } */
  /* .loading-container .dot {
     display: none;
  } */
  .loading-container .dot {
    top: 42%;
  }
}
/* ------------------------- Fixed Nav -------------------------------------------------- */
.fixed-nav-back {
  background: linear-gradient(to right, hsla(220, 13%, 0%, 0.3) 40%, hsl(220, 13%, 0%) 80%);
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.7, 0, 0.2, 1);
  z-index: 100;
  pointer-events: none;
}

.nav-active .fixed-nav-back {
  opacity: 0.35;
  pointer-events: all;
}

.fixed-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  background: #1e283f;
  z-index: 100;
  transform: translate(calc(100% + 6vw), 0) rotate(0.001deg);
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform !important;
}

.nav-active .fixed-nav {
  transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  position: relative;
  transform: translate(0, 0) rotate(0.001deg);
  transition: all 0.6s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform !important;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.nav-row {
  padding: 10vh 7.5vw 3vh 3.5vw;
  flex-direction: column;
}

.fixed-nav-inner .nav-row h4,
.fixed-nav-inner .sub-nav-row h4 {
  color: #1ba6ff;
  font-weight: 400;
  font-size: clamp(1rem, 1vw, 1.3rem);
}

.fixed-nav-inner .sub-nav-row {
  flex-direction: row;
  padding: 1vh 3.5vw 10vh 3.8vw;
}

.fixed-nav-inner .col.sub-nav-col {
  width: 45%;
}

.btn.btn-link.btn-sublink .btn-click {
  justify-content: flex-start;
  font-size: calc(clamp(1rem, 1vw, 1.2rem) * 1.5);
}

.fixed-nav-inner .sub-nav-row .links-wrap {
  flex-direction: column;
}

.btn-link.btn-sublink .btn-click::after {
  bottom: 0.2em;
  left: -7px;
  content: "/";
  width: auto;
  height: auto;
  color: #1ba6ff;
  font-weight: 800;
}

.btn-link.btn-sublink .btn-click::after .fixed-nav-inner .sub-nav-row .links-wrap .btn-link .btn-text {
  padding: 0;
  justify-content: flex-start;
}

.nav-active .fixed-nav-inner {
  transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav .nav-row h5 {
  margin-bottom: 3em;
}

.fixed-nav .nav-row ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}

.fixed-nav .nav-row .btn-link .btn-click {
  height: auto;
}

.fixed-nav .nav-row .btn-link.active .btn-click .btn-text .btn-text-inner {
  color: #1ba6ff;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.2, 1);
}

.fixed-nav .nav-row .btn-link .btn-click .btn-text .btn-text-inner {
  color: #fff;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.2, 1);
}

.fixed-nav .nav-row .btn-link .btn-click:hover .btn-text .btn-text-inner {
  color: #1ba6ff;
  transition: all 0.6s cubic-bezier(0.7, 0, 0.2, 1);
}

.fixed-nav .nav-row .btn-link.child-link .btn-click .btn-text .btn-text-inner {
  line-height: 1.2;
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 200;
  letter-spacing: -0.03em;
  color: #1ba6ff;
}

.fixed-nav .nav-row ul {
  margin-left: calc(var(--gap-padding) / -2);
}

.fixed-nav .nav-row .btn-text-inner {
  line-height: 1.2;
  font-size: clamp(2em, 4vw, 4rem);
  font-weight: 200;
  letter-spacing: -2px;
}

.fixed-nav .nav-row .btn-link .btn-click::after {
  background: none;
  left: calc(var(--gap-padding) / -20);
  top: -5%;
  bottom: auto;
  width: calc(clamp(16px, 1.2vw, 19px) / 1.65);
  height: calc(clamp(16px, 1.2vw, 19px) / 1.65);
  content: "/";
  display: block;
  color: #1ba6ff;
  font-size: clamp(4.3rem, 3vw, 4.8rem);
  font-weight: 800;
}

.fixed-nav .nav-row .btn-link.child-link .btn-click::after {
  top: -5%;
  font-size: clamp(2rem, 2vw, 2.8rem);
}

.fixed-nav .social-row {
  margin-left: calc(var(--gap-padding) / -4);
}

.fixed-nav-rounded-div {
  position: absolute;
  left: 1px;
  transform: translateX(-100%);
  height: 100%;
  top: 0;
}

.fixed-nav-rounded-div .rounded-div-wrap {
  width: 6vw;
  height: 100%;
  transition: var(--animation-slow);
  transition: all 0.85s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: width;
}

.nav-active .fixed-nav-rounded-div .rounded-div-wrap {
  width: 2vw;
}

.fixed-nav-rounded-div .rounded-div-wrap .rounded-div {
  background: #1e283f;
  height: 150%;
  content: "";
  display: block;
  position: absolute;
  width: 775%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-6.5%, -50%);
}

.fixed-nav .nav-row ul .btn {
  transform: translate(5vw, 0) rotate(0.001deg);
  transition: all 0.8s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform !important;
  padding: 0.6em 0;
}

.nav-active .fixed-nav .nav-row ul .btn {
  transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav .sub-nav-row .sub-nav-col {
  transform: translate(5vw, 0) rotate(0.001deg);
  transition: all 0.8s cubic-bezier(0.7, 0, 0.2, 1);
  will-change: transform !important;
}

.nav-active .fixed-nav .sub-nav-row .sub-nav-col {
  transform: translate(0, 0) rotate(0.001deg);
}

.fixed-nav .sub-nav-row .sub-nav-col:nth-child(1) {
  transition-delay: 0.12s;
}

.fixed-nav .sub-nav-row .sub-nav-col:nth-child(2) {
  transition-delay: 0.18s;
}

.fixed-nav .nav-row ul .btn:nth-child(2) {
  transition-delay: 0.03s;
}

.fixed-nav .nav-row ul .btn:nth-child(3) {
  transition-delay: 0.06s;
}

.fixed-nav .nav-row ul .btn:nth-child(4) {
  transition-delay: 0.09s;
}

.fixed-nav .nav-row ul .btn:nth-child(5) {
  transition-delay: 0.12s;
}

.fixed-nav .nav-row ul .btn:nth-child(6) {
  transition-delay: 0.15s;
}

.fixed-nav .nav-row ul .btn:nth-child(7) {
  transition-delay: 0.18s;
}

.fixed-nav .nav-row ul .btn:nth-child(8) {
  transition-delay: 0.21s;
}

.fixed-nav .nav-row ul .btn:nth-child(9) {
  transition-delay: 0.24s;
}

.fixed-nav .nav-row ul .btn:nth-child(10) {
  transition-delay: 0.27s;
}

.fixed-nav .nav-row ul .btn:nth-child(11) {
  transition-delay: 0.3s;
}

.fixed-nav .nav-row ul .btn:nth-child(12) {
  transition-delay: 0.33s;
}

.fixed-nav .nav-row ul .btn:nth-child(13) {
  transition-delay: 0.36s;
}

.fixed-nav .nav-row ul .btn:nth-child(14) {
  transition-delay: 0.39s;
}

.fixed-nav .nav-row ul .btn:nth-child(15) {
  transition-delay: 0.42s;
}

.fixed-nav .nav-row ul .btn:nth-child(16) {
  transition-delay: 0.45s;
}

.fixed-nav .nav-row ul .btn:nth-child(17) {
  transition-delay: 0.48s;
}

@media screen and (max-height: 680px) {
  .fixed-nav .nav-row .btn-text-inner {
    font-size: 1.8em;
    line-height: 1;
  }
}
@media screen and (max-width: 540px) {
  .fixed-nav-back {
    background: hsl(220, 13%, 5%);
  }
  .fixed-nav {
    width: 100%;
    transform: translate(calc(100% + 20vw), 0) rotate(0.001deg);
  }
  .fixed-nav .fixed-nav-inner {
    height: calc(var(--vh, 1vh) * 100);
    padding: 2vh 7.5vw 2vh 7.5vw;
    transform: translate(20vw, 0) rotate(0.001deg);
    transition-delay: 0s;
  }
  .nav-active .fixed-nav .fixed-nav-inner {
    transform: translate(0, 0) rotate(0.001deg);
    transition-delay: 0.1s;
  }
  .fixed-nav .nav-row .btn-link .btn-click::after {
    background: none;
    left: calc(var(--gap-padding) / -25);
    content: "/";
    right: auto;
    top: -5%;
    bottom: auto;
    width: calc(clamp(16px, 1.2vw, 19px) / 1.5);
    height: calc(clamp(16px, 1.2vw, 19px) / 1.5);
  }
  .fixed-nav .nav-row ul {
    width: 100%;
    padding-top: calc(var(--vh, 1vh) * 3);
    padding-bottom: calc(var(--vh, 1vh) * 3);
  }
  .fixed-nav .nav-row ul .btn {
    width: 100%;
    transition: all 0.8s cubic-bezier(0.7, 0, 0.2, 1);
  }
  .fixed-nav .nav-row ul .btn .btn-text {
    justify-content: flex-start;
  }
  .fixed-nav .social-row .stripe {
    display: block;
    margin-bottom: calc(var(--section-padding) / 3);
  }
  .fixed-nav-rounded-div .rounded-div-wrap {
    width: 20vw;
  }
  .nav-active .fixed-nav-rounded-div .rounded-div-wrap {
    width: 0;
  }
  .fixed-nav .nav-row ul .btn:nth-child(1) {
    transition-delay: 0s;
  }
  .fixed-nav .nav-row ul .btn:nth-child(2) {
    transition-delay: 0.03s;
  }
  .fixed-nav .nav-row ul .btn:nth-child(3) {
    transition-delay: 0.06s;
  }
  .fixed-nav .nav-row ul .btn:nth-child(4) {
    transition-delay: 0.09s;
  }
  .nav-active .fixed-nav .nav-row ul .btn:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-active .fixed-nav .nav-row ul .btn:nth-child(2) {
    transition-delay: 0.13s;
  }
  .nav-active .fixed-nav .nav-row ul .btn:nth-child(3) {
    transition-delay: 0.16s;
  }
  .nav-active .fixed-nav .nav-row ul .btn:nth-child(4) {
    transition-delay: 0.19s;
  }
}
/* ------------------------- Footer -------------------------------------------------- */
.footer-wrap {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #1a2236;
  display: flex;
  align-items: flex-end;
}

.footer-rounded-div {
  width: 100%;
  position: relative;
  height: 0;
  display: block;
  z-index: 2;
}

.footer-rounded-div .rounded-div-wrap {
  transform: translateY(-1px);
  will-change: height;
}

.footer {
  padding-bottom: 0;
  width: 100%;
  will-change: auto;
}

.footer .dots {
  width: calc(var(--container-padding) * 3);
}

.footer .container.medium {
  display: flex;
  flex-direction: column;
}

.footer .container.medium .row:nth-child(1) {
  padding-bottom: calc(var(--section-padding) / 2);
}

.footer .container.medium .row:nth-child(2) .btn-fixed {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.footer .container.medium .row:nth-child(2) .btn-fixed .btn {
  will-change: auto;
}

.footer .container.medium .row:nth-child(2) {
  padding-bottom: calc(var(--section-padding) * 0.475);
}

.footer .container.medium .row:nth-child(3) .flex-col {
  display: flex;
  flex-direction: row;
}

.footer .container.medium .row:nth-child(3) .flex-col .btn {
  display: inline-flex;
  margin-right: 0.5em;
  margin-bottom: 0;
}

.bottom-footer {
  padding: 0;
  flex-direction: row;
  justify-content: space-between;
}

.bottom-footer .stripe {
  display: none;
}

.bottom-footer .flex-col {
  display: flex;
  width: auto;
  justify-content: space-between;
}

.bottom-footer .credits {
  padding-right: var(--gap-padding);
}

.socials li {
  display: inline-flex;
  font-size: 0.85em;
}

.bottom-footer #timeSpan {
  text-transform: uppercase;
}

@media screen and (max-width: 900px) {
  .footer .container.medium .row:nth-child(2) {
    padding-bottom: calc(var(--section-padding) * 0.75);
  }
}
@media screen and (max-width: 720px) {
  .footer-rounded-div .rounded-div-wrap {
    height: 7.5vh;
  }
  .footer .container.medium .row:nth-child(3) .flex-col {
    flex-direction: column;
  }
  .footer .container.medium .row:nth-child(3) .flex-col .btn {
    width: 100%;
    margin: 0;
    margin-bottom: 0.75em;
  }
  .footer .container.medium .row:nth-child(3) .flex-col .btn .btn-click {
    width: 100%;
  }
  .footer .container.medium .row:nth-child(1) {
    padding-bottom: calc(var(--section-padding) * 0.75);
  }
  .footer .container.medium .row:nth-child(2) {
    padding-bottom: calc(var(--section-padding) * 1.25);
  }
  .footer .container.medium .row:nth-child(3) {
    padding-bottom: calc(var(--section-padding) / 5);
  }
  .footer .container.medium .row:nth-child(2) .btn-fixed {
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(-20%, -50%);
  }
  .bottom-footer .flex-col {
    width: 100%;
  }
  .bottom-footer .flex-col:nth-child(2) {
    padding: 0 0 calc(var(--container-padding) - var(--gap-padding) * 0.333);
    width: 100%;
  }
  .bottom-footer .flex-col:nth-child(1) {
    order: 3;
  }
  .socials li {
    display: inline-flex;
    font-size: 1em;
    margin-right: 0;
  }
  .bottom-footer p {
    font-size: 1em;
  }
  .footer .container.medium .row:nth-child(2) .stripe {
    display: block;
  }
  .bottom-footer .stripe {
    display: block;
    margin-top: var(--gap-padding);
    width: calc(100% - var(--gap-padding) * 0.666);
    left: 50%;
    margin-left: calc(var(--gap-padding) * 0.333);
  }
  .socials,
  .socials ul {
    width: 100%;
  }
  .footer .arrow {
    position: absolute;
    right: 0;
    bottom: 1em;
  }
  .footer .profile-picture {
    margin-right: 0.125em;
    height: 0.95em;
    width: 0.95em;
    transform: translateY(0.1em);
  }
}
/* ------------------------- Footer - Contact -------------------------------------------------- */
.footer-contact {
  background: var(--color-dark);
  margin-top: -1px;
  padding-top: 0;
  box-shadow: 0px 5px 0px 5px var(--color-dark);
}

.footer-contact .bottom-footer {
  padding-top: 0;
}

/* ============================================================== */
/* RESET */
/* ============================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --container-padding: clamp(2.5em, 8vw, 8em);
  --animation-fast: all 0.3s cubic-bezier(0.75, 0, 0.25, 1);
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

table {
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
}

address, caption, cite, code, dfn, strong, th, var {
  font-weight: normal;
  font-style: normal;
}

strong {
  font-weight: 800;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

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

abbr, acronym {
  border: 0;
}

/* ============================================================== */
/* COLORS */
/* ============================================================== */
/* ============================================================== */
/* MIXINS */
/* ============================================================== */
/* ============================================================== */
/* FONTS & TEXT */
/* ============================================================== */
p {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
  color: #39496d;
  line-height: 120%;
  text-align: left;
  margin: 0 0 2em 0;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5,
span.h1, span.h2, span.h3, span.h4, span.h5 {
  text-align: left;
  font-weight: 400;
  display: block;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

h1, span.h1 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 6rem);
  color: #1ba6ff;
  letter-spacing: -0.04em;
  line-height: 120%;
  margin: 0 0 2em;
  padding: 0;
}

h2, span.h2 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(4rem, 5vw, 6rem);
  color: #39496d;
  letter-spacing: -0.04em;
  line-height: 120%;
  margin: 0 0 1em;
  padding: 0;
}

h3, span.h3 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: clamp(2.7rem, 3vmin, 3rem);
  color: #029cff;
  letter-spacing: -0.03em;
  line-height: 100%;
  margin: 0 0 1em;
  padding: 0;
}

h4, span.h4 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 1.4vw, 2.5rem);
  color: #1e283f;
  letter-spacing: -0.02em;
  line-height: 100%;
  margin: 0 0 1em;
  padding: 0;
}

h5, span.h5 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 300;
  font-size: 2.5rem;
  color: #21b3b3;
  letter-spacing: 0;
  line-height: 150%;
  margin: 0 0 1em;
  padding: 0;
}

.maincol, .maincol-wide {
  /* Target float: right */
  /* Reset sizing to avoid Redactor's inline width breaking layout */
}
.maincol h1, .maincol span.h1,
.maincol h2, .maincol span.h2,
.maincol h4, .maincol span.h4, .maincol-wide h1, .maincol-wide span.h1,
.maincol-wide h2, .maincol-wide span.h2,
.maincol-wide h4, .maincol-wide span.h4 {
  color: #39496d;
}
.maincol p[style*="float: left"],
.maincol figure[style*="float: left"], .maincol-wide p[style*="float: left"],
.maincol-wide figure[style*="float: left"] {
  float: none !important;
  margin: none !important;
}
@media screen and (min-width: 800px) {
  .maincol p[style*="float: left"],
  .maincol figure[style*="float: left"], .maincol-wide p[style*="float: left"],
  .maincol-wide figure[style*="float: left"] {
    float: left !important;
    margin-right: 1em !important;
    margin-left: 0 !important;
  }
}
.maincol p[style*="float: right"],
.maincol figure[style*="float: right"], .maincol-wide p[style*="float: right"],
.maincol-wide figure[style*="float: right"] {
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media screen and (min-width: 800px) {
  .maincol p[style*="float: right"],
  .maincol figure[style*="float: right"], .maincol-wide p[style*="float: right"],
  .maincol-wide figure[style*="float: right"] {
    float: right !important;
    margin-left: 1em !important;
    margin-right: 0 !important;
  }
}
.maincol p[style*="float: left"],
.maincol p[style*="float: right"],
.maincol figure[style*="float: left"],
.maincol figure[style*="float: right"], .maincol-wide p[style*="float: left"],
.maincol-wide p[style*="float: right"],
.maincol-wide figure[style*="float: left"],
.maincol-wide figure[style*="float: right"] {
  width: 100% !important;
  max-width: 100% !important;
}
@media screen and (min-width: 800px) {
  .maincol p[style*="float: left"],
  .maincol p[style*="float: right"],
  .maincol figure[style*="float: left"],
  .maincol figure[style*="float: right"], .maincol-wide p[style*="float: left"],
  .maincol-wide p[style*="float: right"],
  .maincol-wide figure[style*="float: left"],
  .maincol-wide figure[style*="float: right"] {
    max-width: 100% !important;
    width: 50% !important;
  }
}
.maincol p[style*="float: left"] img,
.maincol p[style*="float: right"] img,
.maincol figure[style*="float: left"] img,
.maincol figure[style*="float: right"] img, .maincol-wide p[style*="float: left"] img,
.maincol-wide p[style*="float: right"] img,
.maincol-wide figure[style*="float: left"] img,
.maincol-wide figure[style*="float: right"] img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5em;
}
.maincol p[style*="text-align: center"] img, .maincol-wide p[style*="text-align: center"] img {
  border-radius: 0.5em;
}
.maincol .floatRight, .maincol-wide .floatRight {
  float: right;
  margin-left: 1em;
  width: 50%;
}
.maincol .floatRight img, .maincol-wide .floatRight img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5em;
}
.maincol .floatLeft, .maincol-wide .floatLeft {
  float: right;
  margin-right: 1em;
  width: 50%;
}
.maincol .floatLeft img, .maincol-wide .floatLeft img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1em;
}
.maincol .responsive, .maincol-wide .responsive {
  display: block;
  margin: 0.5em 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5em;
}
.maincol .responsive img, .maincol-wide .responsive img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1em;
}

.btn-center .btn-click {
  max-width: 300px;
  margin: auto;
}

.btn-normal.on-white .btn-click .btn-text .btn-text-inner {
  color: #1ba6ff !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-normal.on-white .btn-click:hover .btn-text .btn-text-inner {
  color: #1e283f !important;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================== */
/* STRUCTURE */
/* ============================================================== */
/* General styles for the body to remove margin and ensure full viewport coverage */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

html {
  width: 100%;
  height: 100%; /* set viewport constraint */
  min-height: 100%; /* enforce height */
  font-size: 62.5%; /* set base font */
  scroll-behavior: smooth;
}

body {
  height: 100%;
  width: 100%;
  overflow: inherit;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  background-color: #1e283f;
}

.logo-wrapper {
  position: relative;
  z-index: 10;
  height: 0;
}

.logo {
  position: absolute;
  top: 0.3em;
  left: 0;
  z-index: 11;
  width: 25%;
  max-width: 305px;
  min-width: 240px;
  padding: 1.5em;
  margin: 0;
  text-align: left;
  border: none;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 800px) {
  .logo {
    padding: 1.5em;
  }
}
@media screen and (min-width: 1111px) {
  .logo {
    top: 3.3em;
  }
}
.logo a {
  display: block;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.logo a img {
  display: block;
  width: 100%;
  height: auto;
}
.logo a:hover {
  transform: scale(1.03);
  opacity: 0.8;
}

/* ============================================================== */
/* TOP NAVIGATION MENU  */
/* ============================================================== */
#topnav {
  background-color: transparent;
  display: flex;
  position: fixed;
  justify-content: flex-end;
  width: 100vw;
  z-index: 12;
  gap: 24px;
  height: 50px;
  top: 0;
}
@media screen and (min-width: 1111px) {
  #topnav {
    background-color: #1e283f;
  }
}

@media screen and (min-width: 768px) {
  .main .btn-hamburger .btn-click {
    background: #1e283f;
  }
}
@media screen and (min-width: 1111px) {
  .main .btn-hamburger .btn-click {
    background: transparent;
  }
}

.navigation {
  margin: 0 1em;
  display: none;
  flex-direction: row;
  list-style-type: none;
}
@media screen and (min-width: 1111px) {
  .navigation {
    display: flex;
    margin: 0 4em 0 1em;
  }
}
.navigation > li {
  display: flex;
  align-items: center;
  position: relative;
}
.navigation > li.home-icon a svg {
  width: 25px;
  height: 25px;
  fill: #fff;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.navigation > li.home-icon a:hover svg {
  fill: #1ba6ff;
}
.navigation > li > a {
  color: #fff;
  font-size: 1.8rem;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 4px 15px;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.navigation > li > a svg {
  margin-top: 3px;
  margin-left: 5px;
  fill: #1ba6ff;
  transition: transform 0.3s ease, fill 0.3s ease;
}
.navigation > li > a:hover {
  color: #1ba6ff;
  background-color: #151d2d;
}
.navigation > li.active > a {
  color: #1ba6ff;
}
.navigation > li.active > a svg {
  fill: #1ba6ff;
}
.navigation > li:hover .dropdown, .navigation > li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.navigation > li.has-children:hover > a,
.navigation > li.has-children.active > a {
  background-color: #151d2d;
  color: #1ba6ff;
}

.navigation > li.has-children:hover > a svg,
.navigation > li.has-children.active > a svg {
  transform: rotate(180deg);
  fill: #1ba6ff;
}

.dropdown-wrapper {
  position: absolute;
  top: 0;
  margin-top: 50px;
  width: 20em;
  z-index: 10;
}

.dropdown {
  background-color: #151d2d;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1em) scale(0.99);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  position: absolute;
  padding: 0 0 0.75em;
  border-radius: 0 0 2rem 2rem;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.12), 0 30px 60px -30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.navigation > li:hover .dropdown,
.navigation > li:focus-within .dropdown,
.navigation > li .dropdown-wrapper:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.dropdown ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  margin: 0;
  padding: 0;
}
.dropdown ul li a {
  padding: 0.75em 1em;
  display: block;
  font-size: 2rem;
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  transition: all 0.2s ease;
}
.dropdown ul li a span {
  color: #1ba6ff;
  font-weight: 800;
  margin-right: 0;
  transition: all 0.3s ease;
}
.dropdown ul li.active a, .dropdown ul li:hover a {
  color: #1ba6ff;
  border-radius: 0.5em;
}
.dropdown ul li:hover a span {
  margin-right: 0.2em;
}

/* ============================================================== */
/* VIDEO BG  */
/* ============================================================== */
/* Styles for the video container */
.hero-video-wrapper {
  position: relative;
  width: 100%; /* Full width */
  height: 100vh; /* Full height (you can adjust this as needed) */
  overflow: hidden;
}

/* Styles for the video element */
.hero-video {
  background-color: #dddffe;
  position: absolute;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 17% center;
     object-position: 17% center;
  z-index: 1;
}

/* Fallback image styles (if used) */
.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Styles for the hero on hompage and general pages*/
.home-header {
  min-height: 125vh;
  display: flex;
  align-items: center;
  background: #1e283f;
  overflow: hidden;
  background-color: #1e283f;
}
@media (min-width: 768px) {
  .home-header {
    min-height: 100vh;
  }
}

.home-header .personal-image {
  top: 0%;
  width: 100%;
  background: #1e283f;
}

.general-header {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #1e283f;
  overflow: hidden;
}

/* Arc overlay container */
.hero-arc {
  position: absolute;
  width: 100%;
  height: 76vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .hero-arc {
    width: 50%;
    height: 101vh;
  }
}

.arc-mob, .arc-desktop {
  fill: #1ba6ff;
}

#arc-mob {
  display: block;
}
@media (min-width: 768px) {
  #arc-mob {
    display: none;
  }
}

#arc-desktop {
  display: none;
}
@media (min-width: 768px) {
  #arc-desktop {
    display: block;
  }
}

/* Arc shape */
.hero-arc svg {
  position: absolute;
  left: -30vw;
  right: 0;
  bottom: -100px;
  height: 87vh;
  width: 159vw;
}
@media (min-width: 768px) {
  .hero-arc svg {
    top: -12vh;
    right: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 124vh;
  }
}

/* Text on top of arc */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 768px;
  margin: 0 auto;
  padding: 1.5em;
  margin-top: 10em;
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 410px) {
  .hero-content {
    margin-top: 6em;
  }
}
@media (min-width: 768px) {
  .hero-content {
    text-align: left;
    padding: 2em;
    width: 79%;
    margin-top: 15em;
  }
}
.hero-content h1 {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  margin: 0 0 1em;
  color: #fff;
  text-align: left;
  line-height: 100%;
}
.hero-content h1 strong {
  font-weight: 800;
}
@media (min-width: 768px) {
  .hero-content h1 {
    margin: 0 0 0.5em;
    font-size: clamp(3rem, 3vw, 5rem);
  }
}
.hero-content p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: clamp(1.5rem, 1.3vw, 2rem);
  margin: 0 0 2em;
  text-align: left;
}
@media (min-width: 768px) {
  .hero-content p {
    text-align: left;
    margin: 0 0 1em;
  }
}
.hero-content .cta {
  background-color: #1e283f;
  border-radius: 50%;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 3vw;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3em;
  width: 7em;
  height: 7em;
  float: right;
}
@media (min-width: 768px) {
  .hero-content .cta {
    font-size: 1rem;
    width: 9em;
    height: 9em;
    margin-top: 2em;
  }
}

.btn-round.hero-btn {
  transition: none !important;
  display: block;
}
@media (min-width: 767px) {
  .btn-round.hero-btn {
    display: flex;
    justify-content: flex-end;
  }
}
.btn-round.hero-btn .btn-click {
  transition: none !important;
  float: right;
}

/* ============================================================== */
/* MAIN PAGE AREA */
/* ============================================================== */
.section {
  display: block;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  margin-top: -1px;
}

.section.home-intro {
  padding: 2em 0 0;
}

.page-header {
  display: block;
  background: #1e283f;
  position: relative;
}
.page-header .flex-content {
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 800px) {
  .page-header .flex-content {
    min-height: 95vh;
  }
}
.page-header .flex-content .header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.page-header .flex-content .header-image picture,
.page-header .flex-content .header-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.page-header .header-image-fallback {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  z-index: 0;
}
.page-header .header-overlay {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.page-header .header-overlay .header-offset {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  top: -1em;
  position: relative;
}
@media screen and (min-width: 600px) {
  .page-header .header-overlay .header-offset {
    top: -3em;
  }
}
.page-header .header-overlay .header-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5em;
  transform: translateY(-4rem);
  width: 100%;
}
.page-header .header-overlay .header-content h1 {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-size: clamp(3rem, 5vmin, 5rem);
  letter-spacing: -0.05em;
  margin: 0 0 0.5em;
  color: #1ba6ff;
  text-align: left;
  line-height: 100%;
}
.page-header .header-overlay .header-content h1 .blue {
  font-weight: 800;
  color: #1ba6ff;
}
.page-header .header-overlay .header-content h1 a {
  color: #1ba6ff;
}

.page-header.cs-header .flex-content {
  min-height: 95vh;
}
@media screen and (min-width: 800px) {
  .page-header.cs-header .flex-content {
    min-height: 85vh;
  }
}

.page-header .flex-content .header-image.opacity-005 {
  opacity: 0.05;
}

.page-header .flex-content .header-image.opacity-01 {
  opacity: 0.1;
}

.page-header .flex-content .header-image.opacity-02 {
  opacity: 0.2;
}

.page-header .flex-content .header-image.opacity-03 {
  opacity: 0.3;
}

.page-header .flex-content .header-image.opacity-04 {
  opacity: 0.4;
}

.page-header .flex-content .header-image.opacity-05 {
  opacity: 0.5;
}

.page-header .flex-content .header-image.opacity-06 {
  opacity: 0.6;
}

.page-header .flex-content .header-image.opacity-07 {
  opacity: 0.7;
}

.page-header .flex-content .header-image.opacity-08 {
  opacity: 0.8;
}

.page-header .flex-content .header-image.opacity-09 {
  opacity: 0.9;
}

.gradient-overlay {
  background: linear-gradient(179deg, rgba(30, 40, 63, 0) 0%, rgba(30, 40, 63, 0.9) 80%);
}

.gradient-sml-overlay {
  background: linear-gradient(179deg, rgba(30, 40, 63, 0) 30%, rgba(30, 40, 63, 0.9) 100%);
}

.bot-curve, .bot-curve.bc-off-white {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201400%2045%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23eceeff%22%20d%3D%22M700%2C40.5C429.4%2C40.5%2C183.2%2C25.1%2C0%2C0v45h1400V0C1216.8%2C25.1%2C970.6%2C40.5%2C700%2C40.5z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 112vw;
  height: 85px;
  display: block;
  position: absolute;
  top: -66px;
  position: relative;
  transform: rotate(180deg);
  margin-left: -2em;
  margin-right: -2em;
  left: -6vw;
  right: -6vw;
}
@media screen and (max-width: 300px) {
  .bot-curve, .bot-curve.bc-off-white {
    width: 116vw;
  }
}

.bot-curve.bc-off-white {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201400%2045%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23E2E4F6%22%20d%3D%22M700%2C40.5C429.4%2C40.5%2C183.2%2C25.1%2C0%2C0v45h1400V0C1216.8%2C25.1%2C970.6%2C40.5%2C700%2C40.5z%22/%3E%3C/svg%3E");
}

.section.page-maincontent,
.section.secondarycontent,
.section.page-cs-content,
.section.page-offer-content {
  background: #eceeff;
}
.section.page-maincontent .top-curve,
.section.secondarycontent .top-curve,
.section.page-cs-content .top-curve,
.section.page-offer-content .top-curve {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201400%2045%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23eceeff%22%20d%3D%22M700%2C40.5C429.4%2C40.5%2C183.2%2C25.1%2C0%2C0v45h1400V0C1216.8%2C25.1%2C970.6%2C40.5%2C700%2C40.5z%22/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 105vw;
  height: 85px;
  display: block;
  position: absolute;
  margin-top: -84px;
}
.section.page-maincontent .top-curve-rev,
.section.secondarycontent .top-curve-rev,
.section.page-cs-content .top-curve-rev,
.section.page-offer-content .top-curve-rev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1400 45'%3E%3Cpath fill='%23dddff1' d='M0%2C45C183.2%2C19.9%2C429.4%2C4.5%2C700%2C4.5s516.8%2C15.4%2C700%2C40.5H0z'/%3E%3C/svg%3E");
  height: 78px;
  top: -77px;
  left: -3vw;
  position: absolute;
  width: 105vw;
  background-repeat: no-repeat;
  background-size: 105% auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.section.page-maincontent .section-inner,
.section.secondarycontent .section-inner,
.section.page-cs-content .section-inner,
.section.page-offer-content .section-inner {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3em 1.5em 8em;
}
.section.page-maincontent .section-inner .maincol,
.section.secondarycontent .section-inner .maincol,
.section.page-cs-content .section-inner .maincol,
.section.page-offer-content .section-inner .maincol {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section.page-maincontent .section-inner .maincol,
  .section.secondarycontent .section-inner .maincol,
  .section.page-cs-content .section-inner .maincol,
  .section.page-offer-content .section-inner .maincol {
    width: 65%;
  }
}
.section.page-maincontent .section-inner .sidecol,
.section.secondarycontent .section-inner .sidecol,
.section.page-cs-content .section-inner .sidecol,
.section.page-offer-content .section-inner .sidecol {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .section.page-maincontent .section-inner .sidecol,
  .section.secondarycontent .section-inner .sidecol,
  .section.page-cs-content .section-inner .sidecol,
  .section.page-offer-content .section-inner .sidecol {
    width: 31%;
  }
}
.section.page-maincontent .section-inner .maincol-wide,
.section.secondarycontent .section-inner .maincol-wide,
.section.page-cs-content .section-inner .maincol-wide,
.section.page-offer-content .section-inner .maincol-wide {
  width: 100%;
}

.section.page-maincontent .section-inner {
  max-width: 1400px;
}
.section.page-maincontent .section-inner .widecol {
  max-width: 1400px;
}

.section.secondarycontent {
  background: linear-gradient(to bottom, #dddff1 0%, #eceeff 100%);
}

.section.page-maincontent .section-inner.paddingTop.paddingBot {
  padding: 6em 1.5em 15em;
}
@media screen and (min-width: 600px) {
  .section.page-maincontent .section-inner.paddingTop.paddingBot {
    padding: 10em 1.5em 15em;
  }
}

.section.page-maincontent .section-inner.paddingBot {
  padding: 3em 1.5em 20em;
}

.floatRightSmall {
  float: right;
  width: 34%;
}
@media screen and (min-width: 768px) {
  .floatRightSmall {
    width: 20%;
  }
}
.floatRightSmall img {
  width: 100%;
  height: auto;
}

.maincol .title-row, .maincol-wide .title-row, .widecol .title-row {
  padding: 0 0;
}
.maincol .map-embed, .maincol-wide .map-embed, .widecol .map-embed {
  overflow: hidden;
  border-radius: 1em;
  margin: 0 0 2em;
}
@media screen and (min-width: 768px) {
  .maincol .map-embed, .maincol-wide .map-embed, .widecol .map-embed {
    margin: 0;
  }
}
.maincol .flex-row, .maincol .row, .maincol-wide .flex-row, .maincol-wide .row, .widecol .flex-row, .widecol .row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 2em;
}
.maincol .flex-row .col-lg-6, .maincol .row .col-lg-6, .maincol-wide .flex-row .col-lg-6, .maincol-wide .row .col-lg-6, .widecol .flex-row .col-lg-6, .widecol .row .col-lg-6 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .maincol .flex-row .col-lg-6, .maincol .row .col-lg-6, .maincol-wide .flex-row .col-lg-6, .maincol-wide .row .col-lg-6, .widecol .flex-row .col-lg-6, .widecol .row .col-lg-6 {
    flex: 0 1 49%;
  }
}
.maincol .flex-row .col-lg-4, .maincol .row .col-lg-4, .maincol-wide .flex-row .col-lg-4, .maincol-wide .row .col-lg-4, .widecol .flex-row .col-lg-4, .widecol .row .col-lg-4 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .maincol .flex-row .col-lg-4, .maincol .row .col-lg-4, .maincol-wide .flex-row .col-lg-4, .maincol-wide .row .col-lg-4, .widecol .flex-row .col-lg-4, .widecol .row .col-lg-4 {
    width: 32%;
  }
}
.maincol .flex-row .col-lg-3, .maincol .row .col-lg-3, .maincol-wide .flex-row .col-lg-3, .maincol-wide .row .col-lg-3, .widecol .flex-row .col-lg-3, .widecol .row .col-lg-3 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .maincol .flex-row .col-lg-3, .maincol .row .col-lg-3, .maincol-wide .flex-row .col-lg-3, .maincol-wide .row .col-lg-3, .widecol .flex-row .col-lg-3, .widecol .row .col-lg-3 {
    width: 23%;
  }
}
.maincol .flex-row .text-block.styled-box, .maincol .row .text-block.styled-box, .maincol-wide .flex-row .text-block.styled-box, .maincol-wide .row .text-block.styled-box, .widecol .flex-row .text-block.styled-box, .widecol .row .text-block.styled-box {
  padding: 2em;
  border-radius: 2rem;
  background: #e6e9fb;
  margin: 0 0 2em;
  border-top: 3px solid #1ba6ff;
}
.maincol h1, .maincol-wide h1, .widecol h1 {
  font-size: clamp(2.5rem, 2.2vw, 3.3rem);
  margin: 0 0 0.2em;
  color: #1ba6ff;
}
.maincol h2, .maincol-wide h2, .widecol h2 {
  font-size: clamp(2.5rem, 1.4vw, 3rem);
  margin: 0 0 0.5em;
  font-weight: 300;
  color: #39496d;
}
.maincol h4, .maincol-wide h4, .widecol h4 {
  margin: 0 0 1em;
  color: #39496d;
}
.maincol h4 img, .maincol-wide h4 img, .widecol h4 img {
  display: inline-block;
  width: auto;
  height: 4em;
  margin-right: 1em;
}
@media screen and (min-width: 768px) {
  .maincol h4 img, .maincol-wide h4 img, .widecol h4 img {
    height: 5em;
  }
}
@media screen and (min-width: 1420px) {
  .maincol h4 img, .maincol-wide h4 img, .widecol h4 img {
    height: 6em;
  }
}
@media screen and (min-width: 2220px) {
  .maincol h4 img, .maincol-wide h4 img, .widecol h4 img {
    height: 5em;
  }
}
@media screen and (max-width: 1100px) {
  .maincol .hideOnMobile, .maincol-wide .hideOnMobile, .widecol .hideOnMobile {
    display: none;
  }
}
.maincol .btn-normal .btn-click, .maincol-wide .btn-normal .btn-click, .widecol .btn-normal .btn-click {
  border: 2px solid #1ba6ff;
  max-width: 20em;
  transition: 0.2s;
}
.maincol .btn-normal .btn-click .btn-fill, .maincol-wide .btn-normal .btn-click .btn-fill, .widecol .btn-normal .btn-click .btn-fill {
  background: #1ba6ff;
}
.maincol p, .maincol-wide p, .widecol p {
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  color: #39496d;
}
.maincol p a, .maincol-wide p a, .widecol p a {
  color: #1ba6ff;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.maincol p a:hover, .maincol-wide p a:hover, .widecol p a:hover {
  color: #1ba6ff;
  text-decoration: underline;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.maincol p .link-click, .maincol-wide p .link-click, .widecol p .link-click {
  position: relative;
  padding: 0;
  display: inline;
  overflow: hidden;
  cursor: pointer;
  color: #1ba6ff;
  line-height: 1;
}
.maincol p .link-click:before, .maincol-wide p .link-click:before, .widecol p .link-click:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1ba6ff;
  transform: scaleX(0) rotate(0.001deg);
  transform-origin: right center;
  transition: transform 0.6s cubic-bezier(0.3, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.3, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.3, 1, 0.3, 1) 0.05s;
  opacity: 1;
}
.maincol p .link-click:hover, .maincol-wide p .link-click:hover, .widecol p .link-click:hover {
  text-decoration: none;
}
.maincol p .link-click:hover:before, .maincol-wide p .link-click:hover:before, .widecol p .link-click:hover:before {
  transform-origin: left center;
  transform: scaleX(1) rotate(0.001deg);
  opacity: 1;
}
.maincol ul, .maincol-wide ul, .widecol ul {
  margin: 0 0 2em 1.7em;
  list-style: none;
}
.maincol ul li, .maincol-wide ul li, .widecol ul li {
  margin: 0 0 1em;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  color: #39496d;
  line-height: 120%;
}
.maincol ul li ul, .maincol-wide ul li ul, .widecol ul li ul {
  margin: 1em 0 0 0;
}
.maincol ul li::before, .maincol-wide ul li::before, .widecol ul li::before {
  content: "";
  display: inline-block;
  height: 0.5em;
  width: 0.5em;
  margin-left: -25px;
  margin-top: 4px;
  position: absolute;
  border-radius: 50%;
  border: 2px solid #1ba6ff;
}
.maincol ul li a, .maincol-wide ul li a, .widecol ul li a {
  font-size: inherit;
}
.maincol ol, .maincol-wide ol, .widecol ol {
  margin: 0 0 2em 1.7em;
  list-style: decimal;
  list-style-position: outside; /* keeps numbers aligned */
  color: #39496d; /* colours numbers + text */
}
.maincol ol li, .maincol-wide ol li, .widecol ol li {
  margin: 0 0 1em;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  color: #39496d;
  line-height: 120%;
}
.maincol ol li::marker, .maincol-wide ol li::marker, .widecol ol li::marker {
  color: #1ba6ff;
  font-weight: bold;
}

.sidebox {
  width: 100%;
  padding: 0;
  margin: 0 0 2.5em;
}
.sidebox .sidebox-wrapper {
  width: 100%;
  padding: 3rem;
  background: rgb(227, 229, 247);
  border-radius: 1em;
  border-top: 3px solid rgb(27, 166, 255);
  position: relative;
}
.sidebox .sidebox-wrapper span.h2, .sidebox .sidebox-wrapper h2 {
  margin: 0 0 1em;
  color: #39496d;
  font-size: clamp(1.5em, 2vw, 1.8em);
  line-height: 130%;
  font-weight: 300;
}
.sidebox .sidebox-wrapper p {
  font-size: clamp(0.8em, 1.3vw, 1.2em);
}
.sidebox .sidebox-wrapper iframe {
  width: 100%;
  height: 33em;
}
.sidebox .sidebox-wrapper .sidenav ul {
  border-bottom: 1px solid rgba(62, 229, 229, 0.168627451);
}
.sidebox .sidebox-wrapper .sidenav ul li.active a {
  background: #3ee5e5;
  color: #1f243f;
}
.sidebox .sidebox-wrapper .sidenav ul li {
  margin: 0 0 1px;
  padding: 0;
  background: none;
  border-top: 1px solid rgba(62, 229, 229, 0.168627451);
  border-radius: 0.5em;
}
.sidebox .sidebox-wrapper .sidenav ul li a {
  display: block;
  background: none;
  padding: 0.8em;
  font-weight: bold;
  color: #fff;
  border-radius: 0.5em;
}
.sidebox .sidebox-wrapper .sidenav ul li a:hover {
  background: #3ee5e5;
  text-decoration: none;
  color: #1f243f;
}
.sidebox .sidebox-wrapper p {
  color: #39496d;
}
.sidebox .sidebox-wrapper p a {
  color: #1ba6ff;
}
.sidebox .sidebox-wrapper p a:hover {
  color: #0d92e8;
  text-decoration: underline;
}

.sidebox .sidebox-wrapper.noheader span.h2 {
  display: none;
}

.page-header.slim-header .flex-content {
  min-height: 79vh;
}
@media screen and (max-width: 800px) {
  .page-header.slim-header .flex-content {
    min-height: 76vh;
  }
}

.page-header.thin-header .flex-content {
  min-height: 69vh;
}

.page-header.thicc-header .flex-content {
  min-height: 95vh;
}

.page-header.article-header .flex-content {
  min-height: 65vh;
}

.small-people-border {
  height: 115px;
  width: 100%;
  background: url("/theme/img/small-people-border.png") no-repeat;
  background-color: rgba(0, 0, 0, 0);
  background-size: auto;
  background-size: cover;
  top: 0;
  background-color: transparent;
  position: relative;
  display: flex;
  bottom: 0;
}

/* ============================================================== */
/* 404 */
/* ============================================================== */
.page-header.fullscreen-header .flex-content {
  height: 100vh;
}

.page-header.fullscreen-header .header-overlay.fullscreen-overlay {
  align-items: center;
}

.page-header.fullscreen-header .header-overlay.fullscreen-overlay .header-content {
  transform: translateY(14rem);
}

.page-header.fullscreen-header .header-overlay.fullscreen-overlay .header-content h1 {
  text-align: center;
}

/* ============================================================== */
/* LOGIN */
/* ============================================================== */
.page-header.fullscreen-header.login-header .flex-content {
  height: 120vh;
}
@media screen and (min-width: 720px) {
  .page-header.fullscreen-header.login-header .flex-content {
    height: 100vh;
  }
}

.fullscreen-header .login-overlay {
  width: 100%;
  display: flex;
  align-items: center;
}

.page-header.fullscreen-header .header-overlay.login-overlay .header-content {
  transform: translateY(4rem);
}

#login-slider h1,
#login-slider .h1 {
  text-align: left;
  margin: 0 0 0.5em;
  font-size: clamp(3rem, 5vmin, 5rem);
}
#login-slider h1 .blue,
#login-slider .h1 .blue {
  font-weight: 800;
}

#login-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 50em;
  margin: auto;
  border-radius: 2rem;
  background: #1e283f;
  border-top: 3px solid #1ba6ff;
}

#login-slider .slides {
  display: flex;
  width: 100%; /* two slides */
  transition: transform 0.5s ease;
}

#login-slider .slide {
  flex: 0 0 100%;
  padding: 2em;
}
@media screen and (min-width: 720px) {
  #login-slider .slide {
    padding: 4em;
  }
}

#login-slider.show-forgotten .slides {
  transform: translateX(-100%);
}

.login-field-wrapper {
  display: flex;
  flex-direction: column;
}
.login-field-wrapper label {
  padding: 0 0 0.2em;
  font-weight: 300;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 720px) {
  .login-field-wrapper label {
    padding: 0 0 0.5em;
  }
}
.login-field-wrapper input {
  background-color: #fff;
  padding: 1em;
  color: #39496d;
  border-radius: 0.5em;
  margin: 0 0 1em;
  -webkit-appearance: none;
  outline: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.login-field-wrapper input:hover, .login-field-wrapper input:focus {
  outline: 3px solid #1ba6ff;
}
.login-field-wrapper p {
  font-weight: 800;
  color: #1ba6ff;
  margin: 0.5em 0;
}

.button-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 720px) {
  .button-container {
    flex-direction: row;
    align-items: center;
  }
}

.btn.btn-normal.btn-login {
  margin-bottom: 0;
  width: 100%;
}
@media screen and (min-width: 720px) {
  .btn.btn-normal.btn-login {
    width: 10em;
  }
}

.btn.btn-normal.btn-login .btn-click {
  width: 100%;
}
.btn.btn-normal.btn-login .btn-click .btn-fill {
  background: #1ba6ff;
}

.forgotten-login {
  color: #1ba6ff;
  padding-top: 1em;
  margin: auto;
}
@media screen and (min-width: 720px) {
  .forgotten-login {
    padding-top: 0;
    margin: 0;
  }
}
.forgotten-login:hover {
  text-decoration: underline;
}

.btn.btn-normal.btn-reset {
  margin-bottom: 0;
  width: 100%;
}
@media screen and (min-width: 720px) {
  .btn.btn-normal.btn-reset {
    width: 16em;
  }
}
.btn.btn-normal.btn-reset .btn-click .btn-fill {
  background: #1ba6ff;
}

/* ============================================================== */
/* AWARDS SECTION & CLIENTS */
/* ============================================================== */
.blue-triangle-left {
  width: 300px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20200%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%220%2C1.2%200%2C198.8%20277%2C99.6%22%20style%3D%22fill%3A%231BA6FF%3B%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  position: absolute;
  top: -100px;
  left: -200px;
}
@media screen and (min-width: 720px) {
  .blue-triangle-left {
    left: -100px;
  }
}
@media screen and (min-width: 1420px) {
  .blue-triangle-left {
    left: 0;
  }
}

.blue-triangle-right, .blue-triangle-bottom-right {
  width: 300px;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20300%20200%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20class%3D%22st0%22%20points%3D%22300%2C198.8%20300%2C1.2%2023%2C100.4%22%20style%3D%22fill%3A%231BA6FF%3B%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  position: absolute;
  top: -100px;
  right: -200px;
}
@media screen and (min-width: 720px) {
  .blue-triangle-right, .blue-triangle-bottom-right {
    right: -100px;
  }
}
@media screen and (min-width: 1420px) {
  .blue-triangle-right, .blue-triangle-bottom-right {
    right: 0;
  }
}

.blue-triangle-bottom-right {
  bottom: -100px;
  top: auto;
}

.section.home-awards, .section.home-clients {
  background-color: #1e283f;
  display: flex;
  justify-content: center;
  padding: 0;
  z-index: 9;
}
.section.home-awards .section-inner, .section.home-clients .section-inner {
  display: flex;
  width: 100%;
  padding: 10em 2em;
  max-width: 1400px;
  margin: auto;
}
@media screen and (min-width: 720px) {
  .section.home-awards .section-inner, .section.home-clients .section-inner {
    padding: 10em 4em;
  }
}
.section.home-awards .section-inner .widecol, .section.home-clients .section-inner .widecol {
  margin: auto;
  width: 100%;
}
.section.home-awards .section-inner .widecol h2, .section.home-clients .section-inner .widecol h2 {
  color: #1ba6ff;
  text-align: center;
  font-weight: 200;
  letter-spacing: -0.05em;
  font-size: clamp(3.3rem, 5vw, 6rem);
}
.section.home-awards .section-inner .widecol .flex-content, .section.home-clients .section-inner .widecol .flex-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
@media screen and (min-width: 720px) {
  .section.home-awards .section-inner .widecol .flex-content, .section.home-clients .section-inner .widecol .flex-content {
    flex-direction: row;
  }
}
.section.home-awards .section-inner .widecol .flex-content .award-img, .section.home-clients .section-inner .widecol .flex-content .award-img {
  width: 45%;
  margin-bottom: 4em;
}
@media screen and (min-width: 820px) {
  .section.home-awards .section-inner .widecol .flex-content .award-img, .section.home-clients .section-inner .widecol .flex-content .award-img {
    width: 22%;
  }
}
.section.home-awards .section-inner .widecol .flex-content .award-img img, .section.home-clients .section-inner .widecol .flex-content .award-img img {
  display: block;
  width: 100%;
  height: auto;
}
.section.home-awards .section-inner .widecol .flex-content .client-logo, .section.home-clients .section-inner .widecol .flex-content .client-logo {
  width: 35%;
  margin-bottom: 2em;
}
@media screen and (min-width: 820px) {
  .section.home-awards .section-inner .widecol .flex-content .client-logo, .section.home-clients .section-inner .widecol .flex-content .client-logo {
    width: 16%;
    padding: 3%;
    margin-bottom: 4em;
  }
}
.section.home-awards .section-inner .widecol .flex-content .client-logo img, .section.home-clients .section-inner .widecol .flex-content .client-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.home-awards .svg-white svg path {
  fill: white;
}

.award-box.svg-blue .award-img svg path {
  fill: #fff;
}

.awards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 1em;
  top: 3em;
  position: relative;
}
.awards-wrapper .award-box {
  padding: 0.5em;
}
.awards-wrapper .award-box .award-img {
  background: #1ba6ff;
  border-radius: 2rem;
  display: flex;
  margin-bottom: 2em;
  aspect-ratio: 1/1;
  padding-bottom: 100%;
}
.awards-wrapper .award-box .award-img svg {
  position: absolute;
  margin-top: 23%;
  width: 73%;
  left: 14%;
}
.awards-wrapper .award-box h3 {
  color: #39496d;
}
.awards-wrapper .award-box p {
  color: #39496d;
  line-height: 130%;
}
.awards-wrapper .award-box p em {
  font-weight: 800;
}

/* ============================================================== */
/* CLIENTS PAGE FILTERS  */
/* ============================================================== */
.client-filters {
  margin: 0;
  padding: 0;
}
.client-filters #clients-form {
  margin: 0 0 1em;
}
.client-filters #clients-form .filter-buttons-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -1.5em;
}
.client-filters #clients-form .filter-buttons-scroll::-webkit-scrollbar {
  display: none;
}
.client-filters #clients-form .filter-buttons {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.5rem;
  padding: 1rem 0;
  min-width: -moz-max-content;
  min-width: max-content;
}
.client-filters #clients-form .filter-buttons .btn {
  margin-bottom: 0;
}
.client-filters #clients-form .filter-buttons .filter-spacer {
  flex: 0 0 1em;
}
.client-filters #clients-form .filter-buttons .btn-filter {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.client-filters #clients-form .filter-buttons .btn-click {
  background: none;
  outline: none;
  border: 2px solid #1ba6ff;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.6em 1.2em;
  border-radius: 6rem;
  color: #39496d;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  letter-spacing: -0.03rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.client-filters #clients-form .filter-buttons .btn-click .btn-text {
  padding: 0.2em;
}
.client-filters #clients-form .filter-buttons .btn-click .btn-text .btn-text-inner {
  color: #39496d;
}
.client-filters #clients-form .filter-buttons .btn-click.active {
  background: #1ba6ff;
}
.client-filters #clients-form .filter-buttons .btn-click.active .btn-text .btn-text-inner {
  color: #fff;
}
.client-filters #clients-form .filter-buttons .btn-click:hover {
  background: #1ba6ff;
}
.client-filters #clients-form .filter-buttons .btn-click:hover .btn-text .btn-text-inner {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .client-filters #clients-form .filter-buttons-scroll {
    overflow-x: visible;
    margin: 0;
  }
  .client-filters #clients-form .filter-buttons {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    padding-left: 0;
    min-width: unset;
  }
  .client-filters #clients-form .filter-buttons .filter-spacer {
    display: none;
  }
  .client-filters #clients-form .filter-buttons .btn-filter {
    scroll-snap-align: none;
  }
}

.clients-wrapper {
  padding: 0 1em;
  display: flex;
  gap: 1em;
  top: 3em;
  position: relative;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  left: 50%;
  right: 50%;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .clients-wrapper {
    gap: 2em;
  }
}
.clients-wrapper .client-logo.svg-blue {
  border-radius: 50%;
  background: #f7f8ff;
  position: relative;
  padding-bottom: 40%;
  display: block;
  width: 40%;
  aspect-ratio: 1/1;
  box-shadow: 0 49px 0 rgba(0, 0, 0, 0.031372549);
}
@media screen and (min-width: 700px) {
  .clients-wrapper .client-logo.svg-blue {
    width: 27%;
    padding-bottom: 27%;
    ox-shadow: 0 79px 0 rgba(0, 0, 0, 0.031372549);
  }
}
@media screen and (min-width: 900px) {
  .clients-wrapper .client-logo.svg-blue {
    width: 20%;
    padding-bottom: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .clients-wrapper .client-logo.svg-blue {
    width: 15%;
    padding-bottom: 15%;
  }
}
.clients-wrapper .client-logo.svg-blue .client-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1), rotate(0.001deg);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.clients-wrapper .client-logo.svg-blue .client-img:hover, .clients-wrapper .client-logo.svg-blue .client-img:focus {
  transform: scale(1.3), rotate(0.001deg);
}
.clients-wrapper .client-logo.svg-blue .client-img svg {
  width: 70%;
  max-height: 60%;
  height: auto;
  display: block;
}

.client-logo.svg-blue .client-img svg * {
  fill: #39496d !important;
}

.client-logo.svg-white .client-img svg * {
  fill: white !important;
}

.home-clients .svg-white svg {
  fill: white !important;
  width: 100%;
}

.clients-wrapper .client-logo.is-dimmed {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  box-shadow: none;
  flex: 0 1 22%;
  padding-bottom: 6%;
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.031372549);
}
@media screen and (min-width: 1500px) {
  .clients-wrapper .client-logo.is-dimmed {
    flex: 0 1 16%;
  }
}

.clients-wrapper .client-logo.is-active {
  transform: scale(1.15), rotate(0.001deg);
  z-index: 1;
  width: 45%;
  padding-bottom: 45%;
}
@media screen and (min-width: 700px) {
  .clients-wrapper .client-logo.is-active {
    width: 27%;
    padding-bottom: 27%;
  }
}
@media screen and (min-width: 900px) {
  .clients-wrapper .client-logo.is-active {
    width: 20%;
    padding-bottom: 20%;
  }
}
@media screen and (min-width: 1200px) {
  .clients-wrapper .client-logo.is-active {
    width: 20%;
    padding-bottom: 15%;
  }
}

.client-break {
  flex-basis: 100%;
  height: 0;
}

/* ============================================================== */
/* SERVICES CARDS  */
/* ============================================================== */
.section.home-services {
  padding: 5em 1.5em;
  background-color: #1e283f;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 600px) {
  .section.home-services {
    padding: 8em 1.5em;
  }
}

.services-header {
  display: flex;
  margin: auto;
  width: 100%;
  justify-content: center;
  align-content: center;
  max-width: 1400px;
}
.services-header h2 {
  color: #1ba6ff;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 100%;
  justify-content: center;
  align-content: center;
  max-width: 1400px;
  margin: auto;
  gap: 1.5em;
}
@supports not (gap: 1em) {
  .services-cards {
    margin: -0.75em;
  }
  .services-cards > .card {
    margin: 0.75em;
  }
}
.services-cards .card {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .services-cards .card {
    width: 47.5%;
  }
}
.services-cards .card::before {
  padding-top: 100%;
}
@media screen and (min-width: 1000px) {
  .services-cards .card::before {
    padding-top: 100%;
  }
}

.card {
  position: relative;
  display: flex;
  flex-grow: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  text-decoration: none;
  background: #1e283f;
  align-items: center;
  justify-content: flex-start;
}
.card::before {
  content: "";
  display: block;
  padding-top: 100%;
}
@media screen and (min-width: 1000px) {
  .card::before {
    padding-top: 56%;
  }
}
.card .card-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card h2 {
  z-index: 1;
  color: #fff;
  margin: 0;
  padding: 2em;
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 5vw, 4rem);
  word-wrap: break-word;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card h2 span {
  color: #1ba6ff;
  font-weight: 800;
}
.card .card-circle {
  border-radius: 50%;
  background: #1ba6ff;
  width: 250%;
  position: absolute;
  height: 150%;
  opacity: 0.8;
  bottom: -145%;
  right: -77%;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card .card-arrow-wrapper {
  position: absolute;
  display: flex;
  border-radius: 50%;
  padding: 0.6em;
  bottom: 1.5em;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  background: #1b2948;
  transform: scale(0);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card .card-arrow-wrapper svg {
  fill: #fff;
}
.card .card-arrow-text {
  position: absolute;
  bottom: 1em;
  right: 8em;
  color: #fff;
  opacity: 0;
  font-weight: 300;
  font-size: 1.2em;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card:hover .card-img {
  transform: scale(1.1);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card:hover h2 {
  transform: scale(1.2);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card:hover .card-img {
  opacity: 0.3;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.card:hover .card-circle {
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.9;
  bottom: -120%;
  right: -110%;
  width: 250%;
}
.card:hover .card-arrow-wrapper {
  transform: scale(1);
}
.card:hover .card-arrow-text {
  position: absolute;
  bottom: 1.6em;
  right: 4em;
  color: #fff;
  opacity: 1;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================== */
/* WWD PARENT/CHILD Tiles  */
/* ============================================================== */
.widecol.moveup.minpaddingbottom {
  padding-bottom: 10em;
}

#child-page-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  #child-page-list {
    flex-direction: row;
  }
}
@supports not (gap: 1em) {
  #child-page-list {
    margin: -0.75em;
  }
  #child-page-list > .card, #child-page-list .child-card {
    margin: 0.75em;
  }
}
#child-page-list .card h2 {
  color: #fff;
}

#child-page-list.wwd-parent {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  flex-direction: column;
}
@media screen and (min-width: 1000px) {
  #child-page-list.wwd-parent {
    flex-direction: row;
  }
}
#child-page-list.wwd-parent .child-card {
  position: relative;
  display: flex;
  flex: 1 1 32%;
  flex-direction: column;
  margin: 0;
  border-radius: 2rem;
  overflow: hidden;
  text-decoration: none;
  background: #1e283f;
  align-items: inherit;
  justify-content: flex-start;
}
#child-page-list.wwd-parent .child-card .child-card-content {
  padding: 0 2em 2em;
  position: relative;
  background-color: #1e283f;
  top: -0.5em;
  z-index: 2;
}
#child-page-list.wwd-parent .child-card .child-card-content h2 {
  z-index: 1;
  color: #1ba6ff;
  margin: 0 0 2rem;
  letter-spacing: -0.05em;
  font-size: clamp(2rem, 5vw, 4rem);
  word-wrap: break-word;
}
#child-page-list.wwd-parent .child-card .child-card-content h2 span {
  color: #1ba6ff;
  font-weight: 800;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  padding-right: 0;
}
#child-page-list.wwd-parent .child-card .child-card-content p {
  color: #fff;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
}
#child-page-list.wwd-parent .child-card .card-img {
  width: 100%;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.9;
  z-index: 0;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
#child-page-list.wwd-parent .child-card .cs-arc {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 62px;
  top: -61px;
  left: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22cs-arc%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns:xlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20300%2040%22%20style%3D%22enable-background%3Anew%200%200%20300%2040%3B%22%20xml%3Aspace%3D%22preserve%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%231E283F%22%20d%3D%22M300%2C39.9L300%2C39.9L0%2C40C36.8%2C15.5%2C90.4%2C0%2C150%2C0C209.7%2C0%2C263.2%2C15.4%2C300%2C39.9z%22/%3E%3C/svg%3E");
}
#child-page-list.wwd-parent .child-card .card-circle {
  border-radius: 50%;
  background: #1ba6ff;
  width: 250%;
  position: absolute;
  z-index: 3;
  height: 150%;
  opacity: 0.8;
  bottom: -145%;
  right: -77%;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
#child-page-list.wwd-parent .child-card .card-arrow-wrapper {
  position: absolute;
  z-index: 3;
  display: flex;
  border-radius: 50%;
  padding: 0.6em;
  bottom: 1.5em;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  background: #1b2948;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#child-page-list.wwd-parent .child-card .card-arrow-wrapper svg {
  fill: #fff;
}
#child-page-list.wwd-parent .child-card .card-arrow-text {
  position: absolute;
  z-index: 3;
  bottom: 1.6em;
  right: 5em;
  color: #fff;
  opacity: 0;
  font-weight: 300;
  font-size: 1.2em;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
#child-page-list.wwd-parent .child-card:hover .card-img {
  opacity: 0.5;
  transform: scale(1.04);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
#child-page-list.wwd-parent .child-card:hover .child-card-content h2 span {
  padding-right: 0.2em;
}
#child-page-list.wwd-parent .child-card:hover .card-circle {
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.9;
  bottom: -131%;
  right: -110%;
  width: 250%;
}
#child-page-list.wwd-parent .child-card:hover .card-arrow-wrapper {
  transform: scale(1);
}
#child-page-list.wwd-parent .child-card:hover .card-arrow-text {
  position: absolute;
  bottom: 1.6em;
  right: 4em;
  color: #fff;
  opacity: 1;
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================== */
/* CASE STUDIES CARDS  */
/* ============================================================== */
.section.home-casestudies.dark {
  background: #1e283f;
}
.section.home-casestudies.dark .cs-card-wrapper .section-header h2 {
  color: #fff;
}

.section.home-casestudies {
  padding: 4em 1.5em;
  background: #e2e4f6;
  z-index: 2;
}
@media screen and (min-width: 524px) {
  .section.home-casestudies {
    padding: 4em 2em;
  }
}
.section.home-casestudies .cs-card-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto 3em;
}
.section.home-casestudies .cs-card-wrapper .btn.show-on-mob {
  display: block;
}
@media screen and (min-width: 1024px) {
  .section.home-casestudies .cs-card-wrapper .btn.show-on-mob {
    display: none;
  }
}
.section.home-casestudies .cs-card-wrapper .section-header {
  display: flex;
  justify-content: space-between;
}
.section.home-casestudies .cs-card-wrapper .section-header h2 {
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: -0.05em;
}
.section.home-casestudies .cs-card-wrapper .section-header h2 span.blue {
  font-weight: 800;
  color: #1ba6ff;
}
.section.home-casestudies .cs-card-wrapper .section-header .btn.next-btn {
  display: none;
}
@media screen and (min-width: 1024px) {
  .section.home-casestudies .cs-card-wrapper .section-header .btn.next-btn {
    display: block;
    width: 100%;
    max-width: 280px;
  }
}
.section.home-casestudies .cs-card-wrapper .section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  width: 100%;
  margin: 0 auto 4em;
  max-width: 1400px;
}
@media screen and (min-width: 800px) {
  .section.home-casestudies .cs-card-wrapper .section-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .section.home-casestudies .cs-card-wrapper .section-content {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card {
  background-color: #1ba6ff;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  min-height: 588px;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1200px) {
  .section.home-casestudies .cs-card-wrapper .section-content .cs-card {
    min-height: 785px;
  }
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  transform: scale(1.01);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1ba6ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-arc {
  position: absolute;
  width: 100%;
  height: 60px;
  top: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  background-color: #1ba6ff;
  left: 0;
  z-index: 0;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-arc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 130%;
  height: 322px;
  background: #1ba6ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content h2 {
  font-size: clamp(2.8rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0 0 1em;
  padding: 0 3rem;
  z-index: 2;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content p {
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
  padding: 0;
  min-height: 4em;
  max-height: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin: 0 3rem 2em;
  z-index: 2;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-meta {
  z-index: 2;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-meta dl {
  border-top: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 2rem 3rem 4rem;
  margin: 0 !important;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-meta dl dt {
  color: #fff;
  flex-basis: 25%;
  font-weight: 800;
  line-height: 1.5;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card .cs-content .cs-meta dl dd {
  color: #fff;
  flex-basis: 75%;
  font-weight: 400;
  line-height: 1.5;
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card:hover .cs-img {
  transform: scale(1.1);
}
.section.home-casestudies .cs-card-wrapper .section-content .cs-card:hover .cs-meta {
  opacity: 1;
  max-height: 120px;
}

.cs-cat {
  margin: 0 3rem 0.5em;
}

.cs-cat[data-type]::before {
  content: attr(data-type);
  position: relative;
  color: #fff;
  z-index: 24;
  text-transform: uppercase;
  padding: 0 0 1em;
  line-height: 1;
  font-size: 1.4rem;
  pointer-events: none;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* ============================================================== */
/* CASE STUDY PAGE LAYOUT  */
/* ============================================================== */
.page-header .header-overlay .header-cs-content {
  top: -3rem;
  max-width: 1200px;
}
@media screen and (min-width: 520px) {
  .page-header .header-overlay .header-cs-content {
    top: -5rem;
  }
}
.page-header .header-overlay .header-cs-content .h2 {
  font-size: clamp(3rem, 4vmin, 5rem);
  color: #1ba6ff;
  margin: 0 0 0.3em;
}
.page-header .header-overlay .header-cs-content .h2 a {
  font-size: clamp(3rem, 4vmin, 5rem);
  color: #1ba6ff;
}
.page-header .header-overlay .header-cs-content .h2 a .blue {
  color: #1ba6ff;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-right: 0;
}
.page-header .header-overlay .header-cs-content .h2 a:hover .blue {
  margin-right: 0.1em;
}
.page-header .header-overlay .header-cs-content .case-study-header h1.title {
  color: #fff;
  font-size: clamp(3rem, 6vmin, 7rem);
  margin: 0 0 0.3em;
}
.page-header .header-overlay .header-cs-content .case-study-header .case-study-meta {
  display: block;
  border-radius: 0.5em;
  border-top: 2px solid #1ba6ff;
  border-bottom: 2px solid #1ba6ff;
}
.page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 520px) {
  .page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner {
    flex-direction: row;
  }
}
.page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner .cs-meta-block {
  padding: 1em 1em 1em 1em;
  font-weight: 800;
  color: #1ba6ff;
}
@media screen and (max-width: 519px) {
  .page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner .cs-meta-block:nth-child(2) {
    padding-top: 0em;
  }
}
.page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner .cs-meta-block span {
  color: #fff;
  padding-right: 0.3em;
  font-size: clamp(1rem, 4vmin, 1.4rem);
}
.page-header .header-overlay .header-cs-content .case-study-header .case-study-meta .cs-meta-inner .cs-meta-block a {
  color: #1ba6ff;
  font-size: clamp(1rem, 4vmin, 1.4rem);
}

.widecol {
  width: 100%;
  margin: auto;
  position: relative;
}
.widecol h2 {
  font-size: clamp(3rem, 4vmin, 5rem);
  color: #39496d;
}
.widecol h2 a {
  color: #1ba6ff;
}
.widecol h2 .blue {
  color: #1ba6ff;
  font-weight: 800;
}
.widecol .case-study-introtext {
  padding-top: 4em;
}
.widecol .case-study-introtext p {
  color: #344b80;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.5rem);
  letter-spacing: -0.04em;
}
.cs-block-wrapper {
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.5em;
}
.cs-block-wrapper .cs-block-item {
  position: relative;
  flex: 1 1 400px;
  background-color: #e6e9fb;
  border-radius: 1.5rem;
  border-top: 3px solid #1ba6ff;
}
.cs-block-wrapper .cs-block-item .cs-block-content {
  padding: 3rem;
}
@media screen and (min-width: 768px) {
  .cs-block-wrapper .cs-block-item .cs-block-content {
    padding: 4rem;
  }
}
.cs-block-wrapper .cs-block-item .cs-block-content p {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  font-family: "Inter", sans-serif;
  line-height: 1.4;
  color: #39496d;
  margin: 0 0 1em;
}
.cs-block-wrapper .cs-block-item .cs-block-content p a {
  color: #1ba6ff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.cs-block-wrapper .cs-block-item .cs-block-content p a:hover {
  text-decoration: underline;
}
.cs-block-wrapper .cs-block-item .cs-block-content p:last-child {
  margin-bottom: 0;
}

.cs-pager {
  display: flex;
  border-top: 2px solid #1ba6ff;
  border-bottom: 2px solid #1ba6ff;
  border-radius: 0.5em;
  padding: 1em;
  justify-content: space-between;
  margin: 9em 0 0 0 !important;
}
.cs-pager li {
  width: auto;
  margin: 0 !important;
}
@media screen and (min-width: 768px) {
  .cs-pager li {
    width: 50%;
  }
}
.cs-pager li::before {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .cs-pager li:first-child {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .cs-pager li:last-child {
    width: 100%;
  }
  .cs-pager li:last-child a {
    width: 100%;
  }
}
.cs-pager li a {
  display: flex;
  flex-direction: column;
  color: #192f62;
  align-items: center;
  justify-content: flex-start;
}
.cs-pager li a.next {
  text-align: right;
  flex-direction: row-reverse;
  justify-content: flex-start;
}
.cs-pager li a.prev {
  display: none;
  text-align: left;
  flex-direction: row;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .cs-pager li a.prev {
    display: flex;
  }
}
.cs-pager li a span {
  font-size: clamp(1rem, 1vw, 1.5rem);
  letter-spacing: -0.05em;
  border-radius: 50%;
  aspect-ratio: 1/1;
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: #e2e4f6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #1ba6ff;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.cs-pager li a .pagination-description {
  font-size: clamp(1rem, 1.5vw, 1.8rem);
  font-weight: 800;
  padding: 0 1em;
  letter-spacing: -0.05em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .cs-pager li a .pagination-description {
    font-size: clamp(1rem, 3.5vw, 1.8rem);
  }
}
.cs-pager li a:hover span {
  background: #1e283f;
  transform: scale(1.1);
  filter: brightness(1.1);
}
.cs-pager li a:hover span .pagination-description {
  color: #1ba6ff;
}

/* ============================================================== */
/* CASE STUDY PARENT - .cs-parent  */
/* ============================================================== */
.widecol.moveup {
  margin-top: -55vh;
  padding-bottom: 15em;
}
@media screen and (max-width: 550px) {
  .widecol.moveup {
    padding-bottom: 5em;
  }
}
.widecol.moveup .h2 {
  font-size: clamp(3rem, 5vw, 6rem);
  color: #1ba6ff;
  margin: 0 0 0.5em;
}
.widecol.moveup .h2 a {
  color: #1ba6ff;
}
.widecol.moveup .h2 .blue {
  color: #1ba6ff;
  font-weight: 800;
}

.case-study-filters {
  margin: 0;
  padding: 0;
}
.case-study-filters #case-studies-form,
.case-study-filters #publications-form,
.case-study-filters #articles-form {
  margin: 0 0 1em;
}
.case-study-filters #case-studies-form .filter-buttons-scroll,
.case-study-filters #publications-form .filter-buttons-scroll,
.case-study-filters #articles-form .filter-buttons-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 0 -1.5em;
}
.case-study-filters #case-studies-form .filter-buttons-scroll::-webkit-scrollbar,
.case-study-filters #publications-form .filter-buttons-scroll::-webkit-scrollbar,
.case-study-filters #articles-form .filter-buttons-scroll::-webkit-scrollbar {
  display: none;
}
.case-study-filters #case-studies-form .filter-buttons,
.case-study-filters #publications-form .filter-buttons,
.case-study-filters #articles-form .filter-buttons {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.5rem;
  padding: 1rem 0;
  min-width: -moz-max-content;
  min-width: max-content;
}
.case-study-filters #case-studies-form .filter-buttons .btn,
.case-study-filters #publications-form .filter-buttons .btn,
.case-study-filters #articles-form .filter-buttons .btn {
  margin-bottom: 0;
}
.case-study-filters #case-studies-form .filter-buttons .filter-spacer,
.case-study-filters #publications-form .filter-buttons .filter-spacer,
.case-study-filters #articles-form .filter-buttons .filter-spacer {
  flex: 0 0 1em;
}
.case-study-filters #case-studies-form .filter-buttons .btn-filter,
.case-study-filters #publications-form .filter-buttons .btn-filter,
.case-study-filters #articles-form .filter-buttons .btn-filter {
  flex: 0 0 auto;
  scroll-snap-align: start;
}
.case-study-filters #case-studies-form .filter-buttons .btn-click,
.case-study-filters #publications-form .filter-buttons .btn-click,
.case-study-filters #articles-form .filter-buttons .btn-click {
  background: none;
  outline: none;
  border: 2px solid #1ba6ff;
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0.6em 1.2em;
  border-radius: 6rem;
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  letter-spacing: -0.03rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.case-study-filters #case-studies-form .filter-buttons .btn-click .btn-text,
.case-study-filters #publications-form .filter-buttons .btn-click .btn-text,
.case-study-filters #articles-form .filter-buttons .btn-click .btn-text {
  padding: 0.2em;
}
.case-study-filters #case-studies-form .filter-buttons .btn-click .btn-text .btn-text-inner,
.case-study-filters #publications-form .filter-buttons .btn-click .btn-text .btn-text-inner,
.case-study-filters #articles-form .filter-buttons .btn-click .btn-text .btn-text-inner {
  color: #fff !important;
}
.case-study-filters #case-studies-form .filter-buttons .btn-click.active,
.case-study-filters #publications-form .filter-buttons .btn-click.active,
.case-study-filters #articles-form .filter-buttons .btn-click.active {
  background: #1ba6ff;
}
@media screen and (min-width: 1024px) {
  .case-study-filters #case-studies-form .filter-buttons-scroll,
  .case-study-filters #publications-form .filter-buttons-scroll,
  .case-study-filters #articles-form .filter-buttons-scroll {
    overflow-x: visible;
    margin: 0;
  }
  .case-study-filters #case-studies-form .filter-buttons,
  .case-study-filters #publications-form .filter-buttons,
  .case-study-filters #articles-form .filter-buttons {
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-start;
    gap: 0.75rem 1rem;
    padding-left: 0;
    min-width: unset;
  }
  .case-study-filters #case-studies-form .filter-buttons .filter-spacer,
  .case-study-filters #publications-form .filter-buttons .filter-spacer,
  .case-study-filters #articles-form .filter-buttons .filter-spacer {
    display: none;
  }
  .case-study-filters #case-studies-form .filter-buttons .btn-filter,
  .case-study-filters #publications-form .filter-buttons .btn-filter,
  .case-study-filters #articles-form .filter-buttons .btn-filter {
    scroll-snap-align: none;
  }
}

#cs-pagination-data {
  display: none;
}

.btn-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 2px solid rgba(30, 40, 63, 0.3);
  border-top-color: #1ba6ff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-left: 0.2em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#case-studies-list.is-loading .cs-card,
#case-studies-list.is-loading .article-card {
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

#case-studies-list.is-loading {
  position: relative;
  pointer-events: none;
}

#case-studies-list.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 4px solid #ccc;
  border-top-color: #1ba6ff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
#case-studies-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  width: 100%;
  margin: auto auto 3em;
  max-width: 1400px;
}
@media screen and (min-width: 800px) {
  #case-studies-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  #case-studies-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
#case-studies-list .cs-card {
  background-color: #1ba6ff;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  min-height: 530px;
}
@media screen and (min-width: 1200px) {
  #case-studies-list .cs-card {
    min-height: 770px;
  }
}
#case-studies-list .cs-card .cs-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
#case-studies-list .cs-card .cs-img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list .cs-card .cs-img-wrap.img-fade {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1e283f;
}
#case-studies-list .cs-card .cs-img-wrap.img-fade .cs-img {
  opacity: 0.8;
}
#case-studies-list .cs-card .cs-content {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1ba6ff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#case-studies-list .cs-card .cs-content .cs-arc {
  position: absolute;
  width: 100%;
  height: 60px;
  top: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  background-color: #1ba6ff;
  left: 0;
  z-index: 0;
}
#case-studies-list .cs-card .cs-content .cs-arc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 130%;
  height: 322px;
  background: #1ba6ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#case-studies-list .cs-card .cs-content h2 {
  font-size: clamp(2.8rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 0.5em;
  padding: 0 3rem;
  line-height: 110%;
  z-index: 2;
}
#case-studies-list .cs-card .cs-content p {
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
  padding: 0;
  min-height: 4em;
  max-height: 9em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  margin: 0 3rem 2em;
  z-index: 2;
}
#case-studies-list .cs-card .cs-content .cs-meta {
  z-index: 2;
  margin: 0;
  opacity: 0;
  box-sizing: border-box;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
  margin-top: 0.5em;
}
#case-studies-list .cs-card .cs-content .cs-meta dl {
  border-top: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  font-weight: 700;
  font-size: 1.5rem;
  padding: 2rem 3rem 4rem;
  margin: 0 !important;
}
#case-studies-list .cs-card .cs-content .cs-meta dl dt {
  color: #fff;
  flex-basis: 25%;
  font-weight: 800;
  line-height: 1.5;
}
#case-studies-list .cs-card .cs-content .cs-meta dl dd {
  color: #fff;
  flex-basis: 75%;
  font-weight: 400;
  line-height: 1.5;
}
#case-studies-list .cs-card:hover .cs-img {
  transform: scale(1.1);
}
#case-studies-list .cs-card:hover .cs-meta {
  opacity: 1;
  max-height: 140px;
}

/* Publication/article variant tiles */
#case-studies-list.publication-tiles .cs-card {
  aspect-ratio: 9/10;
  min-height: 400px;
}
@media screen and (min-width: 800px) {
  #case-studies-list.publication-tiles .cs-card {
    aspect-ratio: 9/13;
  }
}
#case-studies-list.publication-tiles .cs-card .cs-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#case-studies-list.publication-tiles .cs-card:hover .cs-icon {
  opacity: 0.6;
}
#case-studies-list.publication-tiles .cs-card.has-link .cs-icon {
  background-image: url("/theme/img/pub-link.svg");
}
#case-studies-list.publication-tiles .cs-card.has-pdf .cs-icon {
  background-image: url("/theme/img/pub-pdf.svg");
}

.scroll-buffer {
  pointer-events: none;
  height: 300px;
}

#load-more .btn-text .btn-text-inner.btn-text-spinner {
  width: 82px;
  justify-content: center;
}

/* ============================================================== */
/* WHAT WE DO 
/* ============================================================== */
.fullwidthcol {
  padding: 0 0 3em;
}

.wwd-wrapper {
  padding: 0 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
  max-width: 1920px;
}

/* Grid for WWD if you want them in a grid */
#offer-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  width: 100%;
  margin: 2em auto 3em;
  max-width: 1400px;
}
@media screen and (min-width: 800px) {
  #offer-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  #offer-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.wwd-card {
  background-color: #1ba6ff;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  min-height: 321px;
}
@media screen and (min-width: 400px) {
  .wwd-card {
    min-height: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .wwd-card {
    min-height: 600px;
  }
}
.wwd-card .cs-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.wwd-card .cs-img {
  display: block;
  width: 100%;
  height: auto;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.wwd-card .cs-content {
  padding: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1ba6ff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.wwd-card .cs-content .cs-arc {
  position: absolute;
  width: 100%;
  height: 60px;
  top: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  background-color: #1ba6ff;
  left: 0;
  z-index: 0;
}
.wwd-card .cs-content .cs-arc::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 130%;
  height: 322px;
  background: #1ba6ff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wwd-card .cs-content h2 {
  font-size: clamp(2.8rem, 3vw, 3.6rem);
  font-weight: 200;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 1em;
  padding: 0 3rem;
  text-align: center;
  z-index: 2;
}
.wwd-card .cs-content .cs-meta {
  z-index: 2;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: visible;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.wwd-card .cs-content .cs-meta .cs-meta-empty {
  height: 45px;
}
.wwd-card:hover .cs-img {
  transform: scale(1.1);
}
.wwd-card:hover .cs-meta {
  opacity: 1;
  max-height: 45px;
}

.btn-normal.white-on-blue .btn-click {
  border: 2px solid #fff;
}
.btn-normal.white-on-blue .btn-click .btn-fill-lblue {
  background: #4cb9ff;
}
.btn-normal.white-on-blue .btn-click .btn-text .btn-text-inner {
  font-weight: 400;
}

/* ============================================================== */
/* STAFF PROFILES 
/* ============================================================== */
.widecol.center-align h2 {
  text-align: center;
}

.staff-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  width: 100%;
  margin: auto;
  justify-content: center;
}
.staff-profile {
  flex: 1 1 320px;
  max-width: 100%;
}
@media screen and (min-width: 1000px) {
  .staff-profile {
    max-width: 32%;
  }
}
.staff-profile a {
  display: block;
  background-color: #1ba6ff;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 0;
  margin-bottom: 0;
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: destination-in;
  border-radius: 2rem;
}
@media screen and (min-width: 1400px) {
  .staff-profile a {
    min-height: 435px;
  }
}
.staff-profile a .staff-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1e283f;
}
.staff-profile a .staff-img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.staff-profile a .staff-content-wrap {
  background-color: #1ba6ff;
  position: relative;
  box-sizing: border-box;
  padding-top: 0;
  min-height: 78px;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.staff-profile a .staff-content-wrap .staff-arc {
  content: "";
  position: absolute;
  display: block;
  width: 120%;
  height: 62px;
  top: -45px;
  left: -10%;
  z-index: -1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url("data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22cs-arc%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns:xlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20300%2040%22%20style%3D%22enable-background%3Anew%200%200%20300%2040%3B%22%20xml%3Aspace%3D%22preserve%22%20preserveAspectRatio%3D%22none%22%3E%3Cpath%20fill%3D%22%231BA6FF%22%20d%3D%22M300%2C39.9L300%2C39.9L0%2C40C36.8%2C15.5%2C90.4%2C0%2C150%2C0C209.7%2C0%2C263.2%2C15.4%2C300%2C39.9z%22/%3E%3C/svg%3E");
}
.staff-profile a .staff-content-wrap h3 {
  font-size: clamp(2.8rem, 3vw, 3rem);
  font-weight: 200;
  letter-spacing: -0.05em;
  color: #fff;
  margin: 0 0 0.5em;
  padding: 0 1rem;
  text-align: center;
}
.staff-profile a .staff-content-wrap h3 strong {
  font-weight: 800;
}
.staff-profile a .staff-content-wrap p {
  color: #fff;
  font-size: clamp(1.4rem, 1.5vw, 1.7rem);
  padding: 0;
  text-align: center;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin: 0 3rem 0;
}
.staff-profile a .staff-content-wrap .staff-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  padding-top: 1em;
  opacity: 0;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  overflow: hidden;
  border-top: 0px solid #60c1ff;
  transform: translateY(100%);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.staff-profile a .staff-content-wrap .staff-meta p {
  font-weight: 500;
}
.staff-profile a:hover .staff-img-wrap img {
  transform: scale(1.1);
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  opacity: 1;
}
.staff-profile a:hover .staff-content-wrap {
  transform: translateY(-49px);
}
.staff-profile a:hover .staff-meta {
  opacity: 1;
  border-top: 1px solid #fff;
  padding-top: 1em;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ============================================================== */
/* STAFF POPUPS  */
/* ============================================================== */
.gslide-inline {
  width: 100% !important;
}

.gslide-inline .staff-profile-popup.ginlined-content {
  padding: 0;
  background: #1e283f;
  max-width: none !important;
  width: 94%;
  margin: auto;
  border-radius: 1em;
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-inner {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1100px) {
  .gslide-inline .staff-profile-popup.ginlined-content .popup-inner {
    flex-direction: row;
  }
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-img {
  display: flex;
  width: 100%;
  background-size: cover;
  height: 90vw;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1100px) {
  .gslide-inline .staff-profile-popup.ginlined-content .popup-img {
    width: 50%;
    height: auto;
  }
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-img img {
  opacity: 0.7;
  width: 100%;
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-content {
  width: 100%;
  background: #1e283f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3em;
}
@media screen and (min-width: 1100px) {
  .gslide-inline .staff-profile-popup.ginlined-content .popup-content {
    width: 50%;
    padding: 6em;
  }
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-content h3 {
  font-weight: 200;
  text-align: left;
  margin: 0 0 0.5em;
  color: #1ba6ff;
  margin: 0 0 0.3em;
  font-size: clamp(3.4rem, 4vmin, 5rem);
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-content .subtitle {
  margin: 0 0 1em;
  letter-spacing: 0.02rem;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 300;
  color: #1ba6ff;
}
.gslide-inline .staff-profile-popup.ginlined-content .popup-content p {
  text-align: left;
  color: #fff;
  line-height: 145%;
  font-size: clamp(1.5rem, 2.2vw, 1.5rem);
}

/* ============================================================== */
/* TESTIMONIALS SECTIONS  */
/* ============================================================== */
.section.home-testimonials {
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e283f;
}

.testimonial-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/theme/img/testimonial-bg.jpg") center center/cover no-repeat;
  z-index: 0;
}

.testimonial-circle {
  position: absolute;
  z-index: 1;
  background-color: #1ba6ff;
  width: 200vmin;
  height: 200vmin;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem;
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .testimonial-circle {
    width: 100vmin;
    height: 100vmin;
  }
}

.testimonial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: none;
  max-width: 90vmin;
  font-size: 1.8rem;
  line-height: 1.5;
  color: white;
}

.testimonial p {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: clamp(2rem, 4vmin, 3rem);
  text-align: center;
  letter-spacing: -0.03em;
}

.testimonial .quote-mark.q66 {
  width: 2em;
  margin: auto;
  fill: #1e283f;
  display: block;
  position: relative;
  top: -1em;
}
@media screen and (min-width: 800px) {
  .testimonial .quote-mark.q66 {
    width: 2.5em;
  }
}

.testimonial .quote-mark.q99 {
  fill: #1e283f;
  position: absolute;
  width: 2em;
  right: 0;
  top: -1em;
  transform: rotate(180deg);
}
@media screen and (min-width: 1080px) {
  .testimonial .quote-mark.q99 {
    width: 2em;
  }
}

.testimonial .testimonial-source p {
  margin-top: 2em;
  font-size: clamp(1.5rem, 4vmin, 2.5rem);
  font-weight: 300;
  color: #1e283f;
}
.testimonial .testimonial-source p strong {
  font-weight: 800;
}

/* ============================================================== */
/* TEXT IMG BLOCK - AWARDS QUOTES  */
/* ============================================================== */
.section.text-img-block {
  background-color: #dcdeff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
@media screen and (min-width: 1080px) {
  .section.text-img-block {
    flex-direction: row;
  }
}
.section.text-img-block .text-block {
  width: 100%;
  padding: 4em 3em 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}
@media screen and (min-width: 1080px) {
  .section.text-img-block .text-block {
    width: 58%;
    min-height: 85vh;
    padding: 7em 0 7em 7em;
  }
}
.section.text-img-block .text-block h2 {
  color: #1ba6ff;
  font-size: clamp(4rem, 5vw, 6rem);
}
.section.text-img-block .text-block .dblue {
  color: #1e283f;
}
.section.text-img-block .text-block .testimonial-slider {
  position: relative;
  width: 100%;
  min-height: 31rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4em 0;
}
@media screen and (min-width: 1080px) {
  .section.text-img-block .text-block .testimonial-slider {
    margin: 0;
  }
}
.section.text-img-block .img-block {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 1080px) {
  .section.text-img-block .img-block {
    width: 35%;
  }
}

.awards-testimonial {
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  transition: none;
  max-width: 90vmin;
  font-size: 1.8rem;
  line-height: 1.5;
  color: white;
}

.awards-testimonial p {
  color: #1e283f;
  font-size: clamp(2rem, 4vmin, 4rem);
  font-weight: 800;
  text-align: left;
  letter-spacing: -0.05em;
}

.awards-testimonial .quote-mark.q66,
.awards-testimonial .quote-mark.q99 {
  fill: #1ba6ff;
  width: 48px;
  margin: 0 1em 1em 0;
}

.awards-testimonial .quote-mark.q99 {
  top: 0;
  right: 1em;
  bottom: auto;
  display: none;
}

.awards-testimonial .testimonial-source p {
  color: #009afd;
  margin-top: 2em;
  font-size: clamp(1.5rem, 4vmin, 2.5rem);
  font-weight: 300;
}
.awards-testimonial .testimonial-source p strong {
  font-weight: 800;
}

/* ============================================================== */
/* ARTICLES  */
/* ============================================================== */
#case-studies-list.articles-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  padding-bottom: 1em;
}
#case-studies-list.articles-wrapper .article-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  background: #1ba6ff;
  border-radius: 2rem;
  padding: 2em;
  flex: 1 1 300px;
  min-height: 380px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.articles-wrapper .article-card .card-arrow-wrapper {
  position: absolute;
  display: flex;
  border-radius: 50%;
  padding: 0.6em;
  bottom: 1.5em;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  background: #1b2948;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.articles-wrapper .article-card .card-arrow-wrapper svg {
  fill: #fff;
}
#case-studies-list.articles-wrapper .article-card:hover {
  background: #1ba6ff;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.articles-wrapper .article-card:hover .blue {
  margin-right: 0.1em;
}
#case-studies-list.articles-wrapper .article-card:hover .circle {
  background: #45b6ff;
  bottom: -9%;
  left: 6%;
}
@media (min-width: 662px) {
  #case-studies-list.articles-wrapper .article-card:hover .circle {
    bottom: -1%;
    left: -10%;
  }
}
#case-studies-list.articles-wrapper .article-card:hover .card-arrow-wrapper {
  transform: scale(1);
}

.article-card h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2rem, 2vw, 2.8rem);
  order: 2;
  z-index: 1;
  padding-top: 2em;
  margin: 0 0 1em;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.article-card .date {
  color: #fff;
  font-weight: 300;
  order: 1;
  z-index: 1;
  display: block;
}

.article-card .circle {
  background: #109ef9;
  position: absolute;
  width: 150vmin;
  height: 150vmin;
  bottom: 2%;
  left: 23%;
  display: block;
  z-index: 0;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 662px) {
  .article-card .circle {
    bottom: 4%;
    left: 1%;
    width: 100vmin;
    height: 100vmin;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(1em);
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================== */
/* NEWS CARDS  */
/* ============================================================== */
#case-studies-list.news-wrapper,
#case-studies-list.news-fp-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1em;
  padding-bottom: 1em;
}
#case-studies-list.news-wrapper .news-card,
#case-studies-list.news-fp-wrapper .news-card {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  background: #1ba6ff;
  border-radius: 2rem;
  padding: 2em;
  flex: 1 1 500px;
  min-height: 380px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.news-wrapper .news-card .card-arrow-wrapper,
#case-studies-list.news-fp-wrapper .news-card .card-arrow-wrapper {
  position: absolute;
  display: flex;
  border-radius: 50%;
  padding: 0.6em;
  bottom: 1.5em;
  right: 1.5em;
  width: 2.5em;
  height: 2.5em;
  background: #1b2948;
  transform: scale(0);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.news-wrapper .news-card .card-arrow-wrapper svg,
#case-studies-list.news-fp-wrapper .news-card .card-arrow-wrapper svg {
  fill: #fff;
}
#case-studies-list.news-wrapper .news-card:hover,
#case-studies-list.news-fp-wrapper .news-card:hover {
  background: #1ba6ff;
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
#case-studies-list.news-wrapper .news-card:hover .circle,
#case-studies-list.news-fp-wrapper .news-card:hover .circle {
  background: #45b6ff;
  bottom: -9%;
  left: 6%;
}
@media (min-width: 662px) {
  #case-studies-list.news-wrapper .news-card:hover .circle,
  #case-studies-list.news-fp-wrapper .news-card:hover .circle {
    bottom: -1%;
    left: -10%;
  }
}
#case-studies-list.news-wrapper .news-card:hover .card-arrow-wrapper,
#case-studies-list.news-fp-wrapper .news-card:hover .card-arrow-wrapper {
  transform: scale(1);
}

.news-card h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(3rem, 3vw, 3.7rem);
  order: 2;
  z-index: 1;
  padding-top: 2em;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card .date {
  color: #fff;
  font-weight: 300;
  order: 1;
  z-index: 1;
  display: block;
}

.news-card .circle {
  background: #109ef9;
  position: absolute;
  width: 150vmin;
  height: 150vmin;
  bottom: 2%;
  left: 23%;
  display: block;
  z-index: 0;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (min-width: 662px) {
  .news-card .circle {
    bottom: 4%;
    left: 1%;
    width: 100vmin;
    height: 100vmin;
  }
}

.news-sidelink {
  display: block;
  padding: 0.5em 1em;
  color: #39496d;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.4rem, 2vw, 2rem);
  border-left: 3px solid #1ba6ff;
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.news-sidelink:hover {
  color: #1ba6ff;
  border-left: 3px solid #d6d9f2;
}

/* ============================================================== */
/* NEWS FP SECTION */
/* ============================================================== */
#case-studies-list.news-fp-wrapper .news-card {
  flex: 1 1 300px;
}

.section.news-section .cs-card-wrapper .section-content {
  display: flex;
  width: 100%;
  margin: 0 auto 4em;
  max-width: 1400px;
}

.section.news-section.dark {
  background: #1e283f;
}
.section.news-section.dark .news-fp-card-wrapper .section-header h2 {
  color: #fff;
}

.section.news-section {
  padding: 4em 1.5em;
  background: #e2e4f6;
  z-index: 2;
}
@media screen and (min-width: 524px) {
  .section.news-section {
    padding: 4em 2em;
  }
}
.section.news-section .news-fp-card-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin: 0 auto 3em;
  min-height: 70vh;
}
.section.news-section .news-fp-card-wrapper .section-header {
  display: flex;
  justify-content: space-between;
}
.section.news-section .news-fp-card-wrapper .section-header h2 {
  display: block;
  width: 100%;
  text-align: center;
  letter-spacing: -0.05em;
}
.section.news-section .news-fp-card-wrapper .section-header h2 span.blue {
  font-weight: 800;
  color: #1ba6ff;
}

.botcurve.bc-off-white {
  background-image: url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%201400%2045%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22%23e2e4f6%22%20d%3D%22M700%2C40.5C429.4%2C40.5%2C183.2%2C25.1%2C0%2C0v45h1400V0C1216.8%2C25.1%2C970.6%2C40.5%2C700%2C40.5z%22/%3E%3C/svg%3E");
}

/* ============================================================== */
/* ARTICLE PAGE LAYOUT  */
/* ============================================================== */
.article-header .header-overlay .header-article-content {
  top: 0rem;
  max-width: 1400px;
}
@media screen and (min-width: 520px) {
  .article-header .header-overlay .header-article-content {
    top: -1rem;
  }
}
.article-header .header-overlay .header-article-content .h2 {
  font-size: clamp(1.8rem, 3vmin, 4rem);
  color: #1ba6ff;
  margin: 0 0 0.3em;
}
.article-header .header-overlay .header-article-content .h2 a {
  font-size: inherit;
  color: #1ba6ff;
}
.article-header .header-overlay .header-article-content .h2 a .blue {
  color: #1ba6ff;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.article-header .header-overlay .header-article-content .h2 a:hover .blue {
  margin-right: 0.1em;
}
.article-header .header-overlay .header-article-content .article-title h1.title {
  color: #fff;
  font-size: clamp(2rem, 4vmin, 5rem);
  margin: 0 0 0.3em;
  font-weight: 800;
}
.article-header .header-overlay .header-article-content .article-title time {
  color: #1ba6ff;
  font-size: clamp(1.3rem, 1.5vmin, 1.6rem);
}

.page-maincontent.article-maincontent .section-inner .maincol > p:first-of-type {
  font-size: clamp(2rem, 1.5vw, 2.9rem);
  color: #39496d;
  letter-spacing: -0.03em;
}

.sidecol .btn-sidecol-round {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  top: 4em;
  margin-top: -4em;
}
.sidecol .sidebox .sidebox-wrapper.noBg-noPadding {
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
}
.sidecol .nav-articles-categories,
.sidecol .nav-offer-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sidecol .nav-articles-categories ul,
.sidecol .nav-offer-categories ul {
  display: block;
  width: 100%;
}
.sidecol .nav-articles-categories .btn-normal,
.sidecol .nav-offer-categories .btn-normal {
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  display: inline-block;
}
.sidecol .nav-articles-categories .btn-normal .btn-click .btn-text .btn-text-inner,
.sidecol .nav-offer-categories .btn-normal .btn-click .btn-text .btn-text-inner {
  color: #39496d !important;
}
.sidecol .nav-articles-categories .btn-normal .btn-click.active,
.sidecol .nav-offer-categories .btn-normal .btn-click.active {
  background: #1ba6ff;
}
.sidecol .nav-articles-categories .btn-normal .btn-click.active .btn-text .btn-text-inner,
.sidecol .nav-offer-categories .btn-normal .btn-click.active .btn-text .btn-text-inner {
  color: #fff !important;
}
.sidecol .nav-offer-categories .btn-normal {
  display: block;
  margin-right: 0;
}

/* ============================================================== */
/* OFFER PAGES  */
/* ============================================================== */
.page-header .header-overlay .header-offer-content {
  top: 0;
  max-width: 1200px;
}
.page-header .header-overlay .header-offer-content .h2 {
  font-size: clamp(3rem, 4vmin, 5rem);
  color: #1ba6ff;
  margin: 0 0 0.3em;
}
.page-header .header-overlay .header-offer-content .h2 a {
  font-size: clamp(3rem, 4vmin, 5rem);
  color: #1ba6ff;
}
.page-header .header-overlay .header-offer-content .h2 a .blue {
  color: #1ba6ff;
  font-weight: 800;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  margin-right: 0;
}
.page-header .header-overlay .header-offer-content .h2 a:hover .blue {
  margin-right: 0.1em;
}
.page-header .header-overlay .header-offer-content .offer-header h1.title {
  color: #fff;
  font-size: clamp(3.5rem, 6vmin, 7rem);
  margin: 0 0 0.3em;
}

.offer-box-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100vw;
  left: -50vw;
  right: -50vw;
  margin-left: 50%;
  margin-right: 50%;
  position: relative;
  padding: 3em 1.5em 5em;
  gap: 1.5em;
  justify-content: center;
}
.offer-box-wrapper .offer-box {
  background: #e2e4f5;
  padding: 2em;
  border-top: 3px solid #1ba6ff;
  border-radius: 2rem;
  width: 100%;
  max-width: none;
}
@media (min-width: 500px) {
  .offer-box-wrapper .offer-box {
    padding: 3em;
  }
}
@media (min-width: 900px) {
  .offer-box-wrapper .offer-box {
    max-width: 35em;
    width: 48%;
  }
}
@media (min-width: 1700px) {
  .offer-box-wrapper .offer-box {
    width: 23%;
  }
}
.offer-box-wrapper .offer-box .offer-box-number {
  color: #1ba6ff;
  border-radius: 50%;
  display: flex;
  font-size: 1.5em;
  font-weight: 800;
  margin: 0 0 0.5em;
}
.offer-box-wrapper .offer-box h2 {
  font-size: clamp(3rem, 3.5vmin, 5rem);
}
.offer-box-wrapper .offer-box p {
  font-size: clamp(1.4rem, 1.3vw, 2.2rem);
}
.offer-box-wrapper .offer-box .offer-box-icon {
  max-width: 14em;
  margin: 0 auto 2em;
}

.btn-normal.btn-blue .btn-text .btn-text-inner {
  color: #151d2d;
}

.offer-controls-wrapper .btn.btn-round.btn-blue.btn-sidecol-round.is-inview,
.offer-controls-wrapper .btn.btn-normal.btn-blue.is-inview {
  display: inline-block;
}

/* ============================================================== */
/* FOOTER  */
/* ============================================================== */
.section.footer.is-inview {
  min-height: 100vh;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-around;
  z-index: 12;
  padding: 0;
  margin: 0;
}
@media (min-width: 1500px) {
  .section.footer.is-inview {
    flex-direction: row;
    height: 100vh;
  }
}
.section.footer.is-inview h2 {
  color: #1ba6ff;
  margin: 0;
  font-size: clamp(3.5rem, 5vw, 5rem);
}
.section.footer.is-inview .footer-logo {
  position: relative;
  z-index: 9999;
  max-width: 400px;
  width: 54%;
  height: auto;
  display: block;
  top: -3em;
}
@media (min-width: 1500px) {
  .section.footer.is-inview .footer-logo {
    top: auto;
  }
}
.section.footer.is-inview .footer-logo img {
  width: 100%;
  height: auto;
}
.section.footer.is-inview .footer-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  padding: 0 2em;
}
@media (min-width: 1500px) {
  .section.footer.is-inview .footer-cta {
    padding: 0;
  }
}
.section.footer.is-inview .footer-cta .btn-fixed {
  margin: 2em 0 2em 1em;
}
.section.footer.is-inview .footer-cta .btn-fixed .btn-round .btn-click {
  width: clamp(9em, 10vw, 10em);
  height: clamp(9em, 10vw, 10em);
  border-radius: 50%;
  border: 0;
  background: #1caeff;
}
.section.footer.is-inview .footer-cta .btn-fixed .btn-round .btn-click:hover .btn-text .btn-text-inner {
  color: #1ba6ff !important;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.section.footer.is-inview .footer-cta .btn-fixed .btn-round .btn-text-inner {
  color: #1e283f !important;
  font-weight: 400;
  font-size: 1.3em;
  letter-spacing: -0.05em;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-arc {
  position: absolute;
  width: 100%;
  height: 70vh;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  bottom: 0;
}
@media (min-width: 1500px) {
  .footer-arc {
    width: 50%;
    height: 106vh;
  }
}

.footer-arc-mob, .footer-arc-desktop {
  fill: #1CAEFF;
}

#footer-arc-mob {
  display: block;
}
@media (min-width: 1500px) {
  #footer-arc-mob {
    display: none;
  }
}

#footer-arc-desktop {
  display: none;
}
@media (min-width: 1500px) {
  #footer-arc-desktop {
    display: block;
  }
}

/* Arc shape */
.footer-arc svg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62vh;
  width: 100%;
}
@media (min-width: 1500px) {
  .footer-arc svg {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 100%;
    height: 106vh;
  }
}

.footer-inner {
  padding-top: 6em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 520px) {
  .footer-inner {
    flex-direction: row;
  }
}
.footer-inner .footer-logo {
  display: block;
  padding: 0;
  width: 50%;
}
@media screen and (min-width: 520px) {
  .footer-inner .footer-logo {
    width: 30%;
    padding: 0 2em 0 0;
  }
}
@media screen and (min-width: 1300px) {
  .footer-inner .footer-logo {
    width: 25%;
  }
}
@media screen and (min-width: 1600px) {
  .footer-inner .footer-logo {
    width: 20%;
  }
}
.footer-inner .footer-logo a img {
  width: 100%;
  height: auto;
  max-width: 200px;
}
.footer-inner h2 {
  color: #fff;
  line-height: 120%;
  font-size: calc(clamp(2.25em, 4vw, 8em) * 0.675);
  margin: 1em 0 1em;
  text-align: center;
}
@media screen and (min-width: 520px) {
  .footer-inner h2 {
    text-align: left;
  }
}
.footer-inner h2 span {
  display: block;
}
.footer-inner h2 span:first-child {
  font-weight: 800;
}

.social-links {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .social-links {
    margin: 0;
  }
}
.social-links a {
  margin: 0 0.3em 0 0;
  width: 35px;
  display: inline-block;
}
.social-links a img {
  opacity: 1;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.social-links a:hover img {
  opacity: 0.7;
}

.socials h5 {
  color: #1e283f;
  padding-left: 0.5em;
  margin-bottom: 1em;
}
@media screen and (min-width: 1500px) {
  .socials h5 {
    color: #1ba6ff;
  }
}

.footer-sublink-section {
  display: flex;
  padding: 2em;
  min-height: 10vh;
  align-items: center;
}

.container.footer-copy-container {
  position: relative;
  padding: 0;
  width: 100%;
  z-index: 12;
  max-width: none;
}

.bottom-footer h5 {
  margin-bottom: 1.5em;
  color: #1ba6ff;
  font-size: 1.3rem;
  font-weight: 600;
}

.bottom-footer p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #1ba6ff;
  font-weight: 600;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.bottom-footer p a {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #1ba6ff;
  font-weight: 600;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.credits-links ul li {
  display: block;
  padding-left: 0.3em;
}
@media screen and (min-width: 600px) {
  .credits-links ul li {
    display: inline-block;
  }
}
.credits-links ul li a {
  color: #1ba6ff;
  margin: 0 0.5em 0 -0.2em;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  transition: color 0.6s cubic-bezier(0.3, 1, 0.3, 1) 0.05s;
  opacity: 1;
}
.credits-links ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.credits-links ul li .link-click {
  position: relative;
  padding: 0.25em 0;
  display: flex;
  overflow: hidden;
  cursor: pointer;
  color: #1ba6ff;
}
.credits-links ul li .link-click:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1ba6ff;
  transform: scaleX(0) rotate(0.001deg);
  transform-origin: right center;
  transition: transform 0.6s cubic-bezier(0.3, 1, 0.3, 1), background-color 0.6s cubic-bezier(0.3, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.3, 1, 0.3, 1) 0.05s;
  opacity: 1;
}
.credits-links ul li .link-click:hover:before {
  transform-origin: left center;
  transform: scaleX(1) rotate(0.001deg);
  opacity: 1;
}

.footer-sublink-section .container.footer-copy-container {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1em;
}
.footer-sublink-section .container.footer-copy-container .footer-nav-links {
  grid-row: 1/2;
  grid-column: 1/2;
  justify-self: start;
}
.footer-sublink-section .container.footer-copy-container .footer-nav-links ul li {
  display: inline-block;
}
.footer-sublink-section .container.footer-copy-container .footer-nav-links ul li a {
  color: #fff;
  padding: 0.3em 0.9em 0.3em 0;
  font-size: clamp(1em, 1vw, 1.3em);
  letter-spacing: -0.03em;
  display: block;
  transition: color 0.6s cubic-bezier(0.3, 1, 0.3, 1) 0.05s;
}
.footer-sublink-section .container.footer-copy-container .footer-nav-links ul li a:hover {
  color: #1ba6ff;
}
.footer-sublink-section .container.footer-copy-container .social-links {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: end;
}
.footer-sublink-section .container.footer-copy-container .credits {
  grid-column: 1/2;
  grid-row: 2/3;
  justify-self: start;
}
.footer-sublink-section .container.footer-copy-container .credits p {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #1ba6ff;
  font-weight: 600;
  margin: 0;
}
.footer-sublink-section .container.footer-copy-container .credits-links {
  grid-column: 2/3;
  grid-row: 2/3;
  justify-self: end;
}
.footer-sublink-section .container.footer-copy-container .iso-logo {
  grid-column: 3/4;
  grid-row: 1/3;
  justify-self: end;
  align-self: center;
}
.footer-sublink-section .container.footer-copy-container .iso-logo img {
  max-height: 100px;
  height: auto;
  width: auto;
}
@media (max-width: 768px) {
  .footer-sublink-section .container.footer-copy-container {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
  }
  .footer-sublink-section .container.footer-copy-container .footer-nav-links {
    grid-column: 1/3;
    grid-row: 1;
    justify-self: start;
  }
  .footer-sublink-section .container.footer-copy-container .social-links {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .footer-sublink-section .container.footer-copy-container .credits-links {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
  }
  .footer-sublink-section .container.footer-copy-container .credits {
    grid-column: 1/3;
    grid-row: 4;
    justify-self: start;
  }
  .footer-sublink-section .container.footer-copy-container .iso-logo {
    grid-column: 2;
    grid-row: 2/4;
  }
}/*# sourceMappingURL=screen.css.map */