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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: #001024;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.page {
  padding-top: 88px;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 96px;
  padding-right: 96px;
}
@media (max-width: 1200px) {
  .container {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 992px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 88px;
  background: #ffffff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.header--hidden {
  transform: translateY(-100%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 992px) {
  .header__inner {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.header__logo {
  flex-shrink: 0;
  width: 178.8px;
  height: 48px;
}
.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #001024;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 1200px) {
  .header__toggle {
    display: flex;
  }
}
.header__toggle--open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__toggle--open span:nth-child(2) {
  opacity: 0;
}
.header__toggle--open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 1200px) {
  .header__nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  }
  .header__nav--open {
    display: block;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1200px) {
  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
}
.header__menu-item {
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 16px;
  line-height: 28px;
  white-space: nowrap;
}
@media (max-width: 1200px) {
  .header__menu-item {
    padding: 12px 8px;
  }
}
.header__menu-item:not(.header__menu-item--cta) {
  transition: color 0.2s ease;
}
.header__menu-item:not(.header__menu-item--cta):hover {
  color: #f58220;
}
.header__menu-item--cta {
  padding: 8px 16px;
  font-weight: 700;
  color: #ffffff;
  background: #f58220;
  transition: background 0.2s ease;
}
.header__menu-item--cta:hover {
  background: #ec720b;
}
@media (max-width: 1200px) {
  .header__menu-item--cta {
    justify-content: center;
    margin-top: 8px;
  }
}
.header__menu-item--active {
  font-weight: 700;
  color: #f58220;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 800px;
  padding-bottom: 92px;
  background: linear-gradient(0deg, rgba(0, 63, 99, 0.5), rgba(0, 63, 99, 0.5)), linear-gradient(90deg, rgba(0, 0, 0, 0.5) 37.19%, rgba(0, 0, 0, 0) 61.67%), url("../../src/img/vkm_hero.webp") center/cover no-repeat;
}
@media (max-width: 992px) {
  .hero__body {
    min-height: auto;
    padding-bottom: 0;
  }
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: calc(88px + 48px);
  padding-bottom: 48px;
}
@media (max-width: 992px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 32px;
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 50%;
  max-width: 50%;
}
@media (max-width: 992px) {
  .hero__content {
    flex: none;
    max-width: 100%;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero__content {
    align-items: center;
    text-align: center;
  }
}
.hero__title {
  margin: 0;
  max-width: 560px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 48px;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero__title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.hero__text {
  margin: 0;
  max-width: 560px;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .hero__text {
    font-size: 16px;
    line-height: 28px;
  }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 16px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  background: #f58220;
  cursor: pointer;
  transition: background 0.2s ease;
}
.hero__cta:hover {
  background: #ec720b;
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero__cta {
    align-self: center;
  }
}
.hero__graphic {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 50%;
  max-width: 50%;
}
.hero__graphic img {
  width: min(320px, 80%);
  height: auto;
}
@media (max-width: 992px) {
  .hero__graphic {
    flex: none;
    max-width: 100%;
    padding-top: 16px;
  }
  .hero__graphic img {
    width: min(240px, 70%);
    margin: 0 auto;
  }
}
.hero__usp {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  background: rgba(0, 16, 36, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 992px) {
  .hero__usp {
    position: static;
  }
}
.hero__usp-inner {
  display: flex;
  gap: 8px;
  min-height: 92px;
}
@media (max-width: 992px) {
  .hero__usp-inner {
    flex-wrap: wrap;
    min-height: auto;
  }
}
.hero__usp-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: 16px 16px 16px 0;
  gap: 4px;
}
.hero__usp-item:first-child {
  padding-left: 0;
}
@media (max-width: 992px) {
  .hero__usp-item {
    flex: 1 1 calc(50% - 4px);
    padding: 16px 0;
  }
}
@media (max-width: 576px) {
  .hero__usp-item {
    flex: 1 1 100%;
  }
}
.hero__usp-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero__usp-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.hero__usp-text {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero__usp-text {
    line-height: 22px;
  }
}

.areas {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .areas {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .areas {
    padding: 48px 0;
  }
}
.areas__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.areas__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}
.areas__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #f58220;
}
@media (max-width: 768px) {
  .areas__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.areas__title-accent {
  color: #003f63;
}
.areas__intro {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.areas__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.areas__columns {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1200px) {
  .areas__columns {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .areas__columns {
    flex-direction: column;
  }
}
.areas__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1200px) {
  .areas__column {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 992px) {
  .areas__column {
    flex: 1 1 100%;
  }
}
.areas__column-media {
  position: relative;
  isolation: isolate;
  width: 100%;
}
.areas__column-image {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}
.areas__column-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
.areas__column-title {
  flex-shrink: 0;
  margin: 0;
  padding: 16px;
  max-width: calc(100% - 24px);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  color: #001024;
  background: #ffffff;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 768px) {
  .areas__column-title {
    font-size: 20px;
  }
}
.areas__column-bar {
  flex: 1;
  min-width: 0;
  height: 12px;
}
.areas__column--primary .areas__column-bar {
  background: #f58220;
}
.areas__column--secondary .areas__column-bar {
  background: #003f63;
}
.areas__column--tertiary .areas__column-bar {
  background: #1ab8d3;
}
.areas__column-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.areas__column-text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.areas__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.areas__list-item {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.areas__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.areas__column--primary .areas__list-item::before {
  background: #f58220;
}
.areas__column--secondary .areas__list-item::before {
  background: #003f63;
}
.areas__column--tertiary .areas__list-item::before {
  background: #00b0ce;
}
.areas__cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 16px;
  background: #fef3e9;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .areas__cert {
    flex-direction: column;
    text-align: center;
  }
}
.areas__cert-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.areas__cert-text {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #001024;
  text-align: center;
}
@media (min-width: 993px) {
  .areas__cert-text {
    white-space: nowrap;
  }
}
.areas__cert-link {
  font-weight: 400;
  color: #00b0ce;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.areas__cert-link:hover {
  color: #003f63;
}

.services {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .services {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 48px 0;
  }
}
.services__decoration {
  position: absolute;
  box-sizing: border-box;
  width: 1074px;
  height: 1074px;
  background: #ffffff;
  border: 58px solid transparent;
  border-radius: 28px;
  transform: rotate(45deg);
  pointer-events: none;
}
@media (max-width: 1200px) {
  .services__decoration {
    width: 840px;
    height: 840px;
    border-width: 45px;
    border-radius: 22px;
  }
}
@media (max-width: 992px) {
  .services__decoration {
    display: none;
  }
}
.services__decoration--blue {
  top: 100px;
  right: -537px;
  border-color: #003f63;
  z-index: 1;
}
@media (max-width: 1200px) {
  .services__decoration--blue {
    top: 80px;
    right: -420px;
  }
}
.services__decoration--orange {
  top: 456px;
  left: -537px;
  border-color: #f58220;
  z-index: 2;
}
@media (max-width: 1200px) {
  .services__decoration--orange {
    top: 380px;
    left: -420px;
  }
}
.services__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.services__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}
.services__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #f58220;
}
@media (max-width: 768px) {
  .services__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.services__title-accent {
  color: #003f63;
}
.services__intro {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.services__grid {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1200px) {
  .services__grid {
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) {
  .services__grid {
    flex-direction: column;
  }
}
.services__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 1200px) {
  .services__column {
    flex: 1 1 calc(50% - 10px);
  }
}
@media (max-width: 992px) {
  .services__column {
    flex: 1 1 100%;
  }
}
.services__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (hover: hover) {
  .services__card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  }
}
@media (max-width: 992px) {
  .services__card {
    padding: 32px;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .services__card {
    padding: 24px;
  }
}
.services__card-header {
  display: flex;
  align-items: center;
  gap: 30px;
}
.services__card-title {
  margin: 0;
  flex: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #001024;
}
.services__card-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.services__card-text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}

.references {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .references {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .references {
    padding: 48px 0;
  }
}
.references__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.references__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}
.references__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
}
@media (max-width: 768px) {
  .references__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.references__title-highlight {
  color: #f58220;
}
.references__title-rest {
  color: #003f63;
}
.references__intro {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.references__cards {
  display: flex;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}
@media (max-width: 1200px) {
  .references__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .references__cards {
    flex-direction: column;
    align-items: center;
  }
}
.references__card {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  max-width: 394.67px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
@media (max-width: 1200px) {
  .references__card {
    flex: 1 1 calc(50% - 16px);
  }
}
@media (max-width: 992px) {
  .references__card {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }
}
.references__card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.references__card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  flex: 1;
}
.references__card-tag {
  display: inline-flex;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  border-radius: 2px;
}
.references__card-tag--primary {
  color: #f58220;
  background: #fef3e9;
}
.references__card-tag--secondary {
  color: #003f63;
  background: rgba(0, 63, 99, 0.1);
}
.references__card-tag--tertiary {
  color: #00b0ce;
  background: #e6f8fb;
}
.references__card-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #003f63;
}
.references__card-text {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 24px;
  color: #5b595a;
}
.references__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #0057a8;
  transition: opacity 0.2s ease;
}
.references__card-link:hover {
  opacity: 0.75;
}
.references__card-link-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.references__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  width: 100%;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
.references__logo {
  flex: 1 1 calc(16.666% - 14px);
  min-width: 120px;
  height: 100px;
  object-fit: contain;
}
@media (max-width: 992px) {
  .references__logo {
    flex: 1 1 calc(33.333% - 11px);
  }
}
@media (max-width: 768px) {
  .references__logo {
    flex: 1 1 calc(50% - 8px);
    height: 72px;
  }
}

.cooperation {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  background: #f2fbfc;
}
@media (max-width: 992px) {
  .cooperation {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .cooperation {
    padding: 48px 0;
  }
}
.cooperation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cooperation__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}
.cooperation__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #003f63;
}
@media (max-width: 768px) {
  .cooperation__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.cooperation__title-accent {
  color: #f58220;
}
.cooperation__intro {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.cooperation__timeline {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1200px) {
  .cooperation__timeline {
    flex-direction: column;
    align-items: center;
    max-width: 400px;
  }
}
.cooperation__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 0;
  gap: 8px;
}
@media (max-width: 1200px) {
  .cooperation__step {
    width: 100%;
  }
}
.cooperation__step-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 91px;
}
@media (max-width: 1200px) {
  .cooperation__step-marker {
    flex-direction: column;
    width: 91px;
    height: auto;
    min-height: 140px;
  }
}
.cooperation__step-line {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  height: 16px;
}
@media (max-width: 1200px) {
  .cooperation__step-line {
    flex-direction: column;
    justify-content: center;
    width: 16px;
    height: auto;
    min-height: 32px;
  }
}
.cooperation__step-line-track {
  flex: 1;
  min-width: 8px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #848283 0, #848283 2px, transparent 2px, transparent 10px);
}
@media (max-width: 1200px) {
  .cooperation__step-line-track {
    width: 2px;
    min-width: 0;
    min-height: 8px;
    height: auto;
    background-image: repeating-linear-gradient(to bottom, #848283 0, #848283 2px, transparent 2px, transparent 10px);
  }
}
.cooperation__step-arrow {
  flex-shrink: 0;
  display: block;
  width: 9px;
  height: 15px;
  margin-left: 2px;
}
@media (max-width: 1200px) {
  .cooperation__step-arrow {
    width: 15px;
    height: 9px;
    margin-left: 0;
    margin-top: 2px;
    transform: rotate(90deg);
  }
}
.cooperation__step:first-child .cooperation__step-line--before {
  opacity: 0;
}
.cooperation__step:last-child .cooperation__step-line--after {
  opacity: 0;
}
.cooperation__step-icon {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 91px;
  height: 91px;
}
.cooperation__step-diamond {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  background: #ffffff;
  border: 2px solid #b3e8f1;
  border-radius: 16px;
  transform: rotate(45deg);
}
.cooperation__step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #003f63;
  transform: translate(-50%, -50%);
}
.cooperation__step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  width: 100%;
  text-align: center;
}
.cooperation__step-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: #001024;
}
@media (max-width: 768px) {
  .cooperation__step-title {
    font-size: 20px;
    line-height: 26px;
  }
}
.cooperation__step-text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.cooperation__team {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1200px) {
  .cooperation__team {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .cooperation__team {
    flex-direction: column;
    align-items: stretch;
  }
}
.cooperation__member {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.0509804);
}
@media (max-width: 1200px) {
  .cooperation__member {
    flex: 1 1 calc(50% - 8px);
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .cooperation__member {
    flex: 1 1 100%;
    max-width: none;
  }
}
.cooperation__member-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 99px;
  height: 99px;
}
.cooperation__member-photo-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cooperation__member-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 99px;
  height: 99px;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cooperation__member-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.cooperation__member-identity {
  display: flex;
  flex-direction: column;
}
.cooperation__member-name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #003f63;
}
.cooperation__member-role {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  color: #5b595a;
}
.cooperation__member-contacts {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}
.cooperation__member-link {
  color: #00b0ce;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}
.cooperation__member-link:hover {
  color: #003f63;
}
.cooperation__member-bio {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  color: #5b595a;
}

.cta-banner {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .cta-banner {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 48px 0;
  }
}
.cta-banner__decoration {
  position: absolute;
  top: 72%;
  right: -95px;
  box-sizing: border-box;
  width: 537px;
  height: 537px;
  border: 58px solid #00b0ce;
  border-radius: 28px;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1200px) {
  .cta-banner__decoration {
    width: 420px;
    height: 420px;
    right: -80px;
    border-width: 45px;
    border-radius: 22px;
  }
}
@media (max-width: 992px) {
  .cta-banner__decoration {
    display: none;
  }
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 64px 80px;
  border-radius: 16px;
  background: linear-gradient(90.08deg, #1a5373 56.16%, rgba(26, 83, 115, 0) 78.05%, #1a5373 99.93%), url("../../src/img/vkm_banner.webp") 93% center/cover no-repeat;
}
@media (max-width: 1200px) {
  .cta-banner__inner {
    padding: 48px;
  }
}
@media (max-width: 992px) {
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }
}
@media (max-width: 768px) {
  .cta-banner__inner {
    padding: 32px 24px;
  }
}
.cta-banner__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}
.cta-banner__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #ffffff;
}
@media (max-width: 768px) {
  .cta-banner__title {
    font-size: 26px;
    line-height: 34px;
  }
}
.cta-banner__text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
}
.cta-banner__button {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 8px 16px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  background: #f58220;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cta-banner__button:hover {
  background: #ec720b;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.contact-modal--open {
  opacity: 1;
  visibility: visible;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.contact-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 48px rgba(0, 16, 36, 0.2);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}
.contact-modal--open .contact-modal__dialog {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .contact-modal__dialog {
    padding: 32px 24px;
  }
}
.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #5b595a;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}
.contact-modal__close:hover {
  color: #003f63;
  background: #f2fbfc;
}
.contact-modal__title {
  margin: 0 0 8px;
  padding-right: 40px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  color: #003f63;
}
@media (max-width: 768px) {
  .contact-modal__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.contact-modal__intro {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.contact-modal__message {
  margin: 0 0 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 22px;
}
.contact-modal__message--success {
  color: #0f5132;
  background: #d1e7dd;
}
.contact-modal__message--error {
  color: #842029;
  background: #f8d7da;
}
.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-modal__label {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #001024;
}
.contact-modal__input, .contact-modal__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #b3e8f1;
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  line-height: 24px;
  color: #001024;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-modal__input::placeholder, .contact-modal__textarea::placeholder {
  color: #848283;
}
.contact-modal__input:focus, .contact-modal__textarea:focus {
  outline: none;
  border-color: #00b0ce;
  box-shadow: 0 0 0 3px rgba(0, 176, 206, 0.15);
}
.contact-modal__textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-modal__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 8px;
  padding: 12px 24px;
  border: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  background: #f58220;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-modal__submit:hover {
  background: #ec720b;
}

body.contact-modal-open {
  overflow: hidden;
}

.certification {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .certification {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .certification {
    padding: 48px 0;
  }
}
.certification__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.certification__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}
.certification__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 45px;
  color: #f58220;
}
@media (max-width: 768px) {
  .certification__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.certification__intro {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #474446;
}
.certification__image {
  width: 100%;
  max-width: 800px;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 16, 36, 0.12);
}

.project {
  padding: 80px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .project {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .project {
    padding: 48px 0;
  }
}
.project__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.project__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0057a8;
  transition: opacity 0.2s ease;
}
.project__back img {
  transform: rotate(180deg);
}
.project__back:hover {
  opacity: 0.75;
}
.project__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.project__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  border-radius: 2px;
}
.project__tag--primary {
  color: #f58220;
  background: #fef3e9;
}
.project__tag--secondary {
  color: #003f63;
  background: rgba(0, 63, 99, 0.1);
}
.project__tag--tertiary {
  color: #00b0ce;
  background: #e6f8fb;
}
.project__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #003f63;
}
@media (max-width: 768px) {
  .project__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.project__intro {
  margin: 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 30px;
  color: #474446;
}
.project__image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.project__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}
@media (max-width: 992px) {
  .project__content {
    grid-template-columns: 1fr;
  }
}
.project__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project__heading {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #003f63;
}
.project__text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.project__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project__list-item {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.project__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00b0ce;
}

.contact-intro {
  padding: 80px 0 24px;
}
@media (max-width: 992px) {
  .contact-intro {
    padding-top: 64px;
    padding-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .contact-intro {
    padding-top: 48px;
    padding-bottom: 24px;
  }
}
.contact-intro__inner {
  display: flex;
  align-items: stretch;
  min-height: 475px;
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}
@media (max-width: 992px) {
  .contact-intro__inner {
    flex-direction: column;
    min-height: auto;
    margin-bottom: 0;
  }
}
.contact-intro__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  width: 378px;
  padding: 40px 16px;
  background: #00b0ce;
  isolation: isolate;
}
@media (max-width: 992px) {
  .contact-intro__info {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}
.contact-intro__watermark {
  position: absolute;
  left: 81px;
  top: 120px;
  width: 211px;
  height: 212px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.contact-intro__watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 992px) {
  .contact-intro__watermark {
    display: none;
  }
}
.contact-intro__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 346px;
  margin: 0 auto;
}
.contact-intro__title {
  margin: 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  color: #ffffff;
}
.contact-intro__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.contact-intro__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 0 8px;
}
.contact-intro__item--center {
  align-items: center;
}
@media (max-width: 992px) {
  .contact-intro__item--center {
    align-items: flex-start;
  }
}
.contact-intro__label {
  flex-shrink: 0;
  width: 139px;
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 28px;
  color: #ffffff;
}
.contact-intro__value {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}
.contact-intro__link {
  display: inline-block;
  max-width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  text-decoration: underline;
  overflow-wrap: anywhere;
  transition: opacity 0.2s ease;
}
.contact-intro__link:hover {
  opacity: 0.85;
}
.contact-intro__map {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 280px;
  background: linear-gradient(90deg, #00b0ce 0.57%, rgba(0, 176, 206, 0) 15.75%), url("../../src/img/map.webp") center/cover no-repeat;
}
@media (max-width: 992px) {
  .contact-intro__map {
    min-height: 320px;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
  }
}
.contact-intro__pin {
  position: absolute;
  right: 165px;
  bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f58220;
  transition: background 0.2s ease;
  z-index: 2;
}
.contact-intro__pin:hover {
  background: #ec720b;
}
@media (max-width: 1200px) {
  .contact-intro__pin {
    right: 80px;
    bottom: 120px;
  }
}
@media (max-width: 992px) {
  .contact-intro__pin {
    right: 50%;
    bottom: 40px;
    transform: translateX(50%);
  }
}

.contact-team {
  padding: 80px 0;
  background: #f2fbfc;
}
@media (max-width: 992px) {
  .contact-team {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  .contact-team {
    padding: 48px 0;
  }
}
.contact-team__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact-team__cards {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: 100%;
}
@media (max-width: 1200px) {
  .contact-team__cards {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contact-team__cards {
    flex-direction: column;
  }
}
.contact-team__card {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.0509804);
}
@media (max-width: 1200px) {
  .contact-team__card {
    flex: 1 1 calc(50% - 8px);
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .contact-team__card {
    flex: 1 1 100%;
    max-width: none;
  }
}
.contact-team__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 99px;
  height: 99px;
}
.contact-team__photo-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border-radius: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.contact-team__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 99px;
  height: 99px;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.contact-team__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
.contact-team__identity {
  display: flex;
  flex-direction: column;
}
.contact-team__name {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #003f63;
}
.contact-team__role {
  margin: 0;
  font-size: 12px;
  line-height: 18px;
  color: #5b595a;
}
.contact-team__contacts {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}
.contact-team__contact-link {
  color: #00b0ce;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}
.contact-team__contact-link:hover {
  color: #003f63;
}
.contact-team__bio {
  margin: 0;
  font-size: 14px;
  line-height: 21px;
  color: #5b595a;
}
.contact-team__cta {
  width: 100%;
}

.company-history {
  padding: 40px 0;
  background: #ffffff;
}
@media (max-width: 992px) {
  .company-history {
    padding: 32px 0;
  }
}
.company-history__inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.company-history__content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media (max-width: 1200px) {
  .company-history__content {
    flex-direction: column;
    gap: 48px;
  }
}
.company-history__about {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
  min-width: 0;
}
.company-history__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.company-history__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  color: #001024;
}
@media (max-width: 768px) {
  .company-history__title {
    font-size: 26px;
    line-height: 34px;
  }
}
.company-history__text {
  margin: 0;
  font-size: 16px;
  line-height: 28px;
  color: #5b595a;
}
.company-history__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 50px 0;
}
@media (max-width: 768px) {
  .company-history__image {
    height: 280px;
    border-radius: 32px 0;
  }
}
.company-history__timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.company-history__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .company-history__item {
    gap: 24px;
  }
}
.company-history__item--last .company-history__marker {
  height: 48px;
  overflow: hidden;
}
.company-history__marker {
  flex-shrink: 0;
  width: 48px;
  height: 164px;
}
.company-history__marker img {
  display: block;
  width: 48px;
  height: 165px;
}
.company-history__item-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
  padding-top: 9px;
}
.company-history__year {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #001024;
}
.company-history__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #474446;
}

.footer {
  position: relative;
  z-index: 2;
  background: #003f63;
  padding: 80px 0 40px;
}
@media (max-width: 992px) {
  .footer {
    padding: 64px 0 32px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 48px 0 32px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 992px) {
  .footer__inner {
    gap: 48px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 1200px) {
  .footer__main {
    flex-wrap: wrap;
    gap: 40px 32px;
  }
}
@media (max-width: 992px) {
  .footer__main {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 0 0 300px;
  max-width: 300px;
}
@media (max-width: 1200px) {
  .footer__brand {
    flex: 1 1 100%;
    max-width: none;
  }
}
.footer__logo {
  display: block;
  flex-shrink: 0;
}
.footer__logo img {
  width: 168px;
  height: auto;
}
.footer__tagline {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #b3e8f1;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: opacity 0.2s ease;
}
.footer__social-link:hover {
  opacity: 0.75;
}
.footer__social-link img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 0 0 200px;
}
@media (max-width: 1200px) {
  .footer__column {
    flex: 1 1 calc(50% - 16px);
    min-width: 180px;
  }
}
@media (max-width: 992px) {
  .footer__column {
    flex: 1 1 auto;
    width: 100%;
  }
}
.footer__heading {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
}
.footer__text {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
  color: #b3e8f1;
}
.footer__link {
  color: #b3e8f1;
  transition: color 0.2s ease;
}
.footer__link:hover {
  color: #ffffff;
}
.footer__contact-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__contact-label {
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
}
.footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 992px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    padding-top: 56px;
    text-align: center;
  }
}
.footer__emblem {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89px;
  height: 89px;
  padding: 16px;
  border-radius: 80px;
  background: #003f63;
  transition: opacity 0.2s ease;
}
.footer__emblem:hover {
  opacity: 0.85;
}
.footer__emblem img {
  width: 57px;
  height: 57px;
  object-fit: contain;
}
.footer__copyright {
  margin: 0;
  flex: 1;
  font-size: 14px;
  line-height: 18px;
  color: #ffffff;
}
@media (max-width: 992px) {
  .footer__copyright {
    flex: none;
  }
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .footer__nav {
    justify-content: center;
    gap: 16px 24px;
  }
}
.footer__nav-link {
  font-size: 14px;
  line-height: 21px;
  color: #b3e8f1;
  transition: color 0.2s ease;
}
.footer__nav-link:hover {
  color: #ffffff;
}

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