@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #FFF;
  --color-gray: #24353F;
  --color-light-gray: #ECEEEF;
  --color-primary: #E2001A;
  --color-secondary: #1961a3;
  --color-success: #90C351;
  --color-body-background: var(--color-white);
  --color-body-text: var(--color-gray);
  --font-family-body: "Poppins", sans-serif;
  --font-family-header: "Khand", sans-serif;
  --font-family-serif: serif;
  --global-radius: 0.25rem;
  --global-radius-2: 0.5rem;
  --global-transition: 0.35s ease;
  --global-transition-2: 0.25s ease;
  --container-width: 82.5rem;
  --container-width-2: 89.5rem;
  --grid-gap: 1rem;
  --top-bar-height-mobile: 6rem;
  --top-bar-height-desktop: 6.75rem;
  --swiper-theme-color: var(--color-white);
  --swiper-pagination-color: var(--color-black);
  --swiper-pagination-bullet-inactive-color: var(--color-gray);
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-horizontal-gap: 0;
}
@media print, screen and (min-width: 64em) {
  :root {
    --grid-gap: 1.5rem;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body {
  margin: 0;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: 0 0;
  line-height: 1;
  cursor: auto;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 79.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 80em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 80em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 79.99875em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 80em) and (max-width: 89.99875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 79.99875em), screen and (min-width: 90em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

/**
 * Swiper 11.2.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 14, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.small-headline,
.is-style-small-headline {
  font-family: var(--font-family-body);
  font-weight: 400;
}

.card--form > h2, .card--basic h3,
.is-style-h3,
.is-style-h2, h1,
.h1,
h2,
.h2,
.job-detail h1,
.gform_confirmation_message h1,
.article-detail h1,
h3,
.h3,
h4,
.h4 {
  font-family: var(--font-family-header);
  font-weight: 500;
}

strong {
  font-weight: 600;
}

p {
  font-size: 0.9375rem;
  line-height: 1.4;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
}
p:only-child {
  margin: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:not(.has-link-color) a:not([class]) {
  color: var(--color-primary);
}
.bg-primary p:not(.has-link-color) a:not([class]) {
  color: #ffe4e7;
}
.bg-secondary p:not(.has-link-color) a:not([class]) {
  color: #bbdfff;
}
p a:hover, p a:focus {
  text-decoration: none;
}

ul, ol {
  font-size: 0.9375rem;
  line-height: 1.4;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  -webkit-padding-start: 2em;
          padding-inline-start: 2em;
}

.lead,
.is-style-lead,
.job-detail .wp-block-pullquote p,
.gform_confirmation_message .wp-block-pullquote p,
.job-detail .wp-block-pullquote ul,
.gform_confirmation_message .wp-block-pullquote ul,
.job-detail .wp-block-pullquote ol,
.gform_confirmation_message .wp-block-pullquote ol,
.job-detail .wp-block-quote p,
.gform_confirmation_message .wp-block-quote p,
.job-detail .wp-block-quote ul,
.gform_confirmation_message .wp-block-quote ul,
.job-detail .wp-block-quote ol,
.gform_confirmation_message .wp-block-quote ol,
.article-detail .wp-block-pullquote p,
.article-detail .wp-block-pullquote ul,
.article-detail .wp-block-pullquote ol,
.article-detail .wp-block-quote p,
.article-detail .wp-block-quote ul,
.article-detail .wp-block-quote ol,
.post-password-form {
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
  font-size: 1.0625rem;
}
@media print, screen and (min-width: 40em) {
  .lead,
  .is-style-lead,
  .job-detail .wp-block-pullquote p,
  .gform_confirmation_message .wp-block-pullquote p,
  .job-detail .wp-block-pullquote ul,
  .gform_confirmation_message .wp-block-pullquote ul,
  .job-detail .wp-block-pullquote ol,
  .gform_confirmation_message .wp-block-pullquote ol,
  .job-detail .wp-block-quote p,
  .gform_confirmation_message .wp-block-quote p,
  .job-detail .wp-block-quote ul,
  .gform_confirmation_message .wp-block-quote ul,
  .job-detail .wp-block-quote ol,
  .gform_confirmation_message .wp-block-quote ol,
  .article-detail .wp-block-pullquote p,
  .article-detail .wp-block-pullquote ul,
  .article-detail .wp-block-pullquote ol,
  .article-detail .wp-block-quote p,
  .article-detail .wp-block-quote ul,
  .article-detail .wp-block-quote ol,
  .post-password-form {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .lead,
  .is-style-lead,
  .job-detail .wp-block-pullquote p,
  .gform_confirmation_message .wp-block-pullquote p,
  .job-detail .wp-block-pullquote ul,
  .gform_confirmation_message .wp-block-pullquote ul,
  .job-detail .wp-block-pullquote ol,
  .gform_confirmation_message .wp-block-pullquote ol,
  .job-detail .wp-block-quote p,
  .gform_confirmation_message .wp-block-quote p,
  .job-detail .wp-block-quote ul,
  .gform_confirmation_message .wp-block-quote ul,
  .job-detail .wp-block-quote ol,
  .gform_confirmation_message .wp-block-quote ol,
  .article-detail .wp-block-pullquote p,
  .article-detail .wp-block-pullquote ul,
  .article-detail .wp-block-pullquote ol,
  .article-detail .wp-block-quote p,
  .article-detail .wp-block-quote ul,
  .article-detail .wp-block-quote ol,
  .post-password-form {
    font-size: 1.25rem;
  }
}

.small,
.is-style-small,
.company-loading-overlay,
li.gfield_validation_message,
.job-detail li.gfield_validation_message,
.gform_wrapper .validation_message {
  font-size: 0.8125rem;
  line-height: 124%;
}

/* Set shorter line heights on headings and interactive elements */
h1,
.h1,
h2,
.h2,
.job-detail h1,
.gform_confirmation_message h1,
.article-detail h1,
h3,
.h3,
h4,
.h4 {
  line-height: 1.2;
  color: var(--color-black);
}
@media print, screen and (max-width: 39.99875em) {
  h1 br,
  .h1 br,
  h2 br,
  .h2 br,
  .job-detail h1 br,
  .gform_confirmation_message h1 br,
  .article-detail h1 br,
  h3 br,
  .h3 br,
  h4 br,
  .h4 br {
    display: none;
  }
}

button,
input,
label {
  line-height: 1.2;
}

h1,
.h1 {
  -webkit-margin-after: 0.5em;
          margin-block-end: 0.5em;
  font-size: 2.5rem;
  font-weight: 500;
}
@media print, screen and (min-width: 64em) {
  h1,
  .h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 80em) {
  h1,
  .h1 {
    font-size: 3.5rem;
  }
}

.job-detail h1, .gform_confirmation_message h1,
.article-detail h1,
h2,
.h2,
.is-style-h2 {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
  font-size: clamp(2.5rem, 3vw + 1rem, 3rem);
  line-height: 1;
  font-weight: 500;
}
@media print, screen and (min-width: 64em) {
  .job-detail h1, .gform_confirmation_message h1,
  .article-detail h1,
  h2,
  .h2,
  .is-style-h2 {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
.job-detail h1.has-dot::before, .gform_confirmation_message h1.has-dot::before,
.article-detail h1.has-dot::before,
h2.has-dot::before,
.h2.has-dot::before,
.is-style-h2.has-dot::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.75rem;
          flex: 0 0 0.75rem;
  margin-bottom: 2.5rem;
  background: currentColor;
}
@media print, screen and (min-width: 64em) {
  .job-detail h1.has-dot::before, .gform_confirmation_message h1.has-dot::before,
  .article-detail h1.has-dot::before,
  h2.has-dot::before,
  .h2.has-dot::before,
  .is-style-h2.has-dot::before {
    margin-bottom: 3.125rem;
  }
}
.job-detail h1.has-dot.text-center::before, .gform_confirmation_message h1.has-dot.text-center::before,
.article-detail h1.has-dot.text-center::before, .job-detail h1.has-dot.has-text-align-center::before, .gform_confirmation_message h1.has-dot.has-text-align-center::before,
.article-detail h1.has-dot.has-text-align-center::before,
h2.has-dot.text-center::before,
h2.has-dot.has-text-align-center::before,
.h2.has-dot.text-center::before,
.h2.has-dot.has-text-align-center::before,
.is-style-h2.has-dot.text-center::before,
.is-style-h2.has-dot.has-text-align-center::before {
  margin-left: auto;
  margin-right: auto;
}
.job-detail h1.has-dot.text-right::before, .gform_confirmation_message h1.has-dot.text-right::before,
.article-detail h1.has-dot.text-right::before, .job-detail h1.has-dot.has-text-align-right::before, .gform_confirmation_message h1.has-dot.has-text-align-right::before,
.article-detail h1.has-dot.has-text-align-right::before,
h2.has-dot.text-right::before,
h2.has-dot.has-text-align-right::before,
.h2.has-dot.text-right::before,
.h2.has-dot.has-text-align-right::before,
.is-style-h2.has-dot.text-right::before,
.is-style-h2.has-dot.has-text-align-right::before {
  margin-left: auto;
  margin-right: 0;
}

h3,
.h3,
.is-style-h3 {
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1;
}

hr {
  margin-block: 1.75rem 1.5rem;
  background: var(--color-light-gray);
  -webkit-transition: background var(--global-transition);
  transition: background var(--global-transition);
  border-width: 0;
  height: 1px;
}

.stat {
  display: block;
  font-size: 3.25rem;
  line-height: 1;
  font-family: var(--font-family-header);
  font-weight: 500;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 64em) {
  .stat {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 80em) {
  .stat {
    font-size: 3.75rem;
  }
}

.small-headline,
.is-style-small-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.2;
  margin-bottom: 1.375rem;
  color: var(--color-primary);
  text-transform: uppercase;
  font-weight: 600;
}
@media print, screen and (min-width: 40em) {
  .small-headline,
  .is-style-small-headline {
    margin-bottom: 1.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .small-headline,
  .is-style-small-headline {
    margin-bottom: 2.375rem;
  }
}
.small-headline.text-center, .small-headline.has-text-align-center,
.is-style-small-headline.text-center,
.is-style-small-headline.has-text-align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.text-center > .small-headline, .has-text-align-center > .small-headline,
.text-center > .is-style-small-headline,
.has-text-align-center > .is-style-small-headline {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.text-right > .small-headline, .has-text-align-right > .small-headline,
.text-right > .is-style-small-headline,
.has-text-align-right > .is-style-small-headline {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.text-balance {
  text-wrap: balance;
}

.job-detail ul,
.is-style-bordered-list {
  display: block;
  padding: 0;
  margin-left: 0;
  list-style: none;
}
.job-detail ul li,
.is-style-bordered-list li {
  padding-block: 1rem;
  display: block;
  padding-left: 1.125rem;
  border-bottom: 1px solid rgba(36, 53, 63, 0.2);
  position: relative;
}
.job-detail ul li:first-child,
.is-style-bordered-list li:first-child {
  border-top: 1px solid rgba(36, 53, 63, 0.2);
}
.job-detail ul li::before,
.is-style-bordered-list li::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  background: var(--color-primary);
  position: absolute;
  top: 1.5rem;
  left: 0;
}
.job-detail ul.text-center li, .job-detail ul.has-text-align-center li,
.is-style-bordered-list.text-center li,
.is-style-bordered-list.has-text-align-center li {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.is-style-menu-list {
  display: block;
  margin-block: 0 3rem;
  list-style: 0;
  padding: 0;
}
.is-style-menu-list li {
  display: block;
}
.is-style-menu-list li:first-child > a {
  border-top: 1px solid rgba(36, 53, 63, 0.2);
}
.is-style-menu-list a {
  position: relative;
  display: block;
  padding-right: 2.8em;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 400;
  padding-block: 1em;
  text-decoration: underline;
  text-decoration-color: transparent;
  border-bottom: 1px solid rgba(36, 53, 63, 0.2);
  -webkit-transition: color var(--global-transition), -webkit-text-decoration var(--global-transition);
  transition: color var(--global-transition), -webkit-text-decoration var(--global-transition);
  transition: color var(--global-transition), text-decoration var(--global-transition);
  transition: color var(--global-transition), text-decoration var(--global-transition), -webkit-text-decoration var(--global-transition);
}
.is-style-menu-list a::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='16' viewBox='0 0 15 16' fill='none'%3E%3Cpath d='M14.207 8.707a1 1 0 0 0 0-1.414L7.843.929A1 1 0 0 0 6.43 2.343L12.086 8l-5.657 5.657a1 1 0 1 0 1.414 1.414l6.364-6.364ZM.5 9h13V7H.5v2Z' fill='%23E2001A'/%3E%3C/svg%3E");
  background-size: 1em auto;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: -webkit-filter var(--global-transition);
  transition: -webkit-filter var(--global-transition);
  transition: filter var(--global-transition);
  transition: filter var(--global-transition), -webkit-filter var(--global-transition);
}
.is-style-menu-list a:hover,
.is-style-menu-list a:focus {
  text-decoration-color: currentColor;
}
.is-style-menu-list a:hover::after,
.is-style-menu-list a:focus::after {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.is-style-menu-list a .icon {
  margin-block: -0.3125rem;
}
@media print, screen and (min-width: 64em) {
  .is-style-menu-list {
    margin-bottom: 4.5rem;
  }
}

html,
body {
  scroll-behavior: auto;
}

html {
  font-size: 100%;
}
@media screen and (min-width: 100em) {
  html {
    font-size: clamp(1em, 0.9em + 0.15vw, 1.25em);
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-body-background);
  color: var(--color-body-text);
  font-family: var(--font-family-body);
  font-weight: 400;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-site-nav-open, body.is-off-canvas-open {
  width: 100%;
  position: fixed;
  overflow-y: scroll;
}

::-webkit-scrollbar {
  width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--color-light-gray);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-gray);
}

.container {
  max-width: var(--container-width);
  padding-inline: 1rem;
  margin-inline: auto;
}
@media print, screen and (min-width: 64em) {
  .container {
    padding-inline: 1.5rem;
  }
}

.flex-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cell {
  min-width: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
@media print, screen and (min-width: 64em) {
  .grid {
    gap: 1.5rem;
  }
}
.grid--nogap {
  gap: 0;
}
.grid > .cell {
  grid-column: span 12;
}
@media print, screen and (min-width: 40em) {
  .grid.medium-auto-fit {
    grid-template-columns: auto -webkit-max-content;
    grid-template-columns: auto max-content;
  }
  .grid.medium-auto-fit > .cell {
    grid-column: span 1;
  }
  .grid .medium-1 {
    grid-column: var(--gmcs, auto)/span 1;
  }
  .grid .medium-2 {
    grid-column: var(--gmcs, auto)/span 2;
  }
  .grid .medium-3 {
    grid-column: var(--gmcs, auto)/span 3;
  }
  .grid .medium-4 {
    grid-column: var(--gmcs, auto)/span 4;
  }
  .grid .medium-5 {
    grid-column: var(--gmcs, auto)/span 5;
  }
  .grid .medium-6 {
    grid-column: var(--gmcs, auto)/span 6;
  }
  .grid .medium-7 {
    grid-column: var(--gmcs, auto)/span 7;
  }
  .grid .medium-8 {
    grid-column: var(--gmcs, auto)/span 8;
  }
  .grid .medium-9 {
    grid-column: var(--gmcs, auto)/span 9;
  }
  .grid .medium-10 {
    grid-column: var(--gmcs, auto)/span 10;
  }
  .grid .medium-11 {
    grid-column: var(--gmcs, auto)/span 11;
  }
  .grid .medium-12 {
    grid-column: var(--gmcs, auto)/span 12;
  }
  .grid.medium-up-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.medium-up-2 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.medium-up-3 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.medium-up-4 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.medium-up-5 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.medium-up-6 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.medium-up-7 > .cell {
    grid-column: span 1;
  }
  .grid.medium-up-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.medium-up-8 > .cell {
    grid-column: span 1;
  }
}
@media print, screen and (min-width: 64em) {
  .grid .large-1 {
    grid-column: var(--glcs, auto)/span 1;
  }
  .grid .large-2 {
    grid-column: var(--glcs, auto)/span 2;
  }
  .grid .large-3 {
    grid-column: var(--glcs, auto)/span 3;
  }
  .grid .large-4 {
    grid-column: var(--glcs, auto)/span 4;
  }
  .grid .large-5 {
    grid-column: var(--glcs, auto)/span 5;
  }
  .grid .large-6 {
    grid-column: var(--glcs, auto)/span 6;
  }
  .grid .large-7 {
    grid-column: var(--glcs, auto)/span 7;
  }
  .grid .large-8 {
    grid-column: var(--glcs, auto)/span 8;
  }
  .grid .large-9 {
    grid-column: var(--glcs, auto)/span 9;
  }
  .grid .large-10 {
    grid-column: var(--glcs, auto)/span 10;
  }
  .grid .large-11 {
    grid-column: var(--glcs, auto)/span 11;
  }
  .grid .large-12 {
    grid-column: var(--glcs, auto)/span 12;
  }
  .grid.large-up-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.large-up-2 .cell {
    grid-column: span 1;
  }
  .grid.large-up-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.large-up-3 .cell {
    grid-column: span 1;
  }
  .grid.large-up-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.large-up-4 .cell {
    grid-column: span 1;
  }
  .grid.large-up-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.large-up-5 .cell {
    grid-column: span 1;
  }
  .grid.large-up-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.large-up-6 .cell {
    grid-column: span 1;
  }
  .grid.large-up-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.large-up-7 .cell {
    grid-column: span 1;
  }
  .grid.large-up-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.large-up-8 .cell {
    grid-column: span 1;
  }
}
@media screen and (min-width: 80em) {
  .grid .xlarge-1 {
    grid-column: span 1;
  }
  .grid .xlarge-2 {
    grid-column: span 2;
  }
  .grid .xlarge-3 {
    grid-column: span 3;
  }
  .grid .xlarge-4 {
    grid-column: span 4;
  }
  .grid .xlarge-5 {
    grid-column: span 5;
  }
  .grid .xlarge-6 {
    grid-column: span 6;
  }
  .grid .xlarge-7 {
    grid-column: span 7;
  }
  .grid .xlarge-8 {
    grid-column: span 8;
  }
  .grid .xlarge-9 {
    grid-column: span 9;
  }
  .grid .xlarge-10 {
    grid-column: span 10;
  }
  .grid .xlarge-11 {
    grid-column: span 11;
  }
  .grid .xlarge-12 {
    grid-column: span 12;
  }
  .grid.xlarge-up-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.xlarge-up-2 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.xlarge-up-3 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid.xlarge-up-4 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid.xlarge-up-5 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid.xlarge-up-6 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .grid.xlarge-up-7 .cell {
    grid-column: span 1;
  }
  .grid.xlarge-up-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .grid.xlarge-up-8 .cell {
    grid-column: span 1;
  }
}

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
  color: var(--color-black);
}

.btn,
.wp-element-button,
#registerform .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  vertical-align: middle;
  position: relative;
  height: 3.5rem;
  padding: 0 1.9375rem;
  margin: 0;
  border: 1px solid transparent;
  border-radius: var(--global-radius);
  font-family: inherit;
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.2;
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  -webkit-transition: background var(--global-transition), color var(--global-transition), border-color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition), border-color var(--global-transition);
}
@media print, screen and (min-width: 40em) {
  .btn,
  .wp-element-button,
  #registerform .button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.btn:hover, .btn:focus,
.wp-element-button:hover,
#registerform .button:hover,
.wp-element-button:focus,
#registerform .button:focus {
  background: rgb(255, 22, 48.8053097345);
}
.btn .ripple,
.wp-element-button .ripple,
#registerform .button .ripple {
  -webkit-animation: rEffectAnimation 0.85s ease;
          animation: rEffectAnimation 0.85s ease;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  position: absolute;
  pointer-events: none;
  background: #fff;
  width: 500px;
  height: 500px;
}
.btn span:first-child,
.wp-element-button span:first-child,
#registerform .button span:first-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.btn.secondary,
.secondary.wp-element-button,
#registerform .secondary.button {
  background: var(--color-secondary);
}
.btn.secondary:hover, .btn.secondary:focus,
.secondary.wp-element-button:hover,
#registerform .secondary.button:hover,
.secondary.wp-element-button:focus,
#registerform .secondary.button:focus {
  background: rgb(31.7819148936, 123.3138297872, 207.2180851064);
}
.btn.white,
.white.wp-element-button,
#registerform .white.button {
  background: var(--color-white);
  color: var(--color-black);
}
.bg-primary .btn.white:hover, .bg-primary .btn.white:focus,
.bg-primary .white.wp-element-button:hover,
.bg-primary #registerform .white.button:hover,
#registerform .bg-primary .white.button:hover,
.bg-primary .white.wp-element-button:focus,
.bg-primary #registerform .white.button:focus,
#registerform .bg-primary .white.button:focus {
  background: var(--color-black);
  color: var(--color-white);
}
.btn.white .ripple,
.white.wp-element-button .ripple,
#registerform .white.button .ripple {
  background: #999;
}
.btn.black,
.black.wp-element-button,
#registerform .black.button {
  background: var(--color-black);
  color: var(--color-white);
}
.btn.black:hover, .btn.black:focus,
.black.wp-element-button:hover,
#registerform .black.button:hover,
.black.wp-element-button:focus,
#registerform .black.button:focus {
  background: rgb(25.5, 25.5, 25.5);
}
.btn.ghost,
.ghost.wp-element-button,
#registerform .ghost.button {
  background: transparent;
  border: 1px solid var(--color-black);
  color: var(--color-black);
}
.btn.ghost:hover, .btn.ghost:focus,
.ghost.wp-element-button:hover,
#registerform .ghost.button:hover,
.ghost.wp-element-button:focus,
#registerform .ghost.button:focus {
  color: var(--color-white);
  background: var(--color-black);
}
.btn.ghost.white,
.ghost.white.wp-element-button,
#registerform .ghost.white.button {
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn.ghost.white:hover, .btn.ghost.white:focus,
.ghost.white.wp-element-button:hover,
#registerform .ghost.white.button:hover,
.ghost.white.wp-element-button:focus,
#registerform .ghost.white.button:focus {
  color: var(--color-black);
  background: var(--color-white);
}
.btn:has(.icon),
.wp-element-button:has(.icon),
#registerform .button:has(.icon) {
  padding: 0.9375rem 1.9375rem 0.9375rem 1.4375rem;
}
.btn.expanded,
.expanded.wp-element-button,
#registerform .expanded.button {
  width: 100%;
}

@-webkit-keyframes rEffectAnimation {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0.25;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes rEffectAnimation {
  from {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    opacity: 0.25;
  }
  to {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
input[type=password],
select,
textarea {
  display: block;
  width: 100%;
  height: 3.5rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.5rem;
  border-radius: var(--global-radius);
  outline: 0;
  border: 1px solid transparent;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  -webkit-transition: border-color var(--global-transition);
  transition: border-color var(--global-transition);
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999;
  font-weight: 400;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999;
  font-weight: 400;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999;
  font-weight: 400;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  outline: none;
  color: var(--color-black);
  border-color: var(--color-black);
}
input[type=text][disabled], input[type=text][readonly],
input[type=email][disabled],
input[type=email][readonly],
input[type=tel][disabled],
input[type=tel][readonly],
input[type=search][disabled],
input[type=search][readonly],
input[type=number][disabled],
input[type=number][readonly],
input[type=password][disabled],
input[type=password][readonly],
select[disabled],
select[readonly],
textarea[disabled],
textarea[readonly] {
  cursor: not-allowed;
  opacity: 0.5;
}

textarea {
  resize: vertical;
  height: auto;
}
textarea.small {
  font-size: 1rem;
  line-height: 1.25;
  height: 8em;
}

label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}
label input[type=text],
label input[type=email],
label input[type=tel],
label input[type=search],
label input[type=number],
label select,
label textarea {
  margin-bottom: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m20.142 13.475-4.778 4.778a1.222 1.222 0 0 1-1.728 0l-4.778-4.778a1.222 1.222 0 1 1 1.728-1.728L14.5 15.66l3.914-3.914a1.222 1.222 0 1 1 1.728 1.728Z' fill='%23000'/%3E%3C/svg%3E");
  background-origin: content-box;
  background-position: right -2rem center;
  background-repeat: no-repeat;
  background-size: 1.5rem 1.5rem;
  padding-right: 2.5rem;
}
select option {
  color: var(--color-black);
}
select option[disabled] {
  color: #999;
}

.checkbox,
.gform_wrapper .gfield--type-checkbox .gchoice,
.ginput_container_consent,
.gform_wrapper .gfield--type-radio .gchoice,
.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.checkbox input,
.gform_wrapper .gfield--type-checkbox .gchoice input,
.ginput_container_consent input,
.gform_wrapper .gfield--type-radio .gchoice input,
.radio input {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.5rem;
          flex: 0 0 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--color-black);
  border-radius: var(--global-radius);
  background-color: var(--color-white);
  -webkit-transition: background-color var(--global-transition);
  transition: background-color var(--global-transition);
  cursor: pointer;
  position: relative;
  margin: 0;
}
.checkbox input::after,
.gform_wrapper .gfield--type-checkbox .gchoice input::after,
.ginput_container_consent input::after,
.gform_wrapper .gfield--type-radio .gchoice input::after,
.radio input::after {
  content: "";
  opacity: 0;
  visibility: hidden;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: -0.0625rem;
  left: -0.0625rem;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='m10 15.172 9.192-9.193 1.415 1.414L10 18l-6.364-6.364 1.414-1.414z' fill='%23fff'/%3E%3C/svg%3E");
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition: opacity var(--global-transition), visibility var(--global-transition);
  transition: opacity var(--global-transition), visibility var(--global-transition);
}
.checkbox input:checked,
.gform_wrapper .gfield--type-checkbox .gchoice input:checked,
.ginput_container_consent input:checked,
.gform_wrapper .gfield--type-radio .gchoice input:checked,
.radio input:checked {
  background-color: var(--color-black);
}
.checkbox input:checked::after,
.gform_wrapper .gfield--type-checkbox .gchoice input:checked::after,
.ginput_container_consent input:checked::after,
.gform_wrapper .gfield--type-radio .gchoice input:checked::after,
.radio input:checked::after {
  opacity: 1;
  visibility: visible;
}
.checkbox span,
.gform_wrapper .gfield--type-checkbox .gchoice span,
.ginput_container_consent span,
.gform_wrapper .gfield--type-radio .gchoice span,
.radio span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.2;
}
.checkbox label,
.gform_wrapper .gfield--type-checkbox .gchoice label,
.ginput_container_consent label,
.gform_wrapper .gfield--type-radio .gchoice label,
.radio label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.2;
  margin: 0;
}
.checkbox a:hover,
.gform_wrapper .gfield--type-checkbox .gchoice a:hover,
.ginput_container_consent a:hover,
.gform_wrapper .gfield--type-radio .gchoice a:hover,
.radio a:hover {
  text-decoration: none;
}

.gform_wrapper .gfield--type-radio .gchoice input,
.radio input {
  border-radius: 1.5rem;
}
.gform_wrapper .gfield--type-radio .gchoice input::after,
.radio input::after {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 1rem;
  top: 0.3125rem;
  left: 0.3125rem;
  background: currentColor;
}
.gform_wrapper .gfield--type-radio .gchoice input:checked,
.radio input:checked {
  background-color: var(--color-white);
}
.gform_wrapper .gfield--type-radio .gchoice input:checked::after,
.radio input:checked::after {
  opacity: 1;
  visibility: visible;
}

.s-form .checkbox {
  margin-top: 2rem;
}
.s-form .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 2rem;
}

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

.ginput_container_consent label {
  padding-top: 0.25rem;
  color: var(--color-black);
}

.gform_wrapper form {
  -webkit-transition: opacity var(--global-transition);
  transition: opacity var(--global-transition);
}
.gform_wrapper.gform_loading form {
  opacity: 0.3333;
  pointer-events: none;
  position: relative;
}
.gform_wrapper.gform_loading form::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  z-index: 10;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.gform_wrapper .gfield {
  margin-bottom: 1.25rem;
}
.gform_wrapper .gfield label {
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}
.gform_wrapper .gfield input {
  margin-bottom: 0;
}
.gform_wrapper .gfield_required {
  color: var(--color-primary);
}
.gform_wrapper .gform_drop_area {
  border-radius: 0.25rem;
  border: 1px dashed #5d6971;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
  padding: 1rem;
  margin-block: 1.25rem 0;
}
.gform_wrapper .gform_drop_area button {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}
.gform_wrapper .gform_drop_area button:hover {
  text-decoration: none;
}
.gform_wrapper .gfield--type-checkbox .gchoice,
.gform_wrapper .gfield--type-radio .gchoice {
  margin-bottom: 1rem;
}
.gform_wrapper .gfield--type-checkbox .gchoice label,
.gform_wrapper .gfield--type-radio .gchoice label {
  margin-bottom: 0;
  padding-top: 0.25rem;
  cursor: pointer;
}
.gform_wrapper .gfield--type-checkbox,
.gform_wrapper .gfield.gfield--type-multi_choice,
.gform_wrapper .gfield--type-radio {
  border: 0;
  padding: 0;
}
.gform_wrapper .gfield--type-consent {
  border: 0 none;
  border-top: 1px solid #d8dadc;
  padding: 0;
  margin: 0;
  margin-block: 1.5rem 1.25rem;
  -webkit-padding-before: 1.5rem;
          padding-block-start: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .gform_wrapper .gfield--type-consent {
    margin-block: 2rem 1.25rem;
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .gform_wrapper .gfield--type-consent {
    margin-block: 2.5rem 1.25rem;
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
  }
}
.gform_wrapper .gfield--type-consent legend {
  display: none;
}
.gform_wrapper .gfield--type-consent label {
  margin-bottom: 0;
}
.gform_wrapper .gfield--input-type-adminonly_hidden,
.gform_wrapper .gfield--input-type-hidden {
  display: none;
}
.gform_wrapper .gform-footer {
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .gform_wrapper .gform-footer {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .gform_wrapper .gform-footer {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}
.gform_wrapper .gfield_description {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.32;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-black);
}
.gform_wrapper .gfield--type-choice .gfield_label {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 1.5em;
}
.gform_wrapper .validation_message {
  margin-top: 0.5rem;
}
.gform_wrapper .validation_message--hidden-on-empty {
  display: none;
}
.gform_wrapper .validation_message--hidden-on-empty:not(:empty) {
  display: block;
}
.gform_wrapper .ginput_preview {
  font-size: 0.9375rem;
  line-height: 1.4;
  position: relative;
  margin-top: 1.25rem;
}
.gform_wrapper .gfield_fileupload_filename {
  display: block;
  padding-right: 1.875rem;
}
.gform_wrapper .gfield_fileupload_filesize {
  display: block;
  padding-right: 1.875rem;
  color: var(--color-gray);
}
.gform_wrapper .gfield_fileupload_progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.gform_wrapper .gfield_fileupload_progressbar {
  background-color: #999;
  inline-size: 100%;
  position: relative;
  border-radius: 0.25rem;
  height: 0.375rem;
}
.gform_wrapper .gfield_fileupload_progressbar_progress {
  display: block;
  inline-size: 1%;
  height: 100%;
  border-radius: 0.25rem;
  background-color: var(--color-secondary);
  position: absolute;
  -webkit-transition: var(--global-transition);
  transition: var(--global-transition);
}
.gform_wrapper .gfield_fileupload_percent {
  font-size: 0.75rem;
}
.gform_wrapper .gform_delete_file {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1rem;
}
.gform_wrapper .gfield_fileupload_cancel {
  font-size: 0.9375rem;
  color: var(--color-primary);
}
.gform_wrapper .gform_validation_container,
.gform_wrapper .gform_body .gform_fields .gfield.gform_validation_container,
.gform_wrapper .gform_fields .gfield.gform_validation_container,
.gform_wrapper .gform_validation_container {
  display: none !important;
  left: -9000px;
  position: absolute !important;
}

.gform-footer p.small {
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-before: 1.5rem;
          margin-block-start: 1.5rem;
  color: #24353F;
}
@media print, screen and (min-width: 40em) {
  .gform-footer p.small {
    -webkit-margin-before: 2rem;
            margin-block-start: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .gform-footer p.small {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.gform-theme--framework .gfield_error .gform-theme-field-control,
.gform-theme--framework .gfield_error input[type],
.gform-theme--framework .gfield_error select,
.gform-theme--framework .gfield_error textarea {
  border-color: var(--color-primary);
}
.gform-theme--framework .gfield_error .validation_message {
  color: var(--color-primary);
}

.gform_validation_errors .gform_submission_error,
.gform_confirmation_message {
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
}

.gform_submission_error {
  border: 1px solid var(--color-primary);
  background: rgba(226, 0, 26, 0.05);
  color: var(--color-primary);
  font-family: var(--font-family-body);
}
.gform_submission_error .gform-theme--framework .gform_validation_errors .gform-icon {
  display: none;
}

.gform_confirmation_message {
  border: 1px solid var(--color-success);
  background: rgba(40, 167, 69, 0.05);
  color: var(--color-success);
}

li.gfield_validation_message, .job-detail li.gfield_validation_message {
  margin-top: 0.5rem;
  color: var(--color-primary);
  padding-block: 0;
  display: block;
  padding-left: 0;
  border-bottom: 0 none;
}
li.gfield_validation_message:first-child, .job-detail li.gfield_validation_message:first-child {
  border-top: 0 none;
}
li.gfield_validation_message::before, .job-detail li.gfield_validation_message::before {
  content: none;
}

.ginput_container_company_search {
  position: relative;
}

.company-search-results {
  position: absolute;
  top: 3.75rem;
  width: 100%;
  background: var(--color-white);
  border-radius: 0.25rem;
  padding: 0;
  height: auto;
  max-height: min(20rem, 100svh - 10rem);
  -webkit-box-shadow: 0 4px 16px -5px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px -5px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
  line-height: 1.4;
  overflow: auto;
  z-index: 1;
}
.company-search-results .searching,
.company-search-results .no-results,
.company-search-results .company-results-list .error {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.company-search-results .company-result-item {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #d8dadc;
  cursor: pointer;
}
.company-search-results .company-result-item:hover, .company-search-results .company-result-item:focus, .company-search-results .company-result-item.highlighted {
  background: var(--color-light-gray);
}
.company-search-results .company-result-city {
  display: block;
}
.company-search-results .company-suggestions-list {
  padding: 1.5rem 0.75rem;
}
.company-search-results .company-suggestion-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  text-decoration: underline;
  font-size: 0.9375rem;
  cursor: pointer;
}
.company-search-results .company-suggestion-item:hover {
  color: var(--color-primary);
  text-decoration: none;
}
.company-search-results .suggestions-headline {
  padding: 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
}
.company-search-results .company-cancelled {
  color: var(--color-primary);
}

.company-loading-overlay {
  padding: 1rem 1.5rem;
}

.off-canvas:has(.gform_confirmation_wrapper) > h2, .off-canvas:has(.gform_confirmation_wrapper) > .h3, .off-canvas:has(.gform_confirmation_wrapper) > p, .off-canvas:has(.gform_confirmation_wrapper) > .headline {
  display: none;
}
.off-canvas .gform_confirmation_message {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  border-radius: 0;
  border: 0 none;
  -ms-flex-line-pack: center;
      align-content: center;
  overflow: auto;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  padding: 2.5rem 2rem;
}
@media print, screen and (min-width: 40em) {
  .off-canvas .gform_confirmation_message {
    padding: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas .gform_confirmation_message {
    padding: 4.5rem;
  }
}

.gform_confirmation_message {
  grid-template-columns: 1fr !important;
  border-radius: 0.5rem;
  border: 1px solid #90C351;
  background: rgba(144, 195, 81, 0.2);
  margin: 0;
  padding: 2rem;
  color: #517B1D;
}
@media print, screen and (min-width: 40em) {
  .gform_confirmation_message {
    padding: 4.5rem;
  }
}
.gform_confirmation_message h2 {
  color: #517B1D;
  font-family: var(--font-family-body);
}
.gform_confirmation_message hr {
  margin: 0.75rem 0 2rem;
  background: rgba(81, 123, 29, 0.24);
}
.gform_confirmation_message > * {
  grid-column: 1 !important;
}
.gform_confirmation_message a:not([class]),
.gform_confirmation_message p:not(.has-link-color) a:not([class]) {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}
.gform_confirmation_message a:not([class]):hover, .gform_confirmation_message a:not([class]):focus,
.gform_confirmation_message p:not(.has-link-color) a:not([class]):hover,
.gform_confirmation_message p:not(.has-link-color) a:not([class]):focus {
  text-decoration: none;
}

.post-password-form-invalid-password {
  border-radius: 0.25rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  border: 1px solid var(--color-primary);
  background: rgba(226, 0, 26, 0.05);
  color: var(--color-primary);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination li {
  margin: 0;
}
.pagination a {
  cursor: pointer;
}
.pagination li > a,
.pagination li > span {
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.9375rem;
  color: var(--color-black);
}
.pagination li.current > a,
.pagination li.current > span {
  color: var(--color-primary);
}
.pagination li.ellipsis > span {
  width: auto;
  border: 0 none;
  cursor: none;
  background: transparent;
}
.pagination li.ellipsis span::after {
  content: "…";
}
.pagination li.pagination-previous a, .pagination li.pagination-previous span,
.pagination li.pagination-next a,
.pagination li.pagination-next span {
  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;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  background: var(--color-white);
  color: var(--color-black);
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
  background: var(--color-light-gray);
}
.pagination li.pagination-previous a:hover,
.pagination li.pagination-previous a:focus,
.pagination li.pagination-next a:hover,
.pagination li.pagination-next a:focus {
  background: var(--color-black);
  color: var(--color-white);
}
.pagination li.pagination-previous {
  margin-right: auto;
}
.pagination li.pagination-next {
  margin-left: auto;
}
.pagination li.disabled > span,
.pagination li.disabled > a {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination a {
  text-decoration: underline;
}
.pagination a:hover,
.pagination a a:focus {
  text-decoration: none;
}
@media print, screen and (max-width: 39.99875em) {
  .pagination li {
    display: none;
  }
  .pagination li.pagination-previous, .pagination li.pagination-next, .pagination li.current {
    display: block;
  }
}

.tabs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  background: var(--color-light-gray);
  border-radius: 2.75rem;
  padding: 0.25rem;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .tabs-list {
    margin-bottom: 4.5rem;
  }
}
.tabs-list.white, .bg-light-gray .tabs-list {
  background: var(--color-white);
}
.tabs-list.white .tabs-button, .bg-light-gray .tabs-list .tabs-button {
  background: var(--color-white);
}
.tabs-list.white .tabs-button[aria-selected=true], .bg-light-gray .tabs-list .tabs-button[aria-selected=true] {
  background: var(--color-black);
  color: var(--color-white);
}

.tabs-button {
  padding: 0.75rem 1.25rem;
  border: none;
  background: var(--color-light-gray);
  color: var(--color-black);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 31.25rem;
  -webkit-transition: background-color var(--global-transition), color var(--global-transition);
  transition: background-color var(--global-transition), color var(--global-transition);
  outline: none;
  min-width: 7rem;
  font-weight: 500;
}
.tabs-button[aria-selected=true] {
  background: var(--color-primary);
  color: var(--color-white);
}

.tabs-panel {
  display: none;
}

.tabs-panel[aria-hidden=false] {
  display: block;
}

.top-bar-container {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(36, 53, 63)), to(rgba(36, 53, 63, 0)));
  background: linear-gradient(180deg, rgb(36, 53, 63) 0%, rgba(36, 53, 63, 0) 100%);
}
.is-site-nav-open .top-bar-container {
  background: transparent;
}

.top-bar {
  width: 100%;
  position: relative;
  padding-block: 1.25rem;
  padding-inline: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-white);
  -webkit-transition: background var(--global-transition);
  transition: background var(--global-transition);
}
@media print, screen and (min-width: 64em) {
  .top-bar {
    gap: 1.5rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
  }
}
.top-bar.has-bg {
  background: var(--color-gray);
}
.is-site-nav-open .top-bar, .is-site-nav-open .top-bar.has-bg {
  background: transparent;
}
.is-site-nav-open .top-bar .top-bar__logo img.default {
  display: none;
}
.is-site-nav-open .top-bar .top-bar__logo img.alt {
  display: block;
}
.is-site-nav-open .top-bar .top-bar__cta.default {
  display: none;
}
.is-site-nav-open .top-bar .top-bar__cta.alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.is-site-nav-open .top-bar .top-bar__toggle {
  background: var(--color-black);
}
.top-bar__logo {
  display: block;
}
.top-bar__logo img {
  display: block;
  width: auto;
  height: 2.625rem;
}
@media print, screen and (min-width: 40em) {
  .top-bar__logo img {
    height: 3.5rem;
  }
}
@media screen and (min-width: 80em) {
  .top-bar__logo img {
    height: 3.75rem;
  }
}
.top-bar__logo img.default {
  display: block;
}
.top-bar__logo img.alt {
  display: none;
}
.top-bar__cta.default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-bar__cta.alt {
  display: none;
}
.top-bar__cta:has(.icon) {
  padding: 0.9375rem 1.4375rem 0.9375rem 0.9375rem;
}
.top-bar__cta:has(.icon).default .icon {
  color: var(--color-primary);
}
@media screen and (max-width: 63.99875em) {
  .top-bar__left {
    display: none !important;
  }
}
.top-bar__right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.top-bar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 80em) {
  .top-bar__menu {
    font-size: 0.9375rem;
    gap: 1.25rem;
  }
}
.top-bar__menu a {
  display: block;
  text-decoration: none;
  padding: 1rem 0;
  line-height: 1.5rem;
  font-weight: 500;
  color: inherit;
}
.top-bar__menu a.active, .top-bar__menu a:hover {
  text-decoration: underline;
}
.top-bar__menu li.menu-item-has-children {
  position: relative;
}
.top-bar__menu .is-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.375rem;
  z-index: 12;
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
  color: var(--color-white);
  text-decoration: none;
}
.top-bar__menu .is-dropdown:hover, .top-bar__menu .is-dropdown:focus, .top-bar__menu .is-dropdown.is-open {
  text-decoration: none;
}
.top-bar__menu .is-dropdown::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-size: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m18.702 13.73-3.982 3.98a1.019 1.019 0 0 1-1.44 0l-3.982-3.98a1.019 1.019 0 0 1 1.44-1.441L14 15.55l3.261-3.261a1.018 1.018 0 0 1 1.44 1.44Z' fill='%23fff'/%3E%3C/svg%3E");
  margin-block: -0.125rem;
}
.top-bar__menu .is-dropdown.is-open::after, .top-bar__menu .is-dropdown:has(+ .is-open)::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m18.702 13.73-3.982 3.98a1.019 1.019 0 0 1-1.44 0l-3.982-3.98a1.019 1.019 0 0 1 1.44-1.441L14 15.55l3.261-3.261a1.018 1.018 0 0 1 1.44 1.44Z' fill='%23e2001a'/%3E%3C/svg%3E");
}
.top-bar .sub-menu {
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 0.75rem;
  min-width: 25rem;
  background: var(--color-white);
  padding: 1.5rem;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: var(--global-radius-2);
  -webkit-box-shadow: 0 4px 16px -5px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
          box-shadow: 0 4px 16px -5px rgba(0, 0, 0, 0.1), 0 1px 3px -1px rgba(0, 0, 0, 0.06);
}
.top-bar .sub-menu li {
  display: block;
}
.top-bar .sub-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-light-gray);
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--global-radius);
  -webkit-transition: color var(--global-transition), background var(--global-transition-2);
  transition: color var(--global-transition), background var(--global-transition-2);
}
.top-bar .sub-menu a:hover, .top-bar .sub-menu a:focus {
  background: var(--color-gray);
  color: var(--color-white);
  text-decoration: none;
}
.top-bar .sub-menu span {
  height: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-bar .sub-menu .icon {
  margin-left: auto;
  margin-block: -0.125rem;
}
@media screen and (max-width: 63.99875em) {
  .top-bar__lang {
    display: none !important;
  }
}
.top-bar__lang > li {
  position: relative;
}
.top-bar__lang > li:hover .is-dropdown {
  background: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
}
.top-bar__lang > li:hover .is-dropdown::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m18.702 13.73-3.982 3.98a1.019 1.019 0 0 1-1.44 0l-3.982-3.98a1.019 1.019 0 0 1 1.44-1.441L14 15.55l3.261-3.261a1.018 1.018 0 0 1 1.44 1.44Z' fill='%23e2001a'/%3E%3C/svg%3E");
}
.top-bar__lang > li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
}
.top-bar__lang .is-dropdown {
  background: transparent;
  border-radius: var(--global-radius) 4px 0 0;
  padding-inline: 1.5rem 1rem;
}
.top-bar__lang .sub-menu {
  min-width: 0;
  width: 100%;
  padding: 0;
  left: 0;
  top: 100%;
  background: var(--color-white);
  border-radius: 0 0 4px 4px;
  -webkit-transition: opacity var(--global-transition), visibility var(--global-transition);
  transition: opacity var(--global-transition), visibility var(--global-transition);
  gap: 0px;
}
.top-bar__lang .sub-menu a {
  line-height: 1.5rem;
  padding: 0.9375rem 0.9375rem 0.9375rem 1.4375rem;
}
.top-bar__lang .sub-menu a:hover, .top-bar__lang .sub-menu a:focus {
  color: var(--color-black);
  background: var(--color-white);
}
.top-bar__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.1875rem;
  padding-inline: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  cursor: pointer;
  position: relative;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--global-radius);
}
.top-bar__toggle[aria-expanded=true] .open {
  opacity: 0;
  visibility: hidden;
}
.top-bar__toggle[aria-expanded=true] .close {
  opacity: 1;
  visibility: visible;
}
.top-bar__toggle svg {
  display: block;
  -webkit-transition: opacity var(--global-transition), visibility var(--global-transition);
  transition: opacity var(--global-transition), visibility var(--global-transition);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.top-bar__toggle svg path {
  fill: currentColor;
}
.top-bar__toggle svg.close {
  opacity: 0;
  visibility: hidden;
}
.top-bar__logo:focus, .top-bar__logo:focus-visible, .top-bar__toggle:focus, .top-bar__toggle:focus-visible {
  outline: none;
}

.site-nav {
  display: block;
  visibility: hidden;
  width: 100%;
  max-width: 100%;
  position: fixed;
  z-index: 99;
  left: 0;
  padding-top: var(--top-bar-height-mobile);
  top: 0;
  max-height: calc(100vh - var(--top-bar-height-mobile));
  max-height: calc(100svh - var(--top-bar-height-mobile));
  overflow: auto;
  background: var(--color-white);
}
@media print, screen and (min-width: 64em) {
  .site-nav {
    display: none !important;
  }
}
.site-nav::-webkit-scrollbar {
  width: 0;
}
.site-nav .container {
  padding-block: 1.25rem 2rem;
}
.site-nav__overlay {
  position: fixed;
  z-index: 98;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.6);
}
@media print, screen and (min-width: 64em) {
  .site-nav__overlay {
    display: none !important;
  }
}
.site-nav__overlay::before {
  content: "";
  display: block;
  height: 100px;
  background: #fff;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  width: 100%;
}
.site-nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
.site-nav__menu li {
  display: block;
}
.site-nav__menu a {
  display: block;
  color: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-decoration: none;
  padding-block: 1rem;
}
.site-nav__menu .is-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 1rem;
  gap: 0.375rem;
  z-index: 12;
  -webkit-transition: background var(--global-transition), color var(--global-transition), border-color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition), border-color var(--global-transition);
}
.site-nav__menu .is-dropdown:hover, .site-nav__menu .is-dropdown:focus, .site-nav__menu .is-dropdown.is-open {
  background: var(--color-white);
  border-color: var(--color-black);
  text-decoration: none;
}
.site-nav__menu .is-dropdown::after {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='m18.702 13.73-3.982 3.98a1.019 1.019 0 0 1-1.44 0l-3.982-3.98a1.019 1.019 0 0 1 1.44-1.441L14 15.55l3.261-3.261a1.018 1.018 0 0 1 1.44 1.44Z' fill='%23000'/%3E%3C/svg%3E");
  background-size: 1.75rem;
  margin-block: -0.125rem;
}
.site-nav__menu .is-dropdown.is-open::after, .site-nav__menu .is-dropdown:has(+ .is-open)::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.site-nav .sub-menu {
  display: none;
  padding: 0;
}
.site-nav .sub-menu li {
  display: block;
}
.site-nav .sub-menu li + li {
  margin-top: 0.75rem;
}
.site-nav .sub-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-light-gray);
  color: var(--color-black);
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--global-radius);
  -webkit-transition: color var(--global-transition), background var(--global-transition-2);
  transition: color var(--global-transition), background var(--global-transition-2);
}
.site-nav .sub-menu a:hover, .site-nav .sub-menu a:focus {
  background: var(--color-gray);
  color: var(--color-white);
  text-decoration: none;
}
.site-nav .sub-menu span {
  height: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-nav .sub-menu .icon {
  margin-left: auto;
  margin-block: -0.125rem;
}
.site-nav__lang {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(2rem, 1fr));
  list-style: none;
  padding: 0;
  margin: 0 auto;
  background: var(--color-light-gray);
  border-radius: 2.75rem;
  padding: 0.25rem;
}
@media print, screen and (min-width: 64em) {
  .site-nav__lang {
    margin-bottom: 4.5rem;
  }
}
.site-nav__lang li {
  display: block;
}
.site-nav__lang a {
  display: block;
  padding: 0.75rem 1.25rem;
  border: none;
  background: var(--color-light-gray);
  color: var(--color-black);
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1;
  border-radius: 31.25rem;
  -webkit-transition: background-color var(--global-transition), color var(--global-transition);
  transition: background-color var(--global-transition), color var(--global-transition);
  outline: none;
  text-decoration: none;
  text-align: center;
}
.site-nav__lang a.is-active {
  background: var(--color-black);
  color: var(--color-white);
}

.footer {
  padding-block: 2rem;
  background: var(--color-gray);
  color: var(--color-white);
}
@media print, screen and (min-width: 40em) {
  .footer {
    padding-block: 2rem 0;
  }
}
@media print, screen and (min-width: 64em) {
  .footer {
    padding-block: 3rem 0;
  }
}
@media print, screen and (min-width: 40em) {
  .footer__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer .grid {
  row-gap: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .footer .grid .footer__left {
    grid-column: span 3;
  }
}
@media print, screen and (min-width: 64em) {
  .footer .grid .footer__left {
    grid-column: span 4;
  }
}
@media print, screen and (min-width: 40em) {
  .footer .grid .footer__center {
    grid-column: span 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}
@media print, screen and (min-width: 64em) {
  .footer .grid .footer__center {
    grid-column: span 4;
  }
}
@media print, screen and (min-width: 40em) {
  .footer .grid .footer__right {
    grid-column: span 5;
  }
}
@media print, screen and (min-width: 64em) {
  .footer .grid .footer__right {
    grid-column: span 4;
  }
}
.footer__menu {
  display: block;
  margin-block: 0 3rem;
  list-style: 0;
  padding: 0;
}
.footer__menu li {
  display: block;
}
.footer__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 500;
  padding-block: 0.8125rem;
  text-decoration: none;
  border-bottom: 1px solid #3f4e56;
  -webkit-transition: color var(--global-transition), border-color var(--global-transition);
  transition: color var(--global-transition), border-color var(--global-transition);
}
.footer__menu a:hover, .footer__menu a:focus {
  border-color: var(--color-white);
}
.footer__menu a .icon {
  margin-block: -0.3125rem;
}
@media print, screen and (min-width: 64em) {
  .footer__menu {
    margin-bottom: 4.5rem;
  }
}
.footer__headline {
  display: block;
  font-size: 1.125rem;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 2rem;
}
.footer__services, .footer__links {
  display: block;
  margin: 0;
  padding: 0;
  list-style: 0;
}
.footer__services li, .footer__links li {
  display: block;
}
.footer__services a, .footer__links a {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.3333;
  padding-block: 0.5rem;
}
.footer__services a:hover, .footer__services a:focus, .footer__links a:hover, .footer__links a:focus {
  text-decoration: none;
}
@media print, screen and (min-width: 40em) {
  .footer__links {
    margin-bottom: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .footer__links {
    margin-bottom: 3rem;
  }
}
.footer__address {
  margin-bottom: 2.1875rem;
}
@media print, screen and (min-width: 40em) {
  .footer__address {
    margin-top: 0.4375rem;
  }
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 0.75rem;
  padding: 0;
  margin-block: 3rem 0;
}
@media print, screen and (min-width: 40em) {
  .footer__social {
    margin-block: auto 0;
  }
}
.footer__social li {
  display: block;
}
.footer__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.3333;
  font-weight: 500;
  text-decoration: none;
}
.footer__social a:hover, .footer__social a:focus {
  text-decoration: underline;
}
.footer__social a:hover .icon, .footer__social a:focus .icon {
  background: var(--color-white);
  color: var(--color-black);
}
.footer__social .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.5rem;
  border-radius: 1em;
  border: 1px solid;
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
}
.footer__social .icon path {
  fill: currentColor;
}
.footer hr {
  background: #3f4e56;
  margin-block: 3rem;
}
@media print, screen and (min-width: 40em) {
  .footer hr {
    display: none;
  }
}
.footer__bottom {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .footer__bottom {
    text-align: left;
    padding-block: 4rem 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .footer__bottom {
    padding-block: 3rem 4.5rem;
  }
}
.footer__bottom.grid {
  row-gap: 1.5rem;
}
.footer__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media print, screen and (min-width: 40em) {
  .footer__company {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
  }
}
.footer__logo {
  height: 2.625rem;
  width: auto;
}
.footer__copyright {
  opacity: 0.6;
}
.footer .bg-sign {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .footer .bg-sign {
    margin-top: -5rem;
    max-width: 19rem;
  }
}

.hero,
.banner {
  position: relative;
  width: 100%;
  background: var(--color-gray);
}
@media print, screen and (min-width: 40em) {
  .hero,
  .banner {
    height: 40rem;
  }
}
@media print, screen and (min-width: 64em) {
  .hero,
  .banner {
    height: 50rem;
  }
}
.hero .image,
.banner .image {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .hero .image,
  .banner .image {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
}
.hero .image img,
.hero .image video,
.banner .image img,
.banner .image video {
  display: block;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .hero .image img,
  .hero .image video,
  .banner .image img,
  .banner .image video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .hero .image img,
  .banner .image img {
    width: 200%;
    max-width: none;
    margin-left: -90%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .hero .image video,
  .banner .image video {
    width: 100%;
    height: 15.625rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero .image::before,
.banner .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 31vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(31.69%, rgba(35, 52, 64, 0)), color-stop(52.06%, rgba(35, 52, 64, 0.62)), color-stop(89.9%, #234));
  background: linear-gradient(180deg, rgba(35, 52, 64, 0) 31.69%, rgba(35, 52, 64, 0.62) 52.06%, #234 89.9%);
}
@media print, screen and (min-width: 40em) {
  .hero .image::before,
  .banner .image::before {
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.04)), to(rgba(0, 0, 0, 0.04))), -webkit-gradient(linear, right top, left top, color-stop(52.86%, rgba(36, 53, 63, 0)), to(rgba(0, 0, 0, 0.8)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%), linear-gradient(270deg, rgba(36, 53, 63, 0) 52.86%, rgba(0, 0, 0, 0.8) 100%);
  }
}
.hero .container,
.banner .container {
  position: relative;
  z-index: 2;
  padding-block: 1.75rem;
  margin-top: -31vw;
}
@media print, screen and (min-width: 40em) {
  .hero .container,
  .banner .container {
    margin-top: 0;
    width: 100%;
    height: 100%;
    padding-block: 8rem 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .hero .container,
  .banner .container {
    padding-block: 11.25rem 4rem;
  }
}
.hero:has(video),
.banner:has(video) {
  padding-top: 6rem;
}
@media print, screen and (min-width: 40em) {
  .hero:has(video),
  .banner:has(video) {
    padding-top: 0;
  }
}
.hero:has(video) .container,
.banner:has(video) .container {
  margin-top: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .hero:has(video) .image::before,
  .banner:has(video) .image::before {
    height: 5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .hero .grid,
  .banner .grid {
    height: 100%;
  }
}
.hero .card,
.banner .card {
  position: relative;
}
@media print, screen and (max-width: 39.99875em) {
  .hero .card,
  .banner .card {
    border-radius: var(--global-radius-2);
  }
}
.hero .card h1,
.hero .card h2,
.banner .card h1,
.banner .card h2 {
  font-size: 2.75rem;
  margin-bottom: 3rem;
}
.hero .card h1 + *,
.hero .card h2 + *,
.banner .card h1 + *,
.banner .card h2 + * {
  margin-top: auto;
}
.hero .card p,
.banner .card p {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  text-wrap: balance;
}
.hero .card .btn + .btn,
.banner .card .btn + .btn {
  margin-top: 0.75rem;
}
.hero .bg-sign,
.banner .bg-sign {
  display: block;
  position: absolute;
  right: 0;
  bottom: 3.75rem;
  pointer-events: none;
  z-index: 0;
}

.banner {
  overflow: hidden;
}
@media print, screen and (max-width: 39.99875em) {
  .banner .image img {
    margin-left: -10%;
  }
}
@media print, screen and (min-width: 64em) {
  .banner .image img {
    -o-object-position: center top;
       object-position: center top;
  }
}
@media print, screen and (min-width: 40em) {
  .banner .image::before {
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(36, 53, 63, 0)), to(rgba(36, 53, 63, 0.72))), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(36, 53, 63, 0)), to(rgba(36, 53, 63, 0.48)));
    background: linear-gradient(90deg, rgba(36, 53, 63, 0) 50%, rgba(36, 53, 63, 0.72) 100%), linear-gradient(180deg, rgba(36, 53, 63, 0) 50%, rgba(36, 53, 63, 0.48) 100%);
  }
}
@media print, screen and (min-width: 40em) {
  .banner .grid::before {
    content: "";
    grid-column: span 6;
  }
}
@media print, screen and (min-width: 64em) {
  .banner .grid::before {
    grid-column: span 7;
  }
}
@media screen and (min-width: 80em) {
  .banner .grid::before {
    grid-column: span 8;
  }
}

.simple-hero {
  position: relative;
  margin-inline: auto;
  background: var(--color-gray);
  color: var(--color-white);
  overflow: hidden;
  padding-top: 7.25rem;
}
@media print, screen and (min-width: 40em) {
  .simple-hero {
    padding-top: 6rem;
  }
}
@media print, screen and (min-width: 64em) {
  .simple-hero {
    padding-top: 7.25rem;
  }
}
.simple-hero .container {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .simple-hero .container {
    height: 12.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .simple-hero .container {
    height: 19.25rem;
  }
}
.simple-hero .grid {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.simple-hero .cell {
  position: relative;
  padding: 1.75rem 0;
}
@media print, screen and (min-width: 40em) {
  .simple-hero .cell {
    padding: 2rem 0;
  }
}
.simple-hero .cell.cell--patern {
  position: static;
}
@media screen and (max-width: 39.99875em) {
  .simple-hero .cell.cell--patern {
    display: none !important;
  }
}
.simple-hero .bg-sign {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
.simple-hero h1 {
  color: var(--color-white);
}
.simple-hero h1:only-child {
  margin-bottom: 0;
}
.simple-hero.detail h1 {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem);
  max-width: 20em;
}
@media print, screen and (min-width: 40em) {
  .simple-hero .pattern-grid {
    position: absolute;
    top: 3rem;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 3.75rem 5.625rem;
  }
}
.simple-hero .pattern-grid .dot {
  background: #d9d9d9;
}
@media print, screen and (min-width: 40em) {
  .simple-hero--404 .container {
    min-height: 24.75rem;
    height: calc(100svh - 6rem);
  }
}
@media screen and (min-width: 93.75em) {
  .simple-hero--404 .container {
    height: calc(100svh - 6.5rem);
  }
}
.simple-hero--404 .container .grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.simple-hero--404 .container .grid h1 {
  font-size: clamp(8rem, 18vw, 13.75rem);
  line-height: 0.75;
  margin-bottom: 0.125em;
}
.simple-hero--404 .container .grid p {
  margin-bottom: 2rem;
}
.simple-hero--404 .container .cell {
  text-align: center;
}
.simple-hero--404 .container .dot {
  background: rgba(0, 0, 0, 0.1);
}
.simple-hero--404 .container .dot.active {
  background-color: var(--color-white);
}
.simple-hero--404 .container .btn .icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.simple-hero--404 .bg-sign {
  width: 100%;
  pointer-events: none;
}

.off-canvas {
  position: fixed;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: var(--color-light-gray);
  top: 0;
  right: 0;
  height: 100%;
  height: 100svh;
  overflow-y: auto;
  width: 100%;
  padding: 2.5rem 2rem;
  outline: 0;
  z-index: 113;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
}
@media print, screen and (min-width: 40em) {
  .off-canvas {
    width: 30rem;
    padding: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas {
    width: 38.75rem;
    padding: 4.5rem;
  }
}
.off-canvas.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.off-canvas__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 111;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease, visibility 0.35s ease;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.off-canvas__overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.off-canvas .close-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  cursor: pointer;
}
.off-canvas .headline {
  font-size: 2rem;
  margin-bottom: 1em;
}
.off-canvas p {
  margin-bottom: 2rem;
}

.swiper {
  width: 100%;
}

.swiper-wrapper {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  padding-block: 0.875rem;
  margin-block: 1.75rem;
  position: static;
}

.swiper-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.swiper-navigation .swiper-button {
  position: static;
}
.swiper-navigation:has(.swiper-button-prev.swiper-button-disabled):has(.swiper-button-next.swiper-button-disabled) {
  display: none;
}

.swiper-button {
  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;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2.5rem;
  background: var(--color-light-gray);
  color: var(--color-black);
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
}
.swiper-button:hover {
  background: var(--color-black);
  color: var(--color-white);
}
.swiper-button-disabled {
  opacity: 0.33;
  cursor: auto;
  pointer-events: none;
}
.bg-gray .swiper-button, .bg-light-gray .swiper-button {
  background: var(--color-white);
}
.bg-gray .swiper-button:hover, .bg-light-gray .swiper-button:hover {
  background: var(--color-black);
}

.swiper--cards {
  overflow: visible;
}
@media print, screen and (min-width: 64em) {
  .swiper--cards {
    overflow: hidden;
    margin-bottom: 4.5rem;
  }
}
.section:has(.swiper--cards) {
  overflow-x: clip;
}
.swiper--cards .swiper-slide {
  width: 75%;
  min-width: 18.4375rem;
  max-width: 20rem;
  height: initial;
}
@media print, screen and (min-width: 64em) {
  .swiper--cards .swiper-slide {
    max-width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .swiper--cards .swiper-pagination {
    display: none !important;
  }
}
.swiper--cards + .swiper-navigation {
  margin-block: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .swiper--cards + .swiper-navigation {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media print, screen and (min-width: 64em) {
  .swiper--cards + .swiper-navigation {
    display: none !important;
  }
}
.swiper--cards + .swiper-navigation .swiper-button {
  position: static;
}

.swiper--logos {
  border: 1px solid #d3d7d9;
  border-width: 1px 0;
  padding-block: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--logos {
    padding-block: 2rem;
  }
}
.swiper--logos .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 10rem;
  height: 5rem;
  padding: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--logos .swiper-slide {
    width: 12rem;
    height: 6.25rem;
    padding: 1.25rem;
  }
}
.swiper--logos .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.swiper--c-logos {
  margin-bottom: 2rem;
  overflow: visible;
}
.section:has(.swiper--c-logos) {
  overflow-x: clip;
}
.swiper--c-logos .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  max-width: 25.5rem;
  padding: 3rem 1.5rem;
  background: var(--color-white);
  border-radius: 0.5rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--c-logos .swiper-slide {
    padding: 4rem 2rem;
  }
}
.swiper--c-logos .swiper-slide img {
  display: block;
  width: auto;
  height: 3.25rem;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
.swiper--c-logos .swiper-navigation {
  margin-top: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--c-logos .swiper-navigation {
    margin-top: 3.75rem;
  }
}

.swiper--references .card--gallery {
  height: 16.5rem;
}
@media print, screen and (min-width: 40em) {
  .swiper--references .card--gallery {
    height: 100%;
  }
}
.swiper--references .card--gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper--references .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  width: 8.25rem;
  height: 3.5rem;
  margin: 0 auto;
  border-radius: 45px;
  background: var(--color-white);
  color: var(--color-black);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
}
@media print, screen and (min-width: 40em) {
  .swiper--references .swiper-pagination {
    right: 2rem;
    left: auto;
  }
}
.swiper--references .swiper-pagination-current,
.swiper--references .swiper-pagination-total {
  width: 1em;
}
.swiper--references .swiper-button {
  width: 1.875rem;
  height: 1.875rem;
  z-index: 11;
  bottom: 2.8125rem;
  background: transparent;
  color: var(--color-black);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media print, screen and (min-width: 40em) {
  .swiper--references .swiper-button {
    -webkit-transform: none;
            transform: none;
  }
}
.swiper--references .swiper-button:hover {
  background: transparent;
}
.swiper--references .swiper-button-next {
  margin-left: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .swiper--references .swiper-button-next {
    margin-left: 0;
    left: auto;
    right: 2.75rem;
  }
}
.swiper--references .swiper-button-prev {
  margin-left: -2.5rem;
}
@media print, screen and (min-width: 40em) {
  .swiper--references .swiper-button-prev {
    margin-left: 0;
    left: auto;
    right: 7.625rem;
  }
}

.swiper--steps {
  overflow: visible;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--steps {
    margin-bottom: 4.5rem;
  }
}
.swiper--steps .swiper-wrapper {
  counter-reset: list-number;
}
.section:has(.swiper--steps) {
  overflow-x: clip;
}
.swiper--steps .swiper-slide {
  width: 80%;
  max-width: 39rem;
  height: auto;
}

.swiper--history {
  overflow: visible;
}
.section:has(.swiper--history) {
  overflow-x: clip;
}
.swiper--history .swiper-wrapper {
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .swiper--history .swiper-wrapper {
    margin-bottom: 3.75rem;
  }
}
.swiper--history .swiper-slide {
  width: 80%;
  max-width: 12rem;
  height: auto;
}

.section {
  padding-block: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .section {
    padding-block: 3.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section {
    padding-block: 4.5rem;
  }
}
.section--big {
  padding-block: 3.75rem;
}
@media print, screen and (min-width: 40em) {
  .section--big {
    padding-block: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section--big {
    padding-block: 7.5rem;
  }
}
.section--boxed {
  width: calc(100% - 2rem);
  max-width: var(--container-width-2);
  margin-inline: auto;
  border-radius: var(--global-radius-2);
  overflow: hidden;
}
@media print, screen and (min-width: 64em) {
  .section--boxed {
    width: calc(100% - 3rem);
  }
}
.section .medium-auto-fit {
  row-gap: 2.5rem;
}
.section .medium-auto-fit p {
  max-width: 32em;
}
.section .cell--bg-sign {
  position: relative;
  margin-bottom: -2.5rem;
}
@media print, screen and (min-width: 40em) {
  .section .cell--bg-sign {
    margin-bottom: -3.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section .cell--bg-sign {
    margin-bottom: -4.5rem;
  }
}
.section .cell--bg-sign img {
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  width: auto !important;
  height: 100%;
  max-width: none;
}
.section:has(.cell--bg-sign) {
  overflow-x: clip;
}

.section__headline {
  -webkit-margin-after: 2.5rem;
          margin-block-end: 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .section__headline {
    -webkit-margin-after: 3.75rem;
            margin-block-end: 3.75rem;
  }
}
.section__headline h2:not(.small-headline):not(.is-style-small-headline),
.section__headline .h2,
.section__headline .is-style-h2 {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64em) {
  .section__headline h2:not(.small-headline):not(.is-style-small-headline),
  .section__headline .h2,
  .section__headline .is-style-h2 {
    margin-bottom: 2.5rem;
  }
}
.section__headline h2:last-child,
.section__headline .h2:last-child,
.section__headline h3:last-child,
.section__headline .h3:last-child {
  margin-bottom: 0;
}
.section__headline p {
  max-width: 42em;
}
.section__headline.text-center p, .section__headline.has-text-align-center p {
  margin-inline: auto;
}
.section__headline.text-right p, .section__headline.has-text-align-right p {
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 1.75rem;
  border-radius: var(--global-radius-2);
  overflow: clip;
  background: var(--color-light-gray);
  -webkit-transition: background var(--global-transition), color var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition), box-shadow var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition), box-shadow var(--global-transition), -webkit-box-shadow var(--global-transition);
}
@media print, screen and (min-width: 64em) {
  .card {
    padding: 2rem;
  }
}
a.card {
  text-decoration: none;
}

.card h2 + *,
.card h3 + *,
.card .headline + *,
.card .stat + * {
  margin-top: auto;
}
.card img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media print, screen and (min-width: 40em) {
  .card .btn:not(.expanded) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.card hr {
  width: 100%;
}
.card--stat p:not([class]) {
  font-size: clamp(1.125rem, 1.5625vw + 0.5rem, 1.5rem);
  font-weight: 500;
  line-height: 112%;
  max-width: 14em;
  text-wrap: balance;
}
.card--stat .stat {
  margin-bottom: 1.2em;
}
.card--service {
  background: var(--color-light-gray);
  color: var(--color-black);
  gap: 1.5rem;
  text-decoration: none;
  aspect-ratio: 1;
}
a.card--service:hover, a.card--service:focus {
  background: var(--color-gray);
  color: var(--color-white);
}

.card--service .icon {
  -webkit-transition: color var(--global-transition);
  transition: color var(--global-transition);
}
.card--service h3 {
  font-family: var(--font-family-body);
  line-height: 1.4;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1.5rem;
  color: inherit;
}
.card--service h3 + * {
  margin-top: 0;
}
.card--service p {
  text-wrap: balance;
  margin-bottom: 0;
}
.card--service img {
  height: 3.75rem;
  width: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.card--service-2 {
  background: var(--color-light-gray);
  color: var(--color-black);
  text-decoration: none;
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.card--service-2:hover, .card--service-2:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
.card--service-2:hover.has-dot::before, .card--service-2:focus.has-dot::before {
  background: var(--color-white);
}
.card--service-2:hover .btn, .card--service-2:focus .btn {
  background: var(--color-white);
  color: var(--color-black);
}
.card--service-2 h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.card--service-2 p {
  text-wrap: balance;
  margin-bottom: 1rem;
  margin-top: 0;
}
.card--service-2 .btn {
  margin-top: auto;
}
.card--service-3 {
  background: var(--color-light-gray);
  color: var(--color-black);
  gap: 1.5rem;
  text-decoration: none;
  -webkit-transition: background var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: background var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: background var(--global-transition), box-shadow var(--global-transition);
  transition: background var(--global-transition), box-shadow var(--global-transition), -webkit-box-shadow var(--global-transition);
}
a.card--service-3:hover, a.card--service-3:focus {
  background: var(--color-primary);
  color: var(--color-white);
}
a.card--service-3:hover.has-dot::before, a.card--service-3:focus.has-dot::before {
  background: var(--color-white);
}
a.card--service-3:hover .icon, a.card--service-3:focus .icon {
  color: var(--color-white);
}

.card--service-3 .image {
  margin-bottom: 0.5rem;
  height: 11.25rem;
  width: 100%;
  overflow: hidden;
}
@media print, screen and (min-width: 64em) {
  .card--service-3 .image {
    height: 15.625rem;
  }
}
.card--service-3 .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media print, screen and (min-width: 64em) {
  .card--service-3 .image img {
    -o-object-position: center;
       object-position: center;
  }
}
.card--service-3 h3 {
  font-weight: 600;
  margin-bottom: 0;
  color: inherit;
  font-family: var(--font-family-body);
  font-weight: 500;
}
.card--service-3 p {
  text-wrap: balance;
  margin-bottom: 0.5rem;
}
.card--service-4 {
  background: var(--color-gray);
  color: var(--color-white);
  min-height: 20rem;
  padding: 0;
  text-decoration: none;
  position: relative;
  -webkit-transition: -webkit-transform var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: -webkit-transform var(--global-transition), -webkit-box-shadow var(--global-transition);
  transition: transform var(--global-transition), box-shadow var(--global-transition);
  transition: transform var(--global-transition), box-shadow var(--global-transition), -webkit-transform var(--global-transition), -webkit-box-shadow var(--global-transition);
}
@media print, screen and (min-width: 40em) {
  .card--service-4 {
    min-height: 23.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .card--service-4 {
    min-height: 28.125rem;
  }
}
a.card--service-4:hover, a.card--service-4:focus {
  -webkit-transform: translateY(-0.25rem);
          transform: translateY(-0.25rem);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.card--service-4 .image {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.card--service-4 .image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(24.89%, rgba(0, 0, 0, 0)), color-stop(88.62%, #000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 24.89%, #000 88.62%);
}
.card--service-4 .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card--service-4 .inner {
  position: relative;
  height: 100%;
  padding: 2rem;
  gap: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.card--service-4 .tags {
  margin-bottom: 0;
}
.card--service-4 .tag {
  padding: 0.375rem 0.75rem;
}
.card--service-4 h3 {
  margin-top: auto;
  margin-bottom: 0;
  color: inherit;
  font-family: var(--font-family-header);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1;
}
.card--service-4 .more {
  margin-top: 0;
  text-decoration: underline;
  font-size: 0.9375rem;
}
.card--service-4 .more:hover {
  text-decoration: none;
}
.card--service-4 p {
  text-wrap: balance;
  margin-bottom: 0.5rem;
}
@media print, screen and (max-width: 39.99875em) {
  .card--sector {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 40em) {
  .card--sector {
    min-height: 12.5rem;
  }
}
.card--sector:hover .circle-icon, .card--sector:focus .circle-icon {
  background: var(--color-black);
  color: var(--color-white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.card--sector h3 {
  font-family: var(--font-family-header);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--color-black);
}
@media print, screen and (max-width: 39.99875em) {
  .card--sector h3 {
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .card--sector .circle-icon {
    margin: 0;
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .card--partner {
    aspect-ratio: 1;
  }
}
.card--partner img {
  height: 4.5rem;
  width: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-bottom: 1.25rem;
}
@media print, screen and (min-width: 64em) {
  .card--partner img {
    margin-bottom: 1.5rem;
  }
}
.card--partner h3 {
  text-wrap: balance;
  margin-bottom: 2.5rem;
  max-width: 16em;
}
@media print, screen and (min-width: 64em) {
  .card--partner h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 63.99875em) {
  .card--partner h3 br {
    display: none !important;
  }
}
.card--partner p {
  text-wrap: balance;
  margin-bottom: 2.5rem;
  max-width: 27em;
}
@media print, screen and (min-width: 40em) {
  .card--partner p {
    margin-bottom: 3.75rem;
  }
}
.card--partner p:last-child {
  margin-bottom: 0;
}
.card--gallery {
  padding: 0;
}
.card--job {
  background: var(--color-white);
  color: var(--color-black);
}
.card--job:hover, .card--job:focus {
  background: var(--color-light-gray);
}
.card--job:hover .circle-icon, .card--job:focus .circle-icon {
  background: var(--color-black);
  color: var(--color-white);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.card--job:hover hr, .card--job:focus hr {
  background: var(--color-black);
}
.card--job:hover .meta, .card--job:focus .meta {
  color: var(--color-black);
}
.card--job:hover .tag:not(.bg-black), .card--job:focus .tag:not(.bg-black) {
  background: var(--color-white);
}
.card--job h3 {
  font-size: 0.9375rem;
  font-family: var(--font-family-body);
  line-height: 1.3333;
  margin-bottom: auto;
  color: var(--color-black);
}
@media print, screen and (min-width: 64em) {
  .card--job h3 {
    font-size: 1.125rem;
  }
}
.card--job hr {
  margin-block: 1.75rem 1.5rem;
  border-color: var(--color-light-gray);
}
.card--job .meta {
  margin-bottom: 3rem;
  -webkit-transition: color var(--global-transition);
  transition: color var(--global-transition);
}
.bg-gray .card--job h3 {
  color: var(--color-black);
}
@media print, screen and (min-width: 40em) {
  .card--step {
    min-height: 20rem;
  }
}
.card--step h2,
.card--step h3 {
  padding-right: 3.75rem;
  margin-bottom: 2rem;
  max-width: 22em;
  text-wrap: balance;
}
.card--step p {
  text-wrap: balance;
  max-width: 32em;
}
.card--step::before {
  content: counter(list-number, decimal-leading-zero);
  counter-increment: list-number;
  position: absolute;
  right: 2rem;
  top: 2rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.0625rem;
}
@media print, screen and (min-width: 64em) {
  .card--step::before {
    right: 2.5rem;
    top: 2.5rem;
  }
}
.card--history {
  padding: 1.5rem;
  background: var(--color-white);
}
.card--history::before {
  margin-bottom: 2.5rem;
}
.card--history h3 {
  margin-bottom: 1rem;
  color: var(--color-black) !important;
}
.card--history p {
  color: var(--color-gray);
}
.card--basic {
  gap: 1.5rem;
}
.card--basic.has-dot::before {
  margin: 0 !important;
}
.card--basic h3 {
  margin-bottom: -0.5rem;
}
.card--basic p {
  margin: 0;
}
.card--basic .btn {
  margin-top: auto;
}
@media screen and (min-width: 80em) {
  .card--form {
    padding: 4.5rem;
  }
}
.card--form > h2 {
  font-size: 1.5rem;
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .card--form > h2 {
    font-size: 1.75rem;
    -webkit-margin-after: 2rem;
            margin-block-end: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .card--form > h2 {
    -webkit-margin-after: 2.5rem;
            margin-block-end: 2.5rem;
    font-size: 2rem;
  }
}
.card--form hr {
  background: #d8dadc;
}
.card--form:has(.gform_confirmation_wrapper) {
  padding: 0;
  background: none;
}
.card--form:has(.gform_confirmation_wrapper) > h2 {
  display: none;
}
@media screen and (min-width: 80em) {
  .card--login {
    padding: 3.5rem 4.5rem;
  }
}
.card.has-dot::before {
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.75rem;
          flex: 0 0 0.75rem;
  margin-bottom: 1.75rem;
  background: var(--color-primary);
  -webkit-transition: background var(--global-transition);
  transition: background var(--global-transition);
}
.card.has-dot[class*=bg-]::before {
  background: currentColor;
}
.card.has-secondary-hover:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

.img-banner {
  position: relative;
  border-radius: var(--global-radius-2);
  overflow: clip;
  background: var(--color-gray);
}
@media print, screen and (min-width: 40em) {
  .img-banner {
    height: 30rem;
  }
}
@media print, screen and (min-width: 64em) {
  .img-banner {
    height: 35rem;
  }
}
.img-banner__img {
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .img-banner__img {
    position: static;
  }
}
.img-banner__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(36, 53, 63, 0)), to(#24353f));
  background: linear-gradient(180deg, rgba(36, 53, 63, 0) 50%, #24353f 100%);
}
@media print, screen and (min-width: 40em) {
  .img-banner__img::before {
    background: -webkit-gradient(linear, right top, left top, color-stop(34.93%, rgba(35, 52, 64, 0)), color-stop(65.58%, #233440)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(35, 52, 64, 0)), to(rgba(35, 52, 64, 0.72)));
    background: linear-gradient(270deg, rgba(35, 52, 64, 0) 34.93%, #233440 65.58%), linear-gradient(180deg, rgba(35, 52, 64, 0) 50%, rgba(35, 52, 64, 0.72) 100%);
  }
}
.img-banner__img img {
  display: block;
}
@media print, screen and (min-width: 40em) {
  .img-banner__img img {
    max-width: none;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
  }
}
.img-banner__logo {
  display: block;
  position: absolute;
  z-index: 2;
  top: 1.75rem;
  left: 1.75rem;
}
@media print, screen and (min-width: 40em) {
  .img-banner__logo {
    top: auto;
    left: auto;
    right: 2.5rem;
    bottom: 2.5rem;
  }
}
.img-banner__content {
  color: var(--color-white);
  position: relative;
  height: 100%;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  padding: 2rem 1.75rem 1.75rem 1.75rem;
}
@media print, screen and (min-width: 40em) {
  .img-banner__content {
    padding-top: 1.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .img-banner__content {
    padding-inline: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .img-banner .cell {
    grid-column: 2/span 5;
  }
}
.img-banner h2 {
  text-wrap: balance;
  font-size: clamp(2rem, 2.25vw + 1rem, 2.5rem);
  margin-bottom: calc(1.5rem + 0.2272727273em);
  color: inherit;
}
.img-banner p {
  text-wrap: balance;
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .img-banner p {
    margin-bottom: 3.75rem;
  }
}
@media screen and (max-width: 63.99875em) {
  .img-banner p br {
    display: none !important;
  }
}

.tags,
.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 0.375rem;
  padding: 0;
  list-style: none;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .tags,
  .meta {
    margin-bottom: 1.75rem;
  }
}

.meta {
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  color: var(--color-gray);
}
.meta li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.25rem;
}
.meta .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.25rem;
          flex: 0 0 1.25rem;
}

.tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.125rem 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  border-radius: 2px;
  background: var(--color-light-gray);
  color: var(--color-black);
  -webkit-transition: background var(--global-transition), color var(--global-transition);
  transition: background var(--global-transition), color var(--global-transition);
}
a.tag {
  cursor: pointer;
  text-decoration: none;
}
a.tag:hover, a.tag:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.tag.active {
  background: var(--color-black);
  color: var(--color-white);
}
.tag.primary {
  background: var(--color-primary);
  color: var(--color-white);
}
a.tag.primary:hover, a.tag.primary:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

.articles {
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 64em) {
  .articles {
    margin-bottom: 3.5rem;
  }
}

.article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 1rem;
  margin-bottom: 2rem;
  color: inherit;
  text-decoration: none;
  -webkit-transition: border-color var(--global-transition);
  transition: border-color var(--global-transition);
}
@media print, screen and (min-width: 64em) {
  .article {
    grid-template-columns: repeat(8, 1fr);
    padding-bottom: 2rem;
    border-bottom: 1px solid #d3d7d9;
  }
}
@media print, screen and (min-width: 64em) {
  .article {
    gap: 1.5rem;
  }
}
.article:hover, .article:focus {
  border-color: var(--color-black);
}
.article:hover h3, .article:focus h3 {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}
.article:hover img, .article:focus img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.article__img {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.25rem;
  height: 13.75rem;
}
@media print, screen and (min-width: 64em) {
  .article__img {
    grid-column: span 3;
  }
}
.article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform var(--global-transition);
  transition: -webkit-transform var(--global-transition);
  transition: transform var(--global-transition);
  transition: transform var(--global-transition), -webkit-transform var(--global-transition);
}
.article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 1.25rem;
}
@media print, screen and (min-width: 64em) {
  .article__content {
    grid-column: span 5;
  }
}
.article h3 {
  line-height: 1;
  margin-bottom: 0;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: color var(--global-transition), -webkit-text-decoration var(--global-transition);
  transition: color var(--global-transition), -webkit-text-decoration var(--global-transition);
  transition: color var(--global-transition), text-decoration var(--global-transition);
  transition: color var(--global-transition), text-decoration var(--global-transition), -webkit-text-decoration var(--global-transition);
}
.article p {
  margin-bottom: 0;
  text-wrap: balance;
  opacity: 0.72;
}
.article .tags {
  margin-block: auto 0;
}
.article--small {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-block: 0.75rem;
  border-bottom: 1px solid #E5E7E8;
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .article--small {
    grid-template-columns: 9rem 1fr;
    padding-block: 1rem;
  }
}
.article--small:hover, .article--small:focus {
  border-color: var(--color-black);
}
.article--small:hover .icon-arrow, .article--small:focus .icon-arrow {
  color: var(--color-primary);
}
.article--small .article__img {
  height: 6rem;
  grid-column: span 1;
}
.article--small .article__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform var(--global-transition);
  transition: -webkit-transform var(--global-transition);
  transition: transform var(--global-transition);
  transition: transform var(--global-transition), -webkit-transform var(--global-transition);
}
.article--small .article__content {
  gap: 0.75rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-column: span 1;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .article--small .article__content {
    padding-right: 4.375rem;
  }
}
.article--small h3 {
  font-family: var(--font-family-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-wrap: balance;
}
.article--small .tags {
  font-size: 0.9375rem;
  line-height: 1.2;
  margin: 0;
}
.article--small .tags li:has(+ li)::after {
  content: ", ";
}
.article--small .icon {
  font-size: 1.5rem;
  -webkit-transition: color var(--global-transition);
  transition: color var(--global-transition);
}
@media print, screen and (min-width: 64em) {
  .article--small .icon {
    font-size: 1.875rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.cell--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 2rem;
}
@media print, screen and (min-width: 64em) {
  .cell--content {
    gap: 2.5rem;
  }
}
.cell--content * {
  margin: 0;
}
.cell--content p {
  text-wrap: balance;
}
.cell--content .btn:not(.expanded) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.cell--content h2:not(.small-headline):not(.is-style-small-headline):first-child,
.cell--content .is-style-h2:first-child {
  margin-top: -0.15em;
}
.cell--content img,
.cell--content .wp-block-image {
  border-radius: var(--global-radius);
}
.cell--content img:last-child:not(:only-child),
.cell--content .wp-block-image:last-child:not(:only-child) {
  margin-top: auto;
}

.cell--media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--global-radius-2);
}
@media print, screen and (min-width: 40em) {
  .cell--media + .cell--content {
    padding-left: 1.875rem;
  }
}

@media print, screen and (min-width: 40em) {
  .features-grid {
    grid-template-columns: repeat(24, 1fr);
  }
}
.features-grid .cell {
  grid-column: span 12;
}
@media screen and (min-width: 30em) {
  .features-grid .cell {
    grid-column: span 6;
  }
}
@media print, screen and (min-width: 40em) {
  .features-grid .cell {
    grid-column: span 8;
  }
}
@media print, screen and (min-width: 64em) {
  .features-grid .cell {
    grid-column: span 6;
  }
}
.features-grid .cell:first-child {
  grid-column: span 12;
}
@media print, screen and (min-width: 40em) {
  .features-grid .cell:first-child {
    grid-column: span 8;
    grid-row: span 2;
  }
}
@media print, screen and (min-width: 64em) {
  .features-grid .cell:first-child {
    grid-column: span 12;
    grid-row: span 2;
  }
}
@media print, screen and (min-width: 64em) {
  .features-grid .cell--media img {
    border-radius: 10px;
  }
}
.features-grid .icon {
  margin-bottom: 1.25rem;
}
.features-grid .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 30em) {
  .features-grid .card {
    aspect-ratio: 1;
  }
}
.features-grid p {
  text-wrap: balance;
  line-height: 1.24;
  font-weight: 500;
}
@media print, screen and (min-width: 40em) {
  .features-grid p {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  .features-grid p {
    font-size: 1.125rem;
  }
}

@media print, screen and (min-width: 40em) {
  .services-grid {
    grid-template-columns: repeat(24, 1fr);
  }
}
.services-grid .cell {
  grid-column: span 12;
}
@media screen and (min-width: 30em) {
  .services-grid .cell {
    grid-column: span 6;
  }
}
@media print, screen and (min-width: 40em) {
  .services-grid .cell {
    grid-column: span 16;
  }
}
@media print, screen and (min-width: 64em) {
  .services-grid .cell {
    grid-column: span 12;
  }
}
.services-grid .cell:first-child {
  grid-column: span 12;
}
@media print, screen and (min-width: 40em) {
  .services-grid .cell:first-child {
    grid-column: span 8;
    grid-row: span 2;
  }
}
@media print, screen and (min-width: 64em) {
  .services-grid .cell:first-child {
    grid-column: span 12;
    grid-row: span 2;
  }
}
@media print, screen and (min-width: 64em) {
  .services-grid .cell--media img {
    border-radius: 10px;
  }
}

.media-content {
  row-gap: 2.5rem;
}

.bordered-content {
  padding-block: 3.3125rem;
  border: 1px solid #D3D7D9;
  border-width: 1px 0;
}
.bordered-content + .bordered-content {
  border-top: none;
}
.bordered-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}
.bordered-content h2, .bordered-content h3, .bordered-content p {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .bordered-content h2, .bordered-content h3, .bordered-content p {
    margin-bottom: 2rem;
  }
}
.bordered-content h2:last-child, .bordered-content h3:last-child, .bordered-content p:last-child {
  margin-bottom: 0;
}
.bordered-content p {
  max-width: 34em;
  text-wrap: balance;
}

.page-content:has(.section--article:first-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: var(--top-bar-height-mobile);
  background: var(--color-gray);
}
@media print, screen and (min-width: 64em) {
  .page-content:has(.section--article:first-child)::before {
    height: var(--top-bar-height-desktop);
  }
}

.job-detail, .gform_confirmation_message,
.article-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 1rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail, .gform_confirmation_message,
  .article-detail {
    grid-template-columns: repeat(12, 1fr);
    gap: 0 1rem;
  }
  .job-detail > *, .gform_confirmation_message > *,
  .article-detail > * {
    grid-column: 2/span 10;
  }
  .job-detail .article__thumb, .gform_confirmation_message .article__thumb,
  .job-detail .wp-block-embed,
  .gform_confirmation_message .wp-block-embed,
  .job-detail .wp-block-gallery,
  .gform_confirmation_message .wp-block-gallery,
  .article-detail .article__thumb,
  .article-detail .wp-block-embed,
  .article-detail .wp-block-gallery {
    grid-column: 1/span 12;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail, .gform_confirmation_message,
  .article-detail {
    gap: 0 1.5rem;
  }
  .job-detail > *, .gform_confirmation_message > *,
  .article-detail > * {
    grid-column: 3/span 8;
  }
  .job-detail .article__thumb, .gform_confirmation_message .article__thumb,
  .job-detail .wp-block-embed,
  .gform_confirmation_message .wp-block-embed,
  .job-detail .wp-block-gallery,
  .gform_confirmation_message .wp-block-gallery,
  .article-detail .article__thumb,
  .article-detail .wp-block-embed,
  .article-detail .wp-block-gallery {
    grid-column: 2/span 10;
  }
}
@media screen and (min-width: 80em) {
  .job-detail > *, .gform_confirmation_message > *,
  .article-detail > * {
    grid-column: 4/span 6;
  }
  .job-detail .article__thumb, .gform_confirmation_message .article__thumb,
  .job-detail .wp-block-embed,
  .gform_confirmation_message .wp-block-embed,
  .job-detail .wp-block-gallery,
  .gform_confirmation_message .wp-block-gallery,
  .article-detail .article__thumb,
  .article-detail .wp-block-embed,
  .article-detail .wp-block-gallery {
    grid-column: 3/span 8;
  }
}
.job-detail .article__thumb, .gform_confirmation_message .article__thumb,
.article-detail .article__thumb {
  width: calc(100% + 3rem);
  max-width: none;
  margin-left: -1.5rem;
  margin-bottom: 2.75rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail .article__thumb, .gform_confirmation_message .article__thumb,
  .article-detail .article__thumb {
    width: 100%;
    margin-left: 0;
    margin-bottom: 3.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail .article__thumb, .gform_confirmation_message .article__thumb,
  .article-detail .article__thumb {
    margin-bottom: 3.75rem;
  }
}
.job-detail .article__thumb img, .gform_confirmation_message .article__thumb img,
.article-detail .article__thumb img {
  display: block;
  aspect-ratio: 840/530;
  -o-object-fit: cover;
     object-fit: cover;
  margin-inline: auto;
}
.job-detail img, .gform_confirmation_message img,
.job-detail iframe,
.gform_confirmation_message iframe,
.article-detail img,
.article-detail iframe {
  border-radius: 0.25rem;
}
.job-detail ul, .gform_confirmation_message ul, .job-detail ol, .gform_confirmation_message ol,
.article-detail ul,
.article-detail ol {
  -webkit-margin-after: 1.5rem;
          margin-block-end: 1.5rem;
}
.job-detail ul li::marker, .gform_confirmation_message ul li::marker, .job-detail ol li::marker, .gform_confirmation_message ol li::marker,
.article-detail ul li::marker,
.article-detail ol li::marker {
  color: var(--color-primary);
}
.job-detail ul li + li, .gform_confirmation_message ul li + li, .job-detail ol li + li, .gform_confirmation_message ol li + li,
.article-detail ul li + li,
.article-detail ol li + li {
  margin-top: 0.5em;
}
.job-detail ul ol, .gform_confirmation_message ul ol, .job-detail ul ul, .gform_confirmation_message ul ul, .job-detail ol ol, .gform_confirmation_message ol ol, .job-detail ol ul, .gform_confirmation_message ol ul,
.article-detail ul ol,
.article-detail ul ul,
.article-detail ol ol,
.article-detail ol ul {
  -webkit-margin-before: 0.75em;
          margin-block-start: 0.75em;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.job-detail ul:not(.has-link-color) a:not([class]), .gform_confirmation_message ul:not(.has-link-color) a:not([class]), .job-detail ol:not(.has-link-color) a:not([class]), .gform_confirmation_message ol:not(.has-link-color) a:not([class]),
.article-detail ul:not(.has-link-color) a:not([class]),
.article-detail ol:not(.has-link-color) a:not([class]) {
  color: var(--color-primary);
}
.job-detail ul p, .gform_confirmation_message ul p, .job-detail ol p, .gform_confirmation_message ol p,
.article-detail ul p,
.article-detail ol p {
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.job-detail ul.is-style-bordered-list li + li, .gform_confirmation_message ul.is-style-bordered-list li + li, .job-detail ol.is-style-bordered-list li + li, .gform_confirmation_message ol.is-style-bordered-list li + li,
.article-detail ul.is-style-bordered-list li + li,
.article-detail ol.is-style-bordered-list li + li {
  margin-top: 0;
}
.job-detail .tags, .gform_confirmation_message .tags,
.article-detail .tags {
  margin: 0 0 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail .tags, .gform_confirmation_message .tags,
  .article-detail .tags {
    margin-block: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail .tags, .gform_confirmation_message .tags,
  .article-detail .tags {
    margin-block: 2.5rem;
  }
}
.job-detail .tags li + li, .gform_confirmation_message .tags li + li,
.article-detail .tags li + li {
  margin-top: 0;
}
.job-detail h1, .gform_confirmation_message h1,
.article-detail h1 {
  margin-bottom: 1em;
}
.job-detail .h1, .gform_confirmation_message .h1, .job-detail .is-style-h1, .gform_confirmation_message .is-style-h1,
.job-detail h2,
.gform_confirmation_message h2, .job-detail .h2, .gform_confirmation_message .h2, .job-detail .is-style-h2, .gform_confirmation_message .is-style-h2,
.job-detail h3,
.gform_confirmation_message h3, .job-detail .h3, .gform_confirmation_message .h3, .job-detail .is-style-h3, .gform_confirmation_message .is-style-h3,
.job-detail h4,
.gform_confirmation_message h4, .job-detail .h4, .gform_confirmation_message .h4, .job-detail .is-style-h4, .gform_confirmation_message .is-style-h4,
.job-detail h5,
.gform_confirmation_message h5, .job-detail .h5, .gform_confirmation_message .h5, .job-detail .is-style-h5, .gform_confirmation_message .is-style-h5,
.job-detail h6,
.gform_confirmation_message h6,
.article-detail .h1,
.article-detail .is-style-h1,
.article-detail h2,
.article-detail .h2,
.article-detail .is-style-h2,
.article-detail h3,
.article-detail .h3,
.article-detail .is-style-h3,
.article-detail h4,
.article-detail .h4,
.article-detail .is-style-h4,
.article-detail h5,
.article-detail .h5,
.article-detail .is-style-h5,
.article-detail h6 {
  line-height: 1.16;
  margin-top: calc(2em - 1.25rem);
  margin-bottom: 1em;
}
.job-detail h2, .gform_confirmation_message h2,
.job-detail .h2,
.gform_confirmation_message .h2,
.job-detail .is-style-h2,
.gform_confirmation_message .is-style-h2,
.article-detail h2,
.article-detail .h2,
.article-detail .is-style-h2 {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail h2, .gform_confirmation_message h2,
  .job-detail .h2,
  .gform_confirmation_message .h2,
  .job-detail .is-style-h2,
  .gform_confirmation_message .is-style-h2,
  .article-detail h2,
  .article-detail .h2,
  .article-detail .is-style-h2 {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail h2, .gform_confirmation_message h2,
  .job-detail .h2,
  .gform_confirmation_message .h2,
  .job-detail .is-style-h2,
  .gform_confirmation_message .is-style-h2,
  .article-detail h2,
  .article-detail .h2,
  .article-detail .is-style-h2 {
    font-size: 2rem;
  }
}
.job-detail h3, .gform_confirmation_message h3,
.job-detail .h3,
.gform_confirmation_message .h3,
.job-detail .is-style-h3,
.gform_confirmation_message .is-style-h3,
.article-detail h3,
.article-detail .h3,
.article-detail .is-style-h3 {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail h3, .gform_confirmation_message h3,
  .job-detail .h3,
  .gform_confirmation_message .h3,
  .job-detail .is-style-h3,
  .gform_confirmation_message .is-style-h3,
  .article-detail h3,
  .article-detail .h3,
  .article-detail .is-style-h3 {
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail h3, .gform_confirmation_message h3,
  .job-detail .h3,
  .gform_confirmation_message .h3,
  .job-detail .is-style-h3,
  .gform_confirmation_message .is-style-h3,
  .article-detail h3,
  .article-detail .h3,
  .article-detail .is-style-h3 {
    font-size: 1.5rem;
  }
}
.job-detail h4, .gform_confirmation_message h4,
.job-detail .h4,
.gform_confirmation_message .h4,
.job-detail .is-style-h4,
.gform_confirmation_message .is-style-h4,
.article-detail h4,
.article-detail .h4,
.article-detail .is-style-h4 {
  font-size: 1rem;
}
@media print, screen and (min-width: 40em) {
  .job-detail h4, .gform_confirmation_message h4,
  .job-detail .h4,
  .gform_confirmation_message .h4,
  .job-detail .is-style-h4,
  .gform_confirmation_message .is-style-h4,
  .article-detail h4,
  .article-detail .h4,
  .article-detail .is-style-h4 {
    font-size: 1.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .job-detail h4, .gform_confirmation_message h4,
  .job-detail .h4,
  .gform_confirmation_message .h4,
  .job-detail .is-style-h4,
  .gform_confirmation_message .is-style-h4,
  .article-detail h4,
  .article-detail .h4,
  .article-detail .is-style-h4 {
    font-size: 1.25rem;
  }
}
.job-detail .small-headline, .gform_confirmation_message .small-headline,
.job-detail .is-style-small-headline,
.gform_confirmation_message .is-style-small-headline,
.article-detail .small-headline,
.article-detail .is-style-small-headline {
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 600;
  color: inherit;
  text-transform: none;
}
.job-detail .small-headline::before, .gform_confirmation_message .small-headline::before,
.job-detail .is-style-small-headline::before,
.gform_confirmation_message .is-style-small-headline::before,
.article-detail .small-headline::before,
.article-detail .is-style-small-headline::before {
  color: var(--color-primary);
}
.bg-primary .job-detail .small-headline::before, .bg-primary .gform_confirmation_message .small-headline::before, .bg-secondary .job-detail .small-headline::before, .bg-secondary .gform_confirmation_message .small-headline::before,
.bg-primary .job-detail .is-style-small-headline::before,
.bg-primary .gform_confirmation_message .is-style-small-headline::before,
.bg-secondary .job-detail .is-style-small-headline::before,
.bg-secondary .gform_confirmation_message .is-style-small-headline::before,
.bg-primary .article-detail .small-headline::before,
.bg-secondary .article-detail .small-headline::before,
.bg-primary .article-detail .is-style-small-headline::before,
.bg-secondary .article-detail .is-style-small-headline::before {
  color: var(--color-white);
}
.job-detail > .small-headline, .gform_confirmation_message > .small-headline, .job-detail > .is-style-small-headline, .gform_confirmation_message > .is-style-small-headline,
.article-detail > .small-headline,
.article-detail > .is-style-small-headline {
  margin-bottom: 0;
}
.job-detail > .btn, .gform_confirmation_message > .btn,
.article-detail > .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.job-detail .wp-block-pullquote, .gform_confirmation_message .wp-block-pullquote,
.job-detail .wp-block-quote,
.gform_confirmation_message .wp-block-quote,
.article-detail .wp-block-pullquote,
.article-detail .wp-block-quote {
  display: block;
  position: relative;
  background: var(--color-gray);
  color: var(--color-white);
  border-radius: var(--global-radius-2);
  padding: 1.75rem 2rem 2.5rem;
  margin-block: 1.5rem 2.5rem;
}
@media print, screen and (min-width: 64em) {
  .job-detail .wp-block-pullquote, .gform_confirmation_message .wp-block-pullquote,
  .job-detail .wp-block-quote,
  .gform_confirmation_message .wp-block-quote,
  .article-detail .wp-block-pullquote,
  .article-detail .wp-block-quote {
    padding: 2rem 3.25rem 3rem;
    margin-block: 2.25rem 3.25rem;
  }
}
.job-detail .wp-block-pullquote::before, .gform_confirmation_message .wp-block-pullquote::before,
.job-detail .wp-block-quote::before,
.gform_confirmation_message .wp-block-quote::before,
.article-detail .wp-block-pullquote::before,
.article-detail .wp-block-quote::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' fill='none'%3E%3Cmask id='a' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='28' height='28'%3E%3Cpath fill='%23D9D9D9' d='M0 0h28v28H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath d='m6.287 21.216 2.76-4.778c-1.297-.037-2.395-.52-3.292-1.45-.898-.931-1.347-2.038-1.347-3.321 0-1.325.469-2.455 1.406-3.39.937-.935 2.068-1.402 3.394-1.402 1.325 0 2.455.467 3.39 1.402.934.935 1.402 2.065 1.402 3.39 0 .447-.053.861-.157 1.243-.105.381-.26.745-.464 1.09l-4.15 7.216H6.286Zm10.758 0 2.753-4.778c-1.297-.037-2.393-.52-3.289-1.45-.895-.931-1.343-2.038-1.343-3.321 0-1.325.468-2.455 1.403-3.39.934-.935 2.064-1.402 3.39-1.402 1.325 0 2.456.467 3.393 1.402.937.935 1.406 2.065 1.406 3.39 0 .447-.052.861-.157 1.243-.105.381-.26.745-.464 1.09l-4.158 7.216h-2.934Z' fill='%23E2001A'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 1.5rem;
}
.job-detail .wp-block-pullquote p, .gform_confirmation_message .wp-block-pullquote p, .job-detail .wp-block-pullquote ul, .gform_confirmation_message .wp-block-pullquote ul, .job-detail .wp-block-pullquote ol, .gform_confirmation_message .wp-block-pullquote ol,
.job-detail .wp-block-quote p,
.gform_confirmation_message .wp-block-quote p,
.job-detail .wp-block-quote ul,
.gform_confirmation_message .wp-block-quote ul,
.job-detail .wp-block-quote ol,
.gform_confirmation_message .wp-block-quote ol,
.article-detail .wp-block-pullquote p,
.article-detail .wp-block-pullquote ul,
.article-detail .wp-block-pullquote ol,
.article-detail .wp-block-quote p,
.article-detail .wp-block-quote ul,
.article-detail .wp-block-quote ol {
  line-height: 1.4;
  margin: 0;
}
.job-detail .wp-block-pullquote p + p, .gform_confirmation_message .wp-block-pullquote p + p, .job-detail .wp-block-pullquote p + ul, .gform_confirmation_message .wp-block-pullquote p + ul, .job-detail .wp-block-pullquote p + ol, .gform_confirmation_message .wp-block-pullquote p + ol, .job-detail .wp-block-pullquote ul + p, .gform_confirmation_message .wp-block-pullquote ul + p, .job-detail .wp-block-pullquote ul + ul, .gform_confirmation_message .wp-block-pullquote ul + ul, .job-detail .wp-block-pullquote ul + ol, .gform_confirmation_message .wp-block-pullquote ul + ol, .job-detail .wp-block-pullquote ol + p, .gform_confirmation_message .wp-block-pullquote ol + p, .job-detail .wp-block-pullquote ol + ul, .gform_confirmation_message .wp-block-pullquote ol + ul, .job-detail .wp-block-pullquote ol + ol, .gform_confirmation_message .wp-block-pullquote ol + ol,
.job-detail .wp-block-quote p + p,
.gform_confirmation_message .wp-block-quote p + p,
.job-detail .wp-block-quote p + ul,
.gform_confirmation_message .wp-block-quote p + ul,
.job-detail .wp-block-quote p + ol,
.gform_confirmation_message .wp-block-quote p + ol,
.job-detail .wp-block-quote ul + p,
.gform_confirmation_message .wp-block-quote ul + p,
.job-detail .wp-block-quote ul + ul,
.gform_confirmation_message .wp-block-quote ul + ul,
.job-detail .wp-block-quote ul + ol,
.gform_confirmation_message .wp-block-quote ul + ol,
.job-detail .wp-block-quote ol + p,
.gform_confirmation_message .wp-block-quote ol + p,
.job-detail .wp-block-quote ol + ul,
.gform_confirmation_message .wp-block-quote ol + ul,
.job-detail .wp-block-quote ol + ol,
.gform_confirmation_message .wp-block-quote ol + ol,
.article-detail .wp-block-pullquote p + p,
.article-detail .wp-block-pullquote p + ul,
.article-detail .wp-block-pullquote p + ol,
.article-detail .wp-block-pullquote ul + p,
.article-detail .wp-block-pullquote ul + ul,
.article-detail .wp-block-pullquote ul + ol,
.article-detail .wp-block-pullquote ol + p,
.article-detail .wp-block-pullquote ol + ul,
.article-detail .wp-block-pullquote ol + ol,
.article-detail .wp-block-quote p + p,
.article-detail .wp-block-quote p + ul,
.article-detail .wp-block-quote p + ol,
.article-detail .wp-block-quote ul + p,
.article-detail .wp-block-quote ul + ul,
.article-detail .wp-block-quote ul + ol,
.article-detail .wp-block-quote ol + p,
.article-detail .wp-block-quote ol + ul,
.article-detail .wp-block-quote ol + ol {
  margin-top: 1.5rem;
}
.job-detail .wp-block-pullquote cite, .gform_confirmation_message .wp-block-pullquote cite,
.job-detail .wp-block-quote cite,
.gform_confirmation_message .wp-block-quote cite,
.article-detail .wp-block-pullquote cite,
.article-detail .wp-block-quote cite {
  display: block;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 1em;
}

.article__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column wrap;
          flex-flow: column wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.article__buttons li {
  display: block;
  width: 100%;
}
.article__buttons li + li {
  margin-top: 0;
}
.article-detail .article__buttons li + li {
  margin-top: 0 !important;
}
.article__buttons .btn {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .article__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .article__buttons li, .article__buttons .btn {
    width: auto;
  }
}

.article__related h2 {
  margin-bottom: 0;
}
.article__related .grid {
  margin-block: 1.5rem 2.5rem;
  row-gap: 0;
}
@media print, screen and (min-width: 64em) {
  .article__related .grid {
    margin-block: 2.875rem 3.75rem;
  }
}
@media screen and (max-width: 39.99875em) {
  .article__related .grid .cell:nth-child(n+5) {
    display: none !important;
  }
}

.jobs__filter {
  padding: 1.5rem;
  background: var(--color-light-gray);
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
}
.jobs__filter .grid {
  grid-template-columns: 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media print, screen and (min-width: 64em) {
  .jobs__filter .grid {
    grid-template-columns: 1fr 1fr -webkit-max-content;
    grid-template-columns: 1fr 1fr max-content;
  }
}
.jobs__filter .grid > .cell {
  grid-column: span 1;
}
.jobs__filter label,
.jobs__filter .btn {
  margin-bottom: 0;
}
.jobs__filter .btn {
  margin-top: 0.625rem;
}
@media print, screen and (max-width: 63.99875em) {
  .jobs__filter .btn {
    width: 100%;
  }
}
.jobs__listing {
  font-size: 0.9375rem;
  line-height: 132%;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: 0;
}
.jobs__listing tr {
  -webkit-transition: background-color var(--global-transition);
  transition: background-color var(--global-transition);
}
.jobs__listing tr:not(.no-results):hover {
  background: var(--color-light-gray);
}
.jobs__listing tr:not(.no-results):hover .tag:not(.bg-black) {
  background: var(--color-white);
}
.jobs__listing tr.no-results {
  position: relative;
  border: none;
}
.jobs__listing tr.no-results td::after {
  content: "";
  display: block;
  border: 1px solid var(--color-primary);
  background: rgba(226, 0, 26, 0.05);
  border-radius: 0.5rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.jobs__listing a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}
@media print, screen and (min-width: 64em) {
  .jobs__listing {
    margin-bottom: 3.5rem;
  }
}
.jobs__listing tr {
  border-bottom: 1px solid #D3D7D9;
  position: relative;
}
.jobs__listing td {
  padding-block: 1rem;
  padding-inline: 1rem;
}
@media print, screen and (min-width: 40em) {
  .jobs__listing td {
    padding-block: 1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .jobs__listing td {
    padding-block: 1.75rem;
    padding-inline: 1.5rem;
  }
  .jobs__listing td:first-child {
    width: 40%;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .jobs__listing td:not(:first-child) {
    padding-top: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .jobs__listing td:not(:first-child) {
    padding-left: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .jobs__listing td {
    display: block;
  }
  .jobs__listing td:last-child {
    padding: 0;
  }
}
.jobs__listing .tags,
.jobs__listing .meta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin: 0;
}
.jobs__listing .tags + .meta {
  margin-top: 0.75rem;
}
.jobs__listing .tag {
  white-space: nowrap;
  margin-top: 0 !important;
}
.jobs__listing .icon-arrow {
  color: var(--color-primary);
}
@media print, screen and (max-width: 39.99875em) {
  .jobs__listing .icon-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
  }
}
.jobs__listing a {
  font-weight: 500;
  text-decoration: none;
  color: inherit;
}
.jobs .choices {
  margin-bottom: 0;
}
.jobs .choices.is-open .choices__inner {
  border-radius: var(--global-radius);
  border-color: var(--color-black);
}
.jobs .choices__inner {
  display: block;
  width: 100%;
  min-height: 3.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--global-radius);
  outline: 0;
  border: 1px solid transparent;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 500;
  -webkit-transition: border-color var(--global-transition);
  transition: border-color var(--global-transition);
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
}
.jobs .choices input[type] {
  padding: 0;
  margin: 0;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 none;
  height: 2rem;
}
.jobs .choices__list--multiple .choices__item {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  border-radius: 0.25rem;
}
.jobs .choices__list--multiple .choices__item.is-highlighted {
  background-color: var(--color-gray);
  border: 1px solid var(--color-gray);
}

.grid--job-detail {
  row-gap: 3rem;
}
@media print, screen and (min-width: 64em) {
  .grid--job-detail .large-6 {
    grid-column: 7/span 6;
  }
}

.card--job-info {
  position: relative;
}
.card--job-info .headline {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.card--job-info .tags {
  margin-top: 0.125rem;
  margin-bottom: 1rem;
}
.card--job-info p {
  margin-bottom: 1rem;
}
.card--job-info p span {
  font-weight: 500;
  line-height: 1.2;
  font-size: 0.8125rem;
}
.card--job-info p + p {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}
.card--job-info .btn {
  margin-top: 0.5rem;
}
.card--job-info .btn + .btn {
  margin-top: 0.75rem;
}
.card--job-info .bg-sign {
  display: block;
  position: absolute;
  right: 0;
  top: 2.5rem;
  pointer-events: none;
  z-index: 0;
}

.job-detail > * {
  grid-column: span 12;
}
.job-detail > *:first-child {
  margin-top: 0;
}
.grid--job-detail .job-detail > h2:first-child {
  font-size: clamp(2rem, 2.5vw + 1rem, 2.75rem);
  margin-top: 0;
}
.grid--job-detail .job-detail .h1, .grid--job-detail .job-detail .is-style-h1,
.grid--job-detail .job-detail h2, .grid--job-detail .job-detail .h2, .grid--job-detail .job-detail .is-style-h2,
.grid--job-detail .job-detail h3, .grid--job-detail .job-detail .h3, .grid--job-detail .job-detail .is-style-h3,
.grid--job-detail .job-detail h4, .grid--job-detail .job-detail .h4, .grid--job-detail .job-detail .is-style-h4,
.grid--job-detail .job-detail h5, .grid--job-detail .job-detail .h5, .grid--job-detail .job-detail .is-style-h5,
.grid--job-detail .job-detail h6 {
  margin-top: calc(1.25em - 1.25rem);
}
.grid--job-detail .job-detail h2:not(:first-child),
.grid--job-detail .job-detail .h2:not(:first-child) {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .grid--job-detail .job-detail h2:not(:first-child),
  .grid--job-detail .job-detail .h2:not(:first-child) {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid--job-detail .job-detail h2:not(:first-child),
  .grid--job-detail .job-detail .h2:not(:first-child) {
    font-size: 2rem;
  }
}
.grid--job-detail .job-detail h3,
.grid--job-detail .job-detail .h3 {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 40em) {
  .grid--job-detail .job-detail h3,
  .grid--job-detail .job-detail .h3 {
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .grid--job-detail .job-detail h3,
  .grid--job-detail .job-detail .h3 {
    font-size: 1.5rem;
  }
}
.job-detail .card--form {
  margin-top: 1.5rem;
}
.job-detail ul li + li {
  margin-top: 0;
}

/* DELETE if we use something else than cookiebot */
@media print, screen and (max-width: 39.99875em) {
  div#CybotCookiebotDialogHeader {
    display: none;
  }
  div#CybotCookiebotDialog *,
  div#CybotCookiebotDialogBodyUnderlay * {
    font-size: 0.75rem;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogBodyContent {
    padding-block: 7px;
  }
  #CybotCookiebotDialog {
    line-height: 15px;
  }
}
div#CybotCookiebotDialogHeader {
  display: none;
}

.bg-primary {
  background: var(--color-primary);
  color: var(--color-white);
}
.bg-primary h1,
.bg-primary .h1,
.bg-primary h2,
.bg-primary .h2,
.bg-primary h3,
.bg-primary .h3,
.bg-primary h4,
.bg-primary .h4 {
  color: var(--color-white);
}

.bg-secondary {
  background: var(--color-secondary);
  color: var(--color-white);
}
.bg-secondary h1,
.bg-secondary .h1,
.bg-secondary h2,
.bg-secondary .h2,
.bg-secondary h3,
.bg-secondary .h3,
.bg-secondary h4,
.bg-secondary .h4 {
  color: var(--color-white);
}

.bg-black {
  background: var(--color-black);
  color: var(--color-white);
}
.bg-black h1,
.bg-black .h1,
.bg-black h2,
.bg-black .h2,
.bg-black h3,
.bg-black .h3,
.bg-black h4,
.bg-black .h4 {
  color: var(--color-white);
}

.bg-gray {
  background: var(--color-gray);
  color: var(--color-white);
}
.bg-gray h1,
.bg-gray .h1,
.bg-gray h2,
.bg-gray .h2,
.bg-gray h3,
.bg-gray .h3,
.bg-gray h4,
.bg-gray .h4 {
  color: var(--color-white);
}

.bg-white {
  background: var(--color-white);
  color: var(--color-black);
}
.bg-white h1,
.bg-white .h1,
.bg-white h2,
.bg-white .h2,
.bg-white h3,
.bg-white .h3,
.bg-white h4,
.bg-white .h4 {
  color: var(--color-black);
}

.bg-light-gray {
  background: var(--color-light-gray);
  color: var(--color-black);
}

.isolate {
  isolation: isolate;
}

.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-spaced {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-self-middle {
  -ms-flex-item-align: center;
      align-self: center;
}

.align-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

.mb-60 {
  margin-bottom: 3.75rem;
}

.pin-0 {
  padding-inline: 0;
}

.pbl-0 {
  padding-block: 0;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.z-3 {
  z-index: 1;
}

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

.z-3 {
  z-index: 3;
}

.bb-0 {
  border-bottom: 0;
}

.bt-0 {
  border-top: 0;
}

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

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

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

@media print, screen and (min-width: 64em) {
  .large-c-1 {
    grid-column-start: 1;
  }
  .large-c-2 {
    grid-column-start: 2;
  }
  .large-r-1 {
    grid-row-start: 1;
  }
  .large-r-2 {
    grid-row-start: 2;
  }
}
.icon {
  display: block;
  font-size: 1.875rem;
  width: 1em;
  height: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1em;
          flex: 0 0 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}
.icon-salary, .icon-place, .icon-date {
  font-size: 1.25rem;
}
.icon.icon-arrow.ext {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.icon.icon-s-chevron-right {
  position: relative;
  left: 0.05em;
}
.icon.icon-s-chevron-left {
  position: relative;
  left: -0.05em;
}
.icon.icon-cicle-check {
  font-size: 1.75rem;
}

.circle-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  -webkit-transition: background var(--global-transition), color var(--global-transition), -webkit-transform var(--global-transition-2);
  transition: background var(--global-transition), color var(--global-transition), -webkit-transform var(--global-transition-2);
  transition: background var(--global-transition), color var(--global-transition), transform var(--global-transition-2);
  transition: background var(--global-transition), color var(--global-transition), transform var(--global-transition-2), -webkit-transform var(--global-transition-2);
}

.spacer,
.wp-block-spacer {
  height: 3rem;
}
@media print, screen and (min-width: 40em) {
  .spacer,
  .wp-block-spacer {
    height: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .spacer,
  .wp-block-spacer {
    height: 4.5rem;
  }
}
.spacer--sm, .spacer.is-style-sm,
.wp-block-spacer--sm,
.wp-block-spacer.is-style-sm {
  height: 1.75rem;
}
@media print, screen and (min-width: 40em) {
  .spacer--sm, .spacer.is-style-sm,
  .wp-block-spacer--sm,
  .wp-block-spacer.is-style-sm {
    height: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .spacer--sm, .spacer.is-style-sm,
  .wp-block-spacer--sm,
  .wp-block-spacer.is-style-sm {
    height: 3.75rem;
  }
}
.spacer--lg, .spacer.is-style-lg,
.wp-block-spacer--lg,
.wp-block-spacer.is-style-lg {
  padding-block: 3.75rem;
}
@media print, screen and (min-width: 40em) {
  .spacer--lg, .spacer.is-style-lg,
  .wp-block-spacer--lg,
  .wp-block-spacer.is-style-lg {
    padding-block: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .spacer--lg, .spacer.is-style-lg,
  .wp-block-spacer--lg,
  .wp-block-spacer.is-style-lg {
    padding-block: 7.5rem;
  }
}

.has-black-color {
  color: var(--color-black);
}

.has-primary-color {
  color: var(--color-primary);
}

.has-white-color {
  color: var(--color-white);
}

.wp-block-image.aligncenter img {
  margin-inline: auto;
}
.wp-block-image.is-style-no-radius img {
  border-radius: 0;
}

.pattern-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.75rem 4.75rem;
  width: 100%;
  pointer-events: none;
}
@media print, screen and (min-width: 40em) {
  .pattern-grid {
    gap: 3.75rem 6.875rem;
    overflow: hidden;
  }
}
.pattern-grid .dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--color-light-gray);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.75rem;
          flex: 0 0 0.75rem;
  -webkit-transition: background-color var(--global-transition);
  transition: background-color var(--global-transition);
}
.pattern-grid .dot.active {
  background: var(--color-primary);
}
/*# sourceMappingURL=app.css.map */
