@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400-normal.woff2") format("woff2"), url("../fonts/inter-latin-400-normal.woff") format("woff");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700-normal.woff2") format("woff2"), url("../fonts/inter-latin-700-normal.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/manrope-latin-400-normal.woff2") format("woff2"), url("../fonts/manrope-latin-400-normal.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/manrope-latin-500-normal.woff2") format("woff2"), url("../fonts/manrope-latin-500-normal.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/manrope-latin-600-normal.woff2") format("woff2"), url("../fonts/manrope-latin-600-normal.woff") format("woff");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/manrope-latin-700-normal.woff2") format("woff2"), url("../fonts/manrope-latin-700-normal.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-latin-400-normal.woff2") format("woff2"), url("../fonts/poppins-latin-400-normal.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-latin-500-normal.woff2") format("woff2"), url("../fonts/poppins-latin-500-normal.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-latin-600-normal.woff2") format("woff2"), url("../fonts/poppins-latin-600-normal.woff") format("woff");
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-latin-700-normal.woff2") format("woff2"), url("../fonts/poppins-latin-700-normal.woff") format("woff");
}
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9.2px 25px;
  min-width: 200px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
}
.btn:focus-visible {
  outline: 2px solid #38BDF8;
  outline-offset: 2px;
}

.btn--green {
  background-color: #78ABAD;
  color: #0B1120;
  border: 1px solid #78ABAD;
}
.btn--green:hover {
  background-color: #F1F5F9;
  -webkit-box-shadow: 0px 0px 22px #16C1E9;
          box-shadow: 0px 0px 22px #16C1E9;
  border-color: #38BDF8;
}

.btn--white {
  color: #0B1120;
  border: 1px solid #F1F5F9;
  background: #F1F5F9;
}
.btn--white:hover {
  -webkit-box-shadow: 0px 0px 22px #16C1E9;
          box-shadow: 0px 0px 22px #16C1E9;
}

.btn--yellow {
  background-color: #F59E0B;
  color: #0B1120;
  border: 1px solid #F59E0B;
}
.btn--yellow:hover {
  -webkit-box-shadow: 0px 0px 22px #F59E0B;
          box-shadow: 0px 0px 22px #F59E0B;
}

.btn--transparent {
  background-color: transparent;
  color: #78ABAD;
  border: 1px solid #78ABAD;
}
.btn--transparent:hover {
  color: #38BDF8;
  border-color: #38BDF8;
  -webkit-box-shadow: 0px 0px 12px #38BDF8;
          box-shadow: 0px 0px 12px #38BDF8;
}

.btn--transparent-white {
  background-color: transparent;
  color: #F1F5F9;
  border: 1px solid #F1F5F9;
}
.btn--transparent-white:hover {
  color: #38BDF8;
  border-color: #38BDF8;
}

.btn--round {
  padding: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, 0.3);
  color: #F1F5F9;
}
.btn--round:hover {
  border-color: #F1F5F9;
  background-color: rgba(255, 255, 255, 0.06);
}

.header {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  position: relative;
  z-index: 9999;
  background-color: #0B1120;
}

.preheader {
  padding-top: 16px;
  padding-bottom: 16px;
}

.preheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.preheader__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.preheader__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  color: #F1F5F9;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.25;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  font-weight: 500;
}
.preheader__contact svg {
  width: 20px;
  height: 20px;
  fill: #78ABAD;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.preheader__contact:hover svg {
  fill: #38BDF8;
}

.preheader__contact:hover {
  color: #38BDF8;
}

.preheader__logo {
  display: block;
  outline: none;
}
.preheader__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-menu {
  background-color: #161F32;
  padding-top: 12px;
  padding-bottom: 12px;
}

.header-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 8px 10px;
  color: #F1F5F9;
  text-decoration: none;
  font-weight: 500;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
  line-height: 1.25;
  border-radius: 6px;
  -webkit-transition: color 0.2s, background-color 0.2s;
  transition: color 0.2s, background-color 0.2s;
}
.header-nav__link svg {
  fill: #F1F5F9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header-nav__chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.header-mega {
  position: absolute;
  top: 129%;
  left: 100px;
  min-width: 480px;
  width: calc(100% - 100px);
  margin-top: 0;
  padding-top: 4px;
  padding: 0;
  background-color: #161F32;
  border-radius: 0 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  z-index: 9999;
  overflow: hidden;
}

.header-mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
}

.header-mega__left {
  padding: 25px 50px 34px 24px;
  background-color: #161F32;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  gap: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}

.header-mega__title {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  color: #F1F5F9;
  letter-spacing: 0.02em;
}

.header-mega__title-link {
  color: inherit;
  text-decoration: none;
}
.header-mega__title-link:hover {
  color: inherit;
  text-decoration: none;
}

.header-mega__desc {
  margin: 0 0 20px;
  line-height: 1.5;
  color: #94A3B8;
  max-width: 280px;
  font-weight: 500;
}

.header-mega__cta {
  padding: 12px 24px;
  font-size: 15px;
}

.header-mega__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 32px 32px 32px 0;
  background: #1E293B;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 100px;
}

.header-mega__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.header-mega__col-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  color: #94A3B8;
  letter-spacing: 0.05em;
}
.header-mega__col-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #38BDF8;
  -webkit-box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
          box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
}

.header-mega__services {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.header-mega__services > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 192px;
}
.header-mega__services > li > a svg {
  display: block;
  margin-right: 16px;
  fill: #94A3B8;
  width: 36px;
  min-width: 36px;
  height: 36px;
}

.header-mega__services > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  color: #F1F5F9;
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.header-mega__sublist {
  list-style: disc;
  margin: 0 0 16px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #94A3B8;
}
.header-mega__sublist li {
  margin-bottom: 10px;
}
.header-mega__sublist a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.header-mega__services--with-desc li {
  margin-bottom: 12px;
}

.header-mega__item-desc {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: #94A3B8;
}
.header-mega__item-desc a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.header-nav__utils {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 59px;
}

.header-nav__btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-nav__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: #F1F5F9;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 40px;
}
.header-nav__icon svg {
  fill: #78ABAD;
}

.header-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 720px;
}

.header-mega__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 36%;
          flex: 0 0 36%;
}

.header-mega__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header-nav__mobile-logo {
  display: block;
  width: 100px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header-nav__mobile-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header-nav__mobile-title {
  font-size: 14px;
  font-weight: 500;
  color: #F1F5F9;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-nav__menu-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-nav__btn--mobile {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-mobile-panel {
  position: relative;
  width: 100%;
  background-color: #161F32;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s, visibility 0.25s, max-height 0.3s ease-out;
  transition: opacity 0.25s, visibility 0.25s, max-height 0.3s ease-out;
}

.header-mobile-panel.is-open {
  max-height: 2000px;
  overflow: visible;
  opacity: 1;
  visibility: visible;
  padding: 24px;
}

.header-mobile-panel__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  max-width: 320px;
}

.header-mobile-panel__tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 20px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #F1F5F9;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.header-mobile-panel__tab--active {
  background-color: transparent;
  border: 2px solid #F1F5F9;
  border-radius: 6px;
  margin: -1px;
  position: relative;
  z-index: 1;
}

.header-mobile-panel__tab--teal {
  background-color: #78ABAD;
  color: #0B1120;
}

.header-mobile-panel__close {
  position: absolute;
  top: 21px;
  right: 3.5vw;
}

.header-mobile-panel .header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-mobile-panel .header-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-mobile-panel .header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  color: #F1F5F9;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.header-mobile-panel .header-nav__item--dropdown.is-open .header-nav__link {
  color: #38BDF8;
}

.header-mobile-panel .header-nav__item--dropdown .header-nav__chevron {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #94A3B8;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.header-mobile-panel .header-nav__item--dropdown.is-open .header-nav__chevron {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-mobile-panel .header-nav__item--dropdown .header-mega {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
  min-width: 0;
  width: 100%;
  position: static;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.header-mobile-panel .header-nav__item--dropdown.is-open .header-mega {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
}

.header-mobile-panel .header-mega__left {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 16px;
}

.header-mobile-panel .header-mega__title {
  font-size: 12px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
}

.header-mobile-panel .header-mega__desc {
  display: none;
}

.header-mobile-panel .header-mega__cta {
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: 8px;
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-mobile-panel .header-mega__right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 0;
}

.header-mobile-panel .header-nav__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.header-mobile-panel .header-mega__col {
  margin-bottom: 0;
}

.header-mobile-panel .header-mega__col-title {
  margin-bottom: 10px;
  font-size: 12px;
}

.header-mobile-panel .header-mega__services > li > a,
.header-mobile-panel .header-mega__services--with-desc > li > a {
  padding: 6px 0;
  font-size: 14px;
}

.header-mobile-panel .header-mega__sublist {
  margin-top: 6px;
  font-size: 13px;
}

.header-mobile-panel .header-mega__services li .header-mega__sublist {
  margin-top: 6px;
  margin-left: 12px;
  padding-left: 20px;
  list-style: disc;
  font-size: 13px;
  color: #94A3B8;
}
.header-mobile-panel .header-mega__services li .header-mega__sublist a {
  color: inherit;
  text-decoration: none;
}

.header-mobile-panel__list-container {
  margin-top: 8px;
}

.header-mobile-panel__contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
}

.header-mobile-panel__contact-label {
  font-size: 14px;
  font-weight: 500;
  color: #F1F5F9;
}

.header-mobile-panel__phone {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #F1F5F9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: border-color 0.2s, color 0.2s;
  transition: border-color 0.2s, color 0.2s;
}
.header-mobile-panel__phone:hover {
  border-color: #38BDF8;
  color: #38BDF8;
}

.header-mobile-panel__sub-block {
  margin-bottom: 16px;
}

.header-mobile-panel__sub-title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #F1F5F9;
  letter-spacing: 0.02em;
}

.header-mobile-panel__sub-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #F1F5F9;
}
.header-mobile-panel__sub-list a {
  color: #F1F5F9;
  text-decoration: none;
}
.header-mobile-panel__sub-list a:hover {
  color: #38BDF8;
}
.header-mobile-panel__sub-list li {
  margin-bottom: 6px;
  padding-left: 0;
}

.header-mobile-panel__sub-list--bullets {
  padding-left: 20px;
}
.header-mobile-panel__sub-list--bullets li {
  list-style: disc;
}

.header-nav__list-slot {
  display: contents;
}

.header-nav__mobile-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.header-mega__left--1 {
  background: url("../img/sheield.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--2 {
  background: url("../img/menu-bg-2.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--3 {
  background: url("../img/menu-bg-3.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--4 {
  background: url("../img/menu-bg-4.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--1:hover {
  background: url("../img/sheield-hover.svg") no-repeat;
  background-position: top 22px right 27px;
}

.header-mega__left--2:hover {
  background: url("../img/menu-bg-2-hover.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--3:hover {
  background: url("../img/menu-bg-3-hover.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__left--4:hover {
  background: url("../img/menu-bg-4-hover.svg") no-repeat;
  background-position: top 22px right 27px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header-mega__title:hover {
  color: #38BDF8;
  text-shadow: 0px 0px 12px rgba(56, 189, 248, 0.5);
}

.btn--transparent-white.header-nav__menu-btn:hover {
  border-color: #F1F5F9;
  color: #F1F5F9;
}

.header-mega__title-mobile {
  display: none;
}

@media (max-width: 1365px) {
  .header-nav__utils {
    gap: 20px;
  }
  .header-nav__icon {
    margin-right: 0;
  }
  .header-mega__right {
    padding-left: 30px;
  }
}
@media (max-width: 1280px) {
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    background: none;
  }
  .preheader {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .preheader__logo img {
    width: 350px;
  }
  .header {
    position: relative;
  }
  .header-menu {
    padding-top: 32px;
    padding-bottom: 0px;
  }
  .header-nav__mobile-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav__list-slot {
    display: none;
  }
  .header-nav .header-nav__list {
    display: none;
  }
  .header-mobile-panel .header-nav__list {
    display: block;
  }
  .header-mega {
    display: none;
  }
  .header-nav__utils .btn {
    width: 217px;
  }
  .header-nav__menu-btn {
    width: 350px;
  }
  .header-nav__utils {
    gap: 72px;
  }
  .header-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-nav__mobile-row {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .header-nav__utils {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .header-mobile-panel {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .header-nav__mobile-row {
    width: 50%;
  }
  .header-nav {
    gap: 0px;
  }
  .header-menu .container {
    width: 100%;
    max-width: 100%;
  }
  .header-nav__mobile-row {
    padding-left: 3.5vw;
  }
  .header-nav__utils {
    padding-right: 3.5vw;
  }
  .header-mobile-panel {
    border-top: 1px solid #0B1120;
    margin-top: 32px;
    padding-top: 0;
  }
  .header-mobile-panel.is-open {
    padding-top: 0;
  }
  .header-mobile-panel .header-nav__item {
    border-bottom: none;
  }
  .header-mobile-panel .header-nav__link {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    width: auto;
    gap: 12px;
  }
  .header-mobile-panel .header-nav__link svg {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-mobile-panel__close {
    width: 30px;
    height: 30px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    background: transparent;
    outline: none;
    border: none;
  }
  .header-mobile-panel__list-container {
    margin-top: 0;
  }
  .header-mega__left {
    background: none;
  }
  .header-mobile-panel .header-mega__right {
    background: transparent;
  }
  .header-mobile-panel.is-open {
    padding-left: 0;
    padding-right: 0;
  }
  .header-nav__item.header-nav__item--dropdown.is-open {
    background: #0B1120;
  }
}
@media (max-width: 1280px) and (min-width: 768px) {
  .header-mobile-panel .header-nav__item--dropdown.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega {
    display: contents;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-nav__link {
    grid-column: 1;
    grid-row: 1;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    margin-bottom: 0;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__right {
    grid-column: 1/-1;
    grid-row: 3;
  }
}
@media (max-width: 1280px) {
  .header-mobile-panel .header-nav__link,
  .header-mobile-panel .header-mega__left,
  .header-mobile-panel .header-mega__right {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
  .header-mega__title-link {
    width: 100%;
    display: block;
  }
  .header-mega__title {
    width: calc(100% - 370px);
  }
  .header-mega__title br {
    display: none;
  }
  .header-mega__left {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    margin-bottom: 20px;
  }
  .header-mega__title-mobile {
    display: block;
  }
  .header-mobile-panel .header-mega__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0px;
    padding-bottom: 20px;
    border: none;
    margin-bottom: 8px;
  }
  .header-mobile-panel .header-mega__left .header-mega__title-mobile {
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    width: 100px;
    color: #78ABAD;
    text-transform: uppercase;
    line-height: 1.6;
  }
  .header-mobile-panel .header-mega__cta {
    margin-top: 0;
    background: transparent;
    border: 1px solid #78ABAD;
    color: #78ABAD;
    font-weight: 500;
  }
  .header-mobile-panel .header-mega__cta:hover {
    border-color: #38BDF8;
    color: #38BDF8;
    background: transparent;
    -webkit-box-shadow: 0px 0px 12px #38BDF8;
            box-shadow: 0px 0px 12px #38BDF8;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-nav__link svg {
    fill: #38BDF8;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .header-mobile-panel .header-mega__col-title {
    display: none;
  }
  .header-mega__services > li > a svg {
    display: none;
  }
  .header-mobile-panel .header-mega__services > li > a {
    font-size: 16px;
    text-transform: uppercase;
  }
  .header-mega__services > li > a {
    max-width: 100%;
    width: 100%;
  }
  .header-mobile-panel .header-mega__services > li > a {
    padding: 14px 0;
  }
  .header-mobile-panel .header-mega__right {
    gap: 0;
  }
  .header-mega__services {
    margin-bottom: 0;
  }
  .header-mobile-panel .header-mega__right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 20px;
  }
  .header-mobile-panel .header-mega__col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 0;
  }
  .header-mobile-panel .header-mega__col > .header-mega__sublist {
    margin-left: 12px;
    margin-top: 4px;
  }
  .header-mobile-panel .header-mega__col > .header-mega__sublist li {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 0;
  }
  .header-mobile-panel .header-mega__sublist {
    margin-left: 12px;
    margin-top: 4px;
  }
  .header-mobile-panel .header-mega__services li .header-mega__sublist {
    margin-top: 4px;
    margin-left: 12px;
    margin-bottom: 0;
    padding-left: 20px;
    list-style: disc;
    font-size: 13px;
    line-height: 1.5;
    color: #94A3B8;
  }
  .header-mobile-panel .header-mega__services li .header-mega__sublist li {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-bottom: 0;
  }
  .header-mobile-panel .header-mega__services li .header-mega__sublist a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
  }
  .header-nav__mobile-row .btn--transparent-white:hover {
    border-color: #F1F5F9;
    color: #F1F5F9;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 20px;
  }
  .banner-section .banner-image {
    height: 47.266vw;
    -o-object-position: right center;
       object-position: right center;
  }
  .banner-section .banner-content .buttons-wrapper {
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner-section .banner-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-section .banner-content .description {
    text-align: center;
  }
  .header-mobile-panel .header-mega__left {
    padding-bottom: 0;
  }
  .header-mega__title a {
    font-size: 20px;
    font-weight: 500;
    color: #F1F5F9;
  }
  .header-mega__services > li {
    margin-left: 15px;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .preheader .container {
    width: 100%;
    max-width: 100%;
  }
  .preheader__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .preheader {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
  }
  .preheader__contacts {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 5vw;
    margin-right: 5vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 100%;
    gap: 34px;
  }
  .preheader__logo {
    max-width: 100%;
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
    background-color: #161F32;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .preheader__logo img {
    max-width: 100%;
    width: 350px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .preheader__inner {
    gap: 0;
  }
  .preheader__contact {
    gap: 5px;
    font-size: 14px;
  }
  .preheader__contacts {
    gap: 18px;
  }
  .header-nav__list-slot {
    display: none;
  }
  .header-nav .header-nav__list {
    display: none;
  }
  .header-mobile-panel .header-nav__list {
    display: block;
  }
  .header-nav__utils {
    gap: 0;
  }
  .header-nav__icon {
    display: none;
  }
  .header-mega {
    display: none;
  }
  .header-mobile-panel .header-mega__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: unset;
    gap: 0;
  }
  .header-mobile-panel .header-mega__col {
    display: block;
  }
  .header-mobile-panel .header-mega__services,
  .header-mobile-panel .header-mega__services--with-desc {
    display: block;
  }
  .header-nav__mobile-row {
    width: 48%;
  }
  .header-nav__mobile-row .btn {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .header-nav__utils {
    width: 48%;
  }
  .header-nav__utils .btn {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .header-mobile-panel {
    display: none;
  }
  .header-mobile-panel.is-open {
    display: block;
  }
  .btn {
    padding-left: 24px;
    padding-right: 24px;
  }
  .header-nav__mobile-row,
  .header-nav__utils {
    margin-bottom: 16px;
  }
  .header-mobile-panel {
    margin-top: 0;
  }
  .header-menu {
    padding-top: 4px;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 0;
  }
  .header-mobile-panel .header-mega__left {
    padding-bottom: 0;
    margin-bottom: 0px;
  }
  .header-mobile-panel .header-nav__item--dropdown.is-open .header-mega__left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
  .header-mega__title {
    width: 100%;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 10px;
  }
}
@media (max-width: 369px) {
  .header-nav__utils .btn {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1280px) {
  .header-nav__mobile-row {
    display: none;
  }
  .header-nav__list-slot {
    display: contents;
  }
  .header-nav .header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-nav__utils {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-mega {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header-nav__link:hover {
    color: #38BDF8;
  }
  .header-nav__link:hover svg {
    fill: #38BDF8;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-nav__item--dropdown:hover .header-nav__link {
    color: #38BDF8;
  }
  .header-nav__item--dropdown:hover .header-nav__link svg {
    fill: #38BDF8;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-nav__item--dropdown:hover .header-nav__chevron {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .header-nav__item--dropdown:hover .header-mega,
  .header-mega:hover {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s;
  }
  .header-mega__services > li > a:hover svg {
    fill: #38BDF8;
  }
  .header-mega__services > li > a:hover {
    color: #38BDF8;
  }
  .header-mega__sublist li:hover {
    color: #38BDF8;
  }
  .header-mega__item-desc a:hover {
    color: #38BDF8;
  }
  .header-nav__icon svg:hover {
    fill: #fff;
  }
}
@media (min-width: 1280px) {
  .header-mobile-panel {
    display: none;
  }
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 16px 24px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.2s, opacity 0.2s;
  transition: visibility 0.2s, opacity 0.2s;
  pointer-events: none;
}
.search-overlay[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 32, 0.9);
  cursor: pointer;
}

.search-overlay__box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #161F32;
  border-radius: 12px;
  padding: 24px;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.search-overlay__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  color: #F1F5F9;
  cursor: pointer;
  border-radius: 8px;
}
.search-overlay__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #38BDF8;
}

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

.search-overlay__input {
  width: 100%;
  padding: 14px 44px 14px 16px;
  font-size: 18px;
  line-height: 1.4;
  color: #F1F5F9;
  background: #0B1120;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 8px;
  outline: none;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}
.search-overlay__input::-webkit-input-placeholder {
  color: #94A3B8;
}
.search-overlay__input::-moz-placeholder {
  color: #94A3B8;
}
.search-overlay__input:-ms-input-placeholder {
  color: #94A3B8;
}
.search-overlay__input::-ms-input-placeholder {
  color: #94A3B8;
}
.search-overlay__input::placeholder {
  color: #94A3B8;
}
.search-overlay__input:focus {
  border-color: #38BDF8;
}

.search-overlay__hint {
  margin: 8px 0 0;
  font-size: 14px;
  color: #94A3B8;
  min-height: 20px;
}

.search-overlay__results {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  max-height: 60vh;
  overflow-y: auto;
}

.search-overlay__results li {
  margin: 0;
}

.search-overlay__results a {
  display: block;
  padding: 12px 16px;
  color: #F1F5F9;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: background 0.15s;
  transition: background 0.15s;
}
.search-overlay__results a:hover, .search-overlay__results a:focus {
  background: rgba(56, 189, 248, 0.15);
  color: #38BDF8;
}

.footer {
  padding-top: 100px;
  padding-bottom: 34px;
}

.footer__contacts {
  width: 980px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__contact-item {
  text-align: center;
}
.footer__contact-item .body-sm-font {
  margin-bottom: 12px;
  line-height: 1;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.footer__menu {
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid #1E293B;
  border-bottom: 1px solid #1E293B;
  margin-top: 67px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__menu-item {
  width: 24%;
}

.footer__menu-title {
  margin-bottom: 19px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
}
.footer__menu-title::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #38BDF8;
  border-radius: 50%;
  background: #38BDF8;
  display: block;
  -webkit-box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
          box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
}

.footer__menu-link {
  color: #94A3B8;
  text-decoration: none;
  display: block;
}

.footer__address {
  color: #94A3B8;
  font-style: normal;
  line-height: 2;
  width: 150px;
  max-width: 100%;
}

.footer__menu-list {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__menu-link--white {
  color: #F1F5F9;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.footer__menu-link--white:hover {
  color: #38BDF8;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 34px;
  font-size: 14px;
  color: #94A3B8;
}

.footer__bottom-link {
  color: #94A3B8;
}
.footer__bottom-link:hover {
  color: #38BDF8;
}

.footer__bottom-links {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-bottom-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 13%;
}

@media (max-width: 1280px) {
  .footer__contacts {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 460px;
  }
  .footer__contact-item {
    width: 50%;
    margin-bottom: 48px;
  }
  .footer__contact-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__bottom-links {
    gap: 30px;
  }
  .footer__menu-item {
    width: 24%;
  }
  .footer__menu-item:nth-child(3) {
    width: 28%;
  }
  .footer {
    padding-top: 52px;
    padding-bottom: 32px;
  }
  .footer__bottom {
    padding-top: 32px;
  }
  .footer__menu {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .footer-bottom-right {
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__bottom-links {
    margin-bottom: 3px;
  }
}
@media (max-width: 767px) {
  .footer__menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__menu-item {
    width: 50%;
    margin-bottom: 40px;
  }
  .footer__menu {
    margin-top: 0px;
    padding-top: 52px;
    padding-bottom: 0px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 52px;
    text-align: center;
  }
  .footer {
    padding-bottom: 32px;
  }
  .footer__copyright {
    margin-top: 16px;
  }
  .footer__bottom-links {
    gap: 50px;
  }
  .footer__contact-item .btn {
    min-width: auto;
    padding-left: 13px;
    padding-right: 13px;
    white-space: nowrap;
  }
  .footer__contact-item .body-sm-font {
    font-size: 13px;
    white-space: nowrap;
  }
  .footer__contact-item {
    margin-bottom: 44px;
  }
  .footer__menu-item:nth-child(3) {
    width: 50%;
  }
  .footer__bottom-links {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__bottom-logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .footer__bottom-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .footer__bottom {
    padding-top: 90px;
    position: relative;
  }
  .footer__bottom-links {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 390px) {
  .footer__bottom {
    font-size: 13.5px;
  }
}
@media (max-width: 369px) {
  .footer__contact-item .btn {
    min-width: auto;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
  }
  .footer__contact-item .body-sm-font {
    font-size: 12px;
  }
}
.usp {
  text-align: center;
  background-image: url(../img/usp.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.usp .section-header {
  margin-bottom: 30px;
}
.usp .save-title {
  margin-bottom: 18px;
}
.usp .description {
  font-size: 22px;
  color: #F1F5F9;
  width: 450px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 140%;
  margin-top: 30px;
}

.usp__title {
  font-size: 46px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 30px;
  line-height: 1.4;
}

.usp__title-prefix {
  font-size: 24px;
}

@media (max-width: 1280px) {
  .usp__title {
    font-size: 40px;
  }
  .usp__title-prefix {
    font-size: 24px;
  }
  .usp .description {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .usp__title {
    font-size: 32px;
  }
  .usp__title-prefix {
    font-size: 20px;
  }
  .usp .description {
    font-size: 18px;
  }
}
.breadcrumb {
  margin-bottom: 20px;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.4;
  color: #94A3B8;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.breadcrumb__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.breadcrumb__item:not(:last-child)::after {
  content: url("../img/arrow-right.svg");
  color: #94A3B8;
  font-weight: 400;
  pointer-events: none;
}
.breadcrumb__item:last-child::after {
  content: url("../img/arrow-down.svg");
  pointer-events: none;
  top: -2px;
  position: relative;
}

.breadcrumb__link {
  color: #94A3B8;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  color: #38BDF8;
}

.breadcrumb__item--current {
  color: #F1F5F9;
  font-weight: 500;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  cursor: pointer;
}

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

html, body {
  margin: 0;
  padding: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  width: 1090px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.h2 {
  font-size: 48px;
  line-height: 1.2;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #F1F5F9;
  margin-bottom: 0;
  margin-top: 0;
}
.h2 span {
  color: #78ABAD;
}

.h3 {
  font-size: 40px;
  line-height: 40px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  color: #F1F5F9;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 130%;
}

.h3--2 {
  font-size: 38px;
}

.h4 {
  font-size: 24px;
  line-height: 32px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  color: #F1F5F9;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 130%;
  margin-bottom: 16px;
}

.body-sm-font {
  font-size: 14px;
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.description {
  color: #94A3B8;
  font-size: 20px;
  margin-top: 50px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 140%;
}

.color-white {
  color: #F1F5F9;
}

.price-number-title {
  font-size: 48px;
  line-height: 1;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #F1F5F9;
  color: #78ABAD;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 12px 16px;
  background: #78ABAD;
  color: #0B1120;
  text-decoration: none;
  font-weight: 600;
  z-index: 9999;
  -webkit-transition: top 0.2s;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #38BDF8;
  outline-offset: 2px;
}

body {
  background-color: #0B1120;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #F1F5F9;
}

.container {
  width: 1320px;
  max-width: 93vw;
  margin-left: auto;
  margin-right: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.col-3 {
  width: calc(25% - 20px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  .col-3 {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .col-3 {
    width: 100%;
  }
}

.col-4 {
  width: calc(33.333% - 20px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col-5 {
  width: calc(41.667% - 20px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  .col-5 {
    width: calc(50% - 20px);
  }
}
@media (max-width: 767px) {
  .col-5 {
    width: 100%;
  }
}

.col-6 {
  width: calc(50% - 20px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.col-7 {
  width: calc(58.333% - 20px);
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  .col-7 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .col-7 {
    width: 100%;
  }
}

.card {
  text-align: center;
  background: rgba(11, 17, 32, 0.8);
  border-radius: 10px;
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  border: 1px solid #354662;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-description {
  font-weight: 500;
}
.card-description span {
  color: #78ABAD;
}

.card--secondary {
  padding-top: 48px;
  padding-bottom: 48px;
}
.card--secondary .card-description {
  margin-bottom: 24px;
}
.card--secondary .card-description:last-child {
  margin-bottom: 0;
}

.contact-section .card.card--secondary.card--active {
  background: #38BDF8;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
          box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
}
.contact-section .card.card--secondary.card--active .card__icon.card__icon--contact svg {
  fill: #0B1120;
}
.contact-section .card.card--secondary.card--active .card-title {
  color: #F1F5F9;
}
.contact-section .card.card--secondary.card--active .card-description {
  color: #0B1120;
}
.contact-section .card.card--secondary.card--active .card-description span {
  color: #F1F5F9;
}
.contact-section .card.card--secondary.card--active .card-link {
  color: #F1F5F9;
}

.card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card--link:hover {
  color: inherit;
  text-decoration: none;
}

.card-link {
  color: #78ABAD;
  text-decoration: underline;
}

.card__icon {
  width: 80px;
  height: 80px;
  background: #78ABAD;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.card__icon svg {
  width: 40px;
  height: 40px;
  fill: #0B1120;
}

.card__icon--contact {
  background: transparent;
}
.card__icon--contact svg {
  width: 100%;
  height: 100%;
  fill: #78ABAD;
}

.card:hover .card__icon.card__icon--contact {
  background: transparent;
}
.card:hover .card__icon.card__icon--contact svg {
  fill: #0B1120;
}

.card-title {
  font-size: 30px;
  font-weight: 500;
  color: #78ABAD;
  margin-bottom: 20px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.25;
}

.card:hover {
  background: #38BDF8;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
          box-shadow: 0px 0px 6px rgba(56, 189, 248, 0.9);
}
.card:hover svg {
  fill: #38BDF8;
}
.card:hover .card__icon {
  background: #0B1120;
}
.card:hover .card-title {
  color: #F1F5F9;
}
.card:hover .card-description {
  color: #0B1120;
}
.card:hover .card-description span {
  color: #F1F5F9;
}
.card:hover .card-description a {
  color: #F1F5F9;
}
.card:hover .card-link {
  color: #F1F5F9;
}

.card.card--horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-align: left;
  gap: 15px;
  min-width: 0;
  padding-right: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.card.card--horizontal .card__content {
  min-width: 0;
}
.card.card--horizontal .card__content a {
  display: inline-block;
  color: #78ABAD;
  text-decoration: underline;
}
.card.card--horizontal .card__icon {
  min-width: 80px;
  margin-bottom: 0;
}

.vacancy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.vacancy-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(241, 245, 249, 0.2);
  border-radius: 10px;
  padding: 28px 32px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
@media (max-width: 767px) {
  .vacancy-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 20px;
  }
}

.vacancy-card__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.vacancy-card__title {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1.3;
  color: #F1F5F9;
  margin: 0 0 12px 0;
}

.vacancy-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 32px;
}

.vacancy-card__meta-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  line-height: 1.4;
  color: #94A3B8;
}

.vacancy-card__meta-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #94A3B8;
}

.vacancy-card__description {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.vacancy-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 32px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.vacancy-card__actions .btn {
  width: 200px;
}
@media (max-width: 767px) {
  .vacancy-card__actions {
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.vacancy-card__btn {
  min-width: 180px;
}
@media (max-width: 767px) {
  .vacancy-card__btn {
    min-width: 0;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.vacancy-card__meta span {
  color: #78ABAD;
}

.vacancy-card__btn--outline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

.vacancy-card__pdf-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.card-contact-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 390px;
  max-width: 100%;
}

.card-contact-row__title {
  color: #78ABAD;
}

.card.card--horizontal .card__content .card-contact-row__value a {
  color: #F1F5F9;
  text-decoration: none;
}

.card-contact-list {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card.card--horizontal:hover a {
  color: #F1F5F9;
}
.card.card--horizontal:hover .card-contact-row__title {
  color: #F1F5F9;
}
.card.card--horizontal:hover .card__content .card-contact-row__value a {
  color: #0B1120;
}

.map {
  overflow: hidden;
}
.map iframe {
  width: 100%;
  height: 754px;
  border: none;
}

.hero {
  padding-top: 9.375vw;
  padding-bottom: 10.417vw;
  position: relative;
}
.hero .container {
  position: relative;
  z-index: 9;
}

.hero__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__bg-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.save-title {
  font-size: 18px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  color: #78ABAD;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.save-title span {
  color: #F59E0B;
  padding-left: 7px;
  padding-right: 7px;
}

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

.save-title--yellow {
  color: #F59E0B;
}

.hero__content {
  width: 594px;
  max-width: 100%;
}

.hero__title {
  font-size: 64px;
  line-height: 120%;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  color: #F1F5F9;
  margin-bottom: 0;
  margin-bottom: 50px;
}
.hero__title span {
  text-transform: uppercase;
  color: #78ABAD;
}

.hero__description {
  font-size: 22px;
  line-height: 140%;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-bottom: 50px;
}

.hero--secondary {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  min-height: 550px;
  background-color: #0B1222;
}
.hero--secondary .hero__content {
  width: 650px;
  max-width: 100%;
}
.hero--secondary .hero__title {
  font-size: 48px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 40px;
}
.hero--secondary .hero__description {
  font-size: 20px;
  width: 475px;
  max-width: 100%;
}
.hero--secondary .hero__bg-wrapper {
  right: 0;
  left: auto;
  width: auto;
}
.hero--secondary .hero__bg-wrapper img {
  width: auto;
}

.ellipse-glow.hero--secondary {
  background-color: #0B1222;
}

.ellipse-glow.hero--secondary::before {
  width: 300px;
  height: 300px;
  left: 192px;
  top: 0;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  opacity: 1;
  z-index: 1;
}

.ellipse-glow.hero--secondary::after {
  width: 300px;
  height: 300px;
  right: 412px;
  bottom: 0;
  -webkit-transform: translateY(25%);
      -ms-transform: translateY(25%);
          transform: translateY(25%);
  opacity: 1;
  z-index: 0;
}

.ellipse-glow {
  position: relative;
  overflow: hidden;
  background-color: #161F32;
}
.ellipse-glow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #16C1E9;
  opacity: 0.45;
  -webkit-filter: blur(350px);
          filter: blur(350px);
  -webkit-transform: translate(-50%, -50%) translateZ(0);
          transform: translate(-50%, -50%) translateZ(0);
}
.ellipse-glow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: #16C1E9;
  opacity: 0.45;
  -webkit-filter: blur(350px);
          filter: blur(350px);
  -webkit-transform: translate(50%, 50%) translateZ(0);
          transform: translate(50%, 50%) translateZ(0);
}

.clients {
  padding-top: 100px;
  padding-bottom: 67px;
  background-color: #161F32;
}
.clients .container {
  position: relative;
  z-index: 9;
}

.clients__item {
  background: #fff;
  border-radius: 10px;
  width: 200px;
  min-width: 200px;
  height: 98px;
  padding: 14px 20px;
}
.clients__item img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}

.clients__marquee {
  overflow: hidden;
}

.clients__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: clients-marquee 40s linear infinite;
          animation: clients-marquee 40s linear infinite;
}

.clients__track:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes clients-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes clients-marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.clients__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.intro__item {
  text-align: center;
}

.intro__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  padding-top: 12px;
}

.intro__item {
  width: 25%;
}

.target {
  background-image: url(../img/target.webp);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
}

.services__content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 24px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
}

.services__center {
  grid-column: 2;
  grid-row: 2;
}

.services__center img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 280px;
}

.services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  padding: 20px 16px;
  border-radius: 10px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.services__item:hover .services__title {
  color: #38BDF8;
}
.services__item:focus-visible {
  outline: 2px solid #38BDF8;
  outline-offset: 4px;
}

.services__item--tl {
  grid-column: 1;
  grid-row: 1;
}

.services__item--tr {
  grid-column: 3;
  grid-row: 1;
}

.services__item--bl {
  grid-column: 1;
  grid-row: 3;
}

.services__item--br {
  grid-column: 3;
  grid-row: 3;
}

.services__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.2);
  color: #38BDF8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.services__icon svg {
  width: 28px;
  height: 28px;
}

.services__title {
  font-size: 22px;
  font-weight: 600;
  color: #F1F5F9;
  margin: 0 0 8px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.services__desc {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.45;
  margin: 0;
}

.services__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.text-image .container {
  position: relative;
}
.text-image .section-header {
  margin-bottom: 30px;
}
.text-image .description {
  margin-top: 20px;
}
.text-image p {
  margin-top: 0;
}

.text-image__item {
  width: 50%;
}

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

.ilustration-wrapper {
  width: 650px;
  height: 620px;
  position: absolute;
  top: 0;
  right: 0;
}

.adv-item {
  margin-bottom: 6px;
  width: 450px;
  max-width: 100%;
}
.adv-item p {
  color: #94A3B8;
}

.text-image--2 .adv-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 0 8px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin-bottom: 6px;
  width: 450px;
  max-width: 100%;
}
.text-image--2 .adv-item p {
  color: #94A3B8;
}

.adv-item__title-row {
  display: contents;
}

.adv-item__number {
  grid-column: 1;
  grid-row: 1;
  font-weight: 500;
  color: #78ABAD;
  font-size: 30px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.2;
  margin: 0;
  position: relative;
  top: 2px;
}

.adv-item__heading {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  line-height: 1.2;
}

.adv-item__content {
  grid-column: 2;
  grid-row: 2;
  margin-top: 8px;
}
.adv-item__content p {
  margin-top: 0;
  margin-bottom: 0;
}

.ilustration-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-image: url("../img/dna.svg");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 183px;
}

.ilustration-item {
  border-radius: 10px;
}

.ilustration-item-1 {
  width: 450px;
  height: 545px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ilustration-item-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 445px;
  height: 263px;
  border: 10px solid #0B1120;
  border-radius: 10px;
}
.ilustration-item-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.text-image .section-header {
  position: relative;
  z-index: 9;
}

.service-content {
  position: relative;
  width: 1300px;
  height: 395px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: visible;
}

.services__item {
  width: 50%;
}

.services__item-content {
  width: 324px;
}

.services__item--1 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: right;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  cursor: pointer;
}
.services__item--1:hover {
  color: #38BDF8;
}

.services:has(.service-icon-circle-1:hover) .services__item--1 {
  color: #38BDF8;
}

.services__item--2 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: left;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  cursor: pointer;
}
.services__item--2:hover {
  color: #38BDF8;
}

.services__item--3 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: right;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  cursor: pointer;
}
.services__item--3:hover {
  color: #38BDF8;
}

.services__item--4 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: left;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  cursor: pointer;
}
.services__item--4:hover {
  color: #38BDF8;
}

.sercive-ilustration-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  overflow: visible;
}
.sercive-ilustration-wrapper svg {
  overflow: visible;
  display: block;
}

.sercive-ilustration-wrapper .services-diagram--tablet,
.sercive-ilustration-wrapper .services-diagram--mobile {
  display: none;
}

.hero--third {
  padding-top: 65px;
  padding-bottom: 75px;
  background-image: url("../img/dna-1.svg");
  background-repeat: no-repeat;
  background-position: top 1vw right 15vw;
  background-size: 183px;
}
.hero--third .hero__content {
  width: 100%;
}

.contact-section.ellipse-glow::before, .contact-section.ellipse-glow::after {
  display: none;
}

.slider-section .slider-section__slider {
  position: relative;
  margin-left: -10px;
  margin-right: -10px;
}
.slider-section .slider-section__slide {
  padding: 0 10px;
  height: 100%;
}
.slider-section .slider-section__slide > a.card {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.slider-section .slick-list {
  overflow: hidden;
  margin-bottom: 24px;
}
.slider-section .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.slider-section .slick-slide {
  height: auto;
}
.slider-section .slick-slide > div {
  height: 100%;
}
@media (min-width: 1281px) {
  .slider-section--three-cards .slick-list {
    width: 100%;
  }
  .slider-section--three-cards .slick-track {
    width: 100% !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .slider-section--three-cards .slick-slide {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    min-width: 0;
    width: auto !important;
  }
  .slider-section--three-cards .slick-slide > div {
    height: 100%;
  }
}
.slider-section .slider-section__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider-section .slider-section__dots ul.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider-section .slider-section__dots li {
  display: block;
}
.slider-section .slider-section__dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  text-indent: -9999px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.slider-section .slider-section__dots button:hover {
  background: rgba(255, 255, 255, 0.6);
}
.slider-section .slider-section__dots li.slick-active button {
  background: #fff;
}
@media (max-width: 767px) {
  .slider-section .slider-section__slider:not(.slick-initialized) {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }
  .slider-section .slider-section__slider:not(.slick-initialized) .slider-section__slide {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .slider-section .slider-section:has(.slider-section__slider:not(.slick-initialized)) .slider-section__dots {
    display: none;
  }
}

.page-content__contact {
  font-size: 20px;
  color: #94A3B8;
  margin-bottom: 48px;
}

.page-content__contact-item {
  margin-bottom: 38px;
  line-height: 140%;
}

.text-white {
  color: #F1F5F9;
}

.color-muted {
  color: #94A3B8;
}

.page-content__wrapper-item {
  font-weight: 400;
  margin-bottom: 30px;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.page-content__wrapper-item a {
  color: #38BDF8;
  text-decoration: underline;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.semi-bold {
  font-weight: 600;
}

.text-20 {
  font-size: 20px;
}

.text-title {
  font-size: 32px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: 500;
}

.text-section__item,
.text-section__item--2 {
  margin-top: 0;
  line-height: 140%;
}

.text-section__item {
  width: 520px;
  max-width: 100%;
}

.text-section__item--2 {
  padding-left: 32px;
  padding-right: 32px;
  border-left: 6px solid #78ABAD;
}
.text-section__item--2 p {
  font-size: 16px;
  color: #94A3B8;
  font-weight: 400;
  font-style: normal;
}

.text-section {
  padding-bottom: 0;
}

.text-section.ellipse-glow {
  background-color: #0B1120;
}
.text-section.ellipse-glow::before, .text-section.ellipse-glow::after {
  display: none;
}

.card__icon--contact {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.header-mega__title a {
  display: block;
}

.text-image--2 .ilustration-wrapper {
  position: relative;
  height: 554px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  background-image: url(../img/dna-1.svg);
  background-position: top 115px right;
  background-repeat: no-repeat;
  background-size: 179px;
}
.text-image--2 .text-image__item {
  width: 100%;
}
.text-image--2 .ilustration-item-wrapper {
  left: 190px;
}
.text-image--2 .ilustration-item-1 {
  height: 437px;
}
.text-image--2 .ilustration-item-wrapper {
  border-color: #161F32;
  border-radius: 18px;
}
.text-image--2 .adv-item {
  width: 600px;
  max-width: 100%;
}
.text-image--2 .h4 {
  margin-bottom: 10px;
}
.text-image--2 .save-title {
  margin-bottom: 0;
}

.banner-section {
  position: relative;
}
.banner-section .container {
  position: relative;
  z-index: 9;
}
.banner-section .description {
  margin-top: 30px;
  text-align: center;
}
.banner-section .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 44px;
  padding-bottom: 10px;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.intro__item--2 {
  background: rgba(11, 17, 32, 0.9);
  width: 100%;
  padding: 32px 20px;
  border: 1px solid #78ABAD;
  border-radius: 20px;
}

.fact-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  color: #78ABAD;
}

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

.color--teal {
  color: #78ABAD;
}

.h2.color--teal {
  color: #78ABAD;
}

.banner-section--2 .banner-content {
  text-align: center;
  text-align: left;
}
.banner-section--2 .banner-content .description {
  text-align: left;
  color: #F1F5F9;
  margin-bottom: 30px;
}
.banner-section--2 .banner-content .buttons-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  margin-top: 44px;
}

.banner-section--2::after,
.banner-section--2::before {
  display: none;
}

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

.color-suebo {
  color: #78ABAD;
}

.text-image--3 .ilustration-item-wrapper {
  border-color: #0B1120;
}

.blue-path {
  fill: #0B1120;
}

.card:hover .blue-path {
  fill: #38BDF8;
}

.text-image--2 .ilustration-item-wrapper--2 {
  left: 212px;
}

.btn--icon {
  gap: 16px;
}
.btn--icon svg {
  width: 21px;
  fill: #F1F5F9;
}

.btn--icon:hover svg {
  fill: #38BDF8;
}

.button-wrapper--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.text-italic {
  font-style: italic;
}

.text-wrapper {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: left;
}

.schema-figure {
  margin: 0;
}
.schema-figure .schema-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.pl-20 {
  padding-left: 20px;
  margin-left: 0;
}

.text-image--2 .ilustration-wrapper--un {
  background-position: top 43px right;
  height: auto;
}
.text-image--2 .ilustration-wrapper--un img {
  width: 95%;
  height: auto;
}

.text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__card {
  margin-top: 0;
}
.text-image--datenschutz-vorteile .card--datenschutz {
  width: 95%;
}
@media (min-width: 1281px) {
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__left-col,
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__right-col,
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__card-col {
    width: 100%;
    min-width: 0;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__left-col {
    grid-column: 1;
    grid-row: 1;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__right-col {
    grid-column: 2;
    grid-row: 1/-1;
    align-self: start;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__card-col {
    grid-column: 1;
    grid-row: 2;
    padding-right: 5%;
  }
}
@media (max-width: 1280px) {
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__left-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__right-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .text-image--datenschutz-vorteile .text-image--datenschutz-vorteile__card-col {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.text-muted {
  color: #94A3B8;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

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

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

.text-uppercase {
  text-transform: uppercase;
}

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

.card.card--horizontal.card--datenschutz {
  margin-top: 30px;
  width: 95%;
}

.offenen-stellen .h2 {
  text-align: center;
}

.partner-title {
  text-align: center;
  font-size: 30px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

.best-strategie .clients__item {
  background: transparent;
  border: 1px solid rgba(241, 245, 249, 0.3);
}

.lokale-werte__slider-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lokale-werte__slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.lokale-werte__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background 0.2s, color 0.2s, border-color 0.2s;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.lokale-werte__arrow img {
  max-width: 100%;
}

.lokale-werte__dots {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}
.lokale-werte__dots ul.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lokale-werte__dots ul.slick-dots li {
  margin: 0;
}
.lokale-werte__dots ul.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 0;
  background: rgba(241, 245, 249, 0.4);
  cursor: pointer;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}
.lokale-werte__dots ul.slick-dots li button:hover {
  background: rgba(241, 245, 249, 0.6);
}
.lokale-werte__dots ul.slick-dots li.slick-active button {
  background: #F1F5F9;
}

.lokale-werte__slider {
  width: 100%;
  max-width: 420px;
}
.lokale-werte__slider .slick-list,
.lokale-werte__slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lokale-werte__slider .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 8px;
}

.lokale-werte__card {
  background: #F1F5F9;
  border-radius: 12px;
  padding: 32px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 210px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
  transition: box-shadow 0.2s ease, opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.lokale-werte__card:hover {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.95;
}
.lokale-werte__card:focus-visible {
  outline: 2px solid #38BDF8;
  outline-offset: 2px;
}
.lokale-werte__card img {
  max-width: 90%;
  max-height: 114px;
  width: 90%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.text-30 {
  font-size: 30px;
  font-weight: 500;
}

.mt-30 {
  margin-top: 30px;
}

@media (max-width: 1280px) {
  .lokale-werte__slider-wrap {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .lokale-werte__arrow {
    display: none;
  }
}
.lokale-werte__dots {
  display: none;
}

.text-item {
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 30px;
}
.text-item p {
  margin-top: 0;
}

.text-item:last-child {
  border-bottom: none;
}

.error-page {
  min-height: 47.76vw;
  position: relative;
  padding-top: 23.91vw;
}
.error-page .container {
  width: 68.75vw;
  text-align: center;
}

.error-image {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.error-content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 33.49vw;
  padding-bottom: 50px;
}

.error-title {
  font-size: 2.5vw;
  line-height: 1.2;
  margin-bottom: 0.5vw;
  font-weight: 600;
}

.error-text {
  font-size: 1.04vw;
  margin-bottom: 2.08vw;
  color: #94A3B8;
}

.error-value {
  display: none;
}

.error-mobile {
  display: none;
}

.text-image__item .h2 {
  font-size: 40px;
}

.contact-section .card {
  cursor: pointer;
}

@media (max-width: 1800px) {
  .hero--secondary .hero__bg-wrapper {
    right: -10vw;
  }
}
@media (max-width: 1600px) {
  .hero--secondary .hero__bg-wrapper {
    right: -12vw;
  }
}
@media (max-width: 1500px) {
  .hero--secondary .hero__bg-wrapper {
    right: -15vw;
  }
}
@media (max-width: 1400px) {
  .hero--secondary .hero__bg-wrapper {
    right: -25vw;
  }
  .text-image--2 .ilustration-item-wrapper {
    left: 130px;
  }
}
.map__btn {
  display: none;
}

@media (max-width: 1280px) {
  .sercive-ilustration-wrapper .services-diagram--desktop {
    display: none;
  }
  .sercive-ilustration-wrapper .services-diagram--tablet {
    display: block;
  }
}
.illustration {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 334px;
  height: 334px;
}

.service-icon-circle-1 {
  -webkit-transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
  fill: #78ABAD;
  cursor: pointer;
}
.service-icon-circle-1:hover {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.services__item--1:hover) .service-icon-circle-1 {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.service-icon-circle-1:hover) .services__item--1 {
  color: #38BDF8;
}

.service-icon-circle-2 {
  -webkit-transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
  fill: #78ABAD;
  cursor: pointer;
}
.service-icon-circle-2:hover {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.services__item--2:hover) .service-icon-circle-2 {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.service-icon-circle-2:hover) .services__item--2 {
  color: #38BDF8;
}

.service-icon-circle-3 {
  -webkit-transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
  fill: #78ABAD;
  cursor: pointer;
}
.service-icon-circle-3:hover {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.services__item--3:hover) .service-icon-circle-3 {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.service-icon-circle-3:hover) .services__item--3 {
  color: #38BDF8;
}

.service-icon-circle-4 {
  -webkit-transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, -webkit-filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease;
  transition: fill 0.2s ease, filter 0.2s ease, -webkit-filter 0.2s ease;
  fill: #78ABAD;
  cursor: pointer;
}
.service-icon-circle-4:hover {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.services__item--4:hover) .service-icon-circle-4 {
  fill: #38BDF8;
  -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
          filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
}

.services:has(.service-icon-circle-4:hover) .services__item--4 {
  color: #38BDF8;
}

.services__item-content-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (max-width: 1420px) {
  .ilustration-wrapper {
    background-size: 130px;
    background-position: top 0px left 55px;
  }
}
@media (max-width: 1365px) {
  .services__item-content {
    width: 270px;
  }
}
@media (max-width: 1280px) {
  .h2 {
    font-size: 44px;
  }
  .description {
    font-size: 18px;
    margin-top: 24px;
  }
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .hero__content {
    width: 100%;
  }
  .hero__bg-wrapper {
    width: 100%;
    position: static;
    aspect-ratio: 16/9;
    overflow: hidden;
  }
  .hero__bg-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .hero {
    padding-top: 0;
  }
  .hero__content {
    padding-top: 38px;
    text-align: center;
    width: 715px;
    margin-left: auto;
    margin-right: auto;
  }
  .save-title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__title {
    margin-top: 40px;
  }
  .hero__title {
    font-size: 57px;
    margin-bottom: 30px;
  }
  .hero__title span {
    display: block;
  }
  .hero__description {
    font-size: 20px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .hero {
    padding-bottom: 52px;
  }
  .section-header {
    margin-bottom: 44px;
    width: 1100px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .h3 {
    font-size: 44px;
  }
  .contact-section .row .col-4,
  .contact-section .row .col-6 {
    width: calc(50% - 10px);
  }
  .contact-section .row .col-6:last-child {
    width: 100%;
  }
  .clients {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .clients .container {
    width: 100%;
    max-width: 100%;
  }
  .clients .section-header {
    padding-left: 3.5vw;
    padding-right: 3.5vw;
  }
  .intro__item {
    max-width: 48%;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 44px;
  }
  .intro__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    padding-top: 0;
  }
  .ellipse-glow::before,
  .ellipse-glow::after {
    width: 250px;
    height: 250px;
    -webkit-filter: blur(71px);
            filter: blur(71px);
  }
  .card {
    padding: 28px 20px;
  }
  .card__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 32px;
  }
  .card__icon svg {
    width: 32px;
    height: 32px;
  }
  .card-title {
    font-size: 24px;
  }
  .ilustration-wrapper {
    position: relative;
    width: 350px;
    min-width: 350px;
    height: 335px;
  }
  .adv-item {
    width: 100%;
  }
  .ilustration-item-1 {
    width: 243px;
    height: 295px;
  }
  .ilustration-item-wrapper {
    width: 240px;
    height: 143px;
    border-width: 5px;
  }
  .ilustration-wrapper {
    background-size: 95px;
    background-position: top 0px left 0px;
  }
  .text-image__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .text-image .section-header {
    width: 560px;
    margin-left: 0;
    padding-right: 20px;
  }
  .text-image .section-header .save-title {
    margin-left: 0;
    text-align: left;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .adv-list {
    margin-top: 28px;
  }
  .service-content {
    height: 722px;
    width: 760px;
  }
  .services__item-content-title {
    font-size: 22px;
    white-space: nowrap;
  }
  .services__item-content {
    width: 220px;
  }
  .service-icon-circle-1,
  .service-icon-circle-2,
  .service-icon-circle-3 {
    fill: #0B1120;
  }
  .service-icon-circle-1:hover,
  .service-icon-circle-2:hover,
  .service-icon-circle-3:hover {
    fill: #38BDF8;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .service-icon-circle-1 + path,
  .service-icon-circle-2 + path,
  .service-icon-circle-3 + path {
    fill: #78ABAD;
  }
  .services:has(.service-icon-circle-1:hover) .service-icon-circle-1 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .services:has(.service-icon-circle-1:hover) .service-icon-circle-1 + path,
  .services:has(.services__item--1:hover) .service-icon-circle-1 + path {
    fill: #38BDF8;
  }
  .services:has(.services__item--1:hover) .service-icon-circle-1 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .services:has(.service-icon-circle-2:hover) .service-icon-circle-2 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .services:has(.service-icon-circle-2:hover) .service-icon-circle-2 + path,
  .services:has(.services__item--2:hover) .service-icon-circle-2 + path {
    fill: #38BDF8;
  }
  .services:has(.services__item--2:hover) .service-icon-circle-2 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .services:has(.service-icon-circle-3:hover) .service-icon-circle-3 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .services:has(.service-icon-circle-3:hover) .service-icon-circle-3 + path,
  .services:has(.services__item--3:hover) .service-icon-circle-3 + path {
    fill: #38BDF8;
  }
  .services:has(.services__item--3:hover) .service-icon-circle-3 {
    fill: #0B1120;
    -webkit-filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
            filter: drop-shadow(0 0px 4px rgba(56, 189, 248, 0.65));
  }
  .hero--secondary.ellipse-glow.hero--secondary::before,
  .hero--secondary.ellipse-glow.hero--secondary::after {
    display: none;
  }
  .hero--secondary .hero__bg-wrapper {
    width: 100%;
    height: 49.479vw;
    aspect-ratio: 1920/1080;
    overflow: hidden;
  }
  .hero--secondary .hero__bg-wrapper img {
    width: 135%;
    height: 100%;
    margin-left: -35%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
  .breadcrumb__list {
    margin-bottom: 30px;
  }
  .breadcrumb {
    margin-top: 36px;
  }
  .map__image {
    width: 100%;
    height: 60vw;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .card__icon--contact {
    background: transparent;
  }
  .card__icon--contact svg {
    width: 100%;
    height: 100%;
  }
  .card.card--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .card.card--horizontal .card__icon {
    margin-bottom: 32px;
  }
  .card-contact-row {
    width: 100%;
  }
  .card-contact-row {
    gap: 10px;
    text-align: left;
    font-size: 14px;
  }
  .card-contact-row__title {
    font-size: 14px;
  }
  .card-contact-row {
    gap: 2px;
  }
  .card-contact-row__value {
    white-space: nowrap;
  }
  .hero--secondary {
    padding-bottom: 52px;
  }
  .hero--secondary .hero__content {
    padding-top: 0;
  }
  .hero--secondary .hero__title {
    font-size: 48px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .hero--secondary .hero__title br {
    display: none;
  }
  .hero--secondary .hero__description {
    width: 100%;
    margin-bottom: 0;
  }
  .contact-section.ellipse-glow::before, .contact-section.ellipse-glow::after {
    display: block;
  }
  .contact-section .container {
    position: relative;
    z-index: 1;
  }
  .contact-section.ellipse-glow::after {
    bottom: 50%;
  }
  .card.card--horizontal .card__content a {
    display: block;
  }
  .contact-section .col-6:last-child .card.card--horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-right: 30px;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card-title {
    width: 220px;
    text-align: left;
    margin: 0;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card__icon {
    margin-bottom: 0;
  }
  .map iframe {
    height: 687px;
  }
  .map__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #161F32;
    margin-top: -10px;
  }
  .breadcrumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero--third {
    padding-top: 52px;
    padding-bottom: 52px;
    background-image: none;
  }
  .hero--third .breadcrumb {
    margin-top: 0px;
  }
  .hero--third .breadcrumb__list {
    margin-bottom: 0px;
  }
  .hero--third .hero__content {
    padding-top: 12px;
  }
  .hero--secondary .btn {
    margin-top: 44px;
  }
  .text-section {
    text-align: center;
  }
  .text-section .col-6 {
    width: 100%;
    max-width: 100%;
  }
  .text-section .description {
    width: 100%;
  }
  .text-section .text-section__item {
    margin-top: 0;
  }
  .text-section .text-section__item--2 {
    padding-left: 0;
    padding-right: 0;
    border-left: none;
    border-bottom: 4px solid #78ABAD;
    padding-bottom: 20px;
  }
  .text-section .section-header {
    margin-bottom: 20px;
  }
  .text-section.ellipse-glow {
    background-color: #161F32;
  }
  .text-section.ellipse-glow::before, .text-section.ellipse-glow::after {
    display: block;
  }
  .text-image--2 .col-6 {
    width: 100%;
  }
  .text-image__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-image--2 .ilustration-wrapper {
    width: 100%;
  }
  .text-image.ellipse-glow.text-image--2 {
    background: transparent;
  }
  .text-image.ellipse-glow.text-image--2::before, .text-image.ellipse-glow.text-image--2::after {
    display: none;
  }
  .text-image--2 .ilustration-item-1 {
    width: 69.01vw;
    height: 66.146vw;
  }
  .text-image--2 .ilustration-wrapper {
    height: 80vw;
    background-size: 21.875vw;
    background-position: top right;
    margin-bottom: 30px;
  }
  .text-image--2 .ilustration-item-wrapper {
    width: 61.589vw;
    height: 33.984vw;
    border-width: 2.474vw;
    border-color: #0B1120;
    border-radius: 1.8vw;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
    -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
            transform: translateY(0%);
    background-color: #0B1222;
  }
  .text-image--2 .ilustration-item-wrapper img {
    border-radius: 1vw;
  }
  .text-image--2 .adv-item {
    width: 100%;
  }
  .adv-item__number {
    min-width: 80px;
  }
  .banner-image {
    position: static;
    margin-bottom: 52px;
  }
  .banner-section {
    background: #161F32;
    padding-top: 0;
  }
  .intro__item--2 {
    max-width: 100%;
  }
  .banner-image {
    height: 363px;
  }
  .banner-section--2 {
    text-align: center;
  }
  .banner-section--2 .banner-content {
    padding-top: 30px;
  }
  .banner-section--2 .banner-content .description {
    text-align: center;
  }
  .banner-section--2 .h2 {
    text-align: center;
  }
  .banner-section--2 .banner-content .buttons-wrapper {
    gap: 20px;
  }
  .text-image--2 .ilustration-item-wrapper--2 {
    right: -1vw;
  }
  .row-2 .col-6 {
    width: calc(50% - 10px);
  }
  .contact-section .row.row-2 .col-6:last-child {
    width: calc(50% - 10px);
  }
  .text-image--2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .text-image--2 .adv-item--2 {
    text-align: left;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    margin-bottom: 24px;
  }
  .text-image--2 .adv-item--2 .adv-item__number {
    top: 10px;
  }
  .text-image--2 .ilustration-wrapper--un {
    height: auto;
    width: 100%;
  }
  .text-image--2 .ilustration-wrapper--un img {
    width: 100%;
  }
  .text-image--2 .ilustration-wrapper--un picture {
    width: 100%;
  }
  .button-wrapper--2 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-rev {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .vacancy-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .vacancy-card__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .vacancy-card__meta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .vacancy-card__title {
    font-size: 24px;
  }
  .offenen-stellen .h2 {
    text-align: center;
  }
  .section.lokale-werte {
    text-align: center;
  }
  .section.lokale-werte .section-header {
    text-align: center;
  }
  .section.lokale-werte .col-6 {
    width: 100%;
  }
  .text-item .col-6 {
    width: calc(50% - 20px);
  }
  .error-image {
    display: none;
  }
  .error-mobile {
    display: block;
    width: 100%;
  }
  .error-page {
    padding-top: 0;
  }
  .error-page .container {
    width: 93vw;
  }
  .error-value {
    display: block;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 350px;
    line-height: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(#67E2FF), to(#000E18));
    background: linear-gradient(180deg, #67E2FF 0%, #000E18 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 1;
    opacity: 0.5;
  }
  .error-content {
    width: 100%;
    margin-top: -225px;
    width: 700px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .error-title {
    font-size: 48px;
  }
  .error-text {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 90vw;
  }
  .hero__bg-wrapper {
    height: 65vw;
  }
  .hero__bg-wrapper img {
    height: 86.41vw;
    margin-top: -11.026vw;
    position: relative;
    -o-object-position: right;
       object-position: right;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero__content {
    padding-top: 0;
  }
  .save-title {
    font-size: 16px;
  }
  .save-title span {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero__title {
    margin-top: 28px;
    font-size: 38px;
    margin-bottom: 32px;
    -ms-hyphens: auto;
        hyphens: auto;
    hyphenate-character: "‐";
    overflow-wrap: break-word;
  }
  .hero__description {
    font-size: 17px;
  }
  .save-title {
    margin-bottom: 24px;
  }
  .h3 {
    font-size: 32px;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .h2 {
    font-size: 32px;
  }
  .clients__item {
    width: 167px;
    min-width: 167px;
    height: 80px;
  }
  .clients__track {
    gap: 16px;
  }
  .intro__item {
    width: 100%;
    max-width: 100%;
  }
  .intro__item p {
    margin-bottom: 0;
  }
  .intro__content {
    gap: 0;
  }
  .intro__item:first-child {
    margin-top: 0;
  }
  .col-4,
  .col-6 {
    width: 100%;
  }
  .contact-section .row .col-4,
  .contact-section .row .col-6 {
    width: 100%;
  }
  .text-image--2 .adv-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100%;
  }
  .adv-item__title-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .adv-item__number {
    grid-column: unset;
    grid-row: unset;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    white-space: nowrap;
  }
  .adv-item__heading {
    grid-column: unset;
    grid-row: unset;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .adv-item__content {
    grid-column: unset;
    grid-row: unset;
    margin-top: 8px;
  }
  .target {
    padding-bottom: 152px;
    background-size: 1038px;
  }
  .text-image__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ilustration-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
  .text-image {
    text-align: center;
  }
  .text-image .section-header {
    width: 100%;
    padding-right: 0;
    width: 100%;
    text-align: center;
  }
  .text-image .section-header .save-title {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .ilustration-wrapper {
    margin-top: 0;
  }
  .hero--secondary .hero__bg-wrapper img {
    height: auto;
    -o-object-position: bottom;
       object-position: bottom;
  }
  .breadcrumb__list {
    margin-top: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero--secondary .hero__title {
    font-size: 36px;
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .hero--secondary .hero__description {
    font-size: 17px;
  }
  .hero--secondary .hero__description {
    margin-bottom: 0;
  }
  .hero--secondary {
    min-height: auto;
    padding-bottom: 52px;
  }
  .card.card--horizontal {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 0;
    gap: 0;
  }
  .sercive-ilustration-wrapper .services-diagram--desktop,
  .sercive-ilustration-wrapper .services-diagram--tablet {
    display: none;
  }
  .sercive-ilustration-wrapper .services-diagram--mobile {
    display: block;
    position: relative;
    z-index: 9;
  }
  .illustration {
    width: 325px;
    height: 325px;
  }
  .services__item.services__item--2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-item-align: end;
        align-self: flex-end;
    position: relative;
    top: 40px;
  }
  .services__item.services__item--3 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .services__item.services__item--4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    position: relative;
    top: 15px;
  }
  .services__item.services__item--1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .services__item-content {
    text-align: center;
    width: 167px;
    margin-left: auto;
    margin-right: auto;
  }
  .services__item-content-title {
    white-space: normal;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .services__item-content-description {
    font-size: 14px;
  }
  .service-content {
    height: 760px;
    width: 378px;
    min-width: 378px;
  }
  .services {
    overflow: hidden;
  }
  .hero--secondary .hero__title {
    margin-bottom: 15px;
  }
  .hero--secondary .hero__title br {
    display: block;
  }
  .hero--secondary .hero__bg-wrapper {
    height: 66.667vw;
    aspect-ratio: 1920/1080;
  }
  .hero--secondary .hero__bg-wrapper img {
    margin-top: 0;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contact-section .col-6:last-child .card.card--horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-right: 0px;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card-title {
    width: auto;
    text-align: center;
    margin: 32px;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card__icon {
    margin-bottom: 0;
  }
  .contact-section .col-6:last-child .card.card--horizontal .card-contact-row {
    font-size: 14px;
  }
  .hero--third .h2 {
    font-size: 36px;
  }
  .page-content__contact-item {
    margin-bottom: 30px;
  }
  .text-section {
    font-size: 16px;
  }
  .text-section .description {
    font-size: 16px;
    margin-top: 0;
  }
  .adv-item__number {
    min-width: auto;
  }
  .adv-item__title-row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .adv-item__number {
    font-size: 20px;
    margin-right: 5px;
  }
  .text-image--2 .h4 {
    font-size: 20px;
    margin-bottom: 0;
  }
  .text-image--2 .adv-item {
    margin-bottom: 36px;
  }
  .banner-section {
    padding-top: 0;
  }
  .banner-image {
    height: 257px;
    margin-bottom: 15px;
  }
  .banner-section--2 {
    text-align: center;
  }
  .banner-section--2 .banner-content {
    padding-top: 50px;
  }
  .banner-section--2 .banner-content .description {
    text-align: center;
  }
  .banner-section--2 .h2 {
    text-align: center;
  }
  .banner-section--2 .banner-content .buttons-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
  .banner-section--2::after,
  .banner-section--2::before {
    display: block;
  }
  .banner-section--2::after {
    bottom: auto;
    top: 40%;
    -webkit-transform: translateY(0%) translateX(50%);
        -ms-transform: translateY(0%) translateX(50%);
            transform: translateY(0%) translateX(50%);
  }
  .banner-section--2::before {
    bottom: auto;
    top: 40%;
    left: 0;
    -webkit-transform: translateY(0%) translateX(-50%);
        -ms-transform: translateY(0%) translateX(-50%);
            transform: translateY(0%) translateX(-50%);
  }
  .banner-section--2 .banner-image {
    height: 63.077vw;
  }
  .text-image--2 .ilustration-item-wrapper--2 {
    right: -4vw;
  }
  .contact-section .row.row-2 .col-6:last-child {
    width: 100%;
  }
  .contact-section .row.row-2 .col-6 .card-title {
    font-size: 22px;
  }
  .text-image--2 .adv-item--2 {
    margin-bottom: 24px;
  }
  .adv-list {
    margin-top: 0;
  }
  .button-wrapper--2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .text-wrapper {
    margin-bottom: 0;
  }
  .vacancy-card__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lokale-werte__slider {
    max-width: 100%;
  }
  .lokale-werte__arrow {
    display: none !important;
  }
  .lokale-werte__card {
    min-height: 155px;
  }
  .lokale-werte__dots {
    margin-top: 0;
  }
  .lokale-werte__dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .text-30 {
    font-size: 24px;
  }
  .text-item .col-6 {
    width: 100%;
  }
  .error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-bottom: 50px;
    margin-top: -114px;
  }
  .error-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 0.5vw;
    font-weight: 600;
    margin-top: -20px;
  }
  .error-text {
    font-size: 17px;
    margin-bottom: 2.08vw;
    color: #94A3B8;
    margin-bottom: 32px;
    margin-top: 10px;
  }
  .error-value {
    font-size: 170px;
    line-height: 1;
  }
  .hero--third .h2--datenschutz {
    font-size: 30px;
  }
}
.text-image--2 .adv-item--2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.text-image--2 .adv-item__number {
  top: 4px;
}
.text-image--2 .text-image__item .h2 {
  font-size: 32px;
}

@media (max-width: 430px) {
  .service-content {
    width: 330px;
    min-width: 330px;
    height: 708px;
  }
  .services__item-content-title {
    font-size: 18px;
  }
  .services__item {
    padding-left: 0;
    padding-right: 0;
  }
  .sercive-ilustration-wrapper .services-diagram--mobile {
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
  .services__item-content-description {
    padding-left: 2px;
    padding-right: 2px;
  }
  .text-image--3 .adv-item__title-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .text-image--3 .adv-item p {
    text-align: left;
  }
}
@media (max-width: 390px) {
  .hero__title {
    font-size: 36px;
  }
  .ilustration-wrapper {
    width: 320px;
    min-width: 320px;
  }
  .ilustration-wrapper {
    background-size: 18vw;
  }
}
@media (max-width: 369px) {
  .save-title {
    font-size: 14px;
  }
  .ilustration-wrapper {
    width: 290px;
    min-width: 290px;
  }
}