/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    margin: 0;
  }
  
  main {
    display: block;
  }
  
  h1 {
    font-size: 2em;
    margin: 0.67em 0;
  }
  
  hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
  }
  
  pre {
    font-family: monospace, monospace;
    font-size: 1em;
  }
  
  a {
    background-color: transparent;
  }
  
  b,
  strong {
    font-weight: bolder;
  }
  
  small {
    font-size: 80%;
  }
  
  sub {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  
  sub {
    bottom: -0.25em;
  }
  
  img {
    border-style: none;
  }
  
  button,
  input,
  select,
  textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
  }
  
  button,
  input {
    overflow: visible;
  }
  
  button,
  select {
    text-transform: none;
  }
  
  [type="button"],
  [type="submit"],
  button {
    -webkit-appearance: button;
  }
  
  [type="button"]::-moz-focus-inner,
  [type="submit"]::-moz-focus-inner,
  button::-moz-focus-inner {
    border-style: none;
    padding: 0;
  }
  
  [type="button"]:-moz-focusring,
  [type="submit"]:-moz-focusring,
  button:-moz-focusring {
    outline: 1px dotted ButtonText;
  }
  
  fieldset {
    padding: 0.35em 0.75em 0.625em;
  }
  
  textarea {
    overflow: auto;
  }
  
  [type="checkbox"],
  [type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
  }
  
  [type="number"]::-webkit-inner-spin-button,
  [type="number"]::-webkit-outer-spin-button {
    height: auto;
  }
  
  [type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
  }
  
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-scrollbar {
    width: 11px;
  }

  ::-webkit-scrollbar-track {
    background: var(--border-grey-dark);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 25px;
  }
  
  /*!
   * Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license (Commercial License)
   * Copyright 2022 Fonticons, Inc.
   */
  .fa {
    font-family: "Font Awesome 6 Pro";
    font-family: var(--fa-style-family, "Font Awesome 6 Pro");
    font-weight: 900;
    font-weight: var(--fa-style, 900);
  }
  
  .c-article-slider__btn:after,
  .c-faqs__header:after,
  .c-form__submit--loading:after,
  .c-nav-mobile__back:before,
  .c-nav-mobile__item--has-subs > .c-nav-mobile__link:before,
  .c-preview__btn-modal:before,
  .c-preview__btn:after,
  .fa,
  .fa-brands,
  .fa-light,
  .fal,
  [type="checkbox"]:checked + label:after {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
  }
  
  [type="checkbox"]:checked + label:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
  }
  
  @keyframes fa-beat {
    0%,
    90% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    45% {
      -webkit-transform: scale(1.25);
      transform: scale(1.25);
      -webkit-transform: scale(var(--fa-beat-scale, 1.25));
      transform: scale(var(--fa-beat-scale, 1.25));
    }
  }
  
  @-webkit-keyframes fa-bounce {
    to {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
  }
  
  @keyframes fa-bounce {
    0% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
  
    10% {
      -webkit-transform: scale(1.1, 0.9) translateY(0);
      transform: scale(1.1, 0.9) translateY(0);
      -webkit-transform: scale(
          var(--fa-bounce-start-scale-x, 1.1),
          var(--fa-bounce-start-scale-y, 0.9)
        )
        translateY(0);
      transform: scale(
          var(--fa-bounce-start-scale-x, 1.1),
          var(--fa-bounce-start-scale-y, 0.9)
        )
        translateY(0);
    }
  
    30% {
      -webkit-transform: scale(0.9, 1.1) translateY(-0.5em);
      transform: scale(0.9, 1.1) translateY(-0.5em);
      -webkit-transform: scale(
          var(--fa-bounce-jump-scale-x, 0.9),
          var(--fa-bounce-jump-scale-y, 1.1)
        )
        translateY(var(--fa-bounce-height, -0.5em));
      transform: scale(
          var(--fa-bounce-jump-scale-x, 0.9),
          var(--fa-bounce-jump-scale-y, 1.1)
        )
        translateY(var(--fa-bounce-height, -0.5em));
    }
  
    50% {
      -webkit-transform: scale(1.05, 0.95) translateY(0);
      transform: scale(1.05, 0.95) translateY(0);
      -webkit-transform: scale(
          var(--fa-bounce-land-scale-x, 1.05),
          var(--fa-bounce-land-scale-y, 0.95)
        )
        translateY(0);
      transform: scale(
          var(--fa-bounce-land-scale-x, 1.05),
          var(--fa-bounce-land-scale-y, 0.95)
        )
        translateY(0);
    }
  
    57% {
      -webkit-transform: scale(1) translateY(-0.125em);
      transform: scale(1) translateY(-0.125em);
      -webkit-transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em));
      transform: scale(1) translateY(var(--fa-bounce-rebound, -0.125em));
    }
  
    64% {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
  
    to {
      -webkit-transform: scale(1) translateY(0);
      transform: scale(1) translateY(0);
    }
  }
  
  @keyframes fa-fade {
    50% {
      opacity: 0.4;
      opacity: var(--fa-fade-opacity, 0.4);
    }
  }
  
  @-webkit-keyframes fa-beat-fade {
    to {
      opacity: 0.4;
      opacity: var(--fa-beat-fade-opacity, 0.4);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  
  @keyframes fa-beat-fade {
    0%,
    to {
      opacity: 0.4;
      opacity: var(--fa-beat-fade-opacity, 0.4);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  
    50% {
      opacity: 1;
      -webkit-transform: scale(1.125);
      transform: scale(1.125);
      -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));
      transform: scale(var(--fa-beat-fade-scale, 1.125));
    }
  }
  
  @keyframes fa-flip {
    50% {
      -webkit-transform: rotate3d(0, 1, 0, -180deg);
      transform: rotate3d(0, 1, 0, -180deg);
      -webkit-transform: rotate3d(
        var(--fa-flip-x, 0),
        var(--fa-flip-y, 1),
        var(--fa-flip-z, 0),
        var(--fa-flip-angle, -180deg)
      );
      transform: rotate3d(
        var(--fa-flip-x, 0),
        var(--fa-flip-y, 1),
        var(--fa-flip-z, 0),
        var(--fa-flip-angle, -180deg)
      );
    }
  }
  
  @-webkit-keyframes fa-shake {
    to {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  
  @keyframes fa-shake {
    0% {
      -webkit-transform: rotate(-15deg);
      transform: rotate(-15deg);
    }
  
    4% {
      -webkit-transform: rotate(15deg);
      transform: rotate(15deg);
    }
  
    8%,
    24% {
      -webkit-transform: rotate(-18deg);
      transform: rotate(-18deg);
    }
  
    12%,
    28% {
      -webkit-transform: rotate(18deg);
      transform: rotate(18deg);
    }
  
    16% {
      -webkit-transform: rotate(-22deg);
      transform: rotate(-22deg);
    }
  
    20% {
      -webkit-transform: rotate(22deg);
      transform: rotate(22deg);
    }
  
    32% {
      -webkit-transform: rotate(-12deg);
      transform: rotate(-12deg);
    }
  
    36% {
      -webkit-transform: rotate(12deg);
      transform: rotate(12deg);
    }
  
    40%,
    to {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  }
  
  @-webkit-keyframes fa-spin {
    to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn);
    }
  }
  
  @keyframes fa-spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }
  
    to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn);
    }
  }
  
  .fa-arrow-down:before {
    content: "\f063";
  }
  
  .fa-arrow-right:before {
    content: "\f061";
  }
  
  .fa-car:before {
    content: "\f1b9";
  }
  
  .fa-coins:before {
    content: "\f51e";
  }
  
  .fa-envelope:before {
    content: "\f0e0";
  }
  
  .fa-home:before {
    content: "\f015";
  }
  
  .fa-location-dot:before {
    content: "\f3c5";
  }
  
  .fa-map-location-dot:before {
    content: "\f5a0";
  }
  
  .fa-minus:before {
    content: "\f068";
  }
  
  .fa-phone:before {
    content: "\f095";
  }
  
  .fa-share-nodes:before {
    content: "\f1e0";
  }
  
  .fa-times:before,
  .fa-xmark:before {
    content: "\f00d";
  }
  
  :root {
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
  }
  
  @font-face {
    font-family: Font Awesome\6 Brands;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/static/fonts/fa-brands-400.woff2) format("woff2");
    unicode-range: U+f16d, U+f0e1, U+f099, U+f167;
  }
  
  .fa-brands {
    font-family: Font Awesome\6 Brands;
    font-weight: 400;
  }
  
  .fa-instagram:before {
    content: "\f16d";
  }
  
  .fa-linkedin-in:before {
    content: "\f0e1";
  }
  
  .fa-twitter:before {
    content: "\f099";
  }
  
  .fa-youtube:before {
    content: "\f167";
  }
  
  /*!
   * Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license (Commercial License)
   * Copyright 2022 Fonticons, Inc.
   */
  :root {
    --fa-font-light: normal 300 1em/1 "Font Awesome 6 Pro";
  }
  
  @font-face {
  font-family: Font Awesome\6 Pro;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/static/fonts/fa-light-300.woff2) format("woff2");
  unicode-range: U+f015, U+f061, U+f063, U+f068, U+f095, U+f0e0, U+f00d, U+f3c5, U+f5a0, U+f51e, U+f1b9;
}
  
  .c-article-slider__btn:after,
  .c-faqs__header:after,
  .c-nav-mobile__back:before,
  .c-nav-mobile__item--has-subs > .c-nav-mobile__link:before,
  .c-preview__btn:after,
  .fa-light,
  .fal {
    font-family: Font Awesome\6 Pro;
    font-weight: 300;
  }
  
  /*!
   * Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license (Commercial License)
   * Copyright 2022 Fonticons, Inc.
   */
  :root {
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
  }
  
  @font-face {
    font-family: Font Awesome\6 Pro;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/static/fonts/fa-regular-400.woff2)
      format("woff2");
  }
  
  .c-preview__btn-modal:before {
    font-family: Font Awesome\6 Pro;
    font-weight: 400;
  }
  
  /*!
   * Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com
   * License - https://fontawesome.com/license (Commercial License)
   * Copyright 2022 Fonticons, Inc.
   */
  :root {
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
  }
  
  @font-face {
    font-family: Font Awesome\6 Pro;
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(/static/fonts/fa-solid-900.woff2)
      format("woff2");
  }
  
  .c-form__submit--loading:after,
  [type="checkbox"]:checked + label:after {
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
  }
  
  :root {
    --site-width: 86.25rem;
    --white: #fff;
    --black: #000;
    --error: #d21f1f;
    --success: #5aad28;
    --body-color: #000;
    --heading-color: var(--dark);
    --primary-color: #eb5014;
    --primary-color-hover: #b73300;
    --secondary-color: #1414ff;
    --secondary-color-hover: #0000ce;
    --border-color: #ccc;
    --placeholder-color: #888;
    --border-grey-light: #d7d7d8;
    --border-grey-dark: #47494c;
    --grey-light: #fafafa;
    --green-light: #d2d7d2;
    --dark: #00080f;
    --black-opacity-1: rgba(0, 0, 0, 0.1);
    --black-opacity-18: rgba(0, 0, 0, 0.18);
    --error-opacity-05: rgba(210, 31, 31, 0.05);
    --white-opacity-23: hsla(0, 0%, 100%, 0.23);
    --secondary-opacity-21: rgba(20, 20, 255, 0.21);
    --body-font: "IBM Plex Sans", sans-serif;
    --heading-font: var(--body-font);
    --header-height: 80px;
    --h1-size: 7.5rem;
    --h2-size: 3.4375rem;
    --h3-size: 1.5625rem;
    --h4-size: 1.1875rem;
    --body-size: 1.0625rem;
    --ease-in: cubic-bezier(0.5, 0, 0.75, 0);
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);
  }
  
  *,
  :after,
  :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: #000;
    -webkit-tap-highlight-color: var(--black);
  }
  
  html {
    font-size: 100%;
  }
  
  ::selection {
    text-shadow: none;
    color: #fff;
    color: var(--white);
    background: #eb5014;
    background: var(--primary-color);
  }
  
  a,
  a:focus,
  a:visited,
  button:focus,
  img,
  input:focus,
  select:focus,
  textarea:focus {
    outline: 0 none;
  }
  
  a,
  img {
    border: 0;
  }
  
  a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
  }
  
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration,
  input[type="search"]::-webkit-search-results-button,
  input[type="search"]::-webkit-search-results-decoration {
    display: none;
  }
  
  body {
    color: #000;
    color: var(--body-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-family: var(--body-font);
    line-height: 1.2;
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    opacity: 1;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
    transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  body.header--scrolled {
    padding-top: 80px;
    padding-top: var(--header-height);
  }
  
  .no-animate * {
    -webkit-transition: none !important;
    transition: none !important;
  }
  
  article,
  aside,
  figure,
  footer,
  header,
  main,
  menu,
  nav,
  section {
    display: block;
  }
  
  iframe,
  img,
  svg,
  video {
    vertical-align: middle;
  }
  
  img {
      display: block;
      max-width: 100%;
      align-content: center;
  }
  
  .h-text-right {
    text-align: right;
  }
  
  .l-sitewrapper {
    /* overflow-x: hidden; */
  }
  
  .l-contain {
    margin: 0 auto;
    max-width: 86.25rem;
    max-width: var(--site-width);
    padding: 0 1rem;
    position: relative;
    width: 100%;
  }
  
  img.left {
    float: left;
    margin: 0 1rem 1rem 0;
  }
  
  img.right {
    float: right;
    margin: 0 0 1rem 1rem;
  }
  
  .c-overlay {
    background: #000;
    background: var(--black);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-regular.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-regular.woff)
        format("woff");
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-italic.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-italic.woff)
        format("woff");
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-500.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-500.woff)
        format("woff");
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-500italic.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-500italic.woff)
        format("woff");
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-700.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-700.woff)
        format("woff");
  }
  
  @font-face {
    font-family: IBM Plex Sans;
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url(/static/fonts/ibm-plex-sans-v14-latin-700italic.woff2)
        format("woff2"),
      url(/static/fonts/ibm-plex-sans-v14-latin-700italic.woff)
        format("woff");
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    color: #00080f;
    color: var(--heading-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-family: var(--heading-font);
    margin: 0 0 1.5rem;
    line-height: 1;
  }
  
  h1 {
    font-size: 7.5rem;
    font-size: var(--h1-size);
    margin-bottom: 2.5rem;
  }
  
  h1 + .c-label {
    font-size: 32px;
    padding: 0.9375rem 1.375rem;
    -ms-flex-item-align: normal;
    -ms-grid-row-align: normal;
    align-self: normal;
  }
  
  h2 {
    font-size: 3.4375rem;
    font-size: var(--h2-size);
  }
  
  h3 {
    font-size: 1.5625rem;
    font-size: var(--h3-size);
  }
  
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 1rem;
  }
  
  h4,
  h5,
  h6 {
    font-size: 1.1875rem;
    font-size: var(--h4-size);
  }
  
  p {
    color: #000;
    color: var(--body-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-family: var(--body-font);
    font-size: 1.0625rem;
    font-size: var(--body-size);
    margin: 0 0 2rem;
    line-height: 1.5;
  }
  
  a {
    color: #eb5014;
    color: var(--primary-color);
    text-decoration: none;
  }
  
  a:focus,
  a:hover {
    text-decoration: underline;
  }
  
  blockquote {
    color: #00080f;
    color: var(--heading-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-family: var(--heading-font);
    font-size: 1.875rem;
    line-height: 1.2;
  }
  
  hr {
    display: block;
    border: 0;
    border-top: 1px solid #ccc;
    height: 1px;
    margin: 2rem 0;
    padding: 0;
  }
  
  ol:not([class]),
  ul:not([class]) {
    padding: 0;
    margin: 0 0 1.875rem;
    list-style: none;
  }
  
  ol:not([class]) li,
  ul:not([class]) li {
    font-size: 1.0625rem;
    font-size: var(--body-size);
    line-height: 1.5;
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0 0 8px;
    position: relative;
  }
  
  ol:not([class]) li:before,
  ul:not([class]) li:before {
    color: #eb5014;
    color: var(--primary-color);
    content: "\2022";
    position: absolute;
    top: 0;
    left: 0;
  }
  
  ol:not([class]) ol,
  ol:not([class]) ul,
  ul:not([class]) ol,
  ul:not([class]) ul {
    margin: 0.975rem 0 0;
  }
  
  ol:not([class]) {
    counter-reset: counter;
  }
  
  ol:not([class]) > li:before {
    content: counter(counter) ".";
    counter-increment: counter;
    top: 0;
  }
  
  ol:not([class]) ol > li {
    padding-left: 1.75rem;
  }
  
  ol:not([class]) ol > li:before {
    content: counters(counter, ".");
    top: 0;
  }
  
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }
  
  label {
    color: #00080f;
    color: var(--heading-color);
    display: inline-block;
    font-weight: 700;
    margin-bottom: 0.9375rem;
  }
  
  label span {
    font-size: 0.6875rem;
    font-weight: 400;
  }
  
  [type="email"],
  [type="file"],
  [type="number"],
  [type="search"],
  [type="tel"],
  [type="text"],
  [type="url"],
  select,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fafafa;
    background: var(--grey-light);
    border: 1px solid #ccc;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #00080f;
    color: var(--heading-color);
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding: 1rem;
    margin: 0 0 1.5625rem;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  [type="email"]:focus,
  [type="file"]:focus,
  [type="number"]:focus,
  [type="search"]:focus,
  [type="tel"]:focus,
  [type="text"]:focus,
  [type="url"]:focus,
  select:focus,
  textarea:focus {
    border-color: #00080f;
    border-color: var(--dark);
    outline: none;
  }
  
  [type="email"]::-webkit-input-placeholder,
  [type="file"]::-webkit-input-placeholder,
  [type="number"]::-webkit-input-placeholder,
  [type="search"]::-webkit-input-placeholder,
  [type="tel"]::-webkit-input-placeholder,
  [type="text"]::-webkit-input-placeholder,
  [type="url"]::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.18);
    color: var(--black-opacity-18);
  }
  
  [type="email"]::-moz-placeholder,
  [type="file"]::-moz-placeholder,
  [type="number"]::-moz-placeholder,
  [type="search"]::-moz-placeholder,
  [type="tel"]::-moz-placeholder,
  [type="text"]::-moz-placeholder,
  [type="url"]::-moz-placeholder,
  select::-moz-placeholder,
  textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.18);
    color: var(--black-opacity-18);
  }
  
  [type="email"]:-ms-input-placeholder,
  [type="file"]:-ms-input-placeholder,
  [type="number"]:-ms-input-placeholder,
  [type="search"]:-ms-input-placeholder,
  [type="tel"]:-ms-input-placeholder,
  [type="text"]:-ms-input-placeholder,
  [type="url"]:-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.18);
    color: var(--black-opacity-18);
  }
  
  [type="email"]:-moz-placeholder,
  [type="file"]:-moz-placeholder,
  [type="number"]:-moz-placeholder,
  [type="search"]:-moz-placeholder,
  [type="tel"]:-moz-placeholder,
  [type="text"]:-moz-placeholder,
  [type="url"]:-moz-placeholder,
  select:-moz-placeholder,
  textarea:-moz-placeholder {
    color: rgba(0, 0, 0, 0.18);
    color: var(--black-opacity-18);
  }
  
  [type="email"].c-form--error,
  [type="file"].c-form--error,
  [type="number"].c-form--error,
  [type="search"].c-form--error,
  [type="tel"].c-form--error,
  [type="text"].c-form--error,
  [type="url"].c-form--error,
  select.c-form--error,
  textarea.c-form--error {
    border-color: #d21f1f;
    border-color: var(--error);
  }
  
  [type="email"].c-form--error:focus,
  [type="file"].c-form--error:focus,
  [type="number"].c-form--error:focus,
  [type="search"].c-form--error:focus,
  [type="tel"].c-form--error:focus,
  [type="text"].c-form--error:focus,
  [type="url"].c-form--error:focus,
  select.c-form--error:focus,
  textarea.c-form--error:focus {
    border-color: #00080f;
    border-color: var(--dark);
    outline: none;
  }
  
  textarea {
    resize: vertical;
  }
  
  select {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSI4LjUiIHZpZXdCb3g9IjAgMCAxNyA4LjUiPgogIDxtZXRhZGF0YT48P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/Pgo8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzOCA3OS4xNTk4MjQsIDIwMTYvMDkvMTQtMDE6MDk6MDEgICAgICAgICI+CiAgIDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+CiAgICAgIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiLz4KICAgPC9yZGY6UkRGPgo8L3g6eG1wbWV0YT4KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgIAo8P3hwYWNrZXQgZW5kPSJ3Ij8+PC9tZXRhZGF0YT4KPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSB7CiAgICAgICAgZmlsbDogIzY2NjsKICAgICAgICBmaWxsLXJ1bGU6IGV2ZW5vZGQ7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTEwNjIuNDksMTU4bC04LjQ5LDguNDg1TDEwNDUuNTEsMTU4aDE2Ljk4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNDUuNSAtMTU4KSIvPgo8L3N2Zz4K)
      top 20px right 15px no-repeat;
    height: auto;
  }
  
  select::-ms-expand {
    display: none;
  }
  
  [type="file"]:hover {
    cursor: pointer;
  }
  
  [type="search"] {
    width: auto;
    display: inline-block;
  }
  
  [multiple] {
    height: auto;
  }
  
  [type="checkbox"],
  [type="radio"] {
    opacity: 0;
    position: absolute;
  }
  
  [type="checkbox"]:focus + label:before,
  [type="radio"]:focus + label:before {
    border-color: #00080f;
    border-color: var(--dark);
    outline: none;
  }
  
  [type="checkbox"] + label,
  [type="radio"] + label {
    display: inline-block;
    font-weight: 400;
    padding: 4px 0 0 35px;
    margin: 0 0 1.25rem;
    position: relative;
  }
  
  [type="checkbox"] + label:after,
  [type="checkbox"] + label:before,
  [type="radio"] + label:after,
  [type="radio"] + label:before {
    content: "";
    position: absolute;
  }
  
  [type="checkbox"] + label:before,
  [type="radio"] + label:before {
    border: 1px solid #ccc;
    border: 1px solid var(--border-color);
    height: 24px;
    width: 24px;
    left: 0;
    top: 0;
  }
  
  [type="checkbox"]:checked + label:after {
    color: #eb5014;
    color: var(--primary-color);
    content: "\f00c";
    top: 4px;
    left: 4px;
  }
  
  [type="radio"] + label {
    margin-right: 1.25rem;
  }
  
  [type="radio"] + label:before {
    border-radius: 12px;
  }
  
  [type="radio"]:checked + label:after {
    background: #eb5014;
    background: var(--primary-color);
    border-radius: 5px;
    height: 10px;
    width: 10px;
    top: 7px;
    left: 7px;
  }
  
  [type="checkbox"].c-form--error + label:before,
  [type="radio"].c-form--error + label:before {
    border-color: #d21f1f;
    border-color: var(--error);
  }
  
  [type="checkbox"].c-form--error:focus + label:before,
  [type="radio"].c-form--error:focus + label:before {
    border-color: #00080f;
    border-color: var(--dark);
    outline: none;
  }
  
  .c-form--error {
    background-color: rgba(210, 31, 31, 0.05);
    background-color: var(--error-opacity-05);
  }
  
  .c-form--error + .c-form__error,
  .c-form--error + label + .c-form__error {
    display: block;
  }
  
  .c-form__error {
    color: #d21f1f;
    color: var(--error);
    display: none;
    font-size: 0.875rem;
    margin: -1rem 0 1rem;
  }
  
  .c-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .c-form__item {
    width: 100%;
  }
  
  .c-form__item--80 {
    width: calc(80% - 1rem);
  }
  
  .c-form__item--70 {
    width: calc(70% - 1rem);
  }
  
  .c-form__item--60 {
    width: calc(60% - 1rem);
  }
  
  .c-form__item--50 {
    width: calc(50% - 1rem);
  }
  
  .c-form__item--40 {
    width: calc(40% - 1rem);
  }
  
  .c-form__item--30 {
    width: calc(30% - 1rem);
  }
  
  .c-form__item--20 {
    width: calc(20% - 1rem);
  }
  
  .c-form__submit:disabled + .c-form__submit-error,
  .c-form__submit[disabled] + .c-form__submit-error {
    display: block;
  }
  
  .c-form__submit--loading {
    padding-right: 2.5rem !important;
    position: relative;
  }
  
  .c-form__submit--loading:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    content: "\f021";
    position: absolute;
    top: 12px;
    right: 12px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  .c-form__submit--loading + .c-form__submit-error {
    display: none !important;
    font-size: 0.875rem;
  }
  
  .c-form__submit + .c-form__submit-error,
  .c-form__submit-error {
    color: #d21f1f;
    color: var(--error);
    margin: -1rem 0 1rem;
  }
  
  .c-form__submit + .c-form__submit-error {
    display: none;
    font-size: 0.875rem;
  }
  
  @-webkit-keyframes spin {
    to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn);
    }
  }
  
  @keyframes spin {
    to {
      -webkit-transform: rotate(1turn);
      transform: rotate(1turn);
    }
  }
  
  .c-btn {
    background-color: #eb5014;
    background-color: var(--primary-color);
    border: 1px solid transparent;
    border-radius: 50px;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.875rem 1.75rem;
    padding-right: 1.25rem;
    margin: 0 0.5rem 1rem 0;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-btn:last-of-type {
    margin-right: 0;
  }
  
  .c-btn:last-child {
    margin-bottom: 0;
  }
  
  .c-btn:focus,
  .c-btn:hover {
    background-color: #b73300;
    background-color: var(--primary-color-hover);
    color: #fff;
    color: var(--white);
    outline: 0;
    text-decoration: none;
  }
  
  .c-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  .c-btn[disabled]:focus,
  .c-btn[disabled]:hover {
    background-color: #eb5014;
    background-color: var(--primary-color);
    border-color: #eb5014;
    border-color: var(--primary-color);
  }
  
  .c-btn svg {
    -webkit-transition: all 0.125s cubic-bezier(0.5, 0, 0.75, 0);
    transition: all 0.125s cubic-bezier(0.5, 0, 0.75, 0);
    -webkit-transition: all 0.125s var(--ease-in);
    transition: all 0.125s var(--ease-in);
    color: #00080f;
    color: var(--dark);
  }
  
  .c-btn--icon-right svg {
    margin-left: 15px;
  }
  
  .c-btn--icon-arrowright:focus svg,
  .c-btn--icon-arrowright:hover svg {
    color: white;
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  
  .c-btn--icon-arrowdown:focus svg,
  .c-btn--icon-arrowdown:hover svg {
    color: white;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  
  .c-btn--no-padding {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .c-btn--white {
    background-color: #fff;
    background-color: var(--white);
    color: #00080f;
    color: var(--dark);
  }
  
  .c-btn--white i {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--black,
  .c-btn--white:focus,
  .c-btn--white:hover,
  .c-btn--white[disabled]:focus,
  .c-btn--white[disabled]:hover {
    background-color: #00080f;
    background-color: var(--dark);
  }
  
  .c-btn--black {
    color: #fff;
    color: var(--white);
  }
  
  .c-btn--black i {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--black:focus,
  .c-btn--black:hover {
    background-color: #000;
    background-color: var(--black);
  }
  
  .c-btn--black[disabled]:focus,
  .c-btn--black[disabled]:hover {
    background-color: #00080f;
    background-color: var(--dark);
  }
  
  .c-btn--outline {
    background-color: transparent;
    border: 1px solid #eb5014;
    border: 1px solid var(--primary-color);
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--outline:focus,
  .c-btn--outline:hover {
    background-color: transparent;
    border-color: #b73300;
    border-color: var(--primary-color-hover);
    color: #b73300;
    color: var(--primary-color-hover);
  }
  
  .c-btn--outline[disabled]:focus,
  .c-btn--outline[disabled]:hover {
    background-color: transparent;
    border-color: #eb5014;
    border-color: var(--primary-color);
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--clear {
    background-color: transparent;
    border-color: transparent;
  }
  
  .c-btn--clear,
  .c-btn--clear i {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--clear:focus,
  .c-btn--clear:hover {
    background-color: transparent;
    border-color: transparent;
    color: #b73300;
    color: var(--primary-color-hover);
  }
  
  .c-btn--clear:focus i,
  .c-btn--clear:hover i {
    color: #b73300;
    color: var(--primary-color-hover);
  }
  
  .c-btn--clear[disabled]:focus,
  .c-btn--clear[disabled]:hover {
    background-color: transparent;
    border-color: transparent;
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--clear[disabled]:focus i,
  .c-btn--clear[disabled]:hover i {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-btn--secondary {
    background-color: #1414ff;
    background-color: var(--secondary-color);
    color: #fff;
    color: var(--white);
  }
  
  .c-btn--secondary:focus,
  .c-btn--secondary:hover {
    background-color: #0000ce;
    background-color: var(--secondary-color-hover);
    outline: 0;
  }
  
  .c-btn--secondary[disabled] {
    cursor: default;
    opacity: 0.5;
  }
  
  .c-btn--secondary[disabled]:focus,
  .c-btn--secondary[disabled]:hover {
    background-color: #1414ff;
    background-color: var(--secondary-color);
    border-color: #1414ff;
    border-color: var(--secondary-color);
  }
  
  .c-btn--secondary.c-btn--outline {
    background-color: transparent;
    border: 1px solid #1414ff;
    border: 1px solid var(--secondary-color);
    color: #1414ff;
    color: var(--secondary-color);
  }
  
  .c-btn--secondary.c-btn--outline:focus,
  .c-btn--secondary.c-btn--outline:hover {
    background-color: transparent;
    border-color: #0000ce;
    border-color: var(--secondary-color-hover);
    color: #0000ce;
    color: var(--secondary-color-hover);
  }
  
  .c-btn--secondary.c-btn--outline[disabled]:focus,
  .c-btn--secondary.c-btn--outline[disabled]:hover {
    background-color: transparent;
    border-color: #1414ff;
    border-color: var(--secondary-color);
    color: #1414ff;
    color: var(--secondary-color);
  }
  
  .c-btn--secondary.c-btn--clear {
    background-color: transparent;
    color: #1414ff;
    color: var(--secondary-color);
  }
  
  .c-btn--secondary.c-btn--clear:focus,
  .c-btn--secondary.c-btn--clear:hover {
    background-color: transparent;
    color: #0000ce;
    color: var(--secondary-color-hover);
  }
  
  .c-btn--secondary.c-btn--clear[disabled]:focus,
  .c-btn--secondary.c-btn--clear[disabled]:hover {
    background-color: transparent;
    border-color: transparent;
    color: #1414ff;
    color: var(--secondary-color);
  }
  
  .nav-mobile--active {
    max-width: 100vw;
    position: fixed;
    overflow-y: hidden;
    left: 0;
    right: 0;
  }
  
  .nav-mobile--active .c-nav-mobile {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  
  .c-nav-mobile {
    --nav-mobile-top-position: 0;
    --nav-mobile-header-height: 0px;
    --nav-mobile-footer-height: 0px;
    --nav-mobile-contain-padding: 1.5rem;
    background: #fff;
    background: var(--white);
    height: 100vh;
    width: 100vw;
    position: absolute;
    top: var(--nav-mobile-top-position);
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    z-index: 10;
  }
  
  .c-nav-mobile__btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
  }
  
  .c-nav-mobile__btn-close i {
    color: #eb5014;
    color: var(--primary-color);
    font-size: 28px;
  }
  
  .c-nav-mobile__header {
    height: var(--nav-mobile-header-height);
  }
  
  .c-nav-mobile__contain {
    height: calc(
      100vh - var(--nav-mobile-header-height) - var(--nav-mobile-footer-height)
    );
    margin: 0 auto;
    padding: var(--nav-mobile-contain-padding);
    position: relative;
    overflow-y: scroll;
  }
  
  .c-nav-mobile__list {
    margin: 0 0 1rem;
    padding: 0;
  }
  
  .c-nav-mobile__item {
    padding: 0;
    border-bottom: 1px solid #ccc;
    border-bottom: 1px solid var(--border-color);
  }
  
  .c-nav-mobile__item:last-child {
    border: 0;
  }
  
  .c-nav-mobile__item--has-subs > .c-nav-mobile__link {
    position: relative;
    padding-right: 40px;
  }
  
  .c-nav-mobile__item--has-subs > .c-nav-mobile__link:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    color: #eb5014;
    color: var(--primary-color);
    content: "\f067";
    font-size: 1.25rem;
    font-weight: 300;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .c-nav-mobile__link {
    color: #000;
    color: var(--black);
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    padding: 15px 0;
  }
  
  .c-nav-mobile__link:focus,
  .c-nav-mobile__link:hover {
    text-decoration: none;
  }
  
  .c-nav-mobile__level {
    background: #fff;
    background: var(--white);
    height: calc(
      100vh - var(--nav-mobile-header-height) - var(--nav-mobile-footer-height)
    );
    padding: var(--nav-mobile-contain-padding) var(--nav-mobile-contain-padding)
      2.5rem var(--nav-mobile-contain-padding);
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
    transition: all 0.5s cubic-bezier(0.5, 0, 0.75, 0);
    -webkit-transition: all 0.5s var(--ease-in);
    transition: all 0.5s var(--ease-in);
    -webkit-transform: translate3d(-150vw, 0, 0);
    transform: translate3d(-150vw, 0, 0);
    z-index: 1;
    overflow: scroll;
  }
  
  .c-nav-mobile__level--active {
    -webkit-transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.5s var(--ease-out);
    transition: all 0.5s var(--ease-out);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  
  .c-nav-mobile__back {
    color: #000;
    color: var(--black);
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    padding: 5px 0 15px 20px;
    position: relative;
  }
  
  .c-nav-mobile__back:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    color: #1414ff;
    color: var(--secondary-color);
    content: "\f104";
    font-size: 1.5rem;
    position: absolute;
    top: 6px;
    left: 0;
    font-weight: 400;
  }
  
  .c-nav-mobile__back:focus,
  .c-nav-mobile__back:hover {
    text-decoration: none;
  }
  
  .c-nav-mobile__footer {
    height: var(--nav-mobile-footer-height);
  }
  
  .c-header {
    background-image: url(/static/img/div/bg-banner.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .c-header .c-social {
    margin-left: 1.4375rem;
  }
  
  .c-header .c-logos {
    margin-top: 1rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }
  
  .c-header .c-logos img {
    height: 32px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
  }
  
  @media only screen and (max-width: 800px) {
    .c-header .c-logos {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 1rem;
      max-width: 300px;
      margin: 1rem auto;
      justify-items: center;
      align-items: center;
    }
    
    .c-header .c-logos img {
      height: 60px;
      width: auto;
    }
  }
  
  .c-partners-label {
    display: block;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
  }
  
  .c-header--home {
    height: 100vh;
    max-height: 1440px;
  }
  
  .c-header--home .c-header__content {
    -ms-grid-columns: 506px 1fr;
    grid-template-columns: 506px 1fr;
  }
  
  .c-header--home .c-header__content-col .c-heading-striped {
    max-width: 100%;
    font-size: 6.125rem;
  }
  
  .c-header--home .c-header__content-col .c-heading-striped span:after {
    bottom: 13%;
  }
  
  .c-header__inner {
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-header__inner--scrolled {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  
  .c-header__inner--down {
    background: #fff;
    background: var(--white);
    width: 100%;
    height: 80px;
    height: var(--header-height);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 3px 6px var(--black-opacity-1);
    box-shadow: 0 3px 6px var(--black-opacity-1);
  }
  
  .c-header__inner--down .c-header__contain {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  
  .c-header__inner--down .c-header__logo-light {
    display: none;
  }
  
  .c-header__inner--down .c-header__logo-dark {
    display: block;
  }
  
  .c-header__inner--down .c-header__nav-link {
    color: #00080f;
    color: var(--dark);
  }
  
  .c-header__inner--down .c-header__nav-link:before {
    bottom: -7px;
  }
  
  .c-header__inner--down .c-social__link {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-header__inner--down .c-social__link:hover {
    color: #00080f;
    color: var(--dark);
  }
  
  .c-header__contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-top: 45px;
    padding-bottom: 45px;
    max-width: 106.875rem;
  }
  
  .c-header__logo-dark {
    display: none;
  }
  
  .c-header__logo img {
    min-width: 150px;
  }
  
  .c-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  
  .c-header__nav {
    margin-left: 2rem;
  }
  
  .c-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
  }
  
  .c-header__nav-item {
    position: relative;
  }
  
  .c-header__nav-item--home .c-header__nav-link {
    font-size: 1.25rem;
  }
  
  .c-header__nav-item:before {
    background: #47494c;
    background: var(--border-grey-dark);
    content: "";
    width: 1px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  
  .c-header__nav-item:focus .c-header__nav-link,
  .c-header__nav-item:hover .c-header__nav-link {
    text-decoration: none;
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-header__nav-item--active .c-header__nav-link:before {
    background: #eb5014;
    background: var(--primary-color);
    width: calc(100% - 60px);
  }
  
  .c-header__nav-link {
    color: #fff;
    color: var(--white);
    padding: 0.9375rem 1.875rem;
    font-size: 1.125rem;
    position: relative;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-header__nav-link:before {
    background: #eb5014;
    background: var(--primary-color);
    content: "";
    height: 2px;
    width: 0;
    position: absolute;
    bottom: -14px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .c-header__nav-link--indicator:after {
    background: #eb5014;
    background: var(--primary-color);
    content: "";
    border-radius: 50%;
    width: 7px;
    height: 7px;
    display: inline-block;
    -webkit-transform: translate(5px, -10px);
    transform: translate(5px, -10px);
  }
  
  .c-header__hamburger {
    background: none;
    border: none;
    cursor: pointer;
    height: 12px;
    width: 30px;
    padding: 1.25rem 0 0;
    margin: 0 0.5rem 0 1rem;
    position: relative;
    display: none;
  }
  
  .c-header__hamburger span {
    top: calc(50% - 1px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  
  .c-header__hamburger span,
  .c-header__hamburger span:after,
  .c-header__hamburger span:before {
    height: 2px;
    width: 30px;
    border-radius: 3px;
    background: #eb5014;
    background: var(--primary-color);
    position: absolute;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  
  .c-header__hamburger span:after,
  .c-header__hamburger span:before {
    content: "";
    left: 0;
    top: -10px;
  }
  
  .c-header__hamburger span:after {
    top: auto;
    bottom: -10px;
  }
  
  .c-header__hamburger--active span {
    background: transparent;
    left: calc(50% + 9px);
  }
  
  .c-header__hamburger--active span:before {
    -webkit-transform: rotate(45deg) translateY(14px);
    transform: rotate(45deg) translateY(14px);
  }
  
  .c-header__hamburger--active span:after {
    -webkit-transform: rotate(-45deg) translateY(-14px);
    transform: rotate(-45deg) translateY(-14px);
  }
  
  .c-header__content {
    --heading-color: var(--white);
    --body-color: var(--white);
    --body-size: 1.25rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 18.4375rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-bottom: 3.75rem;
  }
  
  .c-header__content-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 908px;
  }
  
  .c-header__content-col .c-heading-striped {
    max-width: 70%;
  }
  
  .c-header__scroll {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: mousewheel 1.4s linear infinite;
    animation: mousewheel 1.4s linear infinite;
  }
  
  @-webkit-keyframes mousewheel {
    to {
      bottom: 20px;
    }
  }
  
  @keyframes mousewheel {
    0% {
      bottom: 20px;
    }
  
    25% {
      bottom: 14px;
    }
  
    50% {
      bottom: 8px;
    }
  
    60% {
      bottom: 10px;
    }
  
    75% {
      bottom: 18px;
    }
  
    80% {
      bottom: 20px;
    }
  
    to {
      bottom: 20px;
    }
  }
  
  .c-header .c-panel p {
    margin-bottom: 2rem;
  }
  
  .c-img {
    position: relative;
  }
  
  @media (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .c-img {
      min-height: 1px;
    }
  }
  
  .c-img + p {
    margin-top: 2rem;
  }
  
  .c-block {
    padding: 5.625rem 0;
    position: relative;
  }
  
  .c-block .c-heading-striped {
    font-size: 6.25rem;
  }
  
  .c-block__contain + .c-partners {
    margin-top: 5.625rem;
  }
  
  .c-block__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  
  .c-block__col--has-video .c-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 2rem;
    height: 0;
    overflow: hidden;
  }
  
  .c-block__col--has-video .c-video:last-child {
    margin-bottom: 0;
  }
  
  .c-block__col--has-video .c-video embed,
  .c-block__col--has-video .c-video iframe,
  .c-block__col--has-video .c-video object,
  .c-block__col--has-video .c-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .c-block__col--has-video .c-video + h2,
  .c-block__col--has-video .c-video + p {
    margin-top: 2rem;
  }
  
  .c-block--has-bg {
    padding: 5.625rem 0;
    margin-bottom: 5.625rem;
  }
  
  .c-block--has-bg + .c-block {
    margin-top: -5.625rem;
  }
  
  .c-block--has-bg + .c-block--has-bg {
    margin-top: -11.25rem;
  }
  
  .c-block--has-bg .c-specs-block dd,
  .c-block--has-bg .c-specs-block dt,
  .c-block--has-bg h1,
  .c-block--has-bg h2,
  .c-block--has-bg h3,
  .c-block--has-bg h4,
  .c-block--has-bg h5,
  .c-block--has-bg h6,
  .c-block--has-bg ol:not([class]) li,
  .c-block--has-bg p,
  .c-block--has-bg ul:not([class]) li {
      color: #fff;
      color: var(--white);
      margin-left: 50 px;
      align-content: center;
  }
  
  .c-block--has-bg ol:not([class]) li:after,
  .c-block--has-bg ol:not([class]) li:before,
  .c-block--has-bg ul:not([class]) li:after,
  .c-block--has-bg ul:not([class]) li:before {
    background: #fff;
    background: var(--white);
  }
  
  .c-block--has-bg ol:not([class]) > li:before {
    background: transparent;
  }
  
  .c-block--bg-primary {
    background: #eb5014;
    background: var(--primary-color);
  }
  
  .c-block--bg-secondary {
    background: #1414ff;
    background: var(--secondary-color);
  }
  
  .c-block--bg-dark {
    background: #00080f;
    background: var(--dark);
  }
  
  .c-block--bg-dark-image-01 {
    background-image: url(/static/img/div/bg-dark-01.svg);
  }
  
  .c-block--bg-dark {
    background-color: black;
  }
  
  .c-block--bg-dark-image-01,
  .c-block--bg-dark-image-02 {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #00080f;
    background-color: var(--dark);
  }
  
  .c-block--bg-dark-image-02 {
      background-image: url(/static/img/div/bg-dark.jpg);
  }
  
  .c-block--bg-partners {
    padding-top: 20px;
    padding-bottom: 40px;
    background-position: 100% 25%;
    background-repeat: no-repeat;
    background-image: url(/static/img/partners/bg-partners.svg);
  }
  
  .c-block--2-col .c-block__contain {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(calc(50% - 3.75rem), 1fr)) [2];
    grid-template-columns: repeat(2, minmax(calc(50% - 3.75rem), 1fr));
    gap: 3.75rem;
  }
  
  .c-block--2-col .c-block__contain--salary {
    -ms-grid-columns: (minmax(830px, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(830px, 1fr));
  }
  
  .c-block--2-col .c-block__contain--salary .c-heading-striped {
    margin-top: auto;
    font-size: 4.25rem;
    margin-bottom: 0;
  }
  
  .c-block--wide-gap .c-block__contain {
    gap: 12.5rem;
    -ms-grid-columns: (minmax(calc(50% - 12.5rem), 1fr)) [2];
    grid-template-columns: repeat(2, minmax(calc(50% - 12.5rem), 1fr));
  }
  
  .c-block--wide-gap .c-block__contain--salary {
    -ms-grid-columns: 890px 1fr;
    grid-template-columns: 890px 1fr;
  }
  
  .c-block--img-full .c-img + h2,
  .c-block--img-full .c-img + p {
    margin-top: 2rem;
  }
  
  .c-block--img-full img {
    width: 100%;
  }
  
  .c-block .c-btn {
    -ms-flex-item-align: start;
    align-self: flex-start;
    -ms-grid-column-align: start;
    justify-self: start;
  }
  
  .c-faqs {
    margin: 40px 0;
  }
  
  .c-faqs__item {
    background: #fff;
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 10px 0 var(--black-opacity-1);
    box-shadow: 0 4px 10px 0 var(--black-opacity-1);
  }
  
  .c-faqs__item:last-of-type {
    margin-bottom: 0;
  }
  
  .c-faqs__item:hover .c-faqs__header:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f068";
  }
  
  .c-faqs__item:hover .c-faqs__header + .c-faqs__content {
    max-height: 1000px;
  }
  
  .c-faqs__header {
    cursor: pointer;
    position: relative;
  }
  
  .c-faqs__header:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    color: #eb5014;
    color: var(--primary-color);
    content: "\2b";
    font-size: 1.5625rem;
    font-weight: 300;
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  
  .c-faqs__header--active:after {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: "\f068";
  }
  
  .c-faqs__header--active + .c-faqs__content {
    max-height: 1000px;
  }
  
  .c-faqs__heading {
    color: #eb5014;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin: 0;
    padding: 20px 80px 20px 30px;
  }
  
  .c-faqs__content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.275s ease-out;
    transition: max-height 0.275s ease-out;
  }
  
  .c-faqs__content-inner {
    padding: 0 80px 30px 30px;
  }
  
  .c-article-block__article {
    margin-bottom: 4rem;
  }
  
  .c-article-block__article:last-child {
    margin-bottom: 0;
  }
  
  .c-article-block__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 300px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
  }
  
  .c-article-block__heading {
    margin-top: auto;
    margin-bottom: 0;
    font-size: 7.5rem;
    font-size: var(--h1-size);
  }
  
  .c-article-block__heading--pre {
    margin-top: auto;
    font-size: 1.5625rem;
    font-size: var(--h3-size);
  }
  
  .c-article-block__heading--pre + .c-article-block__heading {
    margin-top: 0;
  }
  
  .c-article-block__backdrop {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
  
  .c-article-block p:last-of-type {
    margin-bottom: 2rem;
  }
  
  .c-specs-block dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  
  .c-specs-block dt {
    color: #00080f;
    color: var(--heading-color);
    font-family: "IBM Plex Sans", sans-serif;
    font-family: var(--heading-font);
    font-size: 1.0625rem;
    font-size: var(--body-size);
    font-weight: 700;
    padding: 5px 0;
    width: 25%;
  }
  
  .c-specs-block dd {
    color: #000;
    color: var(--body-color);
    font-size: 1.0625rem;
    font-size: var(--body-size);
    padding: 5px 0 5px 2rem;
    margin-left: auto;
    width: 75%;
    position: relative;
  }
  
  .c-specs-block dd:before {
    background: #eb5014;
    background: var(--primary-color);
    content: "";
    height: 100%;
    width: 1px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .active--modal .c-overlay {
    opacity: 0.75;
    z-index: 15;
    visibility: visible;
  }
  
  .active--modal .c-modal-img--preview {
    opacity: 1;
    visibility: visible;
    z-index: 20;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  
  .c-modal-img {
    background: #fff;
    background: var(--white);
    max-width: 80vw;
    width: calc(100vw - 40px);
    position: absolute;
    top: 168px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  
  .c-modal-img__open {
    opacity: 1;
    visibility: visible;
    z-index: 20;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  
  .c-modal-img__btn-close {
    background: #eb5014;
    background: var(--primary-color);
    border: 0;
    border-radius: 5px;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    text-align: center;
    padding: 0;
    margin: 0;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .c-preview {
    position: relative;
  }
  
  .c-preview__btn-modal {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fff;
    color: var(--white);
    cursor: pointer;
    font-size: 1.0625rem;
    text-align: center;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  
  .c-preview__btn-modal:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    background: #1414ff;
    background: var(--secondary-color);
    border-radius: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "\f00e";
    font-size: 24px;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding-top: 12px;
  }
  
  .c-preview__big {
    margin-bottom: 2rem;
    position: relative;
  }

  /* News page modal styles */
  .tb_post_modal_content { 
    font-size: 16px !important;
    line-height: 1.5 !important;
  }

  .tb_post_modal_post_footer {
    display: none !important;
  }
  .tb_nc_content {
    line-height: 1.5 !important;
  }
  .c-preview__big img {
    width: 100%;
  }
  
  .c-preview__btn {
    background: none;
    border: 0;
    border-radius: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }
  
  .c-preview__btn:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    color: #1414ff;
    color: var(--secondary-color);
    font-size: 1.5rem;
  }
  
  .c-preview__btn--prev {
    left: -65px;
  }
  
  .c-preview__btn--prev:after {
    content: "\f060";
  }
  
  .c-preview__btn--prev:hover {
    left: -70px;
  }
  
  .c-preview__btn--next {
    right: -65px;
  }
  
  .c-preview__btn--next:after {
    content: "\f061";
  }
  
  .c-preview__btn--next:hover {
    right: -70px;
  }
  
  .c-preview__slider {
    position: relative;
    margin: 0 0 0 -10px;
  }
  
  .c-preview__slide {
    cursor: pointer;
    padding: 0 10px 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
  }
  
  .c-preview__slide:before {
    border: 0 solid #eb5014;
    border: 0 solid var(--primary-color);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    content: "";
    height: calc(100% - 10px);
    width: calc(100% - 20px);
    position: absolute;
    top: 0;
    left: 10px;
    -webkit-transition: border 0.3s ease-in-out;
    transition: border 0.3s ease-in-out;
  }
  
  .c-preview__slide:hover:before {
    border: 5px solid #eb5014;
    border: 5px solid var(--primary-color);
  }
  
  .c-preview__slide--active:before,
  .c-preview__slide--active:hover:before {
    border: 10px solid #eb5014;
    border: 10px solid var(--primary-color);
  }
  
  .c-preview__slide img {
    width: 100%;
  }
  
  .c-article-slider {
    position: relative;
  }
  
  .c-article-slider__btn {
    background: none;
    border: 0;
    border-radius: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
  }
  
  .c-article-slider__btn:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    color: #1414ff;
    color: var(--secondary-color);
    font-size: 1.5rem;
  }
  
  .c-article-slider__btn--prev {
    left: -65px;
  }
  
  .c-article-slider__btn--prev:after {
    content: "\f060";
  }
  
  .c-article-slider__btn--prev:hover {
    left: -70px;
  }
  
  .c-article-slider__btn--next {
    right: -65px;
  }
  
  .c-article-slider__btn--next:after {
    content: "\f061";
  }
  
  .c-article-slider__btn--next:hover {
    right: -70px;
  }
  
  .c-article-slider__article {
    background: #fff;
    background: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 10px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 2rem;
    margin: 0 1rem 2rem;
    -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 10px 0 var(--black-opacity-1);
    box-shadow: 0 4px 10px 0 var(--black-opacity-1);
  }
  
  .c-article-slider__article .c-btn {
    white-space: normal;
    text-align: left;
  }
  
  .c-article-slider__article p {
    color: #000;
    color: var(--body-color);
  }
  
  .c-article-slider__figure {
    padding: 0;
    margin: -2rem -2rem 2rem;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  
  .c-article-slider__figure img {
    width: 100%;
  }
  
  @media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
    .c-article-slider__figure img {
      width: auto;
    }
  }
  
  .c-article-slider__figure--icon {
    height: 300px;
    width: calc(100% + 60px);
    position: relative;
  }
  
  .c-article-slider__figure--icon i {
    font-size: 80px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #fff;
    color: var(--white);
  }
  
  .c-article-slider__heading {
    font-size: 3.4375rem;
    font-size: var(--h2-size);
    color: #000 !important;
    color: var(--body-color) !important;
    font-weight: 400;
  }
  
  .c-article-slider__heading--sub {
    font-size: 1.5625rem;
    font-size: var(--h3-size);
    margin-top: -1rem;
  }
  
  .c-sidepanel {
    background: #fff;
    background: var(--white);
    padding: 115px 80px;
    max-width: 708px;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    -webkit-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-transition: all 0.275s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.275s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.275s var(--ease-out);
    transition: all 0.275s var(--ease-out);
    overflow-y: scroll;
  }
  
  .c-sidepanel--active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.275s cubic-bezier(0.5, 0, 0.75, 0);
    transition: all 0.275s cubic-bezier(0.5, 0, 0.75, 0);
    -webkit-transition: all 0.275s var(--ease-in);
    transition: all 0.275s var(--ease-in);
    z-index: 11;
  }
  
  .c-sidepanel__header h2 {
    display: inline-block;
  }
  
  .c-sidepanel__overlay {
    background: #000;
    background: var(--black);
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: 0.125s all 0.125s cubic-bezier(0.5, 0, 0.75, 0);
    transition: 0.125s all 0.125s cubic-bezier(0.5, 0, 0.75, 0);
    -webkit-transition: 0.125s all 0.125s var(--ease-in);
    transition: 0.125s all 0.125s var(--ease-in);
  }
  
  .c-sidepanel__overlay--active {
    opacity: 0.75;
    visibility: visible;
    z-index: 7;
    -webkit-transition: all 0.125s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.125s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.125s var(--ease-out);
    transition: all 0.125s var(--ease-out);
  }
  
  .c-sidepanel__btn-close {
    background: #00080f;
    background: var(--dark);
    width: 50px;
    height: 50px;
    border: 0;
    cursor: pointer;
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 10px;
    left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  
  .c-sidepanel__btn-close i {
    color: #fff;
    color: var(--white);
    font-size: 1.25rem;
  }
  
  .c-social__link {
    color: #fff;
    color: var(--white);
    padding: 5px 7px;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-social__link i {
    font-size: 1.25rem;
  }
  
  .c-social__link:hover {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-social__link_alt {
    color: #fff;
    color: var(--white);
    padding: 0px 20px;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-social__link_alt i {
    font-size: 1.25rem;
  }
  
  .c-social__link_alt:hover {
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .c-heading-striped span {
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  
  .c-heading-striped span:after {
    background: #eb5014;
    background: var(--primary-color);
    content: "";
    height: 11px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 12%;
    display: block;
    z-index: -1;
    border-radius: 25px;
  }
  
  .c-heading-striped-rounded span {
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .c-heading-striped-rounded span:after {
    /* background: #eb5014;
    background: var(--primary-color); */
    content: "";
    height: 11px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12%;
    display: block;
    z-index: -1;
    border-radius: 25px;
    background: linear-gradient(to left, #eb7914, #eb5014);
  }
  
  .c-label {
    background: #1414ff;
    background: var(--secondary-color);
    display: inline-block;
    -ms-flex-item-align: start;
    align-self: flex-start;
    color: #fff;
    color: var(--white);
    font-size: 1.625rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    text-align: center;
    text-transform: uppercase;
    border-radius: 999px;
  }
  
  .c-label--black {
    background: #00080f;
    background: var(--dark);
  }
  
  .c-panel {
    position: relative;
    background: #eb5014;
    background: var(--primary-color);
    padding: 3.75rem 3.125rem;
  }
  
  .c-panel .c-label {
    margin-bottom: 2rem;
  }
  
  .c-panel__sticky {
    position: relative;
    z-index: 5;
  }
  
  .c-panel__sticky--sticky {
    position: fixed !important;
    top: 50px;
    z-index: 5;
  }
  
  .c-panel__sticky--bottom {
    position: absolute;
    margin-right: 15px;
    z-index: 5;
  }
  
  .c-partners__heading {
    margin-bottom: 1.5rem;
    text-align: left;
    color: white;
  }
  
  .c-partners__contain {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  
  .c-partners__figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-partners__figure:hover {
    opacity: 1;
  }
  
  .c-contact-block {
    background: #d2d7d2;
    background: var(--green-light);
  }
  
  .c-contact-block__info {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 70px;
    max-width: 500px;
    position: relative;
    z-index: 1;
  }
  
  .c-contact-block__info-col {
    border-right: 1px solid hsla(0, 0%, 100%, 0.23);
    border-right: 1px solid var(--white-opacity-23);
    z-index: 1;
    display: block;
  }
  
  .c-contact-block__info-col:last-child {
    border: none;
  }
  
  .c-contact-block__info-col:last-child .c-contact-block__info-item {
    padding-left: 35px;
  }
  
  .c-contact-block__info-col:last-child
    .c-contact-block__info-item:first-child
    i {
    top: 2px;
  }
  
  .c-contact-block__info-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #fff;
    color: var(--white);
    line-height: 1.5;
    min-width: 180px;
  }
  
  .c-contact-block__info-item a {
    color: #fff;
    color: var(--white);
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-contact-block__info-item a:focus,
  .c-contact-block__info-item a:hover {
    text-decoration: none;
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-contact-block__info-item i {
    position: absolute;
    top: 5px;
    left: 0;
    font-size: 1.25rem;
  }
  
  .c-contact-block__info-social {
    padding-left: 35px;
  }
  
  /* .c-contact-block:after {
    background-image: url(/app/images/bg-contact-block.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
  } */
  .c-callback {
    --heading-color: var(--white);
    --body-color: var(--white);
    background: #00080f;
    background: var(--dark);
    border-radius: 5px;
    padding: 30px;
  }
  
  .c-salary__row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 360px 210px 210px 1fr;
    grid-template-columns: 360px 210px 210px 1fr;
  }
  
  .c-salary__row--head {
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.23);
    border-bottom: 1px solid var(--white-opacity-23);
    margin-bottom: 15px;
  }
  
  .c-salary__row--head .c-salary__row-item:first-child {
    padding-left: 0;
  }
  
  .c-salary__row--highlighted {
    background: rgba(20, 20, 255, 0.21);
    background: var(--secondary-opacity-21);
    border-top: 1px solid hsla(0, 0%, 100%, 0.23);
    border-top: 1px solid var(--white-opacity-23);
    border-bottom: 1px solid hsla(0, 0%, 100%, 0.23);
    border-bottom: 1px solid var(--white-opacity-23);
  }
  
  .c-salary__row--highlighted .c-salary__row-item {
    font-weight: 700;
  }
  
  .c-salary__row-item {
    padding: 10px 15px;
    color: #fff;
    color: var(--white);
  }
  
  .c-info__item {
    margin-right: 30px;
    display: inline-block;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 28px;
    vertical-align: top;
    line-height: 1.5;
  }
  
  .c-info__item span:not([class]) {
    display: inline-block;
    min-width: 50px;
  }
  
  .c-info__item i {
    color: #eb5014;
    color: var(--primary-color);
    position: absolute;
    top: 4px;
    left: 0;
  }
  
  .c-info + hr {
    margin-bottom: 2rem;
    margin-top: 0;
  }
  
  .c-share {
    display: inline-block;
    position: relative;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  
  .c-share:hover .c-share__content {
    opacity: 1;
    visibility: visible;
  }
  
  .c-share__icon {
    cursor: pointer;
  }
  
  .c-share__content {
    position: absolute;
    top: 50%;
    left: 100%;
    height: 30px;
    width: 200px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-share i {
    color: #eb5014;
    color: var(--primary-color);
    font-size: 1.25rem;
  }
  
  .c-footer {
    background: #00080f;
    background: var(--dark);
    padding: 60px 0;
  }
  
  .c-footer__contain {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 380px 510px;
    grid-template-columns: 1fr 380px 510px;
  }
  
  .c-footer__col {
    margin-right: 2rem;
  }
  
  .c-footer__col:last-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 0;
  }
  
  .c-footer__mainnav {
    border-left: 1px solid hsla(0, 0%, 100%, 0.23);
    border-left: 1px solid var(--white-opacity-23);
      
  }
  
  .c-footer__mainnav-list {
    padding: 0;
    margin: 0;
  }
  
  .c-footer__mainnav-item {
    margin-bottom: 21px;
  }
  
  .c-footer__mainnav-item:focus .c-footer__mainnav-link,
  .c-footer__mainnav-item:hover .c-footer__mainnav-link {
    text-decoration: none;
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-footer__mainnav-item:last-child {
    margin-bottom: 0;
  }
  
  .c-footer__mainnav-link {
    color: #fff;
    color: var(--white);
    padding: 0.1875rem 1.875rem;
    font-size: 1.125rem;
    position: relative;
    display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  .c-footer__mainnav-link--indicator:after {
    background: #eb5014;
    background: var(--primary-color);
    content: "";
    border-radius: 50%;
    width: 7px;
    height: 7px;
    display: inline-block;
    -webkit-transform: translate(5px, -10px);
    transform: translate(5px, -10px);
  }
  
  .c-footer__sitenav {
    margin-top: auto;
    -webkit-transform: translateY(25px);
    transform: translateY(25px);
  }
  
  .c-footer__sitenav-list {
    padding: 0;
    margin: 0 0 0 -8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .c-footer__sitenav-item {
    border-right: 1px solid #eb5014;
    border-right: 1px solid var(--primary-color);
  }
  
  .c-footer__sitenav-item:focus .c-footer__sitenav-link,
  .c-footer__sitenav-item:hover .c-footer__sitenav-link {
    text-decoration: none;
    color: #eb5014;
    color: var(--primary-color);
  }
  
  .c-footer__sitenav-item:last-child {
    margin-right: 0;
    border: none;
  }
  
  .c-footer__sitenav-copy,
  .c-footer__sitenav-link {
    color: #fff;
    color: var(--white);
    padding: 0 8px;
    font-size: 12px;
    display: block;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    -webkit-transition: all 0.3s var(--ease-out);
    transition: all 0.3s var(--ease-out);
  }
  
  @media print {
    * {
      background: transparent !important;
      color: #000 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }
  
    a,
    a:visited {
      text-decoration: underline;
    }
  
    a[href]:after {
      content: " (" attr(href) ")";
    }
  
    blockquote,
    pre {
      border: 1px solid #999;
      page-break-inside: avoid;
    }
  
    img,
    tr {
      page-break-inside: avoid;
    }
  
    img {
      max-width: 100% !important;
    }
  
    h2,
    h3,
    p {
      orphans: 3;
      widows: 3;
    }
  
    h2,
    h3 {
      page-break-after: avoid;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    :root {
      --h1-size: 3.75rem;
      --h2-size: 2rem;
      --h3-size: 1.375rem;
      --h4-size: 1.125rem;
      --body-size: 1rem;
    }
  
    h1 + .c-label {
      font-size: 1.625rem;
      padding: 0.75rem 1.25rem;
    }
  }
  
  @media only screen and (max-width: 870px) {
    h1 + .c-label {
      font-size: 1.2rem;
      padding: 0.875rem 1rem 0.625rem;
    }
  }
  
  @media only screen and (max-width: 1260px) {
    .c-header__content {
      gap: 9.375rem;
    }
  }
  
  @media only screen and (max-width: 1110px) {
    .c-header__content {
      gap: 5rem;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-header--home {
      min-height: 0;
    }
  
    .c-header--home .c-header__content {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      padding-bottom: 80px;
    }
  
    .c-header--home .c-header__content-col .c-heading-striped {
      font-size: 4.5rem;
    }
  
    .c-header__content {
      gap: 2rem;
      padding-top: 40px;
      padding-bottom: 1rem;
    }
  }
  
  @media only screen and (max-width: 990px) {
    .c-header__contain {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
  
    .c-header__logo img {
      max-width: 200px;
    }
  
    .c-header__nav-item--home .c-header__nav-link {
      font-size: 1.125rem;
    }
  
    .c-header__nav-link {
      padding: 0.9375rem 1rem;
      font-size: 1rem;
    }
  
    .c-header .c-social {
      margin-left: 1rem;
    }
  }
  
  @media only screen and (max-width: 787px) {
    .c-header__nav {
      display: none;
    }
  
    .c-header__hamburger {
      display: block;
    }
  }
  
  @media only screen and (max-width: 640px) {
    .c-header--home .c-header__content {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
    }
  
    .c-header__content {
      gap: 0;
      padding-top: 20px;
    }
  }
  
  @media only screen and (max-width: 400px) {
    .c-header__logo img {
      min-width: 100px;
      max-width: 150px;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-header .c-logos {
      max-width: 280px;
      gap: 0.5rem;
    }
    
    .c-header .c-logos img {
      height: 28px;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-heading-striped span:after {
      height: 8px;
      bottom: 7px;
    }
  }
  
  @media only screen and (max-width: 520px) {
    .c-header__content-col .c-heading-striped {
      max-width: none;
    }
  }
  
  @media only screen and (max-width: 870px) {
    .c-label {
      font-size: 1rem;
      padding: 0.875rem 1rem 0.625rem;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-panel {
      padding: 1.875rem;
    }
  }

  /* Mobile-specific styling for the orange panel */
  @media only screen and (max-width: 640px) {
    .c-header--home {
      height: auto !important;
      min-height: 100vh;
      padding-bottom: 4rem;
    }
    
    .c-header__content {
      gap: 3rem !important;
      padding-bottom: 4rem;
    }
    
    .c-header__content-col {
      position: relative;
      z-index: 1;
    }
    
    .c-panel {
      margin-top: 2rem;
      margin-bottom: 2rem;
      padding: 1.5rem;
      width: 100%;
      box-sizing: border-box;
      position: relative !important;
      z-index: 2;
    }
    
    .c-header__content-col .c-panel {
      margin-left: 0;
      margin-right: 0;
    }
    
    /* Override sticky panel behavior on mobile */
    .c-panel__sticky--sticky {
      position: relative !important;
      top: auto !important;
      transform: none !important;
    }
  }

  @media only screen and (max-width: 480px) {
    .c-header--home {
      height: auto !important;
      min-height: 100vh;
      padding-bottom: 5rem;
    }
    
    .c-header__content {
      gap: 2rem !important;
      padding-bottom: 3rem;
    }
    
    .c-panel {
      padding: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
      position: static;
      transform: none;
    }
    
    .c-panel h2 {
      font-size: 1.5rem;
      line-height: 1.3;
    }
    
    .c-panel .c-btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    
    /* Ensure no overlap with absolute positioned elements */
    .c-header__content-col:first-child {
      margin-bottom: 1rem;
    }
    
    .c-header__content-col:last-child {
      margin-top: 1rem;
    }
    
    /* Mobile header logos responsive scaling */
    .c-header .c-logos {
      gap: 0.75rem;
    }
    
    .c-header .c-logos img {
      height: 26px;
    }
    
    .c-partners-label {
      font-size: 0.75rem;
      margin-top: 1.5rem;
      margin-bottom: 0.5rem;
      text-align: center;
    }
  }
  
  @media only screen and (max-width: 1190px) {
    .c-partners {
      margin-bottom: -2rem;
    }
  
    .c-partners__contain {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .c-partners__figure {
      width: 33.33333%;
      margin-bottom: 2rem;
    }
  }
  
  @media only screen and (max-width: 760px) {
    .c-partners__figure {
      width: 50%;
    }
  }
  
  @media only screen and (max-width: 440px) {
    .c-partners__figure {
      width: 100%;
    }
  }
  
  @media only screen and (max-width: 990px) {
    .c-contact-block {
      background: #d2d7d2;
      background: var(--green-light);
    }
  
    .c-contact-block .c-block__contain {
      gap: 6rem !important;
    }
  
    .c-contact-block__info {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 0;
      margin-top: 50px;
      max-width: 100%;
    }
  
    .c-contact-block__info-col {
      border: none;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-contact-block .c-block__contain {
      gap: 2rem !important;
    }
  
    .c-contact-block .c-social__link {
      color: #00080f;
      color: var(--dark);
    }
  
    .c-contact-block .c-social__link:hover {
      color: #eb5014;
      color: var(--primary-color);
    }
  
    .c-contact-block__info {
      margin-top: 0;
    }
  
    .c-contact-block__info-item,
    .c-contact-block__info-item a {
      color: #00080f;
      color: var(--dark);
    }
  
    .c-contact-block:after {
      content: none;
      background: none;
    }
  }
  
  @media only screen and (max-width: 990px) {
    .c-social__link {
      padding: 5px 4px;
    }
  
    .c-social__link i {
      font-size: 18px;
    }
  }
  
  @media only screen and (max-width: 340px) {
    .c-social__link {
      padding: 5px 2px;
    }
  
    .c-social__link i {
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 1260px) {
    .c-salary__row {
      -ms-grid-columns: 360px 1fr 1fr 1fr;
      grid-template-columns: 360px 1fr 1fr 1fr;
    }
  }
  
  @media only screen and (max-width: 900px) {
    .c-salary__row {
      -ms-grid-columns: 245px 1fr 1fr 1fr;
      grid-template-columns: 245px 1fr 1fr 1fr;
    }
  }
  
  @media only screen and (max-width: 570px) {
    .c-salary__row {
      display: block;
      border-bottom: 1px solid hsla(0, 0%, 100%, 0.23);
      border-bottom: 1px solid var(--white-opacity-23);
    }
  
    .c-salary__row--head {
      display: none;
    }
  
    .c-salary__row-item:first-child {
      font-weight: 700;
    }
  
    .c-salary__row-item:before {
      content: attr(data-experience);
    }
  }
  
  @media only screen and (max-width: 1260px) {
    .c-block--wide-gap .c-block__contain {
      gap: 9.375rem;
    }
  
    .c-block--wide-gap .c-block__contain--salary {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media only screen and (max-width: 1110px) {
    .c-block--wide-gap .c-block__contain {
      gap: 5rem;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-block {
      padding: 1.875rem 0;
    }
  
    .c-block .c-heading-striped {
      font-size: 3.75rem;
    }
  
    .c-block + .c-block {
      margin-top: -1.875rem;
    }
  
    .c-block + .c-block--has-bg {
      margin-top: 0;
    }
  
    .c-block__contain + .c-partners {
      margin-top: 2.5rem;
    }
  
    .c-block--has-bg {
      padding: 1.875rem 0;
      margin-bottom: 1.875rem;
    }
  
    .c-block--2-col .c-block__contain,
    .c-block--wide-gap .c-block__contain {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
  
    .c-block--wide-gap .c-block__contain--salary {
      -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media only screen and (max-width: 770px) {
    .c-block--wide-gap .c-block__contain--salary {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
      gap: 2rem;
    }
  }
  
  @media only screen and (max-width: 640px) {
    .c-block--2-col .c-block__contain {
      -ms-grid-columns: 100%;
      grid-template-columns: 100%;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-sidepanel {
      padding: 80px 40px 60px;
    }
  }
  
  @media only screen and (max-width: 374px) {
    .c-sidepanel {
      padding: 80px 32px 60px;
    }
  }
  
  @media only screen and (max-width: 1100px) {
    .c-footer__contain {
      -ms-grid-columns: 1fr 1fr 510px;
      grid-template-columns: 1fr 1fr 510px;
    }
  }
  
  @media only screen and (max-width: 1024px) {
    .c-footer .c-logos {
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
    }
  
    .c-footer .c-logos img {
      margin-right: 15px;
    }
  
    .c-footer {
      padding: 20px 0;
    }
  }
  
  @media only screen and (max-width: 1000px) {
    .c-footer__contain {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
  
    .c-footer__col:first-child {
      width: calc(50% - 1rem);
    }
  
    .c-footer__col:nth-child(2) {
      width: calc(50% - 1rem);
      margin-right: 0;
    }
  
    .c-footer__col:last-child {
      width: 100%;
      margin-top: 2rem;
    }
  }
  
  @media only screen and (max-width: 540px) {
    .c-footer__sitenav {
      margin-top: 2rem;
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    .c-footer__sitenav-list {
      display: block;
      margin-left: 0;
      max-width: 155px;
    }
  
    .c-footer__sitenav-item {
      border-right: none;
    }
  
    .c-footer__sitenav-link {
      border-bottom: 1px solid #eb5014;
      border-bottom: 1px solid var(--primary-color);
      padding: 4px 0;
    }
  
    .c-footer__sitenav-copy {
      padding: 4px 0;
    }
  }
  
  @media only screen and (max-width: 460px) {
    .c-footer__col:first-child {
      margin-right: auto;
      width: calc(100% - 3rem);
      margin-bottom: 1rem;
    }
  
    .c-footer__col:nth-child(2) {
      width: calc(100% - 1rem);
      margin-right: 0;
    }
  }
  
  @media only screen and (max-width: 350px) {
    .c-footer .c-logos img {
      max-height: 35px;
    }
  }

  /* Responsive logo switching for For/by Engineers logo */
  .c-footer__logo-mobile {
    display: none;
  }

  .c-footer__logo-desktop {
    display: block;
  }

  @media only screen and (max-width: 768px) {
    .c-footer__logo-desktop {
      display: none;
    }

    .c-footer__logo-mobile {
      display: block;
    }
  }
  
  .tns-outer {
    padding: 0 !important;
  }
  
  .tns-outer [hidden] {
    display: none !important;
  }
  
  .tns-outer [aria-controls],
  .tns-outer [data-action] {
    cursor: pointer;
  }
  
  .tns-slider {
    transition: all 0s;
  }
  
  .tns-slider > .tns-item {
    box-sizing: border-box;
  }
  
  .tns-horizontal.tns-subpixel {
    white-space: nowrap;
  }
  
  .tns-horizontal.tns-subpixel > .tns-item {
    display: inline-block;
    vertical-align: top;
    white-space: normal;
  }
  
  .tns-horizontal.tns-no-subpixel:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .tns-horizontal.tns-no-subpixel > .tns-item {
    float: left;
  }
  
  .tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
    margin-right: -100%;
  }
  
  .tns-gallery,
  .tns-no-calc {
    position: relative;
    left: 0;
  }
  
  .tns-gallery {
    min-height: 1px;
  }
  
  .tns-gallery > .tns-item {
    position: absolute;
    left: -100%;
    transition: opacity 0s, -webkit-transform 0s;
    transition: transform 0s, opacity 0s;
    transition: transform 0s, opacity 0s, -webkit-transform 0s;
  }
  
  .tns-gallery > .tns-slide-active {
    position: relative;
    left: auto !important;
  }
  
  .tns-gallery > .tns-moving {
    transition: all 0.25s;
  }
  
  .tns-autowidth {
    display: inline-block;
  }
  
  .tns-lazy-img {
    transition: opacity 0.6s;
    opacity: 0.6;
  }
  
  .tns-lazy-img.tns-complete {
    opacity: 1;
  }
  
  .tns-ah {
    transition: height 0s;
  }
  
  .tns-ovh {
    overflow: hidden;
  }
  
  .tns-visually-hidden {
    position: absolute;
    left: -10000em;
  }
  
  .tns-transparent {
    opacity: 0;
    visibility: hidden;
  }
  
  .tns-fadeIn {
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 0;
  }
  
  .tns-fadeOut,
  .tns-normal {
    opacity: 0;
    filter: alpha(opacity=0);
    z-index: -1;
  }
  
  .tns-vpfix {
    white-space: nowrap;
  }
  
  .tns-vpfix > div,
  .tns-vpfix > li {
    display: inline-block;
  }
  
  .tns-t-subp2 {
    margin: 0 auto;
    width: 310px;
    position: relative;
    height: 10px;
    overflow: hidden;
  }
  
  .tns-t-ct {
    width: 2333.33333%;
    position: absolute;
    right: 0;
  }
  
  .tns-t-ct:after {
    content: "";
    display: table;
    clear: both;
  }
  
  .tns-t-ct > div {
    width: 1.42857%;
    height: 10px;
    float: left;
  }
  
  .team-bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-image: url(/static/img/div/groupphoto.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  /* JPG fallback for browsers that don't support WebP */
  .no-webp .team-bg {
    background-image: url(/static/img/div/groupphoto.jpg);
  }
  
  .z-1 {
    z-index: 1;
  }
  
  .z-2 {
    z-index: 2;
  }
  
  .grid {
    display: grid;
  }
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-start {
    justify-content: start;
  }
  
  .grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .col-span-6 {
    grid-column: span 6 / span 6;
  }
  
  .col-span-7 {
    grid-column: span 7 / span 7;
  }
  
  .col-span-8 {
    grid-column: span 8 / span 8;
  }
  
  .col-span-12 {
    grid-column: span 12 / span 12;
  }
  
  .col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .col-start-2 {
    grid-column-start: 2;
  }
  
  .col-start-10 {
    grid-column-start: 10;
  }
  
  .c-employee-striped-rounded span {
    display: block;
    position: relative;
    z-index: 1;
  }
  
  .c-employee-striped-rounded span:after {
    /* background: #eb5014;
    background: var(--primary-color); */
    content: "";
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12%;
    display: block;
    z-index: -1;
    border-radius: 25px;
    background: linear-gradient(to left, #eb7914, #eb5014);
  }
  
  .watchmen {
    position: absolute;
    width: 20%;
    height: 100%;
    border-width: 1px;
    border-color: red;
    border-style: solid;
  }
  
  .left-1-5 {
    left: 20%;
  }
  
  .left-2-5 {
    left: 40%;
  }
  
  .left-3-5 {
    left: 60%;
  }
  
  .left-4-5 {
    left: 80%;
  }
  
  /* sm */
  @media (min-width: 640px) {
    .sm-text-left {
      text-align: left !important;
    }
  
    .sm-m-0 {
      margin: 0 !important;
    }
  
    .sm-justify-center {
      justify-content: center;
    }
  
    .sm-col-span-12 {
      grid-column: span 12 / span 12;
    }
  
    .sm-col-span-4 {
      grid-column: span 4 / span 4;
    }
  
    .sm-col-start-2 {
      grid-column-start: 2;
    }
  
    .sm-gap-y-8 {
      row-gap: 2rem;
      /* 32px */
    }
  
    .sm-c-partners__heading {
      text-align: center;
    }
  
    .sm-px-28 {
      padding-left: 7rem !important;
      /* 112px */
      padding-right: 7rem !important;
      /* 112px */
    }
  
    .sm-left-14 {
      left: 3.5rem !important;
      /* 56px */
    }
  
    .sm-right-14 {
      right: 3.5rem !important;
      /* 56px */
    }
  }
  
  /* md */
  @media (min-width: 768px) {
    .md-m-0 {
      margin: 0 !important;
    }
  
    .md-col-span-6 {
      grid-column: span 6 / span 6;
    }
  
    .mask-fade-radial {
      mask-image: radial-gradient(
        circle at 50% 50%,
        black 10%,
        rgba(0, 0, 0, 0.2) 80%
      );
      mask-mode: alpha;
    }
  
    .md-bg-125 {
      background-size: 125% !important;
    }
  }
  
  /* lg */
  @media (min-width: 1024px) {
    .contact-border-r {
      border-right: 1px solid var(--white-opacity-23) !important;
    }
  
    .lg-col-span-6 {
      grid-column: span 6 / span 6;
    }
  
    .lg-block {
      display: block !important;
    }
  }
  
  /* xl */
  @media (min-width: 1280px) {
    .xl-px-36 {
      padding-left: 9rem !important;
      /* 144px */
      padding-right: 9rem !important;
      /* 144px */
    }
  
    .xl-left-18 {
      left: 4.5rem !important;
      /* 72px */
    }
  
    .xl-right-18 {
      right: 4.5rem !important;
      /* 72px */
    }
  
    .xl-col-span-2 {
      grid-column: span 2 / span 2;
    }
  
    .xl-col-span-3 {
      grid-column: span 3 / span 3;
    }
  
    .xl-col-start-10 {
      grid-column-start: 10;
    }
  
    .xl-col-start-9 {
      grid-column-start: 9;
    }
  
    .xl-col-start-2 {
      grid-column-start: 2;
    }
  
    .xl-col-span-7 {
      grid-column: span 7 / span 7;
    }
  
    .xl-col-span-8 {
      grid-column: span 8 / span 8;
    }
  
    .xl-my-auto {
      margin-top: auto;
      margin-bottom: auto;
    }
  }
  
  .hidden {
    display: none;
  }
  
  .principal-message {
    max-width: 600px;
    position: absolute;
    width: 70%;
    border-radius: 25px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    color: white;
    text-align: center;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -webkit-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
    background-color: transparent;
    z-index: 0;
  }
  @media only screen and (max-width: 1024px) {
    .principal-message {
      position: static;
      width: 95%;
      transform: none;
      margin: 20px auto;
      z-index: 5;
      background-color: black;
      border-radius: 25px;
      display: none;
      max-height: none;
      overflow-y: visible;
    }
    
    .principal-message.hover-show {
      display: block;
    }
    
    /* Keep title positioned but higher z-index and proper mobile positioning */
    .principal-title {
      position: absolute !important;
      top: -20px !important;
      z-index: 15;
    }
  }
  .principal-image {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease-out;
    -moz-transition: opacity 1s ease-out;
    -webkit-transition: opacity 1s ease-out;
    -o-transition: opacity 1s ease-out;
  }
  
  .principal-hover {
    opacity: 1;
  }
  
  .principal-message:hover {
    opacity: 1;
    pointer-events: auto;
  }

  /* Subtle pulse ripple hint for middle person */
  .pulse-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(235, 80, 20, 0.8);
    border-radius: 50%;
    top: 42%;
    left: 52%;
    transform: translate(-50%, -50%);
    z-index: 7;
    animation: ripple-hint 3s infinite;
    pointer-events: none;
  }

  .pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(235, 80, 20, 0.6);
    transform: translate(-50%, -50%);
    animation: ripple-hint 3s infinite;
    animation-delay: 0.5s;
  }

  .pulse-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(235, 80, 20, 0.4);
    transform: translate(-50%, -50%);
    animation: ripple-hint 3s infinite;
    animation-delay: 1s;
  }

  @keyframes ripple-hint {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
    50% {
      transform: translate(-50%, -50%) scale(3);
      opacity: 0.3;
    }
    100% {
      transform: translate(-50%, -50%) scale(5);
      opacity: 0;
    }
  }

  /* More visible hint on mobile */
  @media only screen and (max-width: 640px) {
    .pulse-dot {
      width: 10px;
      height: 10px;
      animation: ripple-hint-mobile 2.5s infinite;
    }

    .pulse-dot::before {
      animation: ripple-hint-mobile 2.5s infinite;
      animation-delay: 0.4s;
    }

    .pulse-dot::after {
      animation: ripple-hint-mobile 2.5s infinite;
      animation-delay: 0.8s;
    }

    @keyframes ripple-hint-mobile {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
      60% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0.2;
      }
      100% {
        transform: translate(-50%, -50%) scale(6);
        opacity: 0;
      }
    }
  }
  
  .w-full {
    width: 100%;
  }
  
  .w-half {
    width: 50%;
  }
  
  .h-full {
    height: 100%;
  }
  
  .w-fit {
    width: fit-content;
  }
  
  .bg-black {
    background-color: black;
  }
  
  .mb-0 {
    margin-bottom: 0;
  }
  
  .bg-dark-blue {
    background-color: #040593;
  }
  
  .bg-light-blue {
    background-color: #1415d1;
  }
  
  .bg-black {
    background-color: black;
  }
  
  .opacity-90 {
    opacity: 0.9;
  }
  
  .opacity-70 {
    opacity: 0.7;
  }
  
  .p-4 {
    padding: 1rem;
    /* 16px */
  }
  
  .p-5 {
    padding: 1.25rem;
    /* 20px */
  }
  
  .gap-y-2 {
    row-gap: 0.5rem;
    /* 8px */
  }
  
  .gap-y-4 {
    row-gap: 1rem;
    /* 16px */
  }
  
  .gap-y-8 {
    row-gap: 2rem;
    /* 32px */
  }
  
  .highlight-gradient {
    opacity: 0;
    transition: opacity 0.5s ease-out;
    -moz-transition: opacity 0.5s ease-out;
    -webkit-transition: opacity 0.5s ease-out;
    -o-transition: opacity 0.5s ease-out;
    background: radial-gradient(
      circle at 50% 50%,
      rgba(4, 5, 147, 1) 0%,
      rgba(0, 0, 0, 1) 85%,
      rgba(238, 130, 238, 0) 100%
    );
    border-radius: 999px;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 500px;
    width: 500px;
    pointer-events: none;
  }
  
  /* .hover-container:hover .highlight-gradient {
    opacity: 1;
  } */
  
  /* .hover-container:hover + .hover-show {
    opacity: 1;
    pointer-events: auto;
  } */
  
  .hover-show {
    opacity: 1;
    pointer-events: auto;
  }
  
  /* #principal:hover {
    opacity: 1;
    visibility: visible;
  }
  
  #robert:hover {
    opacity: 1;
    visibility: visible;
  } */
  
  .swiper {
    width: 100%;
    cursor: grab;
  }
  
  .watchmen-image {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
  }
  
  /* Lazy loading placeholder styles */
  img[data-src] {
    opacity: 0.7;
    filter: blur(1px);
    transition: opacity 0.3s ease, filter 0.3s ease;
  }
  
  img[data-src]:not([src*="data:image"]) {
    opacity: 1;
    filter: none;
  }
  
  .text-white {
    color: white;
  }
  
  .text-center {
    text-align: center;
  }
  
  .bg-cover {
    background-size: cover;
  }
  
  .contact-border-r {
    border-right: none;
  }
  
  .rotate-180 {
    transform: rotate(180deg);
  }
  
  .px-3 {
    padding-left: 0.75rem;
    /* 12px */
    padding-right: 0.75rem;
    /* 12px */
  }
  
  .left-3 {
    left: 0.75rem;
    /* 12px */
  }
  
  .right-3 {
    right: 0.75rem;
    /* 12px */
  }
  
  .top-half {
    top: 50%;
  }
  
  .left-0 {
    left: 0;
  }
  
  .right-0 {
    right: 0;
  }
  
  .top-0 {
    top: 0;
  }
  
  .w-7 {
    width: 1.75rem;
    /* 28px */
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .swiper-button-prev-unique,
  .swiper-button-next-unique {
    cursor: pointer;
    z-index: 2;
  }
  
  .swiper-button-disabled {
    cursor: default;
    opacity: 0.5;
  }
  
  .watchmen-highlight span:after {
    background: linear-gradient(to left, #eb7914, #eb5014);
    content: "";
    height: 6px;
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: 12%;
    display: block;
    z-index: -1;
    border-radius: 25px;
  }
  
  .watchmen-highlight span {
    display: block;
    position: relative;
    z-index: 1;
    white-space: nowrap;
  }
  
  .bg-gradient-blue {
    background: linear-gradient(
      90deg,
      rgba(20, 20, 210, 1) 0%,
      rgba(20, 70, 255, 1) 100%
    );
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .py-1 {
    padding-top: 0.25rem;
    /* 4px */
    padding-bottom: 0.25rem;
    /* 4px */
  }
  
  .m-0 {
    margin: 0;
  }
  
  .swiper-slide {
    height: auto;
  }
  
  .swiper-slide h3,
.swiper-slide .bg-gradient-blue {
  opacity: 0;
  transition: opacity 1s;
}
  
.swiper-slide-active h3,
.swiper-slide-active .bg-gradient-blue {
  opacity: 1;
}
  
  #a1::hover::after {
    position: absolute;
    display: block;
    content: " ";
    border: 2px solid red;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
  }
  
  .flex-row {
    flex-direction: row;
  }
  
  .m-auto {
    margin: auto;
  }
  
  .ml-0 {
    margin-left: 0;
  }
  
  .h-fit {
    height: fit-content;
  }
  
  .parallax-slider {
    transition: opacity 0.4s ease-in;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    opacity: 1;
  }
  
  .transitioning-src {
    transition: opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -ms-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    opacity: 0;
  }
  
  .user-select-none {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
  }
  
  .object-cover {
    object-fit: cover;
  }

  .swiper-contact {
    overflow: hidden;
  }

  /* Team member staggered animation styles */
  .team-member-row {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .team-member-name {
    opacity: 1;
    transition: opacity 0.4s ease 0.2s;
  }

  .team-member-function {
    opacity: 1;
    transition: opacity 0.4s ease 0.4s;
  }

  /* Always visible function background - not affected by swiper states */
  .team-member-function-bg-always {
    background: rgba(0, 0, 0, 0.50) !important; /* Semi-transparent black */
    opacity: 1 !important; /* Always visible */
    transition: none !important; /* No fade transitions */
  }

  /* Animation states */
  .team-member-row.fade-out {
    opacity: 0;
    transform: translateY(-10px);
  }

  .team-member-row.fade-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* Partnership Logos - Enhanced Responsive */
  .c-logos--footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 1rem;
  }

  .c-logo-partnership {
    max-height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
  }

  .c-logo-partnership:hover {
    transform: scale(1.05);
    opacity: 0.8;
  }

  @media only screen and (max-width: 1024px) {
    .c-logos--footer {
      justify-content: center;
      gap: 16px;
    }
    
  }

  @media only screen and (max-width: 768px) {
    .c-logos--footer {
      gap: 15px;
    }
    
  }

  @media only screen and (max-width: 480px) {
    .c-logos--footer {
      gap: 12px;
    }
    
  }

  @media only screen and (max-width: 320px) {
    .c-logos--footer {
      gap: 8px;
      justify-content: center;
    }
    
    .c-logo-partnership {
      max-width: 80px;
    }
  }

  /* Simple 2x2 grid for partnership logos */
  .c-logos--grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }
  .c-logos img:not(:last-child) {
    padding-right: 10px;
  }

  /* Header logos responsive scaling for very small screens */
  @media only screen and (max-width: 640px) {
    .c-header .c-logos img {
      height: 28px;
    }
  }
  
  @media only screen and (max-width: 320px) {
    .c-header .c-logos {
      max-width: 160px;
    }
    
    .c-header .c-logos img {
      height: 24px;
    }
  }