@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

html {
  scroll-behavior: smooth;
}

body.disabled {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #1a1a2e;
  background: #ffffff;
}

.container {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.3s all ease-in-out;
  background-color: #009e88;
  color: #ffffff;
}
.btn:hover {
  background-color: rgb(0, 132.5, 114.0506329114);
  transform: translateY(-2px);
}

.navbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 30px 0;
}
@media only screen and (max-width: 991px) {
  .navbar {
    padding: 16px 0;
  }
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.navbar__logo {
  flex-shrink: 0;
}
.navbar__logo img {
  width: 190px;
}
@media only screen and (max-width: 767px) {
  .navbar__logo img {
    width: 118px;
  }
}
.navbar__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .navbar__nav {
    display: none;
  }
}
.navbar__nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 500;
  transition: 0.3s all ease-in-out;
}
.navbar__nav a:hover {
  color: #8fe7da;
}
.navbar__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  font-weight: 500;
  margin-left: 18px;
}
@media only screen and (max-width: 991px) {
  .navbar__lang {
    margin-left: auto;
  }
}
.navbar__lang span {
  cursor: pointer;
  transition: 0.3s all ease-in-out;
}
.navbar__lang .active,
.navbar__lang span:hover {
  color: #ffffff;
}

.arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s;
}
.arrow img {
  width: 10px;
  height: 10px;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  cursor: pointer;
}
.nav-dropdown:hover > a .arrow {
  transform: rotate(180deg);
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  padding-top: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.nav-dropdown__menu a {
  display: block;
  padding: 10px 16px;
  color: #333333;
  font-size: 0.975rem;
  font-weight: 500;
  white-space: nowrap;
  background: #ffffff;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown__menu a:first-child {
  border-radius: 8px 8px 0 0;
}
.nav-dropdown__menu a:last-child {
  border-radius: 0 0 8px 8px;
}
.nav-dropdown__menu a:hover {
  background: #f5f5f5;
  color: #1d58aa;
}
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
}

.nav-toggler {
  display: none;
}
@media only screen and (max-width: 991px) {
  .nav-toggler {
    display: block;
  }
}

.hamburger {
  width: 28px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.hero {
  position: relative;
  min-height: 600px;
  padding-bottom: 150px;
  overflow: hidden;
  background: linear-gradient(180deg, #001C39 0%, #001C39 50%, #062b59 100%);
}
.hero .btn {
  font-size: 1.25rem;
}
.hero__container {
  padding-bottom: 40px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(29, 88, 170, 0.95) 0%, rgba(29, 88, 170, 0.6) 30%, rgba(29, 88, 170, 0.45) 50%, rgba(29, 88, 170, 0.35) 60%, rgba(29, 88, 170, 0) 80%);
  filter: blur(20px);
}
@media only screen and (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  right: 0;
  z-index: 1;
  overflow: hidden;
  text-align: right;
}
.hero__bg img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1);
  animation: heroBgZoom 7s ease-in-out infinite alternate;
  will-change: transform, opacity;
  transition: opacity 0.45s ease;
}
@media only screen and (max-width: 767px) {
  .hero__bg {
    text-align: center;
  }
  .hero__bg img {
    width: 100%;
    height: 100%;
  }
}
.hero__bg:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 63, 139, 0.72) 0%, rgba(8, 63, 139, 0.52) 38%, rgba(8, 63, 139, 0.28) 65%, rgba(8, 63, 139, 0.18) 100%);
  pointer-events: none;
}
.hero__top {
  position: relative;
  z-index: 4;
  min-height: 560px;
}
@media only screen and (max-width: 767px) {
  .hero__top {
    min-height: auto;
  }
}
.hero__slider {
  position: relative;
  z-index: 4;
  min-height: 560px;
}
.hero__slider .swiper-slide {
  height: auto;
}
.hero__slider .swiper-slide-active .hero__title {
  animation: heroContentIn 0.7s ease both;
  animation-delay: 0.05s;
}
.hero__slider .swiper-slide-active .hero__sub {
  animation: heroContentIn 0.7s ease both;
  animation-delay: 0.15s;
}
.hero__slider .swiper-slide-active .hero__tag {
  animation: heroContentIn 0.7s ease both;
  animation-delay: 0.25s;
}
.hero__slider .swiper-slide-active .btn {
  animation: heroContentIn 0.7s ease both;
  animation-delay: 0.35s;
}
@media only screen and (max-width: 767px) {
  .hero__slider {
    min-height: auto;
  }
}
.hero__content {
  max-width: 600px;
  padding-top: 135px;
  padding-bottom: 155px;
}
@media only screen and (max-width: 767px) {
  .hero__content {
    max-width: 100%;
    padding-top: 110px;
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 575px) {
  .hero__content {
    padding-top: 95px;
    padding-bottom: 120px;
  }
}
.hero__title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero__title span {
  font-weight: 800;
}
@media only screen and (max-width: 991px) {
  .hero__title {
    font-size: 3.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__sub {
  max-width: 500px;
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.45;
}
@media only screen and (max-width: 991px) {
  .hero__sub {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero__sub {
    max-width: 100%;
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 575px) {
  .hero__sub {
    font-size: 1rem;
  }
}
.hero__tag {
  margin: 0 0 30px;
  color: #888888;
  font-size: 0.875rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__cards-wrap {
  position: relative;
  z-index: 6;
  margin-top: -315px !important;
}
@media only screen and (max-width: 767px) {
  .hero__cards-wrap {
    margin-top: -100px !important;
  }
}
@media only screen and (max-width: 575px) {
  .hero__cards-wrap {
    margin-top: -120px !important;
  }
}
.hero__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
}
@media only screen and (max-width: 767px) {
  .hero__cards {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}
.hero__card {
  cursor: pointer;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.hero__card:not(.is-active) {
  transform: scale(0.95);
}
.hero__card.is-active {
  transform: scale(1.08);
}
@media only screen and (max-width: 767px) {
  .hero__card {
    transform: scale(0.97);
  }
  .hero__card.is-active {
    transform: scale(1.02);
  }
}
.hero__card-inner {
  position: relative;
  min-height: 300px;
  text-align: center;
  padding: 35px;
  overflow: hidden;
  border-radius: 35px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 16px 40px rgba(6, 32, 71, 0.18);
}
.hero__card-inner::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 220px;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 0.15) 52%, rgba(255, 255, 255, 0) 72%);
}
.hero__card-tag {
  text-align: center;
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  min-height: 32px;
  margin-bottom: 18px;
  padding: 8px 16px;
  background-color: #1d58aa;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 20px;
}
.hero__card p {
  position: relative;
  z-index: 4;
  max-width: 215px;
  text-align: left;
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 130%;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .hero__card p {
    color: #1d58aa;
    font-size: 1.1rem;
  }
}
.hero__card-btn {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #009e88;
  color: #ffffff;
}
.hero__card-btn img {
  width: 30px;
  height: 30px;
}
.hero__card-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 60%;
  height: 45%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .hero__card-img {
    width: 50%;
  }
}
.hero__bottom-splash {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
}
.hero__bottom-splash img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes heroBgZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
@keyframes heroContentIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.tech-banner {
  padding: 60px 0 20px;
  background: #ffffff;
}
@media only screen and (max-width: 767px) {
  .tech-banner {
    padding: 42px 0 24px;
  }
}
.tech-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .tech-banner__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.tech-banner__num {
  position: relative;
  font-size: 15rem;
  line-height: 0.78;
  font-weight: 800;
  color: #009e88;
  z-index: 3;
}
.tech-banner__num:after {
  content: "3";
  position: absolute;
  left: -20px;
  top: 0;
  font-size: 25rem;
  line-height: 0.78;
  font-weight: 800;
  color: rgba(51, 51, 51, 0.05);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .tech-banner__num {
    margin: 0 auto;
    font-size: 7rem;
  }
  .tech-banner__num:after {
    font-size: 11rem;
    left: -25px;
    top: 0;
  }
}
.tech-banner__main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .tech-banner__main {
    margin-top: 40px;
  }
}
.tech-banner__heading {
  margin-top: 20px;
  position: relative;
}
.tech-banner__heading h2 {
  color: #004F9F;
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: uppercase;
}
.tech-banner__heading h2 strong {
  font-weight: 800;
}
.tech-banner__heading h2 span {
  font-weight: 400;
  font-size: 2.5rem;
  margin-left: -15px;
  color: #A0C1FF;
}
@media only screen and (max-width: 767px) {
  .tech-banner__heading h2 {
    font-size: 2.5px;
  }
  .tech-banner__heading h2 span {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 575px) {
  .tech-banner__heading h2 {
    font-size: 2rem;
  }
}
.tech-banner__desc {
  position: absolute;
  right: 60px;
  top: 60px;
  color: #888888;
  font-size: 0.875rem;
  line-height: 1.4;
  max-width: 150px;
}
@media only screen and (max-width: 767px) {
  .tech-banner__desc {
    max-width: 100%;
    position: relative;
    top: 0;
    right: 0;
    margin-top: 10px;
  }
}
.tech-banner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: #ffffff;
}
@media only screen and (max-width: 767px) {
  .tech-banner__tags {
    justify-content: center;
  }
}
.tech-banner__tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 8px 14px;
  border: 1px dashed #333333;
  border-radius: 999px;
  color: #333333;
  font-size: 0.875rem;
  background-color: #ffffff;
}

.about-grid-section {
  padding-top: 120px;
  padding-bottom: 175px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .about-grid-section {
    padding-top: 60px;
    padding-bottom: 200px;
  }
}

.about-grid .parent {
  display: grid;
  grid-template-columns: 1.2fr 1.05fr 1.05fr 1.05fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 2rem;
  row-gap: 1.75rem;
  align-items: start;
  justify-content: space-between;
}
.about-grid .div1 {
  grid-area: 1/1/2/5;
}
.about-grid .div2 {
  grid-area: 1/5/3/6;
}
.about-grid .div3 {
  grid-area: 2/1/3/3;
  margin-top: -80px;
}
.about-grid .div4 {
  grid-area: 2/3/3/5;
  margin-top: -190px;
}
.about-grid .div5 {
  grid-area: 3/1/4/3;
  margin-top: -80px;
}
.about-grid .div6 {
  grid-area: 3/3/4/5;
  margin-top: -80px;
  margin-left: -100px;
}
.about-grid .div7 {
  grid-area: 3/5/4/6;
}

.about-intro {
  max-width: 46rem;
}
.about-intro h3 {
  margin: 0 0 1.125rem;
  color: #2f3138;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 400;
}
.about-intro h3 strong {
  font-weight: 800;
}
.about-intro p {
  margin: 0;
  max-width: 45rem;
  color: #888888;
  font-size: 1.125rem;
  line-height: 1.75;
}
.about-intro a {
  color: #004F9F;
  text-decoration: underline;
}
.about-intro__strong {
  margin-top: 1.5rem !important;
  max-width: 20rem !important;
  color: #333333 !important;
  font-size: 1rem !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.about-satisfaction {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.25rem;
}
.about-satisfaction__line {
  display: block;
  width: 0.4375rem;
  height: 10rem;
  border-radius: 60rem;
  background: #A0C1FF;
  flex: 0 0 0.4375rem;
}
.about-satisfaction__content h3 {
  margin: 0 0 1.125rem;
  color: #333333;
  font-size: 1.375rem;
  line-height: 1.15;
  font-weight: 500;
}
.about-satisfaction__content h3 strong {
  font-weight: 700;
}
.about-satisfaction__content p {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.55;
}

.about-certifications {
  padding: 1.625rem 1.75rem 1.5rem;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 2.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about-certifications h3 {
  margin: 0 0 1.125rem;
  color: #333333;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 400;
}
.about-certifications h3 strong {
  font-weight: 700;
}
.about-certifications p {
  margin: 0 0 1.5rem;
  max-width: 22rem;
  color: #333333;
  font-size: 1rem;
  line-height: 1.55;
}
.about-certifications__list {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.about-eco {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.875rem;
  color: #333333;
}
.about-eco__header {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.about-eco h3 {
  margin: 0 0 1rem;
  font-size: 1.375rem;
  line-height: 1.15;
  font-weight: 500;
}
.about-eco h3 strong {
  font-weight: 700;
}
.about-eco__icon img {
  width: 70px;
}
.about-eco__content p {
  margin: 0;
  color: #333333;
  font-size: 1rem;
  line-height: 1.55;
}
.about-eco__content p strong {
  color: #34373d;
  font-weight: 800;
}

.about-norms {
  height: 100%;
  min-height: 35rem;
  padding: 2.375rem 2.125rem;
  border-radius: 2.375rem;
  background: #F5F5F5;
}
.about-norms h4 {
  margin: 0 0 1.75rem;
  color: #333333;
  font-size: 1.375rem;
  line-height: 1.25;
  font-weight: 400;
}
.about-norms h4 strong {
  font-weight: 800;
}
.about-norms__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-norms__list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 2.5rem;
  padding: 0.5rem 1.125rem;
  border: 0.0625rem dashed #aeb3bd;
  border-radius: 62rem;
  background: rgba(255, 255, 255, 0.72);
  color: #888888;
  font-size: 0.85rem;
  line-height: 1.2;
  white-space: nowrap;
  max-width: 100%;
}

.about-photos {
  position: relative;
  width: 100%;
  height: 15.625rem;
  background-image: url("../assets/bg-circles.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  overflow: visible;
}
.about-photos__item {
  position: absolute;
  overflow: hidden;
  border-radius: 50%;
  will-change: transform;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}
.about-photos__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
}
.about-photos__item--1 {
  top: 3.65rem;
  left: 6rem;
  width: 4.9rem;
  height: 4.9rem;
  animation: aboutFloatOne 4.2s ease-in-out infinite;
}
@media only screen and (max-width: 1199px) {
  .about-photos__item--1 {
    left: 8rem;
  }
}
.about-photos__item--2 {
  top: 0.7rem;
  left: 12.2rem;
  width: 6.2rem;
  height: 6.2rem;
  animation: aboutFloatTwo 4.8s ease-in-out infinite;
}
@media only screen and (max-width: 1199px) {
  .about-photos__item--2 {
    left: 14.2rem;
  }
}
.about-photos__item--3 {
  left: 9.5rem;
  bottom: 2.35rem;
  width: 5.3rem;
  height: 5.3rem;
  animation: aboutFloatThree 4.5s ease-in-out infinite;
}
@media only screen and (max-width: 1199px) {
  .about-photos__item--3 {
    left: 13.5rem;
  }
}
.about-photos__item--4 {
  right: 4.55rem;
  bottom: 1.55rem;
  width: 3.95rem;
  height: 3.95rem;
  animation: aboutFloatFour 5s ease-in-out infinite;
}
@media only screen and (max-width: 1199px) {
  .about-photos__item--4 {
    right: 10.55rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-photos {
    max-width: 16.5rem;
    height: 12.5rem;
    margin: 0 auto;
  }
  .about-photos__item--1 {
    top: 1.35rem;
    left: 1.9rem;
    width: 3.95rem;
    height: 3.95rem;
  }
  .about-photos__item--2 {
    top: 0.6rem;
    left: 7rem;
    width: 4.95rem;
    height: 4.95rem;
  }
  .about-photos__item--3 {
    left: 4.1rem;
    bottom: 1.2rem;
    width: 4.25rem;
    height: 4.25rem;
  }
  .about-photos__item--4 {
    right: 2.95rem;
    bottom: 2.45rem;
    width: 2.95rem;
    height: 2.95rem;
  }
}
@media only screen and (max-width: 440px) {
  .about-photos {
    max-width: 15rem;
    height: 11.5rem;
  }
  .about-photos__item--1 {
    top: 1.2rem;
    left: 1.6rem;
    width: 3.65rem;
    height: 3.65rem;
  }
  .about-photos__item--2 {
    top: 0.55rem;
    left: 4.55rem;
    width: 4.55rem;
    height: 4.55rem;
  }
  .about-photos__item--3 {
    left: 2.8rem;
    bottom: 0.15rem;
    width: 3.95rem;
    height: 3.95rem;
  }
  .about-photos__item--4 {
    right: 0.8rem;
    bottom: 0.4rem;
    width: 2.7rem;
    height: 2.7rem;
  }
}

@keyframes aboutFloatOne {
  0% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
  25% {
    transform: translate3d(0.24rem, -0.34rem, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(-0.18rem, -0.62rem, 0) rotate(-5deg);
  }
  75% {
    transform: translate3d(0.16rem, -0.22rem, 0) rotate(-3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-4deg);
  }
}
@keyframes aboutFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
  25% {
    transform: translate3d(-0.3rem, -0.22rem, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-0.12rem, -0.58rem, 0) rotate(4deg);
  }
  75% {
    transform: translate3d(0.26rem, -0.3rem, 0) rotate(2deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(3deg);
  }
}
@keyframes aboutFloatThree {
  0% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  25% {
    transform: translate3d(-0.12rem, 0.16rem, 0) rotate(-1deg);
  }
  50% {
    transform: translate3d(0.3rem, -0.34rem, 0) rotate(-3deg);
  }
  75% {
    transform: translate3d(0.1rem, -0.12rem, 0) rotate(-1.5deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
}
@keyframes aboutFloatFour {
  0% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }
  25% {
    transform: translate3d(0.22rem, -0.14rem, 0) rotate(2deg);
  }
  50% {
    transform: translate3d(0.12rem, -0.46rem, 0) rotate(5deg);
  }
  75% {
    transform: translate3d(-0.16rem, -0.2rem, 0) rotate(3deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(4deg);
  }
}
.about-stat {
  position: relative;
  min-height: 100%;
  height: 100%;
  border-radius: 2.625rem;
  padding: 2.875rem 2.625rem 2.5rem;
  background: linear-gradient(135deg, #05a892 0%, #49c7b8 100%);
  overflow: hidden;
}
.about-stat__glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20rem;
  height: 10.625rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.25) 30%, rgba(255, 255, 255, 0.12) 55%, rgba(255, 255, 255, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
}
.about-stat__bg-number {
  position: absolute;
  right: -0.75rem;
  bottom: -3.875rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.16);
  font-size: 16.25rem;
  line-height: 0.82;
  font-weight: 800;
  letter-spacing: -0.07em;
  pointer-events: none;
  user-select: none;
}
.about-stat__content {
  position: relative;
  z-index: 2;
  max-width: 22.5rem;
}
.about-stat__headline {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 1.125rem;
  line-height: 1;
}
.about-stat__number {
  color: #ffffff;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.about-stat__years {
  color: #ffffff;
  font-size: 4rem;
  font-weight: 300;
  transform: translateY(-0.375rem);
}
.about-stat__text {
  color: #ffffff;
  font-size: 2.3rem;
  line-height: 1.18;
  font-weight: 300;
  max-width: 20rem;
}

@media only screen and (max-width: 1199px) {
  .about-grid .parent {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .about-grid .div1 {
    grid-area: auto;
  }
  .about-grid .div2 {
    grid-area: auto;
  }
  .about-grid .div3 {
    grid-area: auto;
    margin-top: 0;
  }
  .about-grid .div4 {
    grid-area: auto;
    margin-top: 0;
  }
  .about-grid .div5 {
    grid-area: auto;
    margin-top: 0;
  }
  .about-grid .div6 {
    grid-area: auto;
    margin-top: 0;
    margin-left: 0;
  }
  .about-grid .div7 {
    grid-area: auto;
  }
  .about-norms {
    min-height: auto;
    padding: 1.875rem 1.5rem;
  }
  .about-stat {
    min-height: 21.25rem;
    padding: 2.25rem 1.875rem 1.875rem;
  }
  .about-stat__bg-number {
    font-size: 13.75rem;
    right: -0.5rem;
    bottom: -3.25rem;
  }
  .about-stat__number {
    font-size: 4rem;
  }
  .about-stat__years {
    font-size: 1.875rem;
  }
  .about-stat__text {
    font-size: 1.75rem;
    max-width: 17.5rem;
  }
  .about-photos img {
    max-width: 18rem;
  }
  .about-satisfaction {
    gap: 1.5rem;
  }
  .about-certifications {
    padding: 1.5rem 1.375rem;
  }
  .about-certifications__list {
    gap: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-eco {
    padding-top: 0.5rem;
  }
  .cert-card {
    width: 8.625rem;
  }
  .cert-card__body strong {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .about-satisfaction {
    gap: 1.25rem;
  }
  .about-satisfaction__line {
    width: 0.375rem;
    height: 8rem;
    flex-basis: 0.375rem;
  }
  .about-satisfaction__content h3 {
    margin-bottom: 0.875rem;
    font-size: 1.25rem;
  }
  .about-satisfaction__content p {
    font-size: 1rem;
    line-height: 1.6;
  }
  .about-certifications {
    padding: 1.5rem 1.125rem;
    border-radius: 1.875rem;
  }
  .about-certifications h3 {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }
  .about-certifications p {
    margin-bottom: 1.25rem;
    max-width: 100%;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .about-certifications__list {
    gap: 0.875rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-eco {
    gap: 0.875rem;
    padding-top: 0;
  }
  .about-eco__content h3 {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }
  .about-eco__content p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .cert-card {
    width: 100%;
    max-width: 12.375rem;
    border-radius: 2.25rem;
  }
  .cert-card__top {
    width: 7rem;
    height: 2.75rem;
    font-size: 0.8125rem;
  }
  .cert-card__body {
    min-height: 10rem;
    padding: 1.25rem 0.875rem 1.125rem;
  }
  .cert-card__body small {
    font-size: 0.6875rem;
  }
  .cert-card__body strong {
    font-size: 0.9375rem;
  }
  .cert-card__body span {
    font-size: 0.6875rem;
  }
  .about-grid-section {
    padding-bottom: 80px;
  }
  .about-grid .parent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-intro h3 {
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
  }
  .about-intro p {
    font-size: 0.875rem;
    line-height: 1.65;
  }
  .about-intro__strong {
    margin-top: 1.25rem !important;
    max-width: 100% !important;
  }
  .about-norms {
    border-radius: 1.75rem;
    padding: 1.5rem 1.125rem;
  }
  .about-norms h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
  }
  .about-norms__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .about-norms__list span {
    min-height: 2.25rem;
    padding: 0.5rem 0.875rem;
    font-size: 0.6875rem;
    white-space: nowrap;
  }
  .about-photos {
    justify-content: center;
  }
  .about-photos img {
    max-width: 16.25rem;
  }
  .about-stat {
    min-height: 17.5rem;
    border-radius: 1.875rem;
    padding: 1.75rem 1.375rem 1.5rem;
  }
  .about-stat__glow {
    top: -3.125rem;
    width: 13.75rem;
    height: 7.5rem;
  }
  .about-stat__bg-number {
    right: -0.375rem;
    bottom: -2.75rem;
    font-size: 10.5rem;
  }
  .about-stat__headline {
    margin-bottom: 0.875rem;
  }
  .about-stat__number {
    font-size: 4rem;
  }
  .about-stat__years {
    font-size: 3rem;
    transform: translateY(-0.25rem);
  }
  .about-stat__text {
    max-width: 14.375rem;
    font-size: 2.2rem;
  }
}
.cert-card {
  width: 180px;
  border-radius: 34px;
  overflow: hidden;
  background: #00195c;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}
.cert-card__top {
  width: 90px;
  height: 35px;
  margin: 0 auto;
  background: #A0C1FF;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cert-card__body {
  min-height: 128px;
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.cert-card__body small {
  display: block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  line-height: 1.2;
  opacity: 0.95;
}
.cert-card__body strong {
  display: block;
  margin-bottom: auto;
  font-size: 1.4rem;
  line-height: 1.1;
  font-weight: 800;
}
.cert-card__body span {
  display: block;
  margin-top: 14px;
  font-size: 0.75rem;
  color: #A0C1FF;
}

.brands {
  background: linear-gradient(0deg, #004F9F 0%, #001C39 100%);
  padding: 60px 0 50px;
  color: #ffffff;
  text-align: center;
}
.brands__label {
  text-align: left;
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.2;
}
.brands__timeline img {
  width: 90%;
}
@media only screen and (max-width: 1199px) {
  .brands__timeline {
    display: none;
  }
}
.brands__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 35px;
  align-items: center;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .brands__logos {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
@media only screen and (max-width: 575px) {
  .brands__logos {
    grid-template-columns: 1fr;
  }
}
.brands__logo-item img {
  max-width: 100%;
}
.brands__logo-item:nth-child(1) {
  margin-right: 60px;
}
.brands__logo-item:nth-child(1) img {
  width: 250px;
}
.brands__logo-item:nth-child(2) {
  margin-left: 30px;
}
.brands__logo-item:nth-child(2) img {
  width: 280px;
}
.brands__logo-item:nth-child(3) {
  margin-left: 100px;
}
.brands__logo-item:nth-child(3) img {
  width: 175px;
}
.brands__logo-item:nth-child(4) {
  margin-left: 80px;
}
.brands__logo-item:nth-child(4) img {
  width: 215px;
}
.brands__logo-item img {
  height: auto;
  object-fit: contain;
}
@media only screen and (max-width: 1199px) {
  .brands__logo-item:nth-child(4) {
    margin-left: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .brands__logo-item:nth-child(1) {
    margin-right: 0;
  }
  .brands__logo-item:nth-child(2) {
    margin-left: 0;
  }
  .brands__logo-item:nth-child(3) {
    margin-left: 0;
  }
  .brands__logo-item:nth-child(4) {
    margin-left: 0;
  }
}
.brands__group {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.brands__group span {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}
@media only screen and (max-width: 767px) {
  .brands__group {
    flex-direction: column;
  }
}

.show-more-interest a {
  margin-top: 5px;
}

.articles {
  background: linear-gradient(180deg, #004F9F 0%, #004F9F 60%, #fff 60%);
  padding: 15px 0 110px;
  height: 400px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .articles {
    background: linear-gradient(180deg, #004F9F 0%, #004F9F 80%, #fff 80%);
    height: 700px;
  }
}
@media only screen and (max-width: 575px) {
  .articles {
    height: 940px;
    background: linear-gradient(180deg, #004F9F 0%, #004F9F 88%, #fff 88%);
  }
}
@media only screen and (max-width: 360px) {
  .articles {
    height: 1060px;
  }
}
.articles .btn {
  font-size: 1.125rem;
}
.articles .hero__bottom-splash {
  bottom: 42px;
  min-width: 900px;
}
@media only screen and (max-width: 1399px) {
  .articles .hero__bottom-splash {
    bottom: 62px;
  }
}
@media only screen and (max-width: 1199px) {
  .articles .hero__bottom-splash {
    bottom: 82px;
  }
}
.articles__inner {
  z-index: 15;
  position: relative;
}
.articles__title {
  margin-bottom: 40px;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 400;
}
.articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media only screen and (max-width: 991px) {
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.articles__item {
  position: relative;
  min-height: 280px;
}
@media only screen and (max-width: 575px) {
  .articles__item {
    min-height: auto;
  }
}
.articles__card-main p {
  max-width: 360px;
}
.articles__card {
  position: relative;
  z-index: 2;
  width: calc(100% - 120px);
  min-height: 280px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
}
.articles__card::before {
  content: "";
  position: absolute;
  top: -110px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 220px;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 0.15) 52%, rgba(255, 255, 255, 0) 72%);
}
.articles__card:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 90px;
  z-index: 2;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.35) 45%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}
@media only screen and (max-width: 575px) {
  .articles__card {
    width: 100%;
    min-height: auto;
  }
}
.articles__card-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  padding: 35px 35px;
}
@media only screen and (max-width: 575px) {
  .articles__card-content {
    min-height: auto;
    padding: 28px 22px 22px;
  }
}
.articles__card-image {
  position: absolute;
  right: 0;
  top: 20px;
  width: 150px;
  height: 230px;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}
@media only screen and (max-width: 575px) {
  .articles__card-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 200px;
    margin-top: -100px;
  }
}
.articles__card-tag {
  position: relative;
  align-items: center;
  min-height: 32px;
  padding: 8px 16px;
  border-radius: 999px;
  background-color: #1d58aa;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-flex;
  border: 1px dashed #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 16px;
  z-index: 10;
}
.articles__card-tag--auto {
  background: rgba(90, 143, 255, 0.18);
}
.articles__card-main h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
}
@media only screen and (max-width: 575px) {
  .articles__card-main h4 {
    font-size: 1.2rem;
  }
}
.articles__card-main p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.125rem;
  line-height: 1.55;
}
@media only screen and (max-width: 575px) {
  .articles__card-main p {
    max-width: 100%;
  }
}
.articles__card-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.articles__card-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #009e88;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s all ease-in-out;
}
.articles__card-link:hover {
  transform: translateY(-2px);
  background: #009e88;
}
.articles__card-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}
.articles__card-time img {
  width: 12px;
  height: 12px;
  margin-left: 4px;
}
.articles__more {
  display: table;
  margin: 35px auto 0;
  color: #1d58aa;
  font-size: 1.125rem;
  text-decoration: underline;
}

.clients {
  background: #ffffff;
  padding: 100px 0 50px;
  text-align: center;
}
.clients__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}
.clients__title {
  margin-bottom: 40px;
  color: #333333;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: left;
}
.clients__title strong {
  font-weight: 800;
}
.clients__carousel {
  overflow: hidden;
}
.clients__logo {
  width: 100px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

.map-section {
  position: relative;
  overflow: hidden;
}
.map-section__splash {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.map-section__splash img {
  display: block;
  width: 100%;
  height: auto;
  transform: rotate(180deg);
}
.map-section__splash-bottom {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}
.map-section__splash-bottom img {
  display: block;
  width: 100%;
  height: auto;
}
.map-section__map {
  height: 700px;
}
@media only screen and (max-width: 767px) {
  .map-section__map {
    height: 500px;
  }
}
@media only screen and (max-width: 575px) {
  .map-section__map {
    height: 620px;
  }
}
.map-section__card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-470px, -50%);
  z-index: 4;
  width: 300px;
  padding: 40px;
  border-radius: 50px;
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
@media only screen and (max-width: 1199px) {
  .map-section__card {
    left: 30px;
    top: 30px;
    transform: translateY(12px);
  }
}
@media only screen and (max-width: 575px) {
  .map-section__card {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    top: auto;
    bottom: 50px;
    padding: 26px;
    border-radius: 30px;
  }
}
.map-section__card.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-470px, -50%) translateY(0);
}
@media only screen and (max-width: 1199px) {
  .map-section__card.is-open {
    transform: translateY(0);
  }
}
.map-section .map-elipse {
  position: relative;
}
.map-section .map-elipse:before {
  content: "";
  background-image: url("../assets/map-elipse.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  right: -45px;
  width: 250px;
  height: 150px;
}
.map-section__card-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}
.map-section__card-badge {
  text-align: center;
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 10px 20px;
  border: 1px dashed rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background-color: #1d58aa;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
}
@media only screen and (max-width: 991px) {
  .map-section__card-badge {
    margin-bottom: 15px;
  }
}
.map-section__address {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  line-height: 130%;
}
@media only screen and (max-width: 991px) {
  .map-section__address {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.map-section__contacts {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 150%;
}
@media only screen and (max-width: 991px) {
  .map-section__contacts {
    margin-bottom: 10px;
  }
}
.map-section__contacts a {
  color: rgba(255, 255, 255, 0.98);
}
.map-section .btn-wrap {
  display: inline-flex;
}
.map-section .btn-wrap .btn {
  gap: 10px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 767px) {
  .map-section .btn-wrap .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

.hamburger {
  width: 30px;
  height: 22.5px;
  position: relative;
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: none;
  z-index: 9999;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1.5px;
  left: 4px;
}

.hamburger span:nth-child(1) {
  top: 0;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.hamburger span:nth-child(2) {
  top: 7px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19.5px;
  left: 4px;
}

.hamburger span:nth-child(3) {
  top: 14px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-toggler {
  display: none;
}

@media only screen and (max-width: 991px) {
  .hamburger, .nav-toggler {
    display: block;
  }
}
.mobile-menu {
  margin-top: 0;
  background: #1d58aa;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
  position: fixed;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
  z-index: 49;
}

.mobile-menu.active {
  transition: 0.3s ease;
  opacity: 1;
  pointer-events: all;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}

.footer {
  position: relative;
  background: linear-gradient(0deg, #004F9F 0%, #001C39 100%);
  color: #ffffff;
  overflow: hidden;
}
.footer__top {
  position: relative;
  padding: 88px 0 72px;
}
@media only screen and (max-width: 767px) {
  .footer__top {
    padding: 64px 0 52px;
  }
}
@media only screen and (max-width: 575px) {
  .footer__top {
    padding: 48px 0 38px;
  }
}
.footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 0.9fr;
  gap: 48px;
}
@media only screen and (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }
}
@media only screen and (max-width: 767px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.footer__col {
  min-width: 0;
}
.footer__title {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.15;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .footer__title {
    font-size: 1.65rem;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .footer__title {
    font-size: 1.35rem;
  }
}
.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__tags a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px dashed #A0C1FF;
  border-radius: 999px;
  color: #A0C1FF;
  font-size: 0.875rem;
  line-height: 1.2;
  transition: 0.3s all ease-in-out;
}
.footer__tags a:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}
@media only screen and (max-width: 575px) {
  .footer__tags a {
    font-size: 0.88rem;
    min-height: 34px;
    padding: 8px 12px;
  }
}
.footer__col--address .footer__address {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.75;
}
.footer__col--address .footer__address strong {
  display: inline-block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
}
@media only screen and (max-width: 575px) {
  .footer__col--address .footer__address {
    font-size: 0.98rem;
  }
  .footer__col--address .footer__address strong {
    font-size: 1.18rem;
  }
}
.footer__bottom {
  background: rgba(0, 0, 0, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
}
@media only screen and (max-width: 575px) {
  .footer__bottom {
    padding: 18px 0;
  }
}
.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 16px;
  }
}
.footer__copy {
  color: #A0C1FF;
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer__copy span {
  margin-left: 18px;
}
@media only screen and (max-width: 575px) {
  .footer__copy span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  transition: 0.3s all ease-in-out;
}
.footer__links a:hover {
  color: #ffffff;
}
.footer__credit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}
.footer__credit img {
  display: block;
  height: 28px;
  width: auto;
}
