@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Inter"), local("Inter Regular"), url("../fonts/inter-v20-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Inter Medium"), url("../fonts/inter-v20-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Inter Bold"), url("../fonts/inter-v20-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local("Space Grotesk Medium"), url("../fonts/space-grotesk-v22-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Space Grotesk Bold"), url("../fonts/space-grotesk-v22-latin-700.woff2") format("woff2");
}
:root {
  --blue7o: #00AEEF;
  --green300: #11A851;
  --blue600: #050D33;
  --blue500: #2F3555;
  --blue400: #2D4C72;
  --white: #FFFFFF;
  --blue50: #F1FBFF;
  --blue100: #CADCF1;
  --green50: #E8FFF2;
  --blue300: #7C95B4;
  --blue200: #9CBADE;
  --blue7o50: #D4F3FE;
  --blue7o100: #BEEAFB;
  --green200: #2DD676;
  --green100: #ADF6CC;
  --blue7o200: #008ABD;
  --button-gradient: linear-gradient(98.33deg, #27B966 28%, #0990A9 100%);
  --button-hover: #2DD676;
  --font: 'Inter', sans-serif;
  --title-font: 'Space Grotesk', sans-serif;
  --radius: 4px;
}

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

html,
body {
  min-height: 100%;
}
html.open,
body.open {
  overflow: hidden;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
  color: var(--blue500);
  background-color: var(--white);
}
body ::-moz-selection {
  background-color: rgba(0, 174, 239, 0.25);
  color: var(--blue600);
}
body ::selection {
  background-color: rgba(0, 174, 239, 0.25);
  color: var(--blue600);
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1429px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1430px) {
  .container {
    max-width: 1400px;
  }
}
h1,
h2,
h3,
h4 {
  font-family: var(--title-font);
  color: var(--blue600);
  margin: 0;
  padding: 0;
}
h1 .highlighted-blue,
h2 .highlighted-blue,
h3 .highlighted-blue,
h4 .highlighted-blue {
  color: var(--blue7o);
}
h1 .highlighted-green,
h2 .highlighted-green,
h3 .highlighted-green,
h4 .highlighted-green {
  color: var(--green300);
}

h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--white);
}
@media (max-width: 1100px) {
  h1 {
    font-size: 90px;
  }
}
@media (max-width: 800px) {
  h1 {
    font-size: 80px;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 56px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 28px;
  }
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--blue500);
}

@media (max-width: 600px) {
  p {
    font-size: 16px;
  }
}
.button,
button.button {
  display: inline-block;
  background: var(--button-gradient);
  color: var(--white);
  font-family: var(--title-font);
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.button:hover,
button.button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

.button-large,
.button-large-chevron {
  position: relative;
  font-size: 18px;
  padding: 18px 59px 18px 35px;
}
.button-large:after,
.button-large-chevron:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 700px) {
  .button-large,
  .button-large-chevron {
    padding: 14px 44px 14px 20px;
  }
  .button-large:after,
  .button-large-chevron:after {
    right: 15px;
  }
}

.button-large:after {
  background-image: url("icons/arrow-right-white.svg");
}

.button-large-chevron:after {
  background-image: url("icons/chevron-right-white.svg");
}

.button-medium {
  font-size: 16px;
  padding: 10px 15px 10px 15px;
}
@media (max-width: 700px) {
  .button-medium {
    padding: 6px 10px 6px 10px;
  }
}

.button-medium-chevron {
  font-size: 16px;
  padding: 10px 39px 10px 15px;
  position: relative;
}
.button-medium-chevron:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-image: url("icons/chevron-right-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 500px) {
  .button-medium-chevron {
    padding: 6px 26px 6px 10px;
  }
  .button-medium-chevron:after {
    height: 16px;
    width: 16px;
    right: 5px;
    background-image: url("icons/chevron-right-white-mobile.svg");
  }
}

.button-small {
  font-size: 14px;
  padding: 7px 10px;
}

.cookie-bar-wrapper {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 40px, 800px);
  z-index: 99998;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0 2px 10px, rgba(0, 0, 0, 0.15) 0 2px 20px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper {
  padding: 40px;
  background-color: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left {
  color: var(--blue500);
  font-size: 14px;
  line-height: 180%;
  text-align: center;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left .show-settings {
  color: var(--blue7o200);
  text-decoration: underline;
  cursor: pointer;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-left .show-settings:hover {
  text-decoration: none;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right button {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 15px;
  line-height: 18px;
  color: var(--blue500);
  font-weight: 400;
  font-family: var(--title-font);
  cursor: pointer;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right .accept-all-cookies-button {
  padding: 14px 22px 14px 22px;
  display: inline-block;
  background: var(--button-gradient);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.cookie-bar-wrapper .cookie-bar-inside-wrapper .cookie-bar-right .accept-all-cookies-button:hover {
  background: var(--button-hover);
}

#evidente-cookie-popup-container {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: block;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
  z-index: 99999;
}
#evidente-cookie-popup-container ::-webkit-scrollbar {
  width: 10px;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 100vw;
  margin: 10px 0;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-thumb {
  background: var(--blue200);
  border: 2px solid var(--white);
  border-radius: 100vw;
}
#evidente-cookie-popup-container ::-webkit-scrollbar-thumb:hover {
  background: var(--blue500);
}
#evidente-cookie-popup-container.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: all 0.3s ease-in-out;
}
#evidente-cookie-popup-container .cookie-popup-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(100% - 40px, 600px);
  border-radius: 20px;
  background-color: var(--white);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 40px 40px;
  overflow: auto;
  max-height: 90svh;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header h4 {
  color: var(--blue600);
  font-size: 18px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button {
  outline: none;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 16px;
  right: 16px;
  height: 20px;
  width: 20px;
  cursor: pointer;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:before, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:after {
  content: "";
  position: absolute;
  height: 25px;
  width: 3px;
  border-radius: 4px;
  background-color: var(--blue500);
  top: -5px;
  transform-origin: center;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:before {
  transform: rotate(45deg);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-header .close-cookie-popup-button:after {
  transform: rotate(-45deg);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part {
  position: relative;
  color: var(--blue500);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part h6 {
  padding-right: 20px;
  padding-bottom: 10px;
  margin: 0;
  font-size: 15px;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
  font-family: var(--font);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--blue200);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:focus-visible, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:focus, #evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:hover {
  border: 1px solid var(--blue7o);
  outline: none;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]::before {
  position: absolute;
  content: "";
  display: block;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-style: solid;
  border-color: var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked {
  color: var(--white);
  border-color: var(--green300);
  background: var(--green300);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked::before {
  opacity: 1;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:checked ~ label::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-main .cookie-popup-main-part input[type=checkbox]:disabled:checked {
  background: rgba(120, 120, 120, 0.5);
  border-color: transparent;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer button,
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer a {
  outline: none;
  border: none;
  background-color: transparent;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  color: var(--blue7o200);
  font-weight: 400;
  font-family: var(--title-font);
  cursor: pointer;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer a:hover {
  text-decoration: underline;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer .cookie-popup-save-button {
  padding: 14px 22px 14px 22px;
  display: inline-block;
  background: var(--button-gradient);
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  font-family: var(--title-font);
  font-weight: 700;
  position: relative;
  z-index: 2;
}
#evidente-cookie-popup-container .cookie-popup-wrapper .cookie-popup-inside-wrapper .cookie-popup-footer .cookie-popup-save-button:hover {
  background: var(--button-hover);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 490;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--blue600);
  opacity: 0;
  opacity: var(--header-bg-opacity, 0);
  transition: opacity 0.1s ease;
  z-index: -1;
}
@media (max-width: 1100px) {
  .header {
    height: 60px;
  }
}

body.page-node-type-page .header {
  --header-bg-opacity: 1;
}

.header.header--solid {
  --header-bg-opacity: 1;
}

body.toolbar-fixed .header {
  top: 39px;
}

body.toolbar-fixed.toolbar-tray-open.toolbar-horizontal .header {
  top: 79px;
}

.header-container {
  height: 100%;
}
.header-container > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
}
.header-container > div #block-evidente-site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-container > div #block-evidente-site-branding .header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.header-container > div #block-evidente-site-branding .header-logo img {
  height: 54px;
  width: auto;
}
@media (max-width: 1100px) {
  .header-container > div #block-evidente-site-branding .header-logo img {
    height: 36px;
  }
}
.header-container > div #block-evidente-main-menu {
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .header-container > div #block-evidente-main-menu {
    display: none;
  }
}
.header-container > div .mobile-nav {
  display: none;
}

.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .header-hamburger {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
  }
}
.header-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-hamburger span:nth-child(1) {
  margin-bottom: 4px;
}
.header-hamburger span:nth-child(3) {
  margin-top: 4px;
}

.main-menu {
  height: 100%;
}
.main-menu .main-menu-list {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-menu .main-menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.main-menu .main-menu-item.is-active-trail > .main-menu-link {
  color: var(--green200);
}
.main-menu .main-menu-item.is-active-trail > .main-menu-toggle .button-icon-wrapper {
  background-color: var(--green200);
}
.main-menu .main-menu-item .main-menu-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
}
.main-menu .main-menu-item .main-menu-link:hover {
  color: var(--green200);
  text-decoration: none;
}
.main-menu .main-menu-item .main-menu-link.is-active {
  color: var(--green200);
}
.main-menu .main-menu-item .main-menu-link--nolink {
  cursor: pointer;
}
.main-menu .main-menu-item--has-children .main-menu-link {
  padding-right: 52px;
}
.main-menu .main-menu-item .main-menu-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 2;
  width: 32px;
  height: 32px;
  padding: 7px 6px 5px 6px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.main-menu .main-menu-item .main-menu-toggle .button-icon-wrapper {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  background-image: url("icons/chevron-arrow-dark-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-color: var(--white);
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
}
.main-menu .main-menu-item .main-menu-toggle:hover .button-icon-wrapper {
  background-color: var(--green200);
}
.main-menu .main-menu-item .main-menu-toggle[aria-expanded=true] .button-icon-wrapper {
  transform: rotate(180deg);
  background-color: var(--green200);
}
.main-menu .main-menu-submenu {
  position: absolute;
  top: 90px;
  left: 0;
  min-width: 250px;
  margin: 0;
  padding: 10px 0 5px;
  list-style: none;
  background-color: var(--white);
  border-radius: 4px 4px 0 0;
  box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.0588235294);
  border-bottom: 5px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px) translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.main-menu .main-menu-item--has-children.is-open > .main-menu-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}
.main-menu .main-menu-submenu .main-menu-item.is-active-trail > .main-menu-link {
  color: var(--green200);
}
.main-menu .main-menu-submenu .main-menu-link {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue600);
}
.main-menu .main-menu-submenu .main-menu-link:hover {
  color: var(--green200);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 330px;
  background-color: var(--blue600);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0px 34px 0px rgba(4, 11, 48, 0.7490196078);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  width: 100%;
  background-image: url(../css/icons/cubes-header-overlay.svg);
  background-repeat: no-repeat;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 13, 51, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  cursor: pointer;
}
.mobile-menu-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
.mobile-menu-close span::before, .mobile-menu-close span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--white);
}
.mobile-menu-close span::before {
  transform: rotate(45deg);
}
.mobile-menu-close span::after {
  transform: rotate(-45deg);
}

.mobile-menu-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 60px 20px 100px 20px;
}
.mobile-menu-inner > div {
  height: 100%;
  overflow: auto;
}
.mobile-menu-inner #block-evidente-site-branding,
.mobile-menu-inner #block-evidente-site-branding--2 {
  display: none;
}
.mobile-menu-inner .mobile-nav {
  display: block;
  flex: 1;
}
.mobile-menu-inner .main-menu {
  display: none;
}
.mobile-menu-inner .header-cta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 290px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-align: center;
}

.mobile-nav {
  display: none;
}

.mobile-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-item:not(:first-child) {
  border-top: 1px solid var(--blue500);
}
.mobile-nav-item.is-active-trail > .mobile-nav-link {
  color: var(--green200);
}
.mobile-nav-item--has-children .mobile-nav-link {
  flex: 1;
}

.mobile-nav-item--has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 20px 30px 20px 5px;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover {
  color: var(--green200);
  text-decoration: none;
}
.mobile-nav-link.is-active {
  color: var(--green200);
}
.mobile-nav-link--nolink {
  cursor: pointer;
}
.mobile-nav-item:not(.mobile-nav-item--has-children) .mobile-nav-link {
  width: 100%;
}

.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 7px 6px 5px 6px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-nav-toggle .button-icon-wrapper {
  height: 100%;
  width: 100%;
  border-radius: 100%;
  background-image: url("icons/chevron-arrow-dark-blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  background-color: var(--white);
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
}
.mobile-nav-toggle:hover .button-icon-wrapper {
  background-color: var(--green200);
}
.mobile-nav-toggle[aria-expanded=true] .button-icon-wrapper {
  transform: rotate(180deg);
  background-color: var(--green200);
}

.mobile-nav-submenu {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.mobile-nav-item--has-children.is-open > .mobile-nav-submenu {
  max-height: 400px;
  transition: max-height 0.2s ease-in;
}
.mobile-nav-submenu .mobile-nav-item {
  border: none;
}
.mobile-nav-submenu .mobile-nav-item:last-child {
  margin-bottom: 20px;
}
.mobile-nav-submenu .mobile-nav-item.is-active-trail > .mobile-nav-link {
  color: var(--green200);
}
.mobile-nav-submenu .mobile-nav-link {
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.header-container .header-cta.button-medium {
  padding: 10px 15px;
}
@media (max-width: 1100px) {
  .header-container .header-cta.button-medium {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    padding: 6px 10px;
  }
}

.paragraph-wrapper-with-margins,
.block-wrapper-with-margins {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media (max-width: 500px) {
  .paragraph-wrapper-with-margins,
  .block-wrapper-with-margins {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.node-reference-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 700px;
  align-items: flex-end;
  padding: 80px;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--blue500);
}
.node-reference-card::before, .node-reference-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.node-reference-card::before {
  background-color: var(--blue500);
  background-image: var(--node-reference-card-bg-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.node-reference-card::after {
  background: linear-gradient(90deg, rgba(5, 13, 51, 0.9) 15.5%, rgba(5, 13, 51, 0) 100%);
}
.node-reference-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 620px;
  flex-direction: column;
  align-items: flex-start;
}
.node-reference-card__eyebrow {
  margin: 0 0 10px;
  color: var(--blue7o);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.node-reference-card__title {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.node-reference-card__description {
  margin: 0 0 40px;
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.node-reference-card__button {
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .node-reference-card {
    min-height: 620px;
    padding: 56px;
  }
  .node-reference-card .node-reference-card__title {
    font-size: 40px;
  }
}
@media (max-width: 700px) {
  .node-reference-card {
    min-height: 520px;
    padding: 40px 32px;
  }
  .node-reference-card .node-reference-card__title {
    font-size: 32px;
  }
  .node-reference-card .node-reference-card__description {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .node-reference-card {
    min-height: 550px;
    padding: 30px;
    align-items: flex-end;
  }
  .node-reference-card .node-reference-card__content {
    max-width: 100%;
  }
  .node-reference-card .node-reference-card__eyebrow {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .node-reference-card .node-reference-card__title {
    margin-bottom: 10px;
    font-size: 32px;
  }
  .node-reference-card .node-reference-card__description {
    margin-bottom: 15px;
    font-size: 16px;
  }
}

.block-2-cards-paragraph-wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.block-2-cards-paragraph-wrapper .block-2-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card,
.block-2-cards-paragraph-wrapper .block-2-cards-card__link {
  height: 100%;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background-color: var(--white);
  box-shadow: 0 30px 40px -10px #cfecf8;
  text-decoration: none;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link:hover, .block-2-cards-paragraph-wrapper .block-2-cards-card__link:focus-visible {
  box-shadow: 0 10px 20px -5px #cfecf8;
  text-decoration: none;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link:hover::before, .block-2-cards-paragraph-wrapper .block-2-cards-card__link:focus-visible::before {
  background: linear-gradient(90deg, #0f759a 0%, #00aeef 100%);
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link:hover .block-2-cards-card__title, .block-2-cards-paragraph-wrapper .block-2-cards-card__link:focus-visible .block-2-cards-card__title {
  color: var(--blue7o);
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link:hover .block-2-cards-card__button, .block-2-cards-paragraph-wrapper .block-2-cards-card__link:focus-visible .block-2-cards-card__button {
  border-color: #e2f7ff;
  background: var(--blue7o);
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__link--static {
  cursor: default;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__title,
.block-2-cards-paragraph-wrapper .block-2-cards-card__body,
.block-2-cards-paragraph-wrapper .block-2-cards-card__button {
  position: relative;
  z-index: 1;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__title {
  margin: 0 0 12px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__body p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__button {
  margin-top: 20px;
  margin-left: -5px;
  width: 50px;
  height: 50px;
  border: 5px solid #e1ffee;
  border-radius: 50%;
  background: var(--button-gradient);
}
.block-2-cards-paragraph-wrapper .block-2-cards-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-image: url("icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 700px) {
  .block-2-cards-paragraph-wrapper .block-2-cards-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .block-2-cards-paragraph-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-grid {
    gap: 15px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-card__link {
    min-height: 0;
    padding: 30px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-card__title {
    margin-bottom: 5px;
    font-size: 28px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-card__body {
    font-size: 14px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-card__button {
    margin-top: 20px;
    margin-left: -5px;
    width: 40px;
    height: 40px;
  }
  .block-2-cards-paragraph-wrapper .block-2-cards-card__button::after {
    width: 18px;
    height: 18px;
  }
}

.cta-block-inner-wrapper-outside {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px;
}
.cta-block-inner-wrapper-outside.background-green {
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(98.33deg, #27b966 28%, #0990a9 100%) border-box;
}
.cta-block-inner-wrapper-outside.background-white {
  background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(98.33deg, #27b966 28%, #0990a9 100%) border-box;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper {
  position: relative;
  overflow: hidden;
  padding: 30px 250px 30px 30px;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper.background-green {
  background-color: var(--green50);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper.background-white {
  background-color: var(--white);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper.background-white::before, .cta-block-inner-wrapper-outside .cta-block-inner-wrapper.background-white::after {
  display: none;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper::before, .cta-block-inner-wrapper-outside .cta-block-inner-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scaleY(-1);
  transform-origin: center;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper::before {
  left: 0;
  width: 550px;
  height: 255px;
  background-image: url("icons/cubes-top-left.svg");
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper::after {
  right: 0;
  width: 473px;
  height: 240px;
  background-image: url("icons/cubes-top-right.svg");
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue600);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-title p {
  margin: 0;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-title .highlighted-blue {
  color: var(--blue7o);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-title .highlighted-green {
  color: var(--green300);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-text {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue600);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-text p {
  margin: 0;
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-text p.small-paragraph {
  margin-top: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue400);
}
.cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-button {
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 2;
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper::before {
    display: none;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper::after {
    top: 0;
    bottom: auto;
    transform: none;
  }
}
@media (max-width: 700px) {
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper {
    padding: 20px;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper::after {
    width: 331px;
    height: 168px;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-title {
    font-size: 32px;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-text {
    font-size: 16px;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-button.button-large-chevron {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 14px 20px;
  }
  .cta-block-inner-wrapper-outside .cta-block-inner-wrapper .cta-block-button.button-large-chevron::after {
    position: static;
    transform: none;
  }
}
.half-half-block-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.half-half-block-wrapper .half-half-image-half {
  width: 100%;
  height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.half-half-block-wrapper .half-half-image-half .media,
.half-half-block-wrapper .half-half-image-half img {
  width: 100%;
  height: 100%;
}
.half-half-block-wrapper .half-half-image-half img {
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.half-half-block-wrapper .half-half-content-half {
  padding-left: 80px;
  display: flex;
  justify-content: center;
}
.half-half-block-wrapper .half-half-content-half .half-half-content-inner {
  display: flow-root;
  width: 100%;
  max-width: 100%;
}
.half-half-block-wrapper .half-half-content-half .half-half-eyebrow {
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue7o);
}
.half-half-block-wrapper .half-half-content-half .half-half-title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.half-half-block-wrapper .half-half-content-half .half-half-body {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.half-half-block-wrapper .half-half-content-half .half-half-body p {
  margin-bottom: 0;
}
.half-half-block-wrapper .half-half-content-half .half-half-cta {
  margin-top: 40px;
}
.half-half-block-wrapper.half-half-image-right .half-half-image-half {
  order: 2;
}
.half-half-block-wrapper.half-half-image-right .half-half-content-half {
  order: 1;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 800px) {
  .half-half-block-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .half-half-block-wrapper .half-half-image-half {
    height: auto;
    aspect-ratio: 3/2;
  }
  .half-half-block-wrapper .half-half-content-half {
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .half-half-block-wrapper.half-half-image-right .half-half-image-half {
    order: 1;
  }
  .half-half-block-wrapper.half-half-image-right .half-half-content-half {
    order: 2;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .half-half-block-wrapper .half-half-content-half .half-half-eyebrow {
    margin-bottom: 5px;
  }
  .half-half-block-wrapper .half-half-content-half .half-half-title {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .half-half-block-wrapper .half-half-content-half .half-half-body {
    font-size: 16px;
    margin-top: 10px;
  }
  .half-half-block-wrapper .half-half-content-half .half-half-cta {
    margin-top: 15px;
  }
}

.image-content-block-paragraph-wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.image-content-block-paragraph-wrapper .image-content-block-inner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: center;
}
.image-content-block-paragraph-wrapper .image-content-block-image-half {
  width: 100%;
  aspect-ratio: 7/4;
  overflow: hidden;
  border-radius: 4px;
}
.image-content-block-paragraph-wrapper .image-content-block-image-half .media,
.image-content-block-paragraph-wrapper .image-content-block-image-half img,
.image-content-block-paragraph-wrapper .image-content-block-image-half picture {
  width: 100%;
  height: 100%;
  display: block;
}
.image-content-block-paragraph-wrapper .image-content-block-image-half img {
  object-fit: cover;
  object-position: center;
}
.image-content-block-paragraph-wrapper .image-content-block-content-half {
  display: flex;
  align-items: center;
  padding-left: 80px;
}
.image-content-block-paragraph-wrapper .image-content-block-content-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.image-content-block-paragraph-wrapper .image-content-block-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.image-content-block-paragraph-wrapper .image-content-block-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.image-content-block-paragraph-wrapper .image-content-block-body p,
.image-content-block-paragraph-wrapper .image-content-block-body ul,
.image-content-block-paragraph-wrapper .image-content-block-body ol,
.image-content-block-paragraph-wrapper .image-content-block-body li {
  margin: 0;
}
@media (max-width: 800px) {
  .image-content-block-paragraph-wrapper .image-content-block-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .image-content-block-paragraph-wrapper .image-content-block-content-half {
    padding-left: 0;
  }
  .image-content-block-paragraph-wrapper .image-content-block-content-inner {
    gap: 10px;
  }
  .image-content-block-paragraph-wrapper .image-content-block-title {
    font-size: 35px;
  }
  .image-content-block-paragraph-wrapper .image-content-block-body {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .image-content-block-paragraph-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .image-content-block-paragraph-wrapper .image-content-block-inner-wrapper {
    gap: 15px;
  }
}

.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body {
  margin: 0;
}
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body p,
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body ul,
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body ol,
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body li {
  margin: 0;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue300);
}
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body strong,
.emphasized-text-block-paragraph-wrapper .emphasized-text-block-body b {
  color: var(--blue400);
}
@media (max-width: 500px) {
  .emphasized-text-block-paragraph-wrapper .emphasized-text-block-body p,
  .emphasized-text-block-paragraph-wrapper .emphasized-text-block-body ul,
  .emphasized-text-block-paragraph-wrapper .emphasized-text-block-body ol,
  .emphasized-text-block-paragraph-wrapper .emphasized-text-block-body li {
    font-size: 24px;
    line-height: 1.3;
  }
}

.partners-paragraph-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.partners-paragraph-wrapper::before, .partners-paragraph-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.partners-paragraph-wrapper::before {
  left: 0;
  width: 605px;
  height: 281px;
  background-image: url("icons/cubes-top-left.svg");
}
.partners-paragraph-wrapper::after {
  right: 0;
  width: 710px;
  height: 360px;
  background-image: url("icons/cubes-top-right.svg");
}
.partners-paragraph-wrapper .container {
  position: relative;
  z-index: 2;
}
.partners-paragraph-wrapper .partners-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.partners-paragraph-wrapper .partners-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.partners-paragraph-wrapper .partners-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.partners-paragraph-wrapper .partners-cards .media-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 40px;
  background-color: var(--white);
  border-top: 3px solid transparent;
  border-image-source: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
  border-image-slice: 1;
  box-shadow: 0 30px 40px -10px #cfecf8;
}
.partners-paragraph-wrapper .partners-cards .media-card-image {
  height: 100px;
  width: auto;
  margin-bottom: 30px;
}
.partners-paragraph-wrapper .partners-cards .media-card-image .media,
.partners-paragraph-wrapper .partners-cards .media-card-image img,
.partners-paragraph-wrapper .partners-cards .media-card-image svg,
.partners-paragraph-wrapper .partners-cards .media-card-image picture {
  display: block;
  width: auto;
  height: 100%;
}
.partners-paragraph-wrapper .partners-cards .media-card-image img,
.partners-paragraph-wrapper .partners-cards .media-card-image svg {
  object-fit: contain;
  object-position: left center;
}
.partners-paragraph-wrapper .partners-cards .media-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partners-paragraph-wrapper .partners-cards .media-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.partners-paragraph-wrapper .partners-cards .media-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
.partners-paragraph-wrapper .partners-cards .media-card-body p,
.partners-paragraph-wrapper .partners-cards .media-card-body ul,
.partners-paragraph-wrapper .partners-cards .media-card-body ol,
.partners-paragraph-wrapper .partners-cards .media-card-body li {
  margin: 0;
}
@media (max-width: 1100px) {
  .partners-paragraph-wrapper .partners-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1300px) {
  .partners-paragraph-wrapper::before {
    display: none;
  }
}
@media (max-width: 800px) {
  .partners-paragraph-wrapper::after {
    display: block;
    width: 400px;
    height: 203px;
  }
  .partners-paragraph-wrapper .partners-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .partners-paragraph-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .partners-paragraph-wrapper .partners-inner-wrapper {
    gap: 20px;
  }
  .partners-paragraph-wrapper .partners-title {
    font-size: 42px;
  }
  .partners-paragraph-wrapper .partners-cards {
    gap: 15px;
  }
  .partners-paragraph-wrapper .partners-cards .media-card-wrapper {
    padding: 30px;
  }
  .partners-paragraph-wrapper .partners-cards .media-card-image {
    height: 80px;
    margin-bottom: 20px;
  }
  .partners-paragraph-wrapper .partners-cards .media-card-content {
    gap: 5px;
  }
  .partners-paragraph-wrapper .partners-cards .media-card-title {
    font-size: 28px;
  }
  .partners-paragraph-wrapper .partners-cards .media-card-body {
    font-size: 14px;
  }
}

.certificates-paragraph-wrapper .certificates-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.certificates-paragraph-wrapper .certificates-title-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certificates-paragraph-wrapper .certificates-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.certificates-paragraph-wrapper .certificates-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.certificates-paragraph-wrapper .certificates-body p,
.certificates-paragraph-wrapper .certificates-body ul,
.certificates-paragraph-wrapper .certificates-body ol,
.certificates-paragraph-wrapper .certificates-body li {
  margin: 0;
}
.certificates-paragraph-wrapper .certificates-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 20px;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-image {
  height: 80px;
  width: auto;
  margin-bottom: 30px;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-image .media,
.certificates-paragraph-wrapper .certificates-cards .media-card-image img,
.certificates-paragraph-wrapper .certificates-cards .media-card-image svg,
.certificates-paragraph-wrapper .certificates-cards .media-card-image picture {
  display: block;
  width: auto;
  height: 100%;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-image img,
.certificates-paragraph-wrapper .certificates-cards .media-card-image svg {
  object-fit: contain;
  object-position: left center;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.certificates-paragraph-wrapper .certificates-cards .media-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.certificates-paragraph-wrapper .certificates-cards .media-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
.certificates-paragraph-wrapper .certificates-cards .media-card-body p,
.certificates-paragraph-wrapper .certificates-cards .media-card-body ul,
.certificates-paragraph-wrapper .certificates-cards .media-card-body ol,
.certificates-paragraph-wrapper .certificates-cards .media-card-body li {
  margin: 0;
}
@media (max-width: 1100px) {
  .certificates-paragraph-wrapper .certificates-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .certificates-paragraph-wrapper .certificates-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .certificates-paragraph-wrapper .certificates-inner-wrapper {
    gap: 30px;
  }
  .certificates-paragraph-wrapper .certificates-title-part {
    gap: 5px;
  }
  .certificates-paragraph-wrapper .certificates-title {
    font-size: 42px;
  }
  .certificates-paragraph-wrapper .certificates-body {
    font-size: 16px;
  }
  .certificates-paragraph-wrapper .certificates-cards {
    gap: 15px;
  }
  .certificates-paragraph-wrapper .certificates-cards .media-card-image {
    height: 60px;
    margin-bottom: 10px;
  }
  .certificates-paragraph-wrapper .certificates-cards .media-card-title {
    font-size: 28px;
  }
  .certificates-paragraph-wrapper .certificates-cards .media-card-body {
    font-size: 14px;
  }
}

.service-delivery-paragraph-wrapper .service-delivery-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.service-delivery-paragraph-wrapper .service-delivery-title-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-delivery-paragraph-wrapper .service-delivery-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.service-delivery-paragraph-wrapper .service-delivery-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.service-delivery-paragraph-wrapper .service-delivery-body p,
.service-delivery-paragraph-wrapper .service-delivery-body ul,
.service-delivery-paragraph-wrapper .service-delivery-body ol,
.service-delivery-paragraph-wrapper .service-delivery-body li {
  margin: 0;
}
.service-delivery-paragraph-wrapper .service-delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 80px;
  row-gap: 60px;
}
.service-delivery-paragraph-wrapper .service-delivery-card-item {
  min-width: 0;
}
.service-delivery-paragraph-wrapper .service-delivery-divider {
  grid-column: 1/-1;
  height: 1px;
  background-color: var(--blue100);
}
.service-delivery-paragraph-wrapper .service-delivery-divider--tablet {
  display: none;
}
.service-delivery-paragraph-wrapper .media-card-wrapper {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 30px;
  align-items: start;
}
.service-delivery-paragraph-wrapper .media-card-wrapper.no-media-image {
  grid-template-columns: 1fr;
}
.service-delivery-paragraph-wrapper .media-card-image {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-delivery-paragraph-wrapper .media-card-image .media,
.service-delivery-paragraph-wrapper .media-card-image img,
.service-delivery-paragraph-wrapper .media-card-image svg,
.service-delivery-paragraph-wrapper .media-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.service-delivery-paragraph-wrapper .media-card-image img,
.service-delivery-paragraph-wrapper .media-card-image svg {
  object-fit: contain;
  object-position: center;
}
.service-delivery-paragraph-wrapper .media-card-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.service-delivery-paragraph-wrapper .media-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue500);
}
.service-delivery-paragraph-wrapper .media-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
.service-delivery-paragraph-wrapper .media-card-body p,
.service-delivery-paragraph-wrapper .media-card-body ul,
.service-delivery-paragraph-wrapper .media-card-body ol,
.service-delivery-paragraph-wrapper .media-card-body li {
  margin: 0;
}
@media (max-width: 1100px) {
  .service-delivery-paragraph-wrapper .service-delivery-cards {
    column-gap: 40px;
  }
  .service-delivery-paragraph-wrapper .media-card-wrapper {
    grid-template-columns: 90px minmax(0, 1fr);
    column-gap: 20px;
  }
  .service-delivery-paragraph-wrapper .media-card-image {
    width: 90px;
    height: 90px;
  }
  .service-delivery-paragraph-wrapper .media-card-title {
    font-size: 22px;
  }
}
@media (max-width: 950px) {
  .service-delivery-paragraph-wrapper .service-delivery-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-delivery-paragraph-wrapper .service-delivery-divider--desktop {
    display: none;
  }
  .service-delivery-paragraph-wrapper .service-delivery-divider--tablet {
    display: block;
  }
}
@media (max-width: 800px) {
  .service-delivery-paragraph-wrapper .service-delivery-inner-wrapper {
    gap: 30px;
  }
  .service-delivery-paragraph-wrapper .service-delivery-title {
    font-size: 42px;
  }
  .service-delivery-paragraph-wrapper .service-delivery-body {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .service-delivery-paragraph-wrapper .service-delivery-cards {
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .service-delivery-paragraph-wrapper .service-delivery-divider {
    display: none;
  }
  .service-delivery-paragraph-wrapper .service-delivery-card-item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--blue100);
  }
  .service-delivery-paragraph-wrapper .media-card-wrapper {
    grid-template-columns: 80px minmax(0, 1fr);
    column-gap: 20px;
  }
  .service-delivery-paragraph-wrapper .media-card-image {
    width: 80px;
    height: 80px;
  }
  .service-delivery-paragraph-wrapper .media-card-content {
    gap: 0;
  }
  .service-delivery-paragraph-wrapper .media-card-body {
    font-size: 14px;
  }
}

.highlights-paragraph-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: transparent;
}
.highlights-paragraph-wrapper::before, .highlights-paragraph-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.highlights-paragraph-wrapper::before {
  left: 0;
  width: 550px;
  height: 255px;
  background-image: url("icons/cubes-top-left.svg");
}
.highlights-paragraph-wrapper::after {
  right: 0;
  width: 473px;
  height: 240px;
  background-image: url("icons/cubes-top-right.svg");
}
.highlights-paragraph-wrapper .container {
  position: relative;
  z-index: 2;
}
.highlights-paragraph-wrapper.light_blue {
  background-color: var(--blue50);
}
.highlights-paragraph-wrapper.white {
  background-color: transparent;
}
.highlights-paragraph-wrapper .highlights-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.highlights-paragraph-wrapper .highlights-paragraph-single-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.highlights-paragraph-wrapper .highlights-paragraph-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue600);
}
.highlights-paragraph-wrapper .highlights-paragraph-card-text {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue500);
}
@media (max-width: 1000px) {
  .highlights-paragraph-wrapper::before {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    width: 341px;
    height: 225px;
    background-image: url("icons/cubes-bottom-right.svg");
  }
  .highlights-paragraph-wrapper::after {
    display: none;
  }
}
@media (max-width: 800px) {
  .highlights-paragraph-wrapper .highlights-inner-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .highlights-paragraph-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .highlights-paragraph-wrapper .highlights-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .highlights-paragraph-wrapper .highlights-paragraph-single-card {
    gap: 5px;
  }
}

.benefits-paragraph-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--blue50);
}
.benefits-paragraph-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 912px;
  height: 478px;
  pointer-events: none;
  background-image: url("icons/cubes-bottom-right-benefits.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.benefits-paragraph-wrapper .container {
  position: relative;
  z-index: 2;
}
.benefits-paragraph-wrapper .benefits-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.benefits-paragraph-wrapper .benefits-title-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefits-paragraph-wrapper .benefits-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.benefits-paragraph-wrapper .benefits-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.benefits-paragraph-wrapper .benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
  row-gap: 60px;
}
.benefits-paragraph-wrapper .benefits-cards .simple-card-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 40px;
}
.benefits-paragraph-wrapper .benefits-cards .simple-card-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url("icons/blue-checkmark.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
}
.benefits-paragraph-wrapper .benefits-cards .simple-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue600);
}
.benefits-paragraph-wrapper .benefits-cards .simple-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue500);
}
@media (max-width: 1000px) {
  .benefits-paragraph-wrapper .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .benefits-paragraph-wrapper::after {
    display: none;
  }
  .benefits-paragraph-wrapper .benefits-cards {
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .benefits-paragraph-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .benefits-paragraph-wrapper .benefits-inner-wrapper {
    gap: 30px;
  }
  .benefits-paragraph-wrapper .benefits-cards {
    grid-template-columns: 1fr;
  }
  .benefits-paragraph-wrapper .benefits-title {
    font-size: 42px;
  }
  .benefits-paragraph-wrapper .benefits-body {
    font-size: 16px;
  }
}

.activities-paragraph-wrapper {
  --activities-card-gap: 80px;
  --activities-step-size: 32px;
  --activities-step-gap: 5px;
  --activities-step-connector-cut: calc(
    var(--activities-step-size) + (var(--activities-step-gap) * 2)
  );
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--blue50);
}
.activities-paragraph-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 912px;
  height: 478px;
  pointer-events: none;
  background-image: url("icons/cubes-bottom-right-benefits.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.activities-paragraph-wrapper .container {
  position: relative;
  z-index: 2;
}
.activities-paragraph-wrapper .activities-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.activities-paragraph-wrapper .activities-title-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.activities-paragraph-wrapper .activities-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}
.activities-paragraph-wrapper .activities-icon .media,
.activities-paragraph-wrapper .activities-icon img,
.activities-paragraph-wrapper .activities-icon svg {
  width: 100%;
  height: 100%;
}
.activities-paragraph-wrapper .activities-icon img,
.activities-paragraph-wrapper .activities-icon svg {
  object-fit: contain;
}
.activities-paragraph-wrapper .activities-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.activities-paragraph-wrapper .activities-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.activities-paragraph-wrapper .activities-cards {
  position: relative;
  display: flex;
  gap: var(--activities-card-gap);
  counter-reset: activities-step;
}
.activities-paragraph-wrapper .activities-cards .simple-card-wrapper {
  position: relative;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 52px;
  padding-left: 0;
}
.activities-paragraph-wrapper .activities-cards .simple-card-wrapper::before {
  content: counter(activities-step);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--activities-step-size);
  height: var(--activities-step-size);
  padding: 0;
  border-radius: 999px;
  background-color: var(--blue7o);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  counter-increment: activities-step;
}
.activities-paragraph-wrapper .activities-cards .simple-card-wrapper:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(var(--activities-step-size) / 2);
  left: calc(var(--activities-step-size) + var(--activities-step-gap));
  z-index: 0;
  width: calc(100% + var(--activities-card-gap) - var(--activities-step-connector-cut));
  border-top: 1px solid var(--blue7o);
}
.activities-paragraph-wrapper .activities-cards .simple-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue600);
}
.activities-paragraph-wrapper .activities-cards .simple-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue500);
}
@media (max-width: 1200px) {
  .activities-paragraph-wrapper {
    --activities-card-gap: 40px;
  }
}
@media (max-width: 900px) {
  .activities-paragraph-wrapper {
    --activities-card-gap: 30px;
    --activities-step-size: 26px;
  }
  .activities-paragraph-wrapper .activities-cards {
    flex-direction: column;
  }
  .activities-paragraph-wrapper .activities-cards .simple-card-wrapper {
    width: 100%;
    flex: 0 0 auto;
    padding-top: 0;
    padding-left: 40px;
  }
  .activities-paragraph-wrapper .activities-cards .simple-card-wrapper::before {
    top: 0;
    left: 0;
  }
  .activities-paragraph-wrapper .activities-cards .simple-card-wrapper:not(:last-child)::after {
    top: calc(var(--activities-step-size) + var(--activities-step-gap));
    left: calc(var(--activities-step-size) / 2);
    width: 0;
    height: calc(100% + var(--activities-card-gap) - var(--activities-step-connector-cut));
    border-top: 0;
    border-left: 1px solid var(--blue7o);
  }
}
@media (max-width: 500px) {
  .activities-paragraph-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .activities-paragraph-wrapper .activities-inner-wrapper {
    gap: 30px;
  }
  .activities-paragraph-wrapper .activities-title-part {
    gap: 5px;
  }
  .activities-paragraph-wrapper .activities-icon {
    margin-bottom: 5px;
  }
  .activities-paragraph-wrapper .activities-title {
    font-size: 42px;
  }
  .activities-paragraph-wrapper .activities-body {
    font-size: 16px;
  }
  .activities-paragraph-wrapper .activities-cards .simple-card-wrapper {
    gap: 2px;
  }
}

.project-deliverables-paragraph-wrapper .project-deliverables-inner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 160px;
  align-items: start;
}
.project-deliverables-paragraph-wrapper .project-deliverables-title-part {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.project-deliverables-paragraph-wrapper .project-deliverables-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.project-deliverables-paragraph-wrapper .project-deliverables-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.project-deliverables-paragraph-wrapper .project-deliverables-body p,
.project-deliverables-paragraph-wrapper .project-deliverables-body ul,
.project-deliverables-paragraph-wrapper .project-deliverables-body ol,
.project-deliverables-paragraph-wrapper .project-deliverables-body li {
  margin: 0;
}
.project-deliverables-paragraph-wrapper .project-deliverables-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
  border-left: 3px solid var(--green200);
}
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body p,
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body ul,
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body ol,
.project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body li {
  margin: 0;
}
@media (max-width: 1300px) {
  .project-deliverables-paragraph-wrapper .project-deliverables-inner-wrapper {
    column-gap: 80px;
  }
}
@media (max-width: 800px) {
  .project-deliverables-paragraph-wrapper .project-deliverables-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .project-deliverables-paragraph-wrapper .project-deliverables-inner-wrapper {
    gap: 30px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-title-part {
    gap: 5px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-title {
    font-size: 42px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-body {
    font-size: 16px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-cards {
    gap: 30px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-wrapper {
    gap: 5px;
    padding-left: 20px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-title {
    font-size: 28px;
  }
  .project-deliverables-paragraph-wrapper .project-deliverables-cards .simple-card-body {
    font-size: 14px;
  }
}

.phases-block-paragraph-wrapper {
  --phases-card-gap: 80px;
}
.phases-block-paragraph-wrapper .phases-block-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.phases-block-paragraph-wrapper .phases-block-title-part {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phases-block-paragraph-wrapper .phases-block-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 10px;
}
.phases-block-paragraph-wrapper .phases-block-icon .media,
.phases-block-paragraph-wrapper .phases-block-icon img,
.phases-block-paragraph-wrapper .phases-block-icon svg {
  width: 100%;
  height: 100%;
}
.phases-block-paragraph-wrapper .phases-block-icon img,
.phases-block-paragraph-wrapper .phases-block-icon svg {
  object-fit: contain;
}
.phases-block-paragraph-wrapper .phases-block-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.phases-block-paragraph-wrapper .phases-block-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.phases-block-paragraph-wrapper .phases-block-cards {
  counter-reset: phase-card;
  display: flex;
  flex-direction: column;
  gap: var(--phases-card-gap);
}
.phases-block-paragraph-wrapper .phases-block-cards > .phase-card-wrapper {
  counter-increment: phase-card;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-image-half {
  width: 100%;
  height: 525px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-image-half .media,
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-image-half img {
  width: 100%;
  height: 100%;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-image-half img {
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half {
  padding-left: 80px;
  display: flex;
  justify-content: center;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-content-inner {
  display: flow-root;
  width: 100%;
  max-width: 100%;
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-eyebrow {
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue7o);
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-eyebrow::before {
  content: "Phase " counter(phase-card);
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: var(--title-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-body {
  margin-top: 20px;
  margin-bottom: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-body p {
  margin-bottom: 0;
}
.phases-block-paragraph-wrapper .phases-block-cards > .phase-card-wrapper:nth-child(even) .phase-card-image-half {
  order: 2;
}
.phases-block-paragraph-wrapper .phases-block-cards > .phase-card-wrapper:nth-child(even) .phase-card-content-half {
  order: 1;
  padding-left: 0;
  padding-right: 80px;
}
@media (max-width: 800px) {
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-image-half {
    height: auto;
    aspect-ratio: 3/2;
  }
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half {
    padding-left: 0;
    padding-right: 0;
    justify-content: flex-start;
  }
  .phases-block-paragraph-wrapper .phases-block-cards > .phase-card-wrapper:nth-child(even) .phase-card-image-half {
    order: 1;
  }
  .phases-block-paragraph-wrapper .phases-block-cards > .phase-card-wrapper:nth-child(even) .phase-card-content-half {
    order: 2;
    padding-right: 0;
  }
}
@media (max-width: 500px) {
  .phases-block-paragraph-wrapper {
    --phases-card-gap: 30px;
  }
  .phases-block-paragraph-wrapper .phases-block-inner-wrapper {
    gap: 30px;
  }
  .phases-block-paragraph-wrapper .phases-block-title-part {
    gap: 5px;
  }
  .phases-block-paragraph-wrapper .phases-block-icon {
    margin-bottom: 5px;
  }
  .phases-block-paragraph-wrapper .phases-block-title {
    font-size: 42px;
  }
  .phases-block-paragraph-wrapper .phases-block-body {
    font-size: 16px;
  }
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-eyebrow {
    margin-bottom: 5px;
  }
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-title {
    font-size: 32px;
    margin-top: 5px;
    margin-bottom: 10px;
  }
  .phases-block-paragraph-wrapper .phases-block-cards .phase-card-wrapper .phase-card-content-half .phase-card-body {
    font-size: 16px;
    margin-top: 10px;
  }
}

.competencies-paragraph-wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.competencies-paragraph-wrapper .competencies-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.competencies-paragraph-wrapper .competencies-title-part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.competencies-paragraph-wrapper .competencies-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.competencies-paragraph-wrapper .competencies-body {
  margin: 0;
}
.competencies-paragraph-wrapper .competencies-body p,
.competencies-paragraph-wrapper .competencies-body ul,
.competencies-paragraph-wrapper .competencies-body ol,
.competencies-paragraph-wrapper .competencies-body li {
  margin: 0;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue300);
}
.competencies-paragraph-wrapper .competencies-body strong,
.competencies-paragraph-wrapper .competencies-body b {
  color: var(--blue400);
}
.competencies-paragraph-wrapper .competencies-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-wrapper {
  height: 100%;
  padding: 40px;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  background-color: var(--white);
  border-top: 3px solid transparent;
  border-image-source: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
  border-image-slice: 1;
  box-shadow: 0 30px 40px -10px #cfecf8;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-image {
  width: 100px;
  height: 100px;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-image .media,
.competencies-paragraph-wrapper .competencies-cards .media-card-image img,
.competencies-paragraph-wrapper .competencies-cards .media-card-image svg {
  width: 100%;
  height: 100%;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-image img,
.competencies-paragraph-wrapper .competencies-cards .media-card-image svg {
  object-fit: contain;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.competencies-paragraph-wrapper .competencies-cards .media-card-content .media-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.competencies-paragraph-wrapper .competencies-cards .media-card-content .media-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
@media (max-width: 900px) {
  .competencies-paragraph-wrapper .competencies-title-part {
    grid-template-columns: 1fr;
  }
  .competencies-paragraph-wrapper .competencies-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .competencies-paragraph-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .competencies-paragraph-wrapper .competencies-inner-wrapper {
    gap: 30px;
  }
  .competencies-paragraph-wrapper .competencies-title-part {
    gap: 5px;
  }
  .competencies-paragraph-wrapper .competencies-title {
    font-size: 42px;
  }
  .competencies-paragraph-wrapper .competencies-body p,
  .competencies-paragraph-wrapper .competencies-body ul,
  .competencies-paragraph-wrapper .competencies-body ol,
  .competencies-paragraph-wrapper .competencies-body li {
    font-size: 24px;
  }
  .competencies-paragraph-wrapper .competencies-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .competencies-paragraph-wrapper .competencies-cards .media-card-wrapper {
    padding: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .competencies-paragraph-wrapper .competencies-cards .media-card-image {
    width: 80px;
    height: 80px;
  }
  .competencies-paragraph-wrapper .competencies-cards .media-card-content {
    gap: 10px;
  }
}

.process-timeline-paragraph-wrapper .process-timeline-inner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 160px;
  align-items: start;
}
.process-timeline-paragraph-wrapper .process-timeline-title-part {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.process-timeline-paragraph-wrapper .process-timeline-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.process-timeline-paragraph-wrapper .process-timeline-title p {
  margin: 0;
}
.process-timeline-paragraph-wrapper .process-timeline-title .highlighted-blue {
  color: var(--blue7o);
}
.process-timeline-paragraph-wrapper .process-timeline-title .highlighted-green {
  color: var(--green300);
}
.process-timeline-paragraph-wrapper .process-timeline-body {
  margin: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue500);
}
.process-timeline-paragraph-wrapper .process-timeline-body p,
.process-timeline-paragraph-wrapper .process-timeline-body ul,
.process-timeline-paragraph-wrapper .process-timeline-body ol,
.process-timeline-paragraph-wrapper .process-timeline-body li {
  margin: 0;
}
.process-timeline-paragraph-wrapper .process-timeline-cards {
  --process-timeline-card-gap: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--process-timeline-card-gap);
  counter-reset: process-timeline-step;
}
.process-timeline-paragraph-wrapper .process-timeline-cards::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 40px;
  width: 1px;
  background-color: var(--blue7o);
  z-index: 0;
}
.process-timeline-paragraph-wrapper .process-timeline-cards > .media-card-wrapper {
  margin: 0;
  position: relative;
  z-index: 1;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  column-gap: 30px;
  align-items: center;
  counter-increment: process-timeline-step;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background-color: var(--blue50);
  box-shadow: 0 0 0 5px var(--white);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image .media,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image img,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image svg {
  width: 48px;
  height: 48px;
  display: block;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image img,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image svg {
  object-fit: contain;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background-color: var(--blue50);
  box-shadow: 0 0 0 5px var(--white);
  transform: translateY(-50%);
  z-index: 2;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::after {
  content: counter(process-timeline-step);
  position: absolute;
  left: 19px;
  top: 50%;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background-color: var(--blue7o);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  z-index: 3;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-content {
  grid-column: 2;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body p,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body ul,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body ol,
.process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body li {
  margin: 0;
}
@media (min-width: 1101px) {
  .process-timeline-paragraph-wrapper .process-timeline-left {
    position: sticky;
    top: 240px;
  }
}
@media (max-width: 1300px) {
  .process-timeline-paragraph-wrapper .process-timeline-inner-wrapper {
    gap: 80px;
  }
}
@media (max-width: 1100px) {
  .process-timeline-paragraph-wrapper .process-timeline-inner-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards {
    --process-timeline-card-gap: 60px;
    gap: var(--process-timeline-card-gap);
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards::before {
    display: none;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper {
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 20px;
    align-items: start;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image {
    width: 50px;
    height: 50px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image .media,
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image img,
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image svg {
    width: 40px;
    height: 40px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::before {
    width: 50px;
    height: 50px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::after {
    left: 4px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper:not(:last-child) .media-card-content::before {
    content: "";
    position: absolute;
    top: 25px;
    left: -45px;
    width: 1px;
    height: calc(100% + var(--process-timeline-card-gap));
    background-color: var(--blue7o);
    z-index: -1;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::before,
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::after {
    top: 0;
    transform: none;
  }
}
@media (max-width: 600px) {
  .process-timeline-paragraph-wrapper .process-timeline-inner-wrapper {
    gap: 30px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-title-part {
    gap: 10px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-title {
    font-size: 42px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-body {
    font-size: 16px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards {
    --process-timeline-card-gap: 40px;
    gap: var(--process-timeline-card-gap);
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper {
    column-gap: 15px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image {
    width: 50px;
    height: 50px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image .media,
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image img,
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-image svg {
    width: 40px;
    height: 40px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::before {
    width: 50px;
    height: 50px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper.no-media-image::after {
    left: 4px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-wrapper:not(:last-child) .media-card-content::before {
    top: 25px;
    left: -40px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-title {
    font-size: 24px;
  }
  .process-timeline-paragraph-wrapper .process-timeline-cards .media-card-body {
    font-size: 14px;
  }
}

.contact-form-section-paragraph-wrapper .contact-form-section-inner-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}
.contact-form-section-paragraph-wrapper .contact-form-section-cards {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 40px;
  height: 100%;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form {
  padding: 40px;
  border-radius: var(--radius);
  background-color: var(--blue50);
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-submission-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flexbox {
  margin: 0;
  gap: 20px;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flex {
  flex: 1 1 0;
  min-width: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flex--container {
  width: 100%;
  margin: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flex,
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item,
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-managed-file,
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type],
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-actions {
  margin: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item {
  margin: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item > label:not(.option):not(.button) {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 15px;
  color: var(--blue500);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item > label.form-required::before {
  content: "*";
  position: absolute;
  top: calc(50% - 4px);
  left: 6px;
  transform: translateY(-50%);
  color: #DD2033;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item > label.form-required::after {
  display: none;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=text],
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=email],
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=tel],
.contact-form-section-paragraph-wrapper .contact-form-section-form textarea {
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--blue300);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  box-sizing: border-box;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=text]:focus,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=email]:focus,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=tel]:focus,
.contact-form-section-paragraph-wrapper .contact-form-section-form textarea:focus {
  border-color: var(--blue500);
  outline: none;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=text]::placeholder,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=email]::placeholder,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=tel]::placeholder,
.contact-form-section-paragraph-wrapper .contact-form-section-form textarea::placeholder {
  color: var(--blue300);
  font-weight: 500;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form textarea {
  height: 120px;
  min-height: 120px;
  resize: vertical;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item.form-item--error input[type=text],
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item.form-item--error input[type=email],
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item.form-item--error input[type=tel],
.contact-form-section-paragraph-wrapper .contact-form-section-form .js-form-item.form-item--error textarea,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=text].error,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=email].error,
.contact-form-section-paragraph-wrapper .contact-form-section-form input[type=tel].error,
.contact-form-section-paragraph-wrapper .contact-form-section-form textarea.error {
  border-color: #C11D33;
  background: #FFF0F2;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .messages.messages--error,
.contact-form-section-paragraph-wrapper .contact-form-section-form [data-drupal-messages],
.contact-form-section-paragraph-wrapper .contact-form-section-form [data-drupal-messages] .messages--error {
  display: none;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  margin: -5px 0 0;
  padding-top: 15px;
  border-top: 1px solid var(--green200);
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox] {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0;
  margin-top: 1px;
  flex: 0 0 22px;
  appearance: none;
  border: 1px solid var(--blue300);
  border-radius: 4px;
  background: var(--blue50);
  cursor: pointer;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border-right: 3px solid var(--blue7o);
  border-bottom: 3px solid var(--blue7o);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.12s ease;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox]:checked::after {
  transform: rotate(45deg) scale(1);
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy.form-item--error input[type=checkbox],
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy.contact-inline-error input[type=checkbox] {
  border-color: #C11D33;
  background: #FFF0F2;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] label {
  margin: 0;
  padding: 0;
  flex: 1 1 calc(100% - 30px);
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] label.form-required::before,
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] label.form-required::after {
  display: none !important;
  content: none !important;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] a,
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] a:hover,
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] a:focus {
  color: var(--blue7o);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] > .description {
  display: none;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-actions {
  margin: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .contact-form-submit {
  margin-top: 0;
  min-width: 0;
  padding-left: 35px;
  padding-right: 35px;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .contact-form-submit::after {
  display: none;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item--error-message {
  margin-top: 5px;
  padding-left: 15px;
  color: #C11D33;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy .form-item--error-message {
  flex: 1 1 100%;
  padding-left: 30px;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-actions .form-item--error-message {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 0;
}
.contact-form-section-paragraph-wrapper .contact-form-section-form .webform-confirmation__message {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--blue50);
  color: var(--blue600);
  font-size: 18px;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .contact-form-section-paragraph-wrapper .contact-form-section-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .contact-form-section-paragraph-wrapper .contact-form-section-inner-wrapper {
    gap: 15px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-cards {
    gap: 15px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form {
    padding: 24px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .webform-submission-form {
    gap: 15px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flexbox {
    display: block;
    gap: 0;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .webform-flex + .webform-flex {
    margin-top: 15px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form input[type=text],
  .contact-form-section-paragraph-wrapper .contact-form-section-form input[type=email],
  .contact-form-section-paragraph-wrapper .contact-form-section-form input[type=tel],
  .contact-form-section-paragraph-wrapper .contact-form-section-form textarea {
    height: 50px;
    min-height: 50px;
    padding: 13px 15px;
    font-size: 16px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form textarea {
    height: 120px;
    min-height: 120px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] {
    margin-top: 0;
    padding-top: 12px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .form-item-privacy-policy[data-webform-terms-of-service-type] label {
    font-size: 16px;
  }
  .contact-form-section-paragraph-wrapper .contact-form-section-form .webform-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 20px;
  }
}

.contact-side-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 40px;
  border-radius: var(--radius);
  background-color: var(--green50);
}
.contact-side-card .contact-side-card-title {
  margin: 0 0 10px;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.contact-side-card .contact-side-card-body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}
.contact-side-card .contact-side-card-body p,
.contact-side-card .contact-side-card-body ul,
.contact-side-card .contact-side-card-body ol {
  margin: 0 0 12px;
  color: inherit;
  font: inherit;
}
.contact-side-card .contact-side-card-body p:last-child,
.contact-side-card .contact-side-card-body ul:last-child,
.contact-side-card .contact-side-card-body ol:last-child {
  margin-bottom: 0;
}
.contact-side-card .contact-side-card-body a {
  color: var(--green300);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.contact-side-card .contact-side-card-cta {
  margin-top: 24px;
}
@media (max-width: 500px) {
  .contact-side-card {
    padding: 30px;
  }
  .contact-side-card .contact-side-card-title {
    font-size: 28px;
  }
  .contact-side-card .contact-side-card-body {
    font-size: 14px;
  }
  .contact-side-card .contact-side-card-body a {
    font-size: 16px;
  }
}

.contact-locations-paragraph-wrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.contact-locations-paragraph-wrapper .contact-locations-inner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.contact-locations-paragraph-wrapper .contact-locations-office-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.contact-locations-paragraph-wrapper .contact-locations-department-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 1200px) {
  .contact-locations-paragraph-wrapper .contact-locations-office-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .contact-locations-paragraph-wrapper .contact-locations-department-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .contact-locations-paragraph-wrapper .contact-locations-department-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .contact-locations-paragraph-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-locations-paragraph-wrapper .contact-locations-inner-wrapper {
    gap: 40px;
  }
}

.office-location-card {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 0;
  align-items: start;
}
.office-location-card .office-location-card-map iframe {
  display: block;
  width: 290px;
  height: 380px;
}
.office-location-card .office-location-card-map {
  overflow: hidden;
  border-radius: var(--radius);
}
.office-location-card .office-location-card-content {
  padding: 40px;
}
.office-location-card .office-location-card-title {
  margin: 0 0 15px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.office-location-card .office-location-card-body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}
.office-location-card .office-location-card-body p,
.office-location-card .office-location-card-body ul,
.office-location-card .office-location-card-body ol {
  margin: 0 0 12px;
  color: inherit;
  font: inherit;
}
.office-location-card .office-location-card-body p:last-child,
.office-location-card .office-location-card-body ul:last-child,
.office-location-card .office-location-card-body ol:last-child {
  margin-bottom: 0;
}
.office-location-card .office-location-card-body strong,
.office-location-card .office-location-card-body b {
  color: var(--blue500);
  font-weight: 700;
}
.office-location-card .office-location-card-body a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 600px) {
  .office-location-card {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .office-location-card .office-location-card-map iframe {
    width: 100%;
    height: 200px;
  }
  .office-location-card .office-location-card-content {
    padding: 0;
  }
}
@media (max-width: 500px) {
  .office-location-card .office-location-card-title {
    font-size: 28px;
  }
  .office-location-card .office-location-card-body {
    font-size: 14px;
  }
}

.department-contact-card {
  display: flex;
  min-height: 100%;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 4px;
}
.department-contact-card .department-contact-card-icon {
  flex: 0 0 auto;
}
.department-contact-card .department-contact-card-icon .media,
.department-contact-card .department-contact-card-icon img,
.department-contact-card .department-contact-card-icon picture {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.department-contact-card .department-contact-card-content {
  min-width: 0;
}
.department-contact-card .department-contact-card-title {
  margin: 0;
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.department-contact-card .department-contact-card-body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.department-contact-card .department-contact-card-body p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.department-contact-card .department-contact-card-body a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 500px) {
  .department-contact-card {
    padding: 15px;
  }
  .department-contact-card .department-contact-card-title,
  .department-contact-card .department-contact-card-body {
    font-size: 14px;
  }
}

.contact-company-details-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 900px) {
  .contact-company-details-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.company-info-column {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.company-info-column .company-info-column-icon {
  flex: 0 0 auto;
}
.company-info-column .company-info-column-icon .media,
.company-info-column .company-info-column-icon img,
.company-info-column .company-info-column-icon picture {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.company-info-column .company-info-column-content {
  min-width: 0;
}
.company-info-column .company-info-column-title {
  margin: 0 0 15px;
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.company-info-column .company-info-column-body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
}
.company-info-column .company-info-column-body p,
.company-info-column .company-info-column-body ul,
.company-info-column .company-info-column-body ol {
  margin: 0 0 12px;
  color: inherit;
  font: inherit;
}
.company-info-column .company-info-column-body p:last-child,
.company-info-column .company-info-column-body ul:last-child,
.company-info-column .company-info-column-body ol:last-child {
  margin-bottom: 0;
}
.company-info-column .company-info-column-body a {
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
@media (max-width: 500px) {
  .company-info-column .company-info-column-title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .company-info-column .company-info-column-body {
    font-size: 14px;
  }
}

section.hero {
  position: relative;
  padding-top: 120px;
  overflow: hidden;
}
@media (max-width: 1100px) {
  section.hero {
    padding-top: 60px;
  }
}
section.hero .hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
section.hero .hero-video-wrapper .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
section.hero .hero-video-wrapper .hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(110.26deg, #050d36 55.58%, #04687f 95.29%);
  opacity: 0.9;
}
section.hero .hero-wrapper {
  position: relative;
  z-index: 1;
  padding: 160px 0;
}
@media (max-width: 1100px) {
  section.hero .hero-wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 700px) {
  section.hero .hero-wrapper {
    padding: 40px 0;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper {
  display: flex;
  flex-direction: column;
  gap: 160px;
}
@media (max-width: 700px) {
  section.hero .hero-wrapper .hero-inside-wrapper {
    gap: 40px;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part {
  display: grid;
  grid-template-columns: 720px 1fr;
  gap: 160px;
}
@media (max-width: 1300px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part {
    grid-template-columns: 2fr 1fr;
    gap: 100px;
  }
}
@media (max-width: 1100px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part {
    grid-template-columns: 2fr 1fr;
    gap: 80px;
  }
}
@media (max-width: 900px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-title .hero-eyebrow {
  display: block;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green200);
  margin-bottom: 10px;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra .hero-main-part-extra-partners {
  display: flex;
  gap: 20px;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra .hero-main-part-extra-partners img {
  height: 100px;
  width: 100px;
}
@media (max-width: 700px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra .hero-main-part-extra-partners img {
    height: 80px;
    width: 80px;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra .hero-main-part-extra-description {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
}
@media (max-width: 700px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra .hero-main-part-extra-description {
    font-size: 16px;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 700px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card {
  border-top: 3px solid;
  border-image: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%) 1;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card .hero-card-icon {
  height: 48px;
  width: 48px;
  margin-bottom: 20px;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card .hero-card-icon img {
  object-fit: contain;
  object-position: center;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card .hero-card-subtitle {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 10px;
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card .hero-card-description {
  font-family: var(--font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--blue200);
}
section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card-simple .hero-card-simple-subtitle {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 10px;
}
@media (max-width: 1100px) {
  section.hero .hero-wrapper .hero-inside-wrapper .hero-cards .hero-card-simple .hero-card-simple-subtitle {
    font-size: 32px;
  }
}
section.hero.hero-static-page .hero-wrapper {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (max-width: 700px) {
  section.hero.hero-static-page .hero-wrapper {
    padding: 40px 0;
  }
}
section.hero.hero-static-page .hero-wrapper .hero-inside-wrapper .hero-main-part {
  grid-template-columns: 3fr 1fr;
  gap: 120px;
}
@media (max-width: 900px) {
  section.hero.hero-static-page .hero-wrapper .hero-inside-wrapper .hero-main-part {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
section.hero.hero-static-page .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra {
  padding-top: 32px;
}
@media (max-width: 900px) {
  section.hero.hero-static-page .hero-wrapper .hero-inside-wrapper .hero-main-part .hero-main-part-extra {
    padding-top: 0;
  }
}

section.hero.hero-offers .hero-wrapper,
section.hero.hero-services .hero-wrapper {
  padding: 120px 0;
}
section.hero.hero-offers .seroff-hero-content,
section.hero.hero-services .seroff-hero-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.hero.hero-offers .seroff-hero-top,
section.hero.hero-services .seroff-hero-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green200);
}
section.hero.hero-offers .seroff-hero-back-link,
section.hero.hero-services .seroff-hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green200);
  text-decoration: none;
}
section.hero.hero-offers .seroff-hero-back-link::before,
section.hero.hero-services .seroff-hero-back-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--green200);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
section.hero.hero-offers .seroff-hero-back-link:hover,
section.hero.hero-services .seroff-hero-back-link:hover {
  text-decoration: none;
}
section.hero.hero-offers .seroff-hero-top-separator,
section.hero.hero-offers .seroff-hero-top-current,
section.hero.hero-services .seroff-hero-top-separator,
section.hero.hero-services .seroff-hero-top-current {
  color: var(--green200);
}
section.hero.hero-offers .seroff-hero-bottom,
section.hero.hero-services .seroff-hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, auto);
  column-gap: 40px;
  align-items: start;
}
section.hero.hero-offers .seroff-hero-title,
section.hero.hero-offers .seroff-hero-description,
section.hero.hero-offers .seroff-hero-cta,
section.hero.hero-services .seroff-hero-title,
section.hero.hero-services .seroff-hero-description,
section.hero.hero-services .seroff-hero-cta {
  grid-column: 1;
  max-width: 920px;
}
section.hero.hero-offers .seroff-hero-title .hero-title,
section.hero.hero-services .seroff-hero-title .hero-title {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--white);
}
section.hero.hero-offers .seroff-hero-description,
section.hero.hero-services .seroff-hero-description {
  margin-top: 20px;
  color: var(--white);
}
section.hero.hero-offers .seroff-hero-description .field,
section.hero.hero-offers .seroff-hero-description .field__item,
section.hero.hero-services .seroff-hero-description .field,
section.hero.hero-services .seroff-hero-description .field__item {
  margin: 0;
}
section.hero.hero-offers .seroff-hero-description .field__item,
section.hero.hero-services .seroff-hero-description .field__item {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}
section.hero.hero-offers .seroff-hero-cta,
section.hero.hero-services .seroff-hero-cta {
  margin-top: 40px;
}
section.hero.hero-offers .seroff-hero-badges,
section.hero.hero-services .seroff-hero-badges {
  grid-column: 2;
  grid-row: 1/20;
  min-width: 340px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  align-items: flex-start;
}
section.hero.hero-offers .seroff-hero-badges > *,
section.hero.hero-services .seroff-hero-badges > * {
  flex: 0 0 auto;
}
section.hero.hero-offers .seroff-hero-badges img,
section.hero.hero-services .seroff-hero-badges img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}
section.hero.hero-offers .seroff-hero-content--no-badges .seroff-hero-bottom,
section.hero.hero-services .seroff-hero-content--no-badges .seroff-hero-bottom {
  grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 900px) {
  section.hero.hero-offers .hero-wrapper,
  section.hero.hero-services .hero-wrapper {
    padding: 40px 0;
  }
  section.hero.hero-offers .seroff-hero-content,
  section.hero.hero-services .seroff-hero-content {
    gap: 5px;
  }
  section.hero.hero-offers .seroff-hero-bottom,
  section.hero.hero-services .seroff-hero-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  section.hero.hero-offers .seroff-hero-title,
  section.hero.hero-offers .seroff-hero-description,
  section.hero.hero-offers .seroff-hero-cta,
  section.hero.hero-services .seroff-hero-title,
  section.hero.hero-services .seroff-hero-description,
  section.hero.hero-services .seroff-hero-cta {
    max-width: none;
    margin-top: 0;
  }
  section.hero.hero-offers .seroff-hero-title,
  section.hero.hero-services .seroff-hero-title {
    order: 1;
  }
  section.hero.hero-offers .seroff-hero-badges,
  section.hero.hero-services .seroff-hero-badges {
    order: 2;
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
  }
  section.hero.hero-offers .seroff-hero-description,
  section.hero.hero-services .seroff-hero-description {
    order: 3;
  }
  section.hero.hero-offers .seroff-hero-cta,
  section.hero.hero-services .seroff-hero-cta {
    order: 4;
  }
}
@media (max-width: 500px) {
  section.hero.hero-offers .seroff-hero-title .hero-title,
  section.hero.hero-services .seroff-hero-title .hero-title {
    font-size: 42px;
  }
  section.hero.hero-offers .seroff-hero-description .field__item,
  section.hero.hero-services .seroff-hero-description .field__item {
    font-size: 16px;
  }
  section.hero.hero-offers .seroff-hero-badges img,
  section.hero.hero-services .seroff-hero-badges img {
    width: 80px;
    height: 80px;
  }
}

section.hero.hero-blog-post .hero-wrapper,
section.hero.hero-news-post .hero-wrapper,
section.hero.hero-case-study-post .hero-wrapper {
  padding: 80px 0;
}
section.hero.hero-blog-post .blog-post-hero-content,
section.hero.hero-blog-post .news-post-hero-content,
section.hero.hero-blog-post .case-study-post-hero-content,
section.hero.hero-news-post .blog-post-hero-content,
section.hero.hero-news-post .news-post-hero-content,
section.hero.hero-news-post .case-study-post-hero-content,
section.hero.hero-case-study-post .blog-post-hero-content,
section.hero.hero-case-study-post .news-post-hero-content,
section.hero.hero-case-study-post .case-study-post-hero-content {
  display: grid;
  grid-template-columns: 500px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
section.hero.hero-blog-post .blog-post-hero-meta,
section.hero.hero-blog-post .news-post-hero-meta,
section.hero.hero-blog-post .case-study-post-hero-meta,
section.hero.hero-news-post .blog-post-hero-meta,
section.hero.hero-news-post .news-post-hero-meta,
section.hero.hero-news-post .case-study-post-hero-meta,
section.hero.hero-case-study-post .blog-post-hero-meta,
section.hero.hero-case-study-post .news-post-hero-meta,
section.hero.hero-case-study-post .case-study-post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
section.hero.hero-blog-post .blog-post-hero-back-link,
section.hero.hero-blog-post .news-post-hero-back-link,
section.hero.hero-blog-post .case-study-post-hero-back-link,
section.hero.hero-news-post .blog-post-hero-back-link,
section.hero.hero-news-post .news-post-hero-back-link,
section.hero.hero-news-post .case-study-post-hero-back-link,
section.hero.hero-case-study-post .blog-post-hero-back-link,
section.hero.hero-case-study-post .news-post-hero-back-link,
section.hero.hero-case-study-post .case-study-post-hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green200);
  text-decoration: none;
  cursor: pointer;
}
section.hero.hero-blog-post .blog-post-hero-back-link::before,
section.hero.hero-blog-post .news-post-hero-back-link::before,
section.hero.hero-blog-post .case-study-post-hero-back-link::before,
section.hero.hero-news-post .blog-post-hero-back-link::before,
section.hero.hero-news-post .news-post-hero-back-link::before,
section.hero.hero-news-post .case-study-post-hero-back-link::before,
section.hero.hero-case-study-post .blog-post-hero-back-link::before,
section.hero.hero-case-study-post .news-post-hero-back-link::before,
section.hero.hero-case-study-post .case-study-post-hero-back-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--green200);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
section.hero.hero-blog-post .blog-post-hero-back-link:hover,
section.hero.hero-blog-post .news-post-hero-back-link:hover,
section.hero.hero-blog-post .case-study-post-hero-back-link:hover,
section.hero.hero-news-post .blog-post-hero-back-link:hover,
section.hero.hero-news-post .news-post-hero-back-link:hover,
section.hero.hero-news-post .case-study-post-hero-back-link:hover,
section.hero.hero-case-study-post .blog-post-hero-back-link:hover,
section.hero.hero-case-study-post .news-post-hero-back-link:hover,
section.hero.hero-case-study-post .case-study-post-hero-back-link:hover {
  text-decoration: none;
}
section.hero.hero-blog-post .blog-post-hero-meta-divider,
section.hero.hero-blog-post .news-post-hero-meta-divider,
section.hero.hero-news-post .blog-post-hero-meta-divider,
section.hero.hero-news-post .news-post-hero-meta-divider,
section.hero.hero-case-study-post .blog-post-hero-meta-divider,
section.hero.hero-case-study-post .news-post-hero-meta-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--blue200);
}
section.hero.hero-blog-post .blog-post-hero-date,
section.hero.hero-blog-post .news-post-hero-date,
section.hero.hero-news-post .blog-post-hero-date,
section.hero.hero-news-post .news-post-hero-date,
section.hero.hero-case-study-post .blog-post-hero-date,
section.hero.hero-case-study-post .news-post-hero-date {
  color: var(--blue200);
}
section.hero.hero-blog-post .blog-post-hero-title,
section.hero.hero-blog-post .news-post-hero-title,
section.hero.hero-blog-post .case-study-post-hero-title,
section.hero.hero-news-post .blog-post-hero-title,
section.hero.hero-news-post .news-post-hero-title,
section.hero.hero-news-post .case-study-post-hero-title,
section.hero.hero-case-study-post .blog-post-hero-title,
section.hero.hero-case-study-post .news-post-hero-title,
section.hero.hero-case-study-post .case-study-post-hero-title {
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
section.hero.hero-blog-post .blog-post-hero-description,
section.hero.hero-blog-post .news-post-hero-description,
section.hero.hero-blog-post .case-study-post-hero-description,
section.hero.hero-news-post .blog-post-hero-description,
section.hero.hero-news-post .news-post-hero-description,
section.hero.hero-news-post .case-study-post-hero-description,
section.hero.hero-case-study-post .blog-post-hero-description,
section.hero.hero-case-study-post .news-post-hero-description,
section.hero.hero-case-study-post .case-study-post-hero-description {
  margin-top: 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
section.hero.hero-blog-post .blog-post-hero-image,
section.hero.hero-blog-post .news-post-hero-image,
section.hero.hero-blog-post .case-study-post-hero-image,
section.hero.hero-news-post .blog-post-hero-image,
section.hero.hero-news-post .news-post-hero-image,
section.hero.hero-news-post .case-study-post-hero-image,
section.hero.hero-case-study-post .blog-post-hero-image,
section.hero.hero-case-study-post .news-post-hero-image,
section.hero.hero-case-study-post .case-study-post-hero-image {
  width: 100%;
  aspect-ratio: 8/5;
  overflow: hidden;
  border-radius: var(--radius);
}
section.hero.hero-blog-post .blog-post-hero-image .media,
section.hero.hero-blog-post .blog-post-hero-image .field,
section.hero.hero-blog-post .blog-post-hero-image .field__item,
section.hero.hero-blog-post .news-post-hero-image .media,
section.hero.hero-blog-post .news-post-hero-image .field,
section.hero.hero-blog-post .news-post-hero-image .field__item,
section.hero.hero-blog-post .case-study-post-hero-image .media,
section.hero.hero-blog-post .case-study-post-hero-image .field,
section.hero.hero-blog-post .case-study-post-hero-image .field__item,
section.hero.hero-news-post .blog-post-hero-image .media,
section.hero.hero-news-post .blog-post-hero-image .field,
section.hero.hero-news-post .blog-post-hero-image .field__item,
section.hero.hero-news-post .news-post-hero-image .media,
section.hero.hero-news-post .news-post-hero-image .field,
section.hero.hero-news-post .news-post-hero-image .field__item,
section.hero.hero-news-post .case-study-post-hero-image .media,
section.hero.hero-news-post .case-study-post-hero-image .field,
section.hero.hero-news-post .case-study-post-hero-image .field__item,
section.hero.hero-case-study-post .blog-post-hero-image .media,
section.hero.hero-case-study-post .blog-post-hero-image .field,
section.hero.hero-case-study-post .blog-post-hero-image .field__item,
section.hero.hero-case-study-post .news-post-hero-image .media,
section.hero.hero-case-study-post .news-post-hero-image .field,
section.hero.hero-case-study-post .news-post-hero-image .field__item,
section.hero.hero-case-study-post .case-study-post-hero-image .media,
section.hero.hero-case-study-post .case-study-post-hero-image .field,
section.hero.hero-case-study-post .case-study-post-hero-image .field__item {
  width: 100%;
  height: 100%;
}
section.hero.hero-blog-post .blog-post-hero-image img,
section.hero.hero-blog-post .news-post-hero-image img,
section.hero.hero-blog-post .case-study-post-hero-image img,
section.hero.hero-news-post .blog-post-hero-image img,
section.hero.hero-news-post .news-post-hero-image img,
section.hero.hero-news-post .case-study-post-hero-image img,
section.hero.hero-case-study-post .blog-post-hero-image img,
section.hero.hero-case-study-post .news-post-hero-image img,
section.hero.hero-case-study-post .case-study-post-hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 1000px) {
  section.hero.hero-blog-post .blog-post-hero-content,
  section.hero.hero-blog-post .news-post-hero-content,
  section.hero.hero-blog-post .case-study-post-hero-content,
  section.hero.hero-news-post .blog-post-hero-content,
  section.hero.hero-news-post .news-post-hero-content,
  section.hero.hero-news-post .case-study-post-hero-content,
  section.hero.hero-case-study-post .blog-post-hero-content,
  section.hero.hero-case-study-post .news-post-hero-content,
  section.hero.hero-case-study-post .case-study-post-hero-content {
    grid-template-columns: 400px minmax(0, 1fr);
  }
  section.hero.hero-blog-post .blog-post-hero-title,
  section.hero.hero-blog-post .news-post-hero-title,
  section.hero.hero-blog-post .case-study-post-hero-title,
  section.hero.hero-news-post .blog-post-hero-title,
  section.hero.hero-news-post .news-post-hero-title,
  section.hero.hero-news-post .case-study-post-hero-title,
  section.hero.hero-case-study-post .blog-post-hero-title,
  section.hero.hero-case-study-post .news-post-hero-title,
  section.hero.hero-case-study-post .case-study-post-hero-title {
    font-size: 42px;
  }
  section.hero.hero-blog-post .blog-post-hero-description,
  section.hero.hero-blog-post .news-post-hero-description,
  section.hero.hero-blog-post .case-study-post-hero-description,
  section.hero.hero-news-post .blog-post-hero-description,
  section.hero.hero-news-post .news-post-hero-description,
  section.hero.hero-news-post .case-study-post-hero-description,
  section.hero.hero-case-study-post .blog-post-hero-description,
  section.hero.hero-case-study-post .news-post-hero-description,
  section.hero.hero-case-study-post .case-study-post-hero-description {
    font-size: 16px;
  }
}
@media (max-width: 900px) {
  section.hero.hero-blog-post .blog-post-hero-content,
  section.hero.hero-blog-post .news-post-hero-content,
  section.hero.hero-blog-post .case-study-post-hero-content,
  section.hero.hero-news-post .blog-post-hero-content,
  section.hero.hero-news-post .news-post-hero-content,
  section.hero.hero-news-post .case-study-post-hero-content,
  section.hero.hero-case-study-post .blog-post-hero-content,
  section.hero.hero-case-study-post .news-post-hero-content,
  section.hero.hero-case-study-post .case-study-post-hero-content {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  section.hero.hero-blog-post .hero-wrapper,
  section.hero.hero-news-post .hero-wrapper,
  section.hero.hero-case-study-post .hero-wrapper {
    padding: 80px 0 0;
  }
  section.hero.hero-blog-post .blog-post-hero-content,
  section.hero.hero-blog-post .news-post-hero-content,
  section.hero.hero-blog-post .case-study-post-hero-content,
  section.hero.hero-news-post .blog-post-hero-content,
  section.hero.hero-news-post .news-post-hero-content,
  section.hero.hero-news-post .case-study-post-hero-content,
  section.hero.hero-case-study-post .blog-post-hero-content,
  section.hero.hero-case-study-post .news-post-hero-content,
  section.hero.hero-case-study-post .case-study-post-hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  section.hero.hero-blog-post .blog-post-hero-image,
  section.hero.hero-blog-post .news-post-hero-image,
  section.hero.hero-blog-post .case-study-post-hero-image,
  section.hero.hero-news-post .blog-post-hero-image,
  section.hero.hero-news-post .news-post-hero-image,
  section.hero.hero-news-post .case-study-post-hero-image,
  section.hero.hero-case-study-post .blog-post-hero-image,
  section.hero.hero-case-study-post .news-post-hero-image,
  section.hero.hero-case-study-post .case-study-post-hero-image {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
    aspect-ratio: 9/5;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}
@media (max-width: 600px) {
  section.hero.hero-blog-post .hero-wrapper,
  section.hero.hero-news-post .hero-wrapper,
  section.hero.hero-case-study-post .hero-wrapper {
    padding: 40px 0 0;
  }
}

section.hero.hero-case-study-post .case-study-post-hero-image {
  aspect-ratio: 9/5;
}

.blog-post-content,
.news-post-content,
.case-study-post-content {
  margin: 120px 0;
}
.blog-post-content .blog-post-content-layout,
.blog-post-content .news-post-content-layout,
.blog-post-content .case-study-post-content-layout,
.news-post-content .blog-post-content-layout,
.news-post-content .news-post-content-layout,
.news-post-content .case-study-post-content-layout,
.case-study-post-content .blog-post-content-layout,
.case-study-post-content .news-post-content-layout,
.case-study-post-content .case-study-post-content-layout {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 120px;
  align-items: start;
}
.blog-post-content .blog-post-sidebar,
.blog-post-content .news-post-sidebar,
.blog-post-content .case-study-post-sidebar,
.news-post-content .blog-post-sidebar,
.news-post-content .news-post-sidebar,
.news-post-content .case-study-post-sidebar,
.case-study-post-content .blog-post-sidebar,
.case-study-post-content .news-post-sidebar,
.case-study-post-content .case-study-post-sidebar {
  position: relative;
  top: auto;
  isolation: isolate;
  padding: 40px;
  border-radius: var(--radius);
  background-color: var(--blue50);
  overflow: hidden;
}
.blog-post-content .blog-post-sidebar::before,
.blog-post-content .news-post-sidebar::before,
.blog-post-content .case-study-post-sidebar::before,
.news-post-content .blog-post-sidebar::before,
.news-post-content .news-post-sidebar::before,
.news-post-content .case-study-post-sidebar::before,
.case-study-post-content .blog-post-sidebar::before,
.case-study-post-content .news-post-sidebar::before,
.case-study-post-content .case-study-post-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 440px;
  height: 376px;
  background-image: url("icons/sidebar-card-cubes.svg");
  background-repeat: no-repeat;
  background-size: 440px 376px;
  pointer-events: none;
  z-index: 0;
}
.blog-post-content .blog-post-sidebar > *,
.blog-post-content .news-post-sidebar > *,
.blog-post-content .case-study-post-sidebar > *,
.news-post-content .blog-post-sidebar > *,
.news-post-content .news-post-sidebar > *,
.news-post-content .case-study-post-sidebar > *,
.case-study-post-content .blog-post-sidebar > *,
.case-study-post-content .news-post-sidebar > *,
.case-study-post-content .case-study-post-sidebar > * {
  position: relative;
  z-index: 1;
}
.blog-post-content .blog-post-sidebar-heading,
.blog-post-content .news-post-sidebar-heading,
.blog-post-content .case-study-post-sidebar-heading,
.news-post-content .blog-post-sidebar-heading,
.news-post-content .news-post-sidebar-heading,
.news-post-content .case-study-post-sidebar-heading,
.case-study-post-content .blog-post-sidebar-heading,
.case-study-post-content .news-post-sidebar-heading,
.case-study-post-content .case-study-post-sidebar-heading {
  margin: 0;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.blog-post-content .blog-post-share-buttons,
.blog-post-content .news-post-share-buttons,
.news-post-content .blog-post-share-buttons,
.news-post-content .news-post-share-buttons,
.case-study-post-content .blog-post-share-buttons,
.case-study-post-content .news-post-share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}
.blog-post-content .blog-post-share-button,
.blog-post-content .news-post-share-button,
.news-post-content .blog-post-share-button,
.news-post-content .news-post-share-button,
.case-study-post-content .blog-post-share-button,
.case-study-post-content .news-post-share-button {
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: #d4f3fe;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.blog-post-content .blog-post-share-button:hover,
.blog-post-content .news-post-share-button:hover,
.news-post-content .blog-post-share-button:hover,
.news-post-content .news-post-share-button:hover,
.case-study-post-content .blog-post-share-button:hover,
.case-study-post-content .news-post-share-button:hover {
  background: #ade9ff;
}
.blog-post-content .blog-post-share-icon,
.blog-post-content .news-post-share-icon,
.news-post-content .blog-post-share-icon,
.news-post-content .news-post-share-icon,
.case-study-post-content .blog-post-share-icon,
.case-study-post-content .news-post-share-icon {
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.blog-post-content .blog-post-share-icon-linkedin,
.blog-post-content .news-post-share-icon-linkedin,
.news-post-content .blog-post-share-icon-linkedin,
.news-post-content .news-post-share-icon-linkedin,
.case-study-post-content .blog-post-share-icon-linkedin,
.case-study-post-content .news-post-share-icon-linkedin {
  background-image: url("icons/social-share/linkedin-social-share-icon.svg");
}
.blog-post-content .blog-post-share-icon-facebook,
.blog-post-content .news-post-share-icon-facebook,
.news-post-content .blog-post-share-icon-facebook,
.news-post-content .news-post-share-icon-facebook,
.case-study-post-content .blog-post-share-icon-facebook,
.case-study-post-content .news-post-share-icon-facebook {
  background-image: url("icons/social-share/facebook-social-share-icon.svg");
}
.blog-post-content .blog-post-share-icon-x,
.blog-post-content .news-post-share-icon-x,
.news-post-content .blog-post-share-icon-x,
.news-post-content .news-post-share-icon-x,
.case-study-post-content .blog-post-share-icon-x,
.case-study-post-content .news-post-share-icon-x {
  background-image: url("icons/social-share/x-social-share-icon.svg");
}
.blog-post-content .blog-post-share-icon-link,
.blog-post-content .news-post-share-icon-link,
.news-post-content .blog-post-share-icon-link,
.news-post-content .news-post-share-icon-link,
.case-study-post-content .blog-post-share-icon-link,
.case-study-post-content .news-post-share-icon-link {
  background-image: url("icons/social-share/link-social-share-icon.svg");
}
.blog-post-content .blog-post-sidebar-tags,
.blog-post-content .news-post-sidebar-tags,
.news-post-content .blog-post-sidebar-tags,
.news-post-content .news-post-sidebar-tags,
.case-study-post-content .blog-post-sidebar-tags,
.case-study-post-content .news-post-sidebar-tags {
  margin-top: 40px;
}
.blog-post-content .blog-post-sidebar-tag-list,
.blog-post-content .news-post-sidebar-tag-list,
.news-post-content .blog-post-sidebar-tag-list,
.news-post-content .news-post-sidebar-tag-list,
.case-study-post-content .blog-post-sidebar-tag-list,
.case-study-post-content .news-post-sidebar-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.blog-post-content .blog-post-tag,
.blog-post-content .news-post-tag,
.news-post-content .blog-post-tag,
.news-post-content .news-post-tag,
.case-study-post-content .blog-post-tag,
.case-study-post-content .news-post-tag {
  padding: 5px 10px;
  border-radius: 999px;
  background: #d4f3fe;
  color: #008abd;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  cursor: default;
  transition: background-color 0.2s ease;
}
.blog-post-content .blog-post-tag:hover,
.blog-post-content .news-post-tag:hover,
.news-post-content .blog-post-tag:hover,
.news-post-content .news-post-tag:hover,
.case-study-post-content .blog-post-tag:hover,
.case-study-post-content .news-post-tag:hover {
  background: #ade9ff;
}
.blog-post-content .case-study-post-main,
.news-post-content .case-study-post-main,
.case-study-post-content .case-study-post-main {
  min-width: 0;
}
.blog-post-content .case-study-post-sidebar,
.news-post-content .case-study-post-sidebar,
.case-study-post-content .case-study-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-post-content .case-study-post-sidebar::after,
.news-post-content .case-study-post-sidebar::after,
.case-study-post-content .case-study-post-sidebar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 276px;
  height: 183px;
  background-image: url("icons/cubes-bottom-right.svg");
  background-repeat: no-repeat;
  background-size: 276px 183px;
  background-position: right bottom;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}
.blog-post-content .case-study-post-sidebar--empty,
.news-post-content .case-study-post-sidebar--empty,
.case-study-post-content .case-study-post-sidebar--empty {
  padding: 0;
  background: transparent;
  overflow: visible;
}
.blog-post-content .case-study-post-sidebar--empty::before, .blog-post-content .case-study-post-sidebar--empty::after,
.news-post-content .case-study-post-sidebar--empty::before,
.news-post-content .case-study-post-sidebar--empty::after,
.case-study-post-content .case-study-post-sidebar--empty::before,
.case-study-post-content .case-study-post-sidebar--empty::after {
  display: none;
}
.blog-post-content .case-study-post-sidebar-section,
.news-post-content .case-study-post-sidebar-section,
.case-study-post-content .case-study-post-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog-post-content .case-study-post-sidebar-section-about,
.news-post-content .case-study-post-sidebar-section-about,
.case-study-post-content .case-study-post-sidebar-section-about {
  gap: 10px;
}
.blog-post-content .case-study-post-sidebar-about-copy,
.news-post-content .case-study-post-sidebar-about-copy,
.case-study-post-content .case-study-post-sidebar-about-copy {
  color: var(--blue600);
}
.blog-post-content .case-study-post-sidebar-about-copy .field,
.blog-post-content .case-study-post-sidebar-about-copy .field__item,
.news-post-content .case-study-post-sidebar-about-copy .field,
.news-post-content .case-study-post-sidebar-about-copy .field__item,
.case-study-post-content .case-study-post-sidebar-about-copy .field,
.case-study-post-content .case-study-post-sidebar-about-copy .field__item {
  margin: 0;
}
.blog-post-content .case-study-post-sidebar-about-copy .field__item,
.news-post-content .case-study-post-sidebar-about-copy .field__item,
.case-study-post-content .case-study-post-sidebar-about-copy .field__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-post-content .case-study-post-sidebar-about-copy p,
.news-post-content .case-study-post-sidebar-about-copy p,
.case-study-post-content .case-study-post-sidebar-about-copy p {
  margin: 0;
  color: var(--blue600);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.blog-post-content .case-study-post-sidebar-about-copy [data-case-study-extra-paragraph],
.news-post-content .case-study-post-sidebar-about-copy [data-case-study-extra-paragraph],
.case-study-post-content .case-study-post-sidebar-about-copy [data-case-study-extra-paragraph] {
  margin-top: 10px;
}
.blog-post-content .case-study-post-sidebar-about-copy li,
.news-post-content .case-study-post-sidebar-about-copy li,
.case-study-post-content .case-study-post-sidebar-about-copy li {
  color: var(--blue600);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.blog-post-content .case-study-post-sidebar-about-copy a,
.news-post-content .case-study-post-sidebar-about-copy a,
.case-study-post-content .case-study-post-sidebar-about-copy a {
  color: var(--blue7o200);
  text-decoration: underline;
}
.blog-post-content .case-study-post-sidebar-about-copy a:hover,
.news-post-content .case-study-post-sidebar-about-copy a:hover,
.case-study-post-content .case-study-post-sidebar-about-copy a:hover {
  text-decoration: none;
}
.blog-post-content .case-study-post-sidebar-about-copy.is-collapsed [data-case-study-extra-paragraph],
.news-post-content .case-study-post-sidebar-about-copy.is-collapsed [data-case-study-extra-paragraph],
.case-study-post-content .case-study-post-sidebar-about-copy.is-collapsed [data-case-study-extra-paragraph] {
  display: none;
}
.blog-post-content .case-study-post-sidebar-more,
.news-post-content .case-study-post-sidebar-more,
.case-study-post-content .case-study-post-sidebar-more {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue7o200);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: underline;
  cursor: pointer;
}
.blog-post-content .case-study-post-sidebar-more:hover,
.news-post-content .case-study-post-sidebar-more:hover,
.case-study-post-content .case-study-post-sidebar-more:hover {
  text-decoration: none;
}
.blog-post-content .case-study-post-chip-list,
.news-post-content .case-study-post-chip-list,
.case-study-post-content .case-study-post-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-post-content .case-study-post-chip,
.news-post-content .case-study-post-chip,
.case-study-post-content .case-study-post-chip {
  padding: 5px 10px;
  border-radius: 999px;
  background: #d4f3fe;
  color: #008abd;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  cursor: default;
  transition: background-color 0.2s ease;
}
.blog-post-content .case-study-post-chip:hover,
.news-post-content .case-study-post-chip:hover,
.case-study-post-content .case-study-post-chip:hover {
  background: #ade9ff;
}
@media (max-width: 1300px) {
  .blog-post-content .blog-post-content-layout,
  .blog-post-content .news-post-content-layout,
  .blog-post-content .case-study-post-content-layout,
  .news-post-content .blog-post-content-layout,
  .news-post-content .news-post-content-layout,
  .news-post-content .case-study-post-content-layout,
  .case-study-post-content .blog-post-content-layout,
  .case-study-post-content .news-post-content-layout,
  .case-study-post-content .case-study-post-content-layout {
    gap: 60px;
  }
}
@media (min-width: 1101px) {
  .blog-post-content .blog-post-sidebar,
  .blog-post-content .news-post-sidebar,
  .blog-post-content .case-study-post-sidebar,
  .news-post-content .blog-post-sidebar,
  .news-post-content .news-post-sidebar,
  .news-post-content .case-study-post-sidebar,
  .case-study-post-content .blog-post-sidebar,
  .case-study-post-content .news-post-sidebar,
  .case-study-post-content .case-study-post-sidebar {
    position: sticky;
    top: 240px;
  }
}
@media (max-width: 1100px) {
  .blog-post-content,
  .news-post-content,
  .case-study-post-content {
    margin-top: 0;
  }
  .blog-post-content .blog-post-content-layout,
  .blog-post-content .news-post-content-layout,
  .blog-post-content .case-study-post-content-layout,
  .news-post-content .blog-post-content-layout,
  .news-post-content .news-post-content-layout,
  .news-post-content .case-study-post-content-layout,
  .case-study-post-content .blog-post-content-layout,
  .case-study-post-content .news-post-content-layout,
  .case-study-post-content .case-study-post-content-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .blog-post-content .blog-post-sidebar,
  .blog-post-content .news-post-sidebar,
  .blog-post-content .case-study-post-sidebar,
  .news-post-content .blog-post-sidebar,
  .news-post-content .news-post-sidebar,
  .news-post-content .case-study-post-sidebar,
  .case-study-post-content .blog-post-sidebar,
  .case-study-post-content .news-post-sidebar,
  .case-study-post-content .case-study-post-sidebar {
    max-width: none;
    padding: 30px 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .blog-post-content .case-study-post-sidebar--empty,
  .news-post-content .case-study-post-sidebar--empty,
  .case-study-post-content .case-study-post-sidebar--empty {
    display: none;
  }
  .blog-post-content .case-study-post-sidebar--empty + .case-study-post-main,
  .news-post-content .case-study-post-sidebar--empty + .case-study-post-main,
  .case-study-post-content .case-study-post-sidebar--empty + .case-study-post-main {
    margin-top: 40px;
  }
  .blog-post-content .blog-post-body,
  .blog-post-content .news-post-body,
  .blog-post-content .case-study-post-body,
  .news-post-content .blog-post-body,
  .news-post-content .news-post-body,
  .news-post-content .case-study-post-body,
  .case-study-post-content .blog-post-body,
  .case-study-post-content .news-post-body,
  .case-study-post-content .case-study-post-body {
    max-width: 840px;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .blog-post-content,
  .news-post-content,
  .case-study-post-content {
    margin: 0 0 30px;
  }
  .blog-post-content .blog-post-share-buttons,
  .blog-post-content .news-post-share-buttons,
  .news-post-content .blog-post-share-buttons,
  .news-post-content .news-post-share-buttons,
  .case-study-post-content .blog-post-share-buttons,
  .case-study-post-content .news-post-share-buttons {
    margin-top: 5px;
    gap: 15px;
  }
  .blog-post-content .blog-post-share-button,
  .blog-post-content .news-post-share-button,
  .news-post-content .blog-post-share-button,
  .news-post-content .news-post-share-button,
  .case-study-post-content .blog-post-share-button,
  .case-study-post-content .news-post-share-button {
    width: 40px;
    height: 40px;
  }
  .blog-post-content .blog-post-share-icon,
  .blog-post-content .news-post-share-icon,
  .news-post-content .blog-post-share-icon,
  .news-post-content .news-post-share-icon,
  .case-study-post-content .blog-post-share-icon,
  .case-study-post-content .news-post-share-icon {
    width: 20px;
    height: 20px;
  }
  .blog-post-content .blog-post-sidebar-tags,
  .blog-post-content .news-post-sidebar-tags,
  .news-post-content .blog-post-sidebar-tags,
  .news-post-content .news-post-sidebar-tags,
  .case-study-post-content .blog-post-sidebar-tags,
  .case-study-post-content .news-post-sidebar-tags {
    margin-top: 30px;
  }
  .blog-post-content .blog-post-sidebar-tag-list,
  .blog-post-content .news-post-sidebar-tag-list,
  .blog-post-content .case-study-post-chip-list,
  .news-post-content .blog-post-sidebar-tag-list,
  .news-post-content .news-post-sidebar-tag-list,
  .news-post-content .case-study-post-chip-list,
  .case-study-post-content .blog-post-sidebar-tag-list,
  .case-study-post-content .news-post-sidebar-tag-list,
  .case-study-post-content .case-study-post-chip-list {
    margin-top: 5px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .blog-post-content .blog-post-sidebar-tag-list::-webkit-scrollbar,
  .blog-post-content .news-post-sidebar-tag-list::-webkit-scrollbar,
  .blog-post-content .case-study-post-chip-list::-webkit-scrollbar,
  .news-post-content .blog-post-sidebar-tag-list::-webkit-scrollbar,
  .news-post-content .news-post-sidebar-tag-list::-webkit-scrollbar,
  .news-post-content .case-study-post-chip-list::-webkit-scrollbar,
  .case-study-post-content .blog-post-sidebar-tag-list::-webkit-scrollbar,
  .case-study-post-content .news-post-sidebar-tag-list::-webkit-scrollbar,
  .case-study-post-content .case-study-post-chip-list::-webkit-scrollbar {
    display: none;
  }
  .blog-post-content .blog-post-tag,
  .blog-post-content .news-post-tag,
  .blog-post-content .case-study-post-chip,
  .news-post-content .blog-post-tag,
  .news-post-content .news-post-tag,
  .news-post-content .case-study-post-chip,
  .case-study-post-content .blog-post-tag,
  .case-study-post-content .news-post-tag,
  .case-study-post-content .case-study-post-chip {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  .blog-post-content .case-study-post-sidebar,
  .news-post-content .case-study-post-sidebar,
  .case-study-post-content .case-study-post-sidebar {
    gap: 30px;
  }
  .blog-post-content .case-study-post-sidebar::after,
  .news-post-content .case-study-post-sidebar::after,
  .case-study-post-content .case-study-post-sidebar::after {
    display: none;
  }
  .blog-post-content .case-study-post-sidebar-section,
  .news-post-content .case-study-post-sidebar-section,
  .case-study-post-content .case-study-post-sidebar-section {
    gap: 15px;
  }
  .blog-post-content .case-study-post-sidebar-about-copy p,
  .blog-post-content .case-study-post-sidebar-about-copy li,
  .blog-post-content .case-study-post-sidebar-about-copy a,
  .blog-post-content .case-study-post-sidebar-more,
  .news-post-content .case-study-post-sidebar-about-copy p,
  .news-post-content .case-study-post-sidebar-about-copy li,
  .news-post-content .case-study-post-sidebar-about-copy a,
  .news-post-content .case-study-post-sidebar-more,
  .case-study-post-content .case-study-post-sidebar-about-copy p,
  .case-study-post-content .case-study-post-sidebar-about-copy li,
  .case-study-post-content .case-study-post-sidebar-about-copy a,
  .case-study-post-content .case-study-post-sidebar-more {
    font-size: 14px;
  }
}

.share-copy-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(8px);
  z-index: 9999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--blue600);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.share-copy-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.news-post-gallery-section {
  margin-bottom: 120px;
}

.news-post-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1200px) {
  .news-post-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .news-post-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .news-post-gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.news-post-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease;
}
.news-post-gallery-item:hover {
  transform: translateY(-2px);
}
.news-post-gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

body.news-gallery-open {
  overflow: hidden;
}

.news-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  padding: 24px;
}

.news-gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 13, 51, 0.9);
  cursor: pointer;
}

.news-gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-gallery-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(156, 186, 222, 0.2);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.news-gallery-lightbox-figure {
  margin: 0;
  max-width: 90vw;
  max-height: 82vh;
}

.news-gallery-lightbox-image {
  max-width: min(90vw, 1400px);
  max-height: 82vh;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius);
}

.news-gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(156, 186, 222, 0.2);
  transform: translateY(-50%);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-gallery-lightbox-nav-prev {
  left: 0;
}

.news-gallery-lightbox-nav-next {
  right: 0;
}

.news-gallery-lightbox-nav-icon {
  width: 24px;
  height: 24px;
  background-color: var(--white);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.news-gallery-lightbox-nav-icon-prev {
  transform: scaleX(-1);
}

.news-gallery-lightbox-counter {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--blue200);
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 800px) {
  .news-post-gallery-section {
    margin-bottom: 80px;
  }
  .news-gallery-lightbox {
    padding: 16px;
  }
  .news-gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }
}
section.hero.hero-careers-post .hero-wrapper {
  padding: 80px 0;
}
section.hero.hero-careers-post .careers-post-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  gap: 120px;
  align-items: center;
}
section.hero.hero-careers-post .careers-post-hero-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.hero.hero-careers-post .careers-post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
section.hero.hero-careers-post .careers-post-hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green200);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}
section.hero.hero-careers-post .careers-post-hero-back-link::before {
  content: "";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-color: var(--green200);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
section.hero.hero-careers-post .careers-post-hero-back-link:hover {
  text-decoration: none;
}
section.hero.hero-careers-post .careers-post-hero-meta-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--blue200);
}
section.hero.hero-careers-post .careers-post-hero-valid-until {
  color: var(--blue200);
}
section.hero.hero-careers-post .careers-post-hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
section.hero.hero-careers-post .careers-post-hero-title {
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 100px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}
section.hero.hero-careers-post .careers-post-hero-department {
  margin: 0;
  color: var(--blue7o);
  font-family: var(--font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}
section.hero.hero-careers-post .careers-post-hero-description {
  color: var(--white);
}
section.hero.hero-careers-post .careers-post-hero-description p {
  margin: 0;
  color: inherit;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1320px) {
  section.hero.hero-careers-post .careers-post-hero-content {
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 80px;
  }
  section.hero.hero-careers-post .careers-post-hero-title {
    font-size: 84px;
  }
}
@media (max-width: 1100px) {
  section.hero.hero-careers-post .careers-post-hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  section.hero.hero-careers-post .careers-post-hero-title {
    font-size: 72px;
  }
}
@media (max-width: 700px) {
  section.hero.hero-careers-post .hero-wrapper {
    padding: 40px 0;
  }
  section.hero.hero-careers-post .careers-post-hero-back-link {
    font-size: 16px;
  }
  section.hero.hero-careers-post .careers-post-hero-title {
    font-size: 52px;
  }
  section.hero.hero-careers-post .careers-post-hero-department {
    font-size: 20px;
  }
  section.hero.hero-careers-post .careers-post-hero-description p {
    font-size: 16px;
  }
}

.careers-post-content {
  margin: 120px 0;
}
.careers-post-content .careers-post-content-layout {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 120px;
  align-items: start;
}
.careers-post-content .careers-post-sidebar {
  position: relative;
  isolation: isolate;
  padding: 40px;
  border-radius: var(--radius);
  background-color: var(--blue50);
  overflow: hidden;
}
.careers-post-content .careers-post-sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 440px;
  height: 376px;
  background-image: url("icons/sidebar-card-cubes.svg");
  background-repeat: no-repeat;
  background-size: 440px 376px;
  pointer-events: none;
  z-index: 0;
}
.careers-post-content .careers-post-sidebar > * {
  position: relative;
  z-index: 1;
}
.careers-post-content .careers-post-sidebar-heading {
  margin: 0;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.careers-post-content .careers-post-sidebar-copy {
  margin: 20px 0 40px;
  color: var(--blue600);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.careers-post-content .careers-post-sidebar-button {
  min-width: 184px;
}
.careers-post-content .careers-post-main {
  min-width: 0;
}
@media (min-width: 1101px) {
  .careers-post-content .careers-post-sidebar {
    position: sticky;
    top: 240px;
  }
}
@media (max-width: 1300px) {
  .careers-post-content .careers-post-content-layout {
    gap: 60px;
  }
}
@media (max-width: 1100px) {
  .careers-post-content {
    margin-top: 0;
  }
  .careers-post-content .careers-post-content-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  .careers-post-content .careers-post-sidebar {
    max-width: none;
    padding: 30px 15px;
    margin-left: -15px;
    margin-right: -15px;
  }
  .careers-post-content .careers-post-body {
    max-width: 840px;
    width: 100%;
  }
}
@media (max-width: 700px) {
  .careers-post-content {
    margin: 0 0 30px;
  }
  .careers-post-content .careers-post-sidebar-heading {
    font-size: 24px;
  }
  .careers-post-content .careers-post-sidebar-copy {
    margin: 20px 0 30px;
    font-size: 14px;
  }
}

body.careers-application-modal-open {
  overflow: hidden;
}

.careers-application-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
  background: rgba(5, 13, 51, 0.45);
  backdrop-filter: blur(10px);
}

.careers-application-modal[hidden] {
  display: none !important;
}

.careers-application-modal-dialog {
  position: relative;
  width: min(100%, 600px);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(5, 13, 51, 0.24);
}

.careers-application-modal-content {
  padding: 60px 40px 40px;
}

.careers-application-modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.careers-application-modal-close span {
  position: absolute;
  top: 29px;
  left: 20px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue600);
}
.careers-application-modal-close span:first-child {
  transform: rotate(45deg);
}
.careers-application-modal-close span:last-child {
  transform: rotate(-45deg);
}

.careers-application-modal-title {
  margin: 0;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.careers-application-modal-intro {
  margin: 10px 0 0;
  color: var(--blue400);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.careers-application-modal-form {
  margin-top: 40px;
}
.careers-application-modal-form .webform-submission-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.careers-application-modal-form .webform-flexbox {
  margin: 0;
  gap: 20px;
}
.careers-application-modal-form .webform-flex {
  flex: 1 1 0;
  min-width: 0;
}
.careers-application-modal-form .webform-flex--container {
  width: 100%;
  margin: 0;
}
.careers-application-modal-form .js-form-item,
.careers-application-modal-form .form-managed-file,
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] {
  margin: 0;
}
.careers-application-modal-form .form-item {
  margin: 0;
}
.careers-application-modal-form .js-form-item > label:not(.option):not(.button) {
  position: relative;
  display: inline-block;
  margin-bottom: 5px;
  padding-left: 15px;
  color: var(--blue500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.careers-application-modal-form .js-form-item > label.form-required::before {
  content: "*";
  position: absolute;
  top: calc(50% - 4px);
  left: 6px;
  transform: translateY(-50%);
  color: #DD2033;
}
.careers-application-modal-form .js-form-item > label.form-required::after {
  display: none;
}
.careers-application-modal-form input[type=text],
.careers-application-modal-form input[type=email],
.careers-application-modal-form input[type=tel],
.careers-application-modal-form textarea {
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 13px 15px;
  border: 1px solid var(--blue300);
  border-radius: var(--radius);
  background: var(--blue50);
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  box-sizing: border-box;
}
.careers-application-modal-form input[type=text]:focus,
.careers-application-modal-form input[type=email]:focus,
.careers-application-modal-form input[type=tel]:focus,
.careers-application-modal-form textarea:focus {
  border-color: var(--blue500);
  outline: none;
}
.careers-application-modal-form input[type=text]::placeholder,
.careers-application-modal-form input[type=email]::placeholder,
.careers-application-modal-form input[type=tel]::placeholder,
.careers-application-modal-form textarea::placeholder {
  color: var(--blue300);
  font-weight: 500;
}
.careers-application-modal-form textarea {
  height: 120px;
  min-height: 120px;
  resize: vertical;
}
.careers-application-modal-form .form-item-resume .form-managed-file {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid var(--blue300);
  border-radius: var(--radius);
  background: var(--blue50);
  box-sizing: border-box;
  cursor: pointer;
}
.careers-application-modal-form .form-item-resume .form-managed-file:focus-within {
  border-color: var(--blue500);
}
.careers-application-modal-form .form-item-resume .form-managed-file::before {
  content: attr(data-file-name);
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  max-width: calc(100% - 150px);
  overflow: hidden;
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-overflow: ellipsis;
  transform: translateY(-50%);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-file::before {
  opacity: 1;
}
.careers-application-modal-form .form-item-resume .form-managed-file input[type=file] {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: 50px;
  min-height: 50px;
  padding: 0;
  border: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}
.careers-application-modal-form .form-item-resume .form-managed-file input[type=file]::file-selector-button {
  display: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file input[type=file]::-webkit-file-upload-button {
  display: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file .webform-file-button {
  position: absolute;
  top: 50%;
  right: 15px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  transform: translateY(-50%);
  min-height: 0;
  padding: 5px 10px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: var(--blue7o50);
  color: var(--blue7o200);
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  pointer-events: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file {
  display: flex;
  align-items: center;
  gap: 10px;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file::before {
  display: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .file {
  min-width: 0;
  margin: 0;
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .file a,
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .file a:hover,
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .file a:focus {
  color: inherit;
  font: inherit;
  text-decoration: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .file-link__size {
  color: var(--blue300);
  font-family: inherit;
  font-size: 14px;
  font-weight: inherit;
  line-height: inherit;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .careers-resume-remove-button {
  margin: 0 0 0 auto;
  min-height: 0;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: var(--blue7o50);
  color: var(--blue7o200);
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: none;
}
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .careers-resume-remove-button:hover,
.careers-application-modal-form .form-item-resume .form-managed-file.has-uploaded-file .careers-resume-remove-button:focus {
  background: var(--blue7o100);
  color: var(--blue7o200);
}
.careers-application-modal-form .description,
.careers-application-modal-form .form-item-resume .description,
.careers-application-modal-form .form-managed-file .description {
  flex: 1 1 100%;
  margin-top: 5px;
  padding-left: 15px;
  color: var(--blue500);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.careers-application-modal-form .js-form-item.form-item--error input[type=text],
.careers-application-modal-form .js-form-item.form-item--error input[type=email],
.careers-application-modal-form .js-form-item.form-item--error input[type=tel],
.careers-application-modal-form .js-form-item.form-item--error textarea,
.careers-application-modal-form .form-item-resume.form-item--error .form-managed-file input[type=file],
.careers-application-modal-form input[type=text].error,
.careers-application-modal-form input[type=email].error,
.careers-application-modal-form input[type=tel].error,
.careers-application-modal-form textarea.error,
.careers-application-modal-form input[type=file].error {
  border-color: #C11D33;
  background: #FFF0F2;
}
.careers-application-modal-form .form-item-resume.form-item--error .form-managed-file::before {
  color: #C11D33;
}
.careers-application-modal-form .form-item-resume.form-item--error .webform-file-button {
  background: var(--blue7o50);
}
.careers-application-modal-form .form-item-resume.form-item--error .form-managed-file {
  border-color: #C11D33;
  background: #FFF0F2;
}
.careers-application-modal-form .form-item-resume.careers-resume-file-error .form-managed-file {
  border-color: #C11D33;
  background: #FFF0F2;
}
.careers-application-modal-form .messages.messages--error,
.careers-application-modal-form [data-drupal-messages],
.careers-application-modal-form [data-drupal-messages] .messages--error {
  display: none;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] {
  margin: 20px 0;
  padding-top: 20px;
  border-top: 1px solid var(--green200);
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox] {
  position: relative;
  width: 22px;
  height: 22px;
  margin: 0;
  margin-top: 1px;
  flex: 0 0 22px;
  appearance: none;
  border: 1px solid var(--blue300);
  border-radius: 4px;
  background: var(--blue50);
  cursor: pointer;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 7px;
  width: 6px;
  height: 12px;
  border-right: 3px solid var(--blue7o);
  border-bottom: 3px solid var(--blue7o);
  transform: rotate(45deg) scale(0);
  transform-origin: center;
  transition: transform 0.12s ease;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] input[type=checkbox]:checked::after {
  transform: rotate(45deg) scale(1);
}
.careers-application-modal-form .form-item-privacy-policy.form-item--error input[type=checkbox],
.careers-application-modal-form .form-item-privacy-policy.careers-inline-error input[type=checkbox] {
  border-color: #C11D33;
  background: #FFF0F2;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] label {
  margin: 0;
  padding: 0;
  flex: 1 1 calc(100% - 30px);
  color: var(--blue500);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] label.form-required::before,
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] label.form-required::after {
  display: none !important;
  content: none !important;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] a,
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] a:hover,
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] a:focus {
  color: var(--blue7o);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] > .description {
  display: none;
}
.careers-application-modal-form .webform-actions {
  margin: 0;
}
.careers-application-modal-form .webform-actions .button.careers-application-submit {
  margin-top: 0;
  padding-right: 35px;
  min-width: 0;
}
.careers-application-modal-form .webform-actions .button.careers-application-submit::after {
  display: none;
}
.careers-application-modal-form .webform-confirmation__message {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--blue50);
  color: var(--blue600);
  font-size: 18px;
  line-height: 1.5;
}
.careers-application-modal-form .form-item--error-message {
  margin-top: 5px;
  padding-left: 15px;
  color: #C11D33;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.careers-application-modal-form .form-item-privacy-policy .form-item--error-message {
  flex: 1 1 100%;
  padding-left: 30px;
}
.careers-application-modal-form .webform-actions .form-item--error-message {
  margin-top: 0;
  margin-bottom: 12px;
  padding-left: 0;
}

@media (max-width: 700px) {
  .careers-application-modal {
    padding: 16px;
  }
  .careers-application-modal-dialog {
    max-height: calc(100vh - 32px);
  }
  .careers-application-modal-content {
    padding: 60px 20px 32px;
  }
  .careers-application-modal-close {
    width: 60px;
    height: 60px;
  }
  .careers-application-modal-title {
    font-size: 42px;
  }
  .careers-application-modal-intro {
    font-size: 16px;
  }
  .careers-application-modal-form .webform-submission-form {
    gap: 15px;
  }
  .careers-application-modal-form .webform-flexbox {
    display: block;
    gap: 0;
  }
  .careers-application-modal-form .webform-flex + .webform-flex {
    margin-top: 15px;
  }
  .careers-application-modal-form input[type=text],
  .careers-application-modal-form input[type=email],
  .careers-application-modal-form input[type=tel],
  .careers-application-modal-form textarea {
    height: 50px;
    min-height: 50px;
    padding: 13px 15px;
    font-size: 16px;
  }
  .careers-application-modal-form textarea {
    height: 120px;
    min-height: 120px;
  }
  .careers-application-modal-form .form-item-privacy-policy[data-webform-terms-of-service-type] label {
    font-size: 16px;
  }
  .careers-application-modal-form .webform-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    font-size: 20px;
  }
}
section.hero.hero-clients-post .hero-wrapper {
  padding: 80px 0;
}
section.hero.hero-clients-post .clients-post-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 60px;
  align-items: center;
}
section.hero.hero-clients-post .clients-post-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
section.hero.hero-clients-post .clients-post-hero-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green200);
  text-decoration: none;
}
section.hero.hero-clients-post .clients-post-hero-back-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--green200);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
section.hero.hero-clients-post .clients-post-hero-meta-divider {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--blue200);
}
section.hero.hero-clients-post .clients-post-hero-meta-label {
  color: var(--blue200);
}
section.hero.hero-clients-post .clients-post-hero-title {
  margin: 0;
  color: var(--white);
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
section.hero.hero-clients-post .clients-post-hero-description {
  margin-top: 20px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 760px;
}
section.hero.hero-clients-post .clients-post-hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 32px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
}
section.hero.hero-clients-post .clients-post-hero-logo .media,
section.hero.hero-clients-post .clients-post-hero-logo .field,
section.hero.hero-clients-post .clients-post-hero-logo .field__item {
  width: 100%;
}
section.hero.hero-clients-post .clients-post-hero-logo img {
  width: 100%;
  max-height: 120px;
  display: block;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 1000px) {
  section.hero.hero-clients-post .clients-post-hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  section.hero.hero-clients-post .clients-post-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 600px) {
  section.hero.hero-clients-post .hero-wrapper {
    padding: 40px 0;
  }
  section.hero.hero-clients-post .clients-post-hero-title {
    font-size: 32px;
  }
  section.hero.hero-clients-post .clients-post-hero-description {
    font-size: 16px;
  }
}

.clients-post-content {
  margin: 120px 0;
}
.clients-post-content .clients-post-content-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
.clients-post-content .clients-post-sidebar {
  padding: 32px;
  border-radius: var(--radius);
  background-color: var(--blue50);
}
.clients-post-content .clients-post-sidebar-section + .clients-post-sidebar-section {
  margin-top: 24px;
}
.clients-post-content .clients-post-sidebar-heading,
.clients-post-content .clients-post-card-title {
  margin: 0 0 20px;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.clients-post-content .clients-post-meta-list {
  margin: 0;
}
.clients-post-content .clients-post-meta-row + .clients-post-meta-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--green100);
}
.clients-post-content .clients-post-meta-row dt {
  margin: 0 0 6px;
  color: var(--blue400);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.clients-post-content .clients-post-meta-row dd {
  margin: 0;
  color: var(--blue500);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}
.clients-post-content .clients-post-meta-row a {
  color: var(--blue600);
  text-decoration: underline;
}
.clients-post-content .clients-post-edit-link {
  width: 100%;
  justify-content: center;
}
.clients-post-content .clients-post-main {
  display: grid;
  gap: 24px;
}
.clients-post-content .clients-post-card {
  padding: 32px;
  border: 1px solid var(--blue7o100);
  border-radius: var(--radius);
  background-color: var(--white);
}
.clients-post-content .clients-post-card-copy p:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .clients-post-content {
    margin: 48px 0 80px;
  }
  .clients-post-content .clients-post-content-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

.news-view-wrapper {
  margin-top: 40px;
  margin-bottom: 120px;
}

.news-view-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.news-view-inner-wrapper > .views-row {
  min-width: 0;
}
.news-view-inner-wrapper > .views-row .views-field-nothing {
  height: 100%;
}
.news-view-inner-wrapper > .views-row .news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-view-inner-wrapper > .views-row .news-card-image {
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 9/5;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}
.news-view-inner-wrapper > .views-row .news-card-image .media,
.news-view-inner-wrapper > .views-row .news-card-image .field,
.news-view-inner-wrapper > .views-row .news-card-image .field__item,
.news-view-inner-wrapper > .views-row .news-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.news-view-inner-wrapper > .views-row .news-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.news-view-inner-wrapper > .views-row .news-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.news-view-inner-wrapper > .views-row .news-card-type {
  color: var(--blue7o);
}
.news-view-inner-wrapper > .views-row .news-card-separator {
  color: var(--blue200);
  line-height: 1;
}
.news-view-inner-wrapper > .views-row .news-card-date {
  color: var(--blue300);
}
.news-view-inner-wrapper > .views-row .news-card-title {
  margin: 0 0 10px;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.news-view-inner-wrapper > .views-row .news-card-title-link {
  color: inherit;
  text-decoration: none;
}
.news-view-inner-wrapper > .views-row .news-card-title-link:hover {
  color: inherit;
  text-decoration: none;
}
.news-view-inner-wrapper > .views-row .news-card-description {
  margin-bottom: 15px;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.news-view-inner-wrapper > .views-row .news-card-button {
  align-self: flex-start;
  position: relative;
  display: inline-block;
  padding: 7px 30px 7px 10px;
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: var(--white);
  border: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.news-view-inner-wrapper > .views-row .news-card-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("icons/chevron-right-white-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.news-view-inner-wrapper > .views-row .news-card-button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

.news-view-wrapper .pager {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--green200);
}

.news-view-wrapper .pager__items {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.news-view-wrapper .pager__item--first,
.news-view-wrapper .pager__item--last {
  display: none;
}

.news-view-wrapper .pager__item--ellipsis {
  display: none;
}

.news-view-wrapper .pager__item {
  margin: 0;
  padding: 0;
}
.news-view-wrapper .pager__item > a,
.news-view-wrapper .pager__item > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--green300);
  background: var(--green50);
}
.news-view-wrapper .pager__item > a:hover {
  background: var(--green100);
  box-shadow: 0px 5px 20px 0px #DCFFEB;
  text-decoration: none;
}
.news-view-wrapper .pager__item.is-active > a, .news-view-wrapper .pager__item.is-active > span {
  color: var(--white);
  background: var(--green300);
}
.news-view-wrapper .pager__item.pager__item--previous > a, .news-view-wrapper .pager__item.pager__item--previous > span, .news-view-wrapper .pager__item.pager__item--next > a, .news-view-wrapper .pager__item.pager__item--next > span {
  font-size: 0;
}
.news-view-wrapper .pager__item.pager__item--previous {
  margin-right: 40px;
}
.news-view-wrapper .pager__item.pager__item--next {
  margin-left: 40px;
}
.news-view-wrapper .pager__item.pager__item--previous > a:before, .news-view-wrapper .pager__item.pager__item--previous > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
.news-view-wrapper .pager__item.pager__item--next > a:before, .news-view-wrapper .pager__item.pager__item--next > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (max-width: 1200px) {
  .news-view-inner-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .news-view-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .news-view-wrapper {
    margin-bottom: 80px;
  }
}
@media (max-width: 500px) {
  .news-view-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .news-view-inner-wrapper {
    gap: 40px;
  }
  .news-view-inner-wrapper > .views-row .news-card-meta {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .news-view-inner-wrapper > .views-row .news-card-date {
    order: 1;
    font-size: 18px;
  }
  .news-view-inner-wrapper > .views-row .news-card-separator {
    display: none;
  }
  .news-view-inner-wrapper > .views-row .news-card-type {
    order: 2;
    font-size: 18px;
  }
  .news-view-inner-wrapper > .views-row .news-card-title {
    font-size: 24px;
  }
  .news-view-inner-wrapper > .views-row .news-card-description {
    font-size: 14px;
  }
  .news-view-wrapper .pager {
    padding-top: 20px;
  }
  .news-view-wrapper .pager__items {
    gap: 8px;
  }
  .news-view-wrapper .pager__item.pager__item--previous {
    margin-right: 24px;
  }
  .news-view-wrapper .pager__item.pager__item--next {
    margin-left: 24px;
  }
}
.three-blog-news-view {
  margin: 120px 0;
}

.three-blog-news-view__header {
  margin-bottom: 40px;
}

.three-blog-news-view__title {
  margin: 0;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.three-blog-news-view__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.three-blog-news-view__grid > .views-row {
  min-width: 0;
}
.three-blog-news-view__grid > .views-row .views-field-nothing {
  height: 100%;
}

.three-blog-news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.three-blog-news-card__image {
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 9/5;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}
.three-blog-news-card__image .media,
.three-blog-news-card__image .field,
.three-blog-news-card__image .field__item,
.three-blog-news-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.three-blog-news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.three-blog-news-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.three-blog-news-card__type {
  color: var(--blue7o);
}

.three-blog-news-card__separator {
  color: var(--blue200);
  line-height: 1;
}

.three-blog-news-card__date {
  color: var(--blue300);
}

.three-blog-news-card__title {
  margin: 0 0 10px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.three-blog-news-card__title-link {
  color: inherit;
  text-decoration: none;
}
.three-blog-news-card__title-link:hover {
  color: inherit;
  text-decoration: none;
}

.three-blog-news-card__description {
  margin-bottom: 15px;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.three-blog-news-card__button {
  align-self: flex-start;
  position: relative;
  display: inline-block;
  padding: 7px 30px 7px 10px;
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: var(--white);
  border: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.three-blog-news-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("icons/chevron-right-white-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.three-blog-news-card__button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

@media (max-width: 1200px) {
  .three-blog-news-view__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .three-blog-news-view {
    margin: 80px 0;
  }
  .three-blog-news-view__title {
    font-size: 42px;
  }
  .three-blog-news-view__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .three-blog-news-view {
    margin: 40px 0;
  }
  .three-blog-news-view__header {
    margin-bottom: 20px;
  }
  .three-blog-news-view__title {
    font-size: 32px;
  }
  .three-blog-news-view__grid {
    gap: 40px;
  }
  .three-blog-news-card__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .three-blog-news-card__date {
    order: 1;
    font-size: 18px;
  }
  .three-blog-news-card__separator {
    display: none;
  }
  .three-blog-news-card__type {
    order: 2;
    font-size: 18px;
  }
  .three-blog-news-card__title {
    font-size: 24px;
  }
  .three-blog-news-card__description {
    font-size: 14px;
  }
}
.careers-openings-view {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}

.careers-openings-view__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.careers-openings-view__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.careers-openings-view__title {
  margin: 0;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.careers-openings-view__body {
  margin: 0;
}
.careers-openings-view__body p,
.careers-openings-view__body ul,
.careers-openings-view__body ol,
.careers-openings-view__body li {
  margin: 0;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue300);
}
.careers-openings-view__body strong,
.careers-openings-view__body b {
  color: var(--blue400);
}

.careers-openings-view__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.careers-openings-view__grid > .views-row {
  min-width: 0;
}
.careers-openings-view__grid > .views-row .views-field-nothing {
  height: 100%;
}

.careers-openings-view__empty {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.careers-openings-view__empty p {
  margin: 0;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.careers-openings-card,
.careers-openings-card__link {
  height: 100%;
}

.careers-openings-card__link {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px;
  overflow: hidden;
  border-radius: 0 0 var(--radius) var(--radius);
  background-color: var(--white);
  box-shadow: 0 30px 40px -10px #cfecf8;
  text-decoration: none;
}
.careers-openings-card__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
}
.careers-openings-card__link:hover, .careers-openings-card__link:focus-visible {
  box-shadow: 0 10px 20px -5px #cfecf8;
  text-decoration: none;
}
.careers-openings-card__link:hover::before, .careers-openings-card__link:focus-visible::before {
  background: linear-gradient(90deg, #0f759a 0%, #00aeef 100%);
}
.careers-openings-card__link:hover .careers-openings-card__title, .careers-openings-card__link:focus-visible .careers-openings-card__title {
  color: var(--blue7o);
}
.careers-openings-card__link:hover .careers-openings-card__button, .careers-openings-card__link:focus-visible .careers-openings-card__button {
  border-color: #e2f7ff;
  background: var(--blue7o);
}

.careers-openings-card__department,
.careers-openings-card__title,
.careers-openings-card__body,
.careers-openings-card__button {
  position: relative;
  z-index: 1;
}

.careers-openings-card__department {
  margin: 0 0 5px;
  color: var(--blue7o);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.careers-openings-card__title {
  margin: 0 0 12px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.careers-openings-card__body {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.careers-openings-card__body p {
  margin: 0;
  color: inherit;
  font: inherit;
}

.careers-openings-card__button {
  margin-top: 20px;
  margin-left: -5px;
  width: 50px;
  height: 50px;
  border: 5px solid #e1ffee;
  border-radius: 50%;
  background: var(--button-gradient);
}
.careers-openings-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-image: url("icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 900px) {
  .careers-openings-view__header {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .careers-openings-view__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .careers-openings-view {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .careers-openings-view__inner {
    gap: 30px;
  }
  .careers-openings-view__header {
    gap: 5px;
  }
  .careers-openings-view__title {
    font-size: 42px;
  }
  .careers-openings-view__body p,
  .careers-openings-view__body ul,
  .careers-openings-view__body ol,
  .careers-openings-view__body li {
    font-size: 24px;
  }
  .careers-openings-view__grid {
    gap: 15px;
  }
  .careers-openings-view__empty p {
    font-size: 14px;
  }
  .careers-openings-card__link {
    min-height: 0;
    padding: 30px;
  }
  .careers-openings-card__title {
    margin-bottom: 5px;
    font-size: 28px;
  }
  .careers-openings-card__body {
    font-size: 14px;
  }
  .careers-openings-card__button {
    margin-top: 20px;
    margin-left: -5px;
    width: 40px;
    height: 40px;
  }
  .careers-openings-card__button::after {
    width: 18px;
    height: 18px;
  }
}
.service-offer-view-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
}
.service-offer-view-wrapper::before, .service-offer-view-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.service-offer-view-wrapper::before {
  left: 0;
  width: 550px;
  height: 255px;
  background-image: url("icons/cubes-top-left.svg");
}
.service-offer-view-wrapper::after {
  right: 0;
  width: 560px;
  height: 284px;
  background-image: url("icons/cubes-top-right.svg");
}
.service-offer-view-wrapper .container {
  position: relative;
  z-index: 2;
}

.service-offer-view-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.service-offer-view-inner-wrapper > .views-row {
  min-width: 0;
}
.service-offer-view-inner-wrapper > .views-row .views-field-nothing {
  height: 100%;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card {
  height: 100%;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link {
  position: relative;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 30px 40px -10px #cfecf8;
  overflow: hidden;
  text-decoration: none;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link:hover, .service-offer-view-inner-wrapper > .views-row .service-offer-card-link:focus-visible {
  text-decoration: none;
  box-shadow: 0 10px 20px -5px #cfecf8;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link:hover::before, .service-offer-view-inner-wrapper > .views-row .service-offer-card-link:focus-visible::before {
  background: linear-gradient(90deg, #0f759a 0%, #00aeef 100%);
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link:hover .service-offer-card-title, .service-offer-view-inner-wrapper > .views-row .service-offer-card-link:focus-visible .service-offer-card-title {
  color: var(--blue7o);
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-link:hover .service-offer-card-button, .service-offer-view-inner-wrapper > .views-row .service-offer-card-link:focus-visible .service-offer-card-button {
  background: var(--blue7o);
  border-color: #e2f7ff;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-title,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-description,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-button {
  position: relative;
  z-index: 1;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon .media,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon .field,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon .field__item,
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-title {
  margin: 0 0 10px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-description {
  margin-bottom: 20px;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-description p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-button {
  width: 50px;
  height: 50px;
  margin-top: auto;
  flex-shrink: 0;
  border: 5px solid #e1ffee;
  border-radius: 50%;
  background: var(--button-gradient);
}
.service-offer-view-inner-wrapper > .views-row .service-offer-card-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-image: url("icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 1100px) {
  .service-offer-view-wrapper::before, .service-offer-view-wrapper::after {
    display: none;
  }
  .service-offer-view-inner-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .service-offer-view-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .service-offer-view-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .service-offer-view-inner-wrapper {
    gap: 15px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-link {
    padding: 20px 30px 30px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-icon {
    margin-bottom: 15px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-title {
    margin-bottom: 5px;
    font-size: 28px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-description {
    font-size: 14px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-button {
    width: 40px;
    height: 40px;
  }
  .service-offer-view-inner-wrapper > .views-row .service-offer-card-button::after {
    width: 18px;
    height: 18px;
  }
}
.homepage-offers-view {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--white);
}
.homepage-offers-view::before, .homepage-offers-view::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
}
.homepage-offers-view::before {
  left: 0;
  width: 550px;
  height: 255px;
  background-image: url("icons/cubes-top-left.svg");
}
.homepage-offers-view::after {
  right: 0;
  width: 560px;
  height: 284px;
  background-image: url("icons/cubes-top-right.svg");
}
.homepage-offers-view .container {
  position: relative;
  z-index: 2;
}
.homepage-offers-view .homepage-offers-view__content {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.homepage-offers-view .homepage-offers-view__intro,
.homepage-offers-view .homepage-offers-view__header,
.homepage-offers-view .homepage-offers-view__subtitle {
  width: 100%;
  max-width: 440px;
}
.homepage-offers-view .homepage-offers-view__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.homepage-offers-view .homepage-offers-view__title {
  margin: 0;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.homepage-offers-view .homepage-offers-view__subtitle {
  color: var(--blue500);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
.homepage-offers-view .homepage-offers-view__subtitle p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.homepage-offers-view .homepage-offers-view__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}
.homepage-offers-view .homepage-offers-view__cards > .views-row {
  min-width: 0;
}
.homepage-offers-view .homepage-offers-view__cards > .views-row .views-field-nothing,
.homepage-offers-view .homepage-offers-view__cards > .views-row .homepage-offers-card,
.homepage-offers-view .homepage-offers-view__cards > .views-row .homepage-offers-card__link {
  height: 100%;
}
.homepage-offers-view .homepage-offers-card__link {
  position: relative;
  min-height: 150px;
  padding: 20px 60px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: var(--green50);
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: none;
  text-decoration: none;
}
.homepage-offers-view .homepage-offers-card__link:hover, .homepage-offers-view .homepage-offers-card__link:focus-visible {
  box-shadow: 0 5px 20px 0 #dcffeb;
  border-color: var(--green200);
  text-decoration: none;
}
.homepage-offers-view .homepage-offers-card__link:hover .homepage-offers-card__title, .homepage-offers-view .homepage-offers-card__link:focus-visible .homepage-offers-card__title {
  color: var(--green300);
}
.homepage-offers-view .homepage-offers-card__link:hover .homepage-offers-card__description, .homepage-offers-view .homepage-offers-card__link:focus-visible .homepage-offers-card__description {
  color: var(--blue600);
}
.homepage-offers-view .homepage-offers-card__title,
.homepage-offers-view .homepage-offers-card__description,
.homepage-offers-view .homepage-offers-card__button {
  position: relative;
  z-index: 1;
}
.homepage-offers-view .homepage-offers-card__title {
  margin: 0 0 2px;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.homepage-offers-view .homepage-offers-card__description {
  margin: 0;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
.homepage-offers-view .homepage-offers-card__description p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.homepage-offers-view .homepage-offers-card__button {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border: 3px solid #c9f2cf;
  border-radius: 50%;
  background: var(--button-gradient);
}
.homepage-offers-view .homepage-offers-card__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  background-image: url("icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media (max-width: 1100px) {
  .homepage-offers-view::after {
    width: 560px;
    height: 284px;
  }
  .homepage-offers-view::before {
    top: auto;
    bottom: 0;
    transform: scale(1, -1);
  }
  .homepage-offers-view .homepage-offers-view__content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
  }
  .homepage-offers-view .homepage-offers-view__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .homepage-offers-view .homepage-offers-view__cards {
    grid-template-columns: 1fr;
  }
  .homepage-offers-view .homepage-offers-card__link {
    min-height: 96px;
  }
}
@media (max-width: 500px) {
  .homepage-offers-view {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .homepage-offers-view::before {
    width: 440px;
    height: 204px;
  }
  .homepage-offers-view::after {
    width: 448px;
    height: 227px;
  }
  .homepage-offers-view .homepage-offers-view__content {
    gap: 30px;
  }
  .homepage-offers-view .homepage-offers-view__header {
    gap: 10px;
  }
  .homepage-offers-view .homepage-offers-view__title {
    font-size: 42px;
  }
  .homepage-offers-view .homepage-offers-view__subtitle {
    font-size: 16px;
  }
  .homepage-offers-view .homepage-offers-view__cards {
    gap: 10px;
  }
  .homepage-offers-view .homepage-offers-card__link {
    padding: 15px 60px 15px 15px;
  }
  .homepage-offers-view .homepage-offers-card__button {
    top: 12px;
    right: 12px;
  }
}
.seroff-slider {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--blue50);
  overflow: hidden;
}
.seroff-slider .container {
  position: relative;
}
.seroff-slider .seroff-slider-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.seroff-slider .seroff-slider-carousel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.seroff-slider .seroff-slider-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 40px;
  align-items: start;
}
.seroff-slider .seroff-slider-title {
  margin: 0;
  font-family: var(--title-font);
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.seroff-slider .seroff-slider-subtitle p,
.seroff-slider .seroff-slider-subtitle ul,
.seroff-slider .seroff-slider-subtitle ol,
.seroff-slider .seroff-slider-subtitle li {
  margin: 0;
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue300);
}
.seroff-slider .seroff-slider-subtitle strong,
.seroff-slider .seroff-slider-subtitle b {
  color: var(--blue400);
}
.seroff-slider .seroff-slider-breakout {
  overflow: visible;
}
.seroff-slider .seroff-slider-track {
  overflow: visible;
}
.seroff-slider .seroff-slider-cards {
  align-items: stretch;
  overflow: visible;
}
.seroff-slider .seroff-slider-cards > .views-row {
  height: auto;
  min-width: 0;
}
.seroff-slider .seroff-slider-cards > .views-row .views-field-nothing,
.seroff-slider .seroff-slider-cards > .views-row .seroff-slider-card,
.seroff-slider .seroff-slider-cards > .views-row .seroff-slider-card-link {
  height: 100%;
}
.seroff-slider .seroff-slider-card {
  height: 100%;
}
.seroff-slider .seroff-slider-card-link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 40px 100px;
  background-color: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 30px 40px -10px #cfecf8;
  overflow: hidden;
  text-decoration: none;
}
.seroff-slider .seroff-slider-card-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(98.33deg, #27b966 28%, #0990a9 100%);
}
.seroff-slider .seroff-slider-card-link:hover, .seroff-slider .seroff-slider-card-link:focus-visible {
  text-decoration: none;
  box-shadow: 0 10px 20px -5px #cfecf8;
}
.seroff-slider .seroff-slider-card-link:hover::before, .seroff-slider .seroff-slider-card-link:focus-visible::before {
  background: linear-gradient(90deg, #0f759a 0%, #00aeef 100%);
}
.seroff-slider .seroff-slider-card-link:hover .seroff-slider-card-title, .seroff-slider .seroff-slider-card-link:focus-visible .seroff-slider-card-title {
  color: var(--blue7o);
}
.seroff-slider .seroff-slider-card-link:hover .seroff-slider-card-button, .seroff-slider .seroff-slider-card-link:focus-visible .seroff-slider-card-button {
  background: var(--blue7o);
  border-color: #e2f7ff;
}
.seroff-slider .seroff-slider-card-icon,
.seroff-slider .seroff-slider-card-title,
.seroff-slider .seroff-slider-card-description,
.seroff-slider .seroff-slider-card-button {
  position: relative;
  z-index: 1;
}
.seroff-slider .seroff-slider-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
}
.seroff-slider .seroff-slider-card-icon .media,
.seroff-slider .seroff-slider-card-icon .field,
.seroff-slider .seroff-slider-card-icon .field__item,
.seroff-slider .seroff-slider-card-icon picture {
  display: block;
  width: 100%;
  height: 100%;
}
.seroff-slider .seroff-slider-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.seroff-slider .seroff-slider-card-title {
  margin: 0 0 12px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
}
.seroff-slider .seroff-slider-card-description {
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.seroff-slider .seroff-slider-card-description p {
  margin: 0;
  color: inherit;
  font: inherit;
}
.seroff-slider .seroff-slider-card-button {
  position: absolute;
  left: 35px;
  bottom: 35px;
  width: 50px;
  height: 50px;
  border: 5px solid #e1ffee;
  border-radius: 50%;
  background: var(--button-gradient);
}
.seroff-slider .seroff-slider-card-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-image: url("icons/arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.seroff-slider .seroff-slider-navigation {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 20px;
}
.seroff-slider .seroff-slider-nav {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 1px solid #95bdcd;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.seroff-slider .seroff-slider-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.seroff-slider .seroff-slider-nav:hover:not(:disabled), .seroff-slider .seroff-slider-nav:focus-visible:not(:disabled) {
  border-color: var(--blue300);
}
.seroff-slider .seroff-slider-nav:disabled {
  opacity: 0.45;
  cursor: default;
}
.seroff-slider .seroff-slider-nav-prev::before {
  background-image: url("icons/arrow-left-blue300.svg");
}
.seroff-slider .seroff-slider-nav-next::before {
  background-image: url("icons/arrow-right-blue300.svg");
}
.seroff-slider.seroff-slider-locked .seroff-slider-navigation {
  opacity: 0.45;
}

@media (max-width: 900px) {
  .seroff-slider .seroff-slider-header {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 500px) {
  .seroff-slider {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .seroff-slider .seroff-slider-content {
    gap: 30px;
  }
  .seroff-slider .seroff-slider-header {
    gap: 5px;
  }
  .seroff-slider .seroff-slider-title {
    font-size: 42px;
  }
  .seroff-slider .seroff-slider-subtitle p,
  .seroff-slider .seroff-slider-subtitle ul,
  .seroff-slider .seroff-slider-subtitle ol,
  .seroff-slider .seroff-slider-subtitle li {
    font-size: 24px;
  }
  .seroff-slider .seroff-slider-carousel {
    gap: 20px;
  }
  .seroff-slider .seroff-slider-card-link {
    padding: 20px 30px 80px;
  }
  .seroff-slider .seroff-slider-card-icon {
    margin-bottom: 15px;
  }
  .seroff-slider .seroff-slider-card-title {
    margin-bottom: 5px;
    font-size: 28px;
  }
  .seroff-slider .seroff-slider-card-description {
    font-size: 14px;
  }
  .seroff-slider .seroff-slider-card-button {
    left: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
  }
  .seroff-slider .seroff-slider-card-button::after {
    width: 18px;
    height: 18px;
  }
  .seroff-slider .seroff-slider-navigation {
    gap: 10px;
  }
  .seroff-slider .seroff-slider-nav {
    width: 50px;
    height: 50px;
  }
}
.blog-view-wrapper {
  margin-top: 40px;
  margin-bottom: 120px;
}

.blog-view-filters {
  margin-bottom: 40px;
}
.blog-view-filters .views-exposed-form {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap !important;
  width: 100%;
  gap: 20px;
  margin: 0;
}
.blog-view-filters .form--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-view-filters .form-item {
  float: none;
  margin: 0;
  width: auto;
  flex: 0 0 auto;
}
.blog-view-filters .form-item-field-blog-category-value {
  width: 220px;
  flex-basis: 220px;
  margin-right: 0;
}
.blog-view-filters .form-item-sort-by {
  width: 220px;
  flex-basis: 220px;
  margin-left: auto;
}
.blog-view-filters .form-item-sort-order,
.blog-view-filters .form-actions {
  display: none;
}
.blog-view-filters .form-item > label {
  display: none;
}
.blog-view-filters .form-select {
  width: 220px;
  height: 50px;
  padding: 13px 15px;
  box-sizing: border-box;
  border: 1px solid var(--blue300);
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--blue500);
  background-color: transparent;
  background-image: url("icons/chevron-down-blue500.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right 15px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.blog-view-filters .form-select:focus {
  outline: none;
  border-color: var(--blue300);
}
.blog-view-filters .form-select::-ms-expand {
  display: none;
}

.blog-view-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.blog-view-inner-wrapper > .views-row {
  min-width: 0;
}
.blog-view-inner-wrapper > .views-row .views-field-nothing {
  height: 100%;
}
.blog-view-inner-wrapper > .views-row .blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-view-inner-wrapper > .views-row .blog-card-image {
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 9/5;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}
.blog-view-inner-wrapper > .views-row .blog-card-image .media,
.blog-view-inner-wrapper > .views-row .blog-card-image .field,
.blog-view-inner-wrapper > .views-row .blog-card-image .field__item,
.blog-view-inner-wrapper > .views-row .blog-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.blog-view-inner-wrapper > .views-row .blog-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}
.blog-view-inner-wrapper > .views-row .blog-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.blog-view-inner-wrapper > .views-row .blog-card-type {
  color: var(--blue7o);
}
.blog-view-inner-wrapper > .views-row .blog-card-separator {
  color: var(--blue200);
  line-height: 1;
}
.blog-view-inner-wrapper > .views-row .blog-card-date {
  color: var(--blue300);
}
.blog-view-inner-wrapper > .views-row .blog-card-title {
  margin: 0 0 10px;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--blue500);
}
.blog-view-inner-wrapper > .views-row .blog-card-title-link {
  color: inherit;
  text-decoration: none;
}
.blog-view-inner-wrapper > .views-row .blog-card-title-link:hover {
  color: inherit;
  text-decoration: none;
}
.blog-view-inner-wrapper > .views-row .blog-card-description {
  margin-bottom: 15px;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.blog-view-inner-wrapper > .views-row .blog-card-button {
  align-self: flex-start;
  position: relative;
  display: inline-block;
  padding: 7px 30px 7px 10px;
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: var(--white);
  border: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.blog-view-inner-wrapper > .views-row .blog-card-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("icons/chevron-right-white-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.blog-view-inner-wrapper > .views-row .blog-card-button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

.blog-view-wrapper .pager {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--green200);
}

.blog-view-wrapper .pager__items {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.blog-view-wrapper .pager__item--first,
.blog-view-wrapper .pager__item--last {
  display: none;
}

.blog-view-wrapper .pager__item--ellipsis {
  display: none;
}

.blog-view-wrapper .pager__item {
  margin: 0;
  padding: 0;
}
.blog-view-wrapper .pager__item > a,
.blog-view-wrapper .pager__item > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--green300);
  background: var(--green50);
}
.blog-view-wrapper .pager__item > a:hover {
  background: var(--green100);
  box-shadow: 0px 5px 20px 0px #DCFFEB;
  text-decoration: none;
}
.blog-view-wrapper .pager__item.is-active > a, .blog-view-wrapper .pager__item.is-active > span {
  color: var(--white);
  background: var(--green300);
}
.blog-view-wrapper .pager__item.pager__item--previous > a, .blog-view-wrapper .pager__item.pager__item--previous > span, .blog-view-wrapper .pager__item.pager__item--next > a, .blog-view-wrapper .pager__item.pager__item--next > span {
  font-size: 0;
}
.blog-view-wrapper .pager__item.pager__item--previous {
  margin-right: 40px;
}
.blog-view-wrapper .pager__item.pager__item--next {
  margin-left: 40px;
}
.blog-view-wrapper .pager__item.pager__item--previous > a:before, .blog-view-wrapper .pager__item.pager__item--previous > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
.blog-view-wrapper .pager__item.pager__item--next > a:before, .blog-view-wrapper .pager__item.pager__item--next > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card {
  position: relative;
  height: 550px;
  padding: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  justify-content: flex-end;
  cursor: pointer;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card::after,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 13, 51, 0.9) 15.5%, rgba(5, 13, 51, 0) 100%);
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  z-index: 0;
  margin: 0;
  border-radius: 0;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image .media,
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image .field,
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image .field__item,
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image picture,
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image img,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .media,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .field,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .field__item,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image picture,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-image img,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image img {
  object-fit: cover;
  object-position: center;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card > *:not(.blog-card-image),
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card > *:not(.blog-card-image) {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-title,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-title {
  position: relative;
  z-index: 4;
  color: var(--white);
  font-size: 48px;
  line-height: 1.1;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-title-link::after,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-title-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-description,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-description {
  color: var(--white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 20px;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-button,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-button {
  position: relative;
  z-index: 5;
  font-size: 16px;
  padding: 10px 39px 10px 15px;
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-button:after,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-button:after {
  width: 24px;
  height: 24px;
  right: 10px;
  background-image: url("icons/chevron-right-white.svg");
}
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card:hover .blog-card-button,
.blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card:focus-within .blog-card-button,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card:hover .blog-card-button,
.blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card:focus-within .blog-card-button {
  background: var(--button-hover);
  text-decoration: none;
}

@media (min-width: 801px) {
  .blog-view-inner-wrapper > .views-row:nth-child(1),
  .blog-view-inner-wrapper > .views-row:nth-child(7) {
    grid-column: span 2;
  }
}
@media (max-width: 1200px) {
  .blog-view-inner-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 801px) and (max-width: 1200px) {
  .blog-view-inner-wrapper > .views-row:nth-child(6) {
    order: 7;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) {
    order: 6;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(n+8) {
    order: 8;
  }
}
@media (max-width: 800px) {
  .blog-view-inner-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .blog-view-wrapper {
    margin-bottom: 80px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card {
    padding: 30px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card {
    position: static;
    height: auto;
    padding: 0;
    overflow: visible;
    justify-content: flex-start;
    cursor: default;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card::after {
    display: none;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image {
    position: static;
    inset: auto;
    width: auto;
    height: auto;
    aspect-ratio: 9/5;
    z-index: auto;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .media,
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .field,
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image .field__item,
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-image img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
    object-fit: cover;
    object-position: center;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card > *:not(.blog-card-image):not(.blog-card-button) {
    position: static;
    z-index: auto;
    max-width: none;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-title {
    position: static;
    z-index: auto;
    color: var(--blue500);
    font-size: 24px;
    line-height: 1.2;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-title-link::after {
    content: none;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-description {
    color: var(--blue400);
    font-size: 16px;
    margin-bottom: 15px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-button {
    position: relative;
    z-index: auto;
    font-size: 14px;
    padding: 7px 30px 7px 10px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-button:after {
    width: 16px;
    height: 16px;
    right: 8px;
    background-image: url("icons/chevron-right-white-mobile.svg");
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card:hover .blog-card-button,
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card:focus-within .blog-card-button {
    background: var(--button-gradient);
  }
}
@media (max-width: 500px) {
  .blog-view-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .blog-view-filters {
    margin-bottom: 20px;
  }
  .blog-view-filters .views-exposed-form {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start !important;
    gap: 10px;
  }
  .blog-view-filters .form--inline {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .blog-view-filters .form-item-field-blog-category-value,
  .blog-view-filters .form-item-sort-by {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    flex-basis: auto;
  }
  .blog-view-filters .form-select {
    width: 100%;
    height: 45px;
    padding: 12px 15px;
    font-size: 14px;
  }
  .blog-view-inner-wrapper {
    gap: 40px;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-meta {
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-date {
    order: 1;
    font-size: 18px;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-separator {
    display: none;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-type {
    order: 2;
    font-size: 18px;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-title {
    font-size: 24px;
  }
  .blog-view-inner-wrapper > .views-row .blog-card-description {
    font-size: 14px;
  }
  .blog-view-wrapper .pager {
    padding-top: 20px;
  }
  .blog-view-wrapper .pager__items {
    gap: 8px;
  }
  .blog-view-wrapper .pager__item.pager__item--previous {
    margin-right: 24px;
  }
  .blog-view-wrapper .pager__item.pager__item--next {
    margin-left: 24px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-title {
    font-size: 24px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(7) .blog-card-description {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-title {
    font-size: 32px;
  }
  .blog-view-inner-wrapper > .views-row:nth-child(1) .blog-card-description {
    font-size: 16px;
  }
}
.case-studies-view {
  margin-top: 120px;
  margin-bottom: 120px;
}

.case-studies-view__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.case-studies-view__sidebar {
  position: sticky;
  top: 240px;
  min-width: 0;
  isolation: isolate;
  padding: 40px;
  border-radius: var(--radius);
  background-color: var(--blue50);
  overflow: hidden;
}
.case-studies-view__sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 274px;
  background-image: url("icons/sidebar-card-cubes.svg");
  background-repeat: no-repeat;
  background-size: 320px 274px;
  pointer-events: none;
  z-index: 0;
}
.case-studies-view__sidebar::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  height: 145px;
  background-image: url("icons/cubes-bottom-right.svg");
  background-repeat: no-repeat;
  background-size: 220px 145px;
  background-position: right bottom;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
}
.case-studies-view__sidebar > * {
  position: relative;
  z-index: 1;
}

.case-studies-view__filter-group + .case-studies-view__filter-group {
  margin-top: 60px;
}

.case-studies-view__filter-title {
  margin: 0 0 20px;
  color: var(--blue600);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.case-studies-view__filter-list {
  display: flex;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}

.case-studies-view__filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #d4f3fe;
  color: #008abd;
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.case-studies-view__filter-pill:hover {
  background: #ade9ff;
  color: #008abd;
  text-decoration: none;
}
.case-studies-view__filter-pill.is-active {
  background: var(--blue7o);
  color: var(--white);
}

.case-studies-view__main {
  min-width: 0;
}

.case-studies-view__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.case-studies-view__grid > .views-row {
  min-width: 0;
}
.case-studies-view__grid > .views-row .views-field-nothing {
  height: 100%;
}

.case-studies-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.case-studies-card__image {
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 9/5;
  overflow: hidden;
  border-radius: var(--radius);
  text-decoration: none;
}
.case-studies-card__image .media,
.case-studies-card__image .field,
.case-studies-card__image .field__item,
.case-studies-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.case-studies-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.case-studies-card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
}

.case-studies-card__eyebrow {
  margin-bottom: 5px;
  color: var(--blue7o);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.case-studies-card__eyebrow:empty {
  display: none;
}

.case-studies-card__title {
  margin: 0 0 10px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.case-studies-card__title-link {
  color: inherit;
  text-decoration: none;
}
.case-studies-card__title-link:hover {
  color: inherit;
  text-decoration: none;
}

.case-studies-card__description {
  margin-bottom: 15px;
  color: var(--blue400);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.case-studies-card__button {
  align-self: flex-start;
  position: relative;
  display: inline-block;
  padding: 7px 30px 7px 10px;
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: var(--white);
  border: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.case-studies-card__button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("icons/chevron-right-white-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.case-studies-card__button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

.case-studies-view__grid > .views-row:first-child {
  grid-column: span 2;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card {
  position: relative;
  min-height: 550px;
  padding: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  justify-content: flex-end;
  cursor: pointer;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 13, 51, 0.9) 15.5%, rgba(5, 13, 51, 0) 100%);
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  z-index: 0;
  margin: 0;
  border-radius: 0;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__image .media,
.case-studies-view__grid > .views-row:first-child .case-studies-card__image .field,
.case-studies-view__grid > .views-row:first-child .case-studies-card__image .field__item,
.case-studies-view__grid > .views-row:first-child .case-studies-card__image picture,
.case-studies-view__grid > .views-row:first-child .case-studies-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__image img {
  object-fit: cover;
  object-position: center;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 500px;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__title {
  color: var(--white);
  font-size: 48px;
  line-height: 1.1;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__description {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__button {
  font-size: 16px;
  padding: 10px 39px 10px 15px;
}
.case-studies-view__grid > .views-row:first-child .case-studies-card__button:after {
  width: 24px;
  height: 24px;
  right: 10px;
  background-image: url("icons/chevron-right-white.svg");
}
.case-studies-view__grid > .views-row:first-child .case-studies-card:hover .case-studies-card__button,
.case-studies-view__grid > .views-row:first-child .case-studies-card:focus-within .case-studies-card__button {
  background: var(--button-hover);
  text-decoration: none;
}

.case-studies-view .pager {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--green200);
}

.case-studies-view .pager__items {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
}

.case-studies-view .pager__item--first,
.case-studies-view .pager__item--last,
.case-studies-view .pager__item--ellipsis {
  display: none;
}

.case-studies-view .pager__item {
  margin: 0;
  padding: 0;
}
.case-studies-view .pager__item > a,
.case-studies-view .pager__item > span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--green300);
  background: var(--green50);
}
.case-studies-view .pager__item > a:hover {
  background: var(--green100);
  box-shadow: 0px 5px 20px 0px #DCFFEB;
  text-decoration: none;
}
.case-studies-view .pager__item.is-active > a, .case-studies-view .pager__item.is-active > span {
  color: var(--white);
  background: var(--green300);
}
.case-studies-view .pager__item.pager__item--previous > a, .case-studies-view .pager__item.pager__item--previous > span, .case-studies-view .pager__item.pager__item--next > a, .case-studies-view .pager__item.pager__item--next > span {
  font-size: 0;
}
.case-studies-view .pager__item.pager__item--previous {
  margin-right: 40px;
}
.case-studies-view .pager__item.pager__item--next {
  margin-left: 40px;
}
.case-studies-view .pager__item.pager__item--previous > a:before, .case-studies-view .pager__item.pager__item--previous > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
.case-studies-view .pager__item.pager__item--next > a:before, .case-studies-view .pager__item.pager__item--next > span:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: var(--green300);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

@media (max-width: 1200px) {
  .case-studies-view__layout {
    grid-template-columns: 280px minmax(0, 1fr);
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card {
    min-height: 550px;
    padding: 40px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card__title {
    font-size: 40px;
  }
}
@media (max-width: 1100px) {
  .case-studies-view__layout {
    grid-template-columns: 1fr;
  }
  .case-studies-view__sidebar {
    position: relative;
    top: auto;
    isolation: auto;
    padding: 0;
    border-radius: 0;
    background: transparent;
    overflow: visible;
  }
  .case-studies-view__sidebar::before, .case-studies-view__sidebar::after {
    display: none;
  }
  .case-studies-view__filter-group + .case-studies-view__filter-group {
    margin-top: 10px;
  }
  .case-studies-view__filter-title {
    margin-bottom: 5px;
  }
}
@media (max-width: 800px) {
  .case-studies-view {
    margin-bottom: 80px;
  }
  .case-studies-view__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .case-studies-view__grid > .views-row:first-child {
    grid-column: auto;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card {
    min-height: 550px;
    padding: 30px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card__title {
    font-size: 32px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card__description {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .case-studies-view {
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .case-studies-view__layout {
    gap: 20px;
  }
  .case-studies-view__filter-title {
    font-size: 24px;
  }
  .case-studies-view__filter-list {
    width: calc(100% + 30px);
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: pan-y;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .case-studies-view__filter-list::-webkit-scrollbar {
    display: none;
  }
  .case-studies-view__filter-list.is-dragging {
    cursor: grabbing;
  }
  .case-studies-view__filter-pill {
    flex: 0 0 auto;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
  }
  .case-studies-view__grid {
    gap: 40px;
  }
  .case-studies-card__title {
    font-size: 24px;
  }
  .case-studies-card__description {
    font-size: 14px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card {
    min-height: 550px;
    padding: 24px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card__title {
    font-size: 28px;
  }
  .case-studies-view__grid > .views-row:first-child .case-studies-card__description {
    font-size: 14px;
  }
  .case-studies-view .pager {
    padding-top: 20px;
  }
  .case-studies-view .pager__items {
    gap: 8px;
  }
  .case-studies-view .pager__item.pager__item--previous {
    margin-right: 24px;
  }
  .case-studies-view .pager__item.pager__item--next {
    margin-left: 24px;
  }
}
.clients-view-wrapper {
  margin: 120px 0;
}

.clients-view-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 120px;
}
.clients-view-grid > .views-row {
  min-width: 0;
}

.clients-card {
  min-width: 0;
}

.clients-card__logo-wrap {
  width: 100%;
  aspect-ratio: 386/120;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--green200);
}

.clients-card__logo {
  width: 100%;
  height: 100%;
}
.clients-card__logo .media,
.clients-card__logo .field,
.clients-card__logo .field__item {
  width: 100%;
  height: 100%;
}
.clients-card__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.clients-card__title {
  margin: 0 0 5px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.clients-card__description {
  margin-bottom: 10px;
  color: var(--blue400);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.clients-card__description p {
  margin: 0;
  color: inherit;
  font: inherit;
}

.clients-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.clients-card__tooltip-wrap {
  position: static;
  min-width: 0;
  display: inline-flex;
  align-items: center;
}

.clients-card__what-we-did {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.clients-card__what-we-did-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50%;
  background: var(--button-gradient);
}
.clients-card__what-we-did-icon::before {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("icons/short-small-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px 8px;
}

.clients-card__what-we-did-label,
.clients-card__website {
  display: inline-block;
  background: var(--button-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.clients-card__website {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  white-space: nowrap;
}
.clients-card__website:hover {
  text-decoration: underline;
}

.clients-card__tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 10px);
  z-index: 5;
  width: 100%;
  padding: 30px;
  border: 1px solid #CBDAEC;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0px 5px 10px -5px rgba(100, 118, 139, 0.1490196078);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.clients-card__tooltip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 18px;
  background: transparent;
}
.clients-card__tooltip::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--white);
  border-left: 1px solid #CBDAEC;
  border-bottom: 1px solid #CBDAEC;
  border-bottom-left-radius: 4px;
  transform: rotate(-45deg);
}

.clients-card__tooltip-wrap:hover .clients-card__tooltip,
.clients-card__tooltip-wrap:focus-within .clients-card__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.clients-card__tooltip-wrap:hover .clients-card__what-we-did-label,
.clients-card__tooltip-wrap:focus-within .clients-card__what-we-did-label {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.clients-card__tooltip-aws {
  display: block;
  width: 125px;
  height: 45px;
  object-fit: contain;
}

.clients-card__tooltip-divider {
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background: var(--blue200);
}

.clients-card__tooltip-copy {
  color: var(--blue400);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.clients-card__button {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.clients-card__button[href=""] {
  display: none;
}

@media (max-width: 1300px) {
  .clients-view-grid {
    gap: 80px;
  }
}
@media (max-width: 1100px) {
  .clients-view-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .clients-view-wrapper {
    margin: 48px 0 80px;
  }
  .clients-view-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .clients-card__website {
    white-space: nowrap;
  }
  .clients-card__tooltip {
    width: 100%;
  }
  .clients-card__tooltip::after {
    left: 14px;
  }
}
@media (max-width: 500px) {
  .clients-view-grid {
    gap: 20px;
  }
  .clients-card__logo-wrap {
    margin-bottom: 10px;
  }
  .clients-card__title {
    margin-bottom: 2px;
  }
  .clients-card__description {
    font-size: 14px;
  }
}
.eu-projects-view-wrapper {
  margin-top: 40px;
  margin-bottom: 120px;
}
.eu-projects-view-wrapper .eu-projects-view-inner-wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
.eu-projects-view-wrapper .eu-projects-view-inner-wrapper > .views-row {
  min-width: 0;
  display: flex;
  height: 100%;
}
.eu-projects-view-wrapper .eu-projects-view-inner-wrapper > .views-row > .views-field {
  display: flex;
  width: 100%;
  height: 100%;
}
.eu-projects-view-wrapper .eu-projects-view-inner-wrapper > .views-row > .views-field .field-content {
  display: flex;
  width: 100%;
  height: 100%;
}

.eu-project-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--blue200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0px 18px 50px rgba(17, 68, 128, 0.08);
}
.eu-project-card .eu-project-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  min-height: 220px;
  max-height: 220px;
  background: var(--blue50);
}
.eu-project-card .eu-project-card-image .media,
.eu-project-card .eu-project-card-image .field,
.eu-project-card .eu-project-card-image .field__item,
.eu-project-card .eu-project-card-image picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.eu-project-card .eu-project-card-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  padding: 24px;
}
.eu-project-card .eu-project-card-content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}
.eu-project-card .eu-project-card-title {
  margin: 0 0 12px;
  color: var(--blue500);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.eu-project-card .eu-project-card-title-link {
  color: inherit;
  text-decoration: none;
}
.eu-project-card .eu-project-card-title-link:hover {
  color: inherit;
  text-decoration: none;
}
.eu-project-card .eu-project-card-description {
  flex: 1 1 auto;
  margin-bottom: 20px;
  color: var(--blue400);
  font-size: 16px;
  line-height: 1.5;
}
.eu-project-card .eu-project-card-button {
  position: relative;
  align-self: flex-start;
  display: inline-block;
  margin-top: auto;
  padding: 7px 30px 7px 10px;
  border: none;
  border-radius: var(--radius);
  background: var(--button-gradient);
  color: var(--white);
  font-family: var(--title-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
}
.eu-project-card .eu-project-card-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-image: url("icons/chevron-right-white-mobile.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.eu-project-card .eu-project-card-button:hover {
  background: var(--button-hover);
  text-decoration: none;
}

@media (max-width: 1200px) {
  .eu-projects-view-wrapper .eu-projects-view-inner-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .eu-projects-view-wrapper .eu-projects-view-inner-wrapper {
    grid-template-columns: 1fr;
  }
}
.basic-page .basic-page-wrapper {
  margin-top: 240px;
  margin-bottom: 120px;
}
@media (max-width: 1100px) {
  .basic-page .basic-page-wrapper {
    margin-top: 180px;
  }
}
@media (max-width: 600px) {
  .basic-page .basic-page-wrapper {
    margin-top: 100px;
    margin-bottom: 40px;
  }
}
.basic-page .basic-page-inner-wrapper {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}
.basic-page .title-and-intro-text {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--green200);
  margin-bottom: 48px;
}
.basic-page .basic-page-title {
  color: var(--blue600);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  padding-bottom: 16px;
}
.basic-page .basic-page-intro-text p {
  color: var(--blue500);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 24px;
}
@media (max-width: 600px) {
  .basic-page .title-and-intro-text {
    padding-bottom: 16px;
    margin-bottom: 32px;
  }
  .basic-page .basic-page-title {
    font-size: 32px;
  }
  .basic-page .basic-page-intro-text p {
    font-size: 20px;
  }
}

.eu-project .eu-project-wrapper {
  margin-bottom: 120px;
}
.eu-project .eu-project-header {
  margin-bottom: 0;
}
.eu-project .eu-project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--green200);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.eu-project .eu-project-back-link::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--green200);
  -webkit-mask-image: url("icons/arrow-right-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("icons/arrow-right-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transform: scaleX(-1);
}
.eu-project .eu-project-back-link:hover {
  text-decoration: none;
}
.eu-project .eu-project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.eu-project .eu-project-gallery .eu-project-gallery-item {
  margin: 0;
  min-height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--green50);
}
.eu-project .eu-project-gallery .eu-project-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}
.eu-project .eu-project-body {
  padding-top: 0;
}
@media (max-width: 600px) {
  .eu-project .eu-project-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }
}

.not-found-page .wrapper-404 {
  margin-top: 240px;
  margin-bottom: 120px;
}
.not-found-page .inside-wrapper-404 {
  width: min(100%, 920px);
  margin-left: auto;
  margin-right: auto;
}
.not-found-page .layout-404 {
  display: grid;
  grid-template-columns: 1fr 540px;
  gap: 120px;
  align-items: start;
}
.not-found-page .image-404 img {
  width: min(260px, 100%);
  height: auto;
  display: block;
}
.not-found-page .content-404 .title-404 {
  color: var(--blue600);
  font-size: clamp(56px, 7vw, 84px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}
.not-found-page .content-404 p {
  max-width: 540px;
  margin-bottom: 40px;
}
@media (max-width: 1100px) {
  .not-found-page .wrapper-404 {
    margin-top: 180px;
  }
  .not-found-page .layout-404 {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .not-found-page .content-404 {
    max-width: 540px;
  }
}
@media (max-width: 600px) {
  .not-found-page .wrapper-404 {
    margin-top: 100px;
    margin-bottom: 40px;
  }
  .not-found-page .layout-404 {
    gap: 40px;
  }
  .not-found-page .image-404 img {
    width: 120px;
    height: auto;
  }
  .not-found-page .content-404 .title-404 {
    margin-bottom: 16px;
  }
  .not-found-page .content-404 p {
    margin-bottom: 32px;
  }
}

.basic-page-body p,
.blog-post-body p,
.news-post-body p,
.case-study-post-body p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--blue500);
  margin-bottom: 24px;
}
.basic-page-body p.large-paragraph,
.blog-post-body p.large-paragraph,
.news-post-body p.large-paragraph,
.case-study-post-body p.large-paragraph {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue500);
}
.basic-page-body p.small-paragraph,
.blog-post-body p.small-paragraph,
.news-post-body p.small-paragraph,
.case-study-post-body p.small-paragraph {
  margin-top: 10px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--blue400);
}
.basic-page-body a,
.blog-post-body a,
.news-post-body a,
.case-study-post-body a {
  font-size: 18px;
  line-height: 1.5;
  color: var(--blue7o200);
  font-weight: 500;
  margin-bottom: 24px;
  text-decoration: underline;
  transition: text-decoration 0.2s ease;
}
.basic-page-body a:hover,
.blog-post-body a:hover,
.news-post-body a:hover,
.case-study-post-body a:hover {
  text-decoration: none;
}
.basic-page-body ul,
.blog-post-body ul,
.news-post-body ul,
.case-study-post-body ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.basic-page-body ul li,
.blog-post-body ul li,
.news-post-body ul li,
.case-study-post-body ul li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 30px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--blue500);
}
.basic-page-body ul li::before,
.blog-post-body ul li::before,
.news-post-body ul li::before,
.case-study-post-body ul li::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 16px;
  height: 2px;
  background-color: var(--blue7o200);
  transform: translateY(-50%);
}
.basic-page-body ol,
.blog-post-body ol,
.news-post-body ol,
.case-study-post-body ol {
  margin: 0 0 24px;
  padding-left: 30px;
}
.basic-page-body ol li,
.blog-post-body ol li,
.news-post-body ol li,
.case-study-post-body ol li {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--blue500);
}
.basic-page-body ol li::marker,
.blog-post-body ol li::marker,
.news-post-body ol li::marker,
.case-study-post-body ol li::marker {
  color: var(--blue7o200);
  font-weight: 500;
}
.basic-page-body hr,
.blog-post-body hr,
.news-post-body hr,
.case-study-post-body hr {
  margin: 24px 0 48px;
  border: 0;
  border-top: 1px solid var(--green200);
}
.basic-page-body table,
.blog-post-body table,
.news-post-body table,
.case-study-post-body table {
  padding-top: 24px;
  margin-bottom: 32px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  table-layout: auto;
  border-collapse: collapse;
}
.basic-page-body thead th,
.blog-post-body thead th,
.news-post-body thead th,
.case-study-post-body thead th {
  padding: 10px;
  font-weight: 700;
  min-width: 100px;
  text-align: left;
  border-bottom: 2px solid var(--blue300);
}
.basic-page-body tbody td,
.blog-post-body tbody td,
.news-post-body tbody td,
.case-study-post-body tbody td {
  padding: 10px;
  min-width: 100px;
}
.basic-page-body tbody tr:nth-child(odd),
.blog-post-body tbody tr:nth-child(odd),
.news-post-body tbody tr:nth-child(odd),
.case-study-post-body tbody tr:nth-child(odd) {
  background-color: var(--white);
}
.basic-page-body tbody tr:nth-child(even),
.blog-post-body tbody tr:nth-child(even),
.news-post-body tbody tr:nth-child(even),
.case-study-post-body tbody tr:nth-child(even) {
  background-color: var(--blue50);
}
.basic-page-body img,
.blog-post-body img,
.news-post-body img,
.case-study-post-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}
.basic-page-body iframe.media-oembed-content,
.blog-post-body iframe.media-oembed-content,
.news-post-body iframe.media-oembed-content,
.case-study-post-body iframe.media-oembed-content {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 24px 0 48px;
  border: 0;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
}
.basic-page-body figure,
.blog-post-body figure,
.news-post-body figure,
.case-study-post-body figure {
  display: table;
  width: auto;
  max-width: 100%;
  margin: 24px 0 48px;
}
.basic-page-body figure img,
.blog-post-body figure img,
.news-post-body figure img,
.case-study-post-body figure img {
  display: block;
}
.basic-page-body figcaption,
.blog-post-body figcaption,
.news-post-body figcaption,
.case-study-post-body figcaption {
  display: table-caption;
  caption-side: bottom;
  padding-top: 12px;
  text-align: center;
  font-family: var(--font);
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--blue400);
}

@media (max-width: 900px) {
  .basic-page-body table,
  .blog-post-body table,
  .news-post-body table,
  .case-study-post-body table {
    display: block;
    width: max-content;
    min-width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .basic-page-body thead,
  .basic-page-body tbody,
  .blog-post-body thead,
  .blog-post-body tbody,
  .news-post-body thead,
  .news-post-body tbody,
  .case-study-post-body thead,
  .case-study-post-body tbody {
    display: table;
    width: max-content;
    min-width: 100%;
  }
  .basic-page-body th,
  .basic-page-body td,
  .blog-post-body th,
  .blog-post-body td,
  .news-post-body th,
  .news-post-body td,
  .case-study-post-body th,
  .case-study-post-body td {
    max-width: 420px;
  }
}
@media (max-width: 600px) {
  .basic-page-body p,
  .basic-page-body a,
  .basic-page-body ul li,
  .basic-page-body ol li,
  .blog-post-body p,
  .blog-post-body a,
  .blog-post-body ul li,
  .blog-post-body ol li,
  .news-post-body p,
  .news-post-body a,
  .news-post-body ul li,
  .news-post-body ol li,
  .case-study-post-body p,
  .case-study-post-body a,
  .case-study-post-body ul li,
  .case-study-post-body ol li {
    font-size: 16px;
  }
  .basic-page-body ul li,
  .basic-page-body ol li,
  .blog-post-body ul li,
  .blog-post-body ol li,
  .news-post-body ul li,
  .news-post-body ol li,
  .case-study-post-body ul li,
  .case-study-post-body ol li {
    margin-bottom: 12px;
  }
  .basic-page-body hr,
  .blog-post-body hr,
  .news-post-body hr,
  .case-study-post-body hr {
    margin: 16px 0 32px;
  }
  .basic-page-body figure,
  .blog-post-body figure,
  .news-post-body figure,
  .case-study-post-body figure {
    margin: 16px 0 32px;
  }
  .basic-page-body iframe.media-oembed-content,
  .blog-post-body iframe.media-oembed-content,
  .news-post-body iframe.media-oembed-content,
  .case-study-post-body iframe.media-oembed-content {
    margin: 16px 0 32px;
  }
}
@media (max-width: 500px) {
  .basic-page-body p.large-paragraph,
  .blog-post-body p.large-paragraph,
  .news-post-body p.large-paragraph,
  .case-study-post-body p.large-paragraph {
    font-size: 20px;
    line-height: 1.3;
  }
}
.footer {
  background: var(--blue600);
  padding: 80px 0 40px;
}
@media (max-width: 700px) {
  .footer {
    padding: 40px 0 40px;
  }
}
.footer .footer-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 100px;
  list-style: none;
  padding: 0 0 40px;
  border-bottom: 1px solid var(--blue500);
  margin: 0;
}
@media (max-width: 1400px) {
  .footer .footer-menu {
    gap: 80px;
  }
}
@media (max-width: 1200px) {
  .footer .footer-menu {
    gap: 60px;
  }
}
@media (max-width: 1000px) {
  .footer .footer-menu {
    gap: 40px;
  }
}
@media (max-width: 800px) {
  .footer .footer-menu {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .footer .footer-menu {
    grid-template-columns: 1fr;
    padding: 0 0 30px;
  }
}
.footer .footer-menu .footer-menu-item a.footer-menu-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--green200);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}
.footer .footer-menu .footer-menu-item span.footer-menu-title {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--green200);
  margin-bottom: 10px;
  display: block;
  cursor: default;
}
.footer .footer-menu .footer-menu-item .footer-menu-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-menu .footer-menu-item .footer-menu-submenu .footer-menu-subitem .footer-menu-link {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--blue200);
  text-decoration: none;
  padding: 5px 0;
  display: block;
  cursor: pointer;
}
.footer .footer-menu .footer-menu-item .footer-menu-submenu .footer-menu-subitem .footer-menu-link:hover {
  color: white;
}
.footer .footer-menu .footer-menu-item .footer-menu-submenu .footer-menu-separator {
  list-style: none;
}
.footer .footer-menu .footer-menu-item .footer-menu-submenu .footer-menu-separator .footer-menu-separator-line {
  width: 50px;
  height: 1px;
  background: var(--blue500);
  border: none;
  margin: 15px 0;
}
.footer .footer-contact-box {
  display: flex;
  align-items: stretch;
  margin-top: 40px;
  margin-bottom: 40px;
}
.footer .footer-contact-box .footer-contact-box-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 auto;
  width: max-content;
}
.footer .footer-contact-box .footer-contact-box-item:first-child {
  flex: 1 1 auto;
  width: auto;
  margin-right: 40px;
  min-width: 0;
}
.footer .footer-contact-box .footer-contact-box-item:first-child img {
  width: min(100%, 112px);
  height: auto;
  display: block;
}
.footer .footer-contact-box .footer-contact-box-item:not(:first-child):not(:last-child) {
  padding: 0 40px;
  border-left: 1px solid var(--blue500);
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) {
  margin-right: 40px;
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) a {
  position: relative;
  display: inline-block;
  padding-left: 29px;
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 14px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) a.aws-profile-link::before {
  background-image: url("icons/aws-icon.svg");
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) a.linkedin-link::before {
  background-image: url("icons/linkedin-icon.svg");
}
.footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) a.clutch-link::before {
  background-image: url("icons/clutch-icon.svg");
}
.footer .footer-contact-box .footer-contact-box-item:last-child {
  padding: 15px 20px;
  background: var(--blue500);
  border-radius: 4px;
}
.footer .footer-contact-box .footer-contact-box-item h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0%;
  color: var(--blue7o);
  margin: 0;
  padding: 0;
}
.footer .footer-contact-box .footer-contact-box-item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--white);
  padding: 0;
  margin: 0;
}
.footer .footer-contact-box .footer-contact-box-item p a {
  color: var(--white);
  text-decoration: none;
}
.footer .footer-contact-box .footer-contact-box-item p a:hover {
  text-decoration: underline;
}
@media (max-width: 1400px) {
  .footer .footer-contact-box .footer-contact-box-item:first-child {
    display: none;
  }
  .footer .footer-contact-box .footer-contact-box-item:not(:first-child):not(:last-child):nth-child(2) {
    padding-left: 0;
    border-left: 0;
  }
  .footer .footer-contact-box .footer-contact-box-item:last-child {
    margin-left: auto;
  }
}
@media (max-width: 1240px) {
  .footer .footer-contact-box .footer-contact-box-item:first-child {
    margin-right: 20px;
  }
  .footer .footer-contact-box .footer-contact-box-item:not(:first-child):not(:last-child) {
    padding: 0 20px;
  }
  .footer .footer-contact-box .footer-contact-box-item:nth-last-child(2) {
    margin-right: 20px;
  }
  .footer .footer-contact-box .footer-contact-box-item:not(:first-child):not(:last-child):nth-child(2) {
    padding-left: 0;
  }
}
@media (min-width: 941px) and (max-width: 1060px) {
  .footer .footer-contact-box .footer-contact-box-item:nth-child(3),
  .footer .footer-contact-box .footer-contact-box-item:nth-child(4) {
    width: 180px;
  }
}
@media (max-width: 940px) {
  .footer .footer-contact-box {
    flex-direction: column;
    gap: 20px;
  }
  .footer .footer-contact-box .footer-contact-box-item:first-child {
    display: none;
  }
  .footer .footer-contact-box .footer-contact-box-item {
    width: 100%;
    padding: 0;
  }
  .footer .footer-contact-box .footer-contact-box-item:not(:first-child):not(:last-child) {
    padding: 0;
    border-left: 0;
  }
  .footer .footer-contact-box .footer-contact-box-item:last-child {
    margin-left: 0;
    width: 100%;
    padding: 15px 0 15px 20px;
  }
}
.footer .footer-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--blue500);
}
.footer .footer-badges .footer-badges-partner-badges,
.footer .footer-badges .footer-badges-certification-badges {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer .footer-badges .footer-badges-partner-badges img {
  height: 80px;
  width: auto;
}
.footer .footer-badges .footer-badges-certification-badges img {
  height: 50px;
  width: auto;
}
@media (max-width: 900px) {
  .footer .footer-badges {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .footer .footer-badges .footer-badges-partner-badges,
  .footer .footer-badges .footer-badges-certification-badges {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 500px) {
  .footer .footer-badges .footer-badges-partner-badges {
    gap: 10px;
  }
  .footer .footer-badges .footer-badges-partner-badges img {
    height: 70px;
    width: auto;
  }
  .footer .footer-badges .footer-badges-certification-badges {
    gap: 10px;
  }
  .footer .footer-badges .footer-badges-certification-badges img {
    width: 100%;
    height: auto;
  }
}
.footer .footer-legal-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media (max-width: 700px) {
  .footer .footer-legal-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
  }
}
.footer .footer-legal-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer .footer-legal-menu a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  padding: 5px 0;
  color: var(--blue200);
  text-decoration: none;
  display: block;
}
.footer .footer-legal-menu a:hover {
  color: white;
}
.footer .footer-legal-copyright {
  font-family: var(--font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #4d5476;
}

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