﻿/* ----------------------------------- //
//      Custom Mixins
// ----------------------------------- //*/
/*Cover Background Mixin*/
.nav-icon {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #c60c46;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-icon span:nth-child(1) {
  top: 0;
}
.nav-icon span:nth-child(2) {
  top: 9px;
}
.nav-icon span:nth-child(3) {
  top: 18px;
}
.nav-icon.open span:nth-child(1) {
  top: 9px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.nav-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-icon.open span:nth-child(3) {
  top: 9px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  scroll-behavior: smooth;
}

main {
  padding-top: 110px;
}
@media (min-width: 1200px) {
  main {
    padding-top: 130px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transform: translate(0, 0);
  transition: 0.3s;
  background: #fff;
  display: none;
}
.header.js-down {
  transform: translate(0, -101%);
}
@media (min-width: 1200px) {
  .header {
    display: block;
  }
}
.header__top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__top .header__nav {
  height: 100%;
}
.header__top .header__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.header__top .header__list-item {
  height: 100%;
}
.header__top .header__list-item > a {
  height: 100%;
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  color: #013B62;
  text-decoration: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (min-width: 1600px) {
  .header__top .header__list-item > a {
    font-size: 15px;
  }
}
.header__top .header__list-item--has-sublist {
  position: relative;
}
.header__top .header__list-item--has-sublist > a::after {
  transition: all ease-in 0.3s;
  content: url("../icons/nav-arrow.svg");
}
.header__top .header__list-item--has-sublist:hover .header__sublist {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.header__top .header__list-item--has-sublist:hover > a::after {
  transform: rotate(180deg);
}
.header__top .header__sublist {
  position: absolute;
  width: 180%;
  top: 100%;
  left: -90%;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #06AEBC;
  border-radius: 12px;
  padding: 10px;
  transition: all ease-in 0.2s;
  opacity: 0;
  visibility: hidden;
}
.header__top .header__sublist-item > a {
  color: #fff;
  text-decoration: none;
}
.header__bottom {
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header__bottom .header__nav {
  display: flex;
  height: 100%;
  gap: 48px;
}
@media (max-width: 1366px) {
  .header__bottom .header__nav {
    gap: 22px;
  }
}
.header__bottom .header__list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1366px) {
  .header__bottom .header__list {
    gap: 16px;
  }
}
@media (min-width: 1600px) {
  .header__bottom .header__list {
    gap: 42px;
  }
}
.header__bottom .header__list-item {
  display: flex;
  align-items: center;
  height: 100%;
}
.header__bottom .header__list-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  line-height: 100%;
  color: #013B62;
  text-decoration: none;
}
@media (min-width: 1600px) {
  .header__bottom .header__list-item > a {
    font-size: 16px;
  }
}
.header__bottom .header__list-item--has-sublist > a::after {
  transition: all ease-in 0.3s;
  content: url("../icons/nav-arrow.svg");
}
.header__bottom .header__list-item--has-sublist:hover .header__sublist {
  opacity: 1;
  visibility: visible;
}
.header__bottom .header__list-item--has-sublist:hover > a::after {
  transform: rotate(180deg);
}
.header__bottom .header__list-item--has-sublist:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
.header__bottom .header__cta {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1366px) {
  .header__bottom .header__cta {
    gap: 16px;
  }
}
.header__bottom .header__lang {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.header__bottom .header__lang span {
  font-weight: 500;
  font-size: 14px;
  color: #013B62;
}
@media (min-width: 1600px) {
  .header__bottom .header__lang span {
    font-size: 15px;
  }
}
.header__lang {
  color: #013B62;
}
.header__lang span {
  color: #013B62;
}

.mega-menu {
  position: fixed;
  top: 129px;
  width: 100%;
  left: 0;
  background-color: #FFFFFF;
  padding: 25px 0 65px 0;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.2s;
}
.mega-menu__container {
  display: flex;
  justify-content: space-between;
}
.mega-menu__wrapper {
  display: flex;
  gap: 48px;
}
@media (min-width: 1600px) {
  .mega-menu__wrapper {
    gap: 64px;
  }
}
.mega-menu__video {
  position: relative;
  width: 350px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}
.mega-menu__video img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.3s;
}
.mega-menu__video:hover {
  cursor: pointer;
}
.mega-menu__video:hover .play-button {
  background-color: #013B62;
}
.mega-menu__video:hover .play-button svg {
  fill: #fff;
}
.mega-menu__video:hover img {
  transform: scale(1.1);
}
.mega-menu .play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 1;
  transition: ease-in-out 0.2s;
}
.mega-menu .play-button svg {
  fill: #013B62;
  transition: ease-in-out 0.2s;
}
.mega-menu__nav {
  display: flex;
  gap: 32px;
}
@media (min-width: 1600px) {
  .mega-menu__nav {
    gap: 48px;
  }
}
.mega-menu__nav > * {
  flex: 1 1 175px;
  min-width: 175px;
}
@media (min-width: 1366px) {
  .mega-menu__nav > * {
    flex: 1 1 215px;
    min-width: 215px;
  }
}
@media (min-width: 1600px) {
  .mega-menu__nav > * {
    flex: 1 1 275px;
    min-width: 275px;
  }
}
.mega-menu__column {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.mega-menu__title {
  font-weight: 600;
  color: #013B62;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}
.mega-menu__list {
  margin: 24px 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-menu__list-item > a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
.mega-menu__list-item.mega-menu__list-item--has-sub > a {
  font-weight: 600;
}
.mega-menu__list--inner {
  margin: 6px 0 0 0;
  gap: 0;
}
.mega-menu__sustainability {
  width: 290px;
  height: 290px;
  padding: 15px 20px;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.mega-menu__sustainability img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.mega-menu__sustainability .button span {
  font-size: 14px;
}

.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 110px;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 9999;
  background: #fff;
}
@media (min-width: 1200px) {
  .header-mobile {
    display: none;
  }
}
.header-mobile__wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
}
.header-mobile__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.header-mobile__hamburger span {
  width: 18px;
  height: 2px;
  display: block;
  background-color: #00345a;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header-mobile__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header-mobile__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.header-mobile__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

.hamburger-menu {
  position: fixed;
  top: 110px;
  left: 0;
  width: 100%;
  height: calc(100vh - 110px);
  background: #fff;
  transition: all ease-in-out 0.3s;
  opacity: 0;
  visibility: hidden;
}
.hamburger-menu.active {
  opacity: 1;
  visibility: visible;
}
.hamburger-menu__wrapper {
  padding: 0 25px 45px 25px;
  display: flex;
  gap: 50px;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 45px);
  overflow-y: auto;
}
.hamburger-menu__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
}
.hamburger-menu__list-item--has-submenu .hamburger-menu__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.hamburger-menu__list-item--has-submenu .hamburger-menu__head::after {
  content: url("../icons/hamburger-list-arrow.svg");
}
.hamburger-menu__list-item--has-submenu.active .hamburger-menu__head::after {
  transform: rotate(90deg);
}
.hamburger-menu__list-item--has-submenu.active .hamburger-menu__sublist {
  display: flex;
}
.hamburger-menu__head > a {
  font-weight: 600;
  font-size: 18px;
  color: #013B62;
  text-decoration: none;
}
@media (min-width: 640px) {
  .hamburger-menu__head > a {
    font-size: 20px;
  }
}
.hamburger-menu__sublist {
  padding: 0;
  margin: 15px 0 0 0;
  list-style: none;
  flex-direction: column;
  gap: 8px;
  display: none;
}
.hamburger-menu__sublist--level-2 {
  padding: 10px;
}
.hamburger-menu__sublist--level-3 {
  padding: 10px 14px;
}
.hamburger-menu__sublist-item > a {
  font-weight: 400;
  font-size: 16px;
  color: #013B62;
  text-decoration: none;
}
@media (min-width: 640px) {
  .hamburger-menu__sublist-item > a {
    font-size: 18px;
  }
}
.hamburger-menu__bottom {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.hamburger-menu__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.hamburger-menu__lang span {
  font-weight: 500;
  font-size: 14px;
  color: #013B62;
}
@media (min-width: 640px) {
  .hamburger-menu__lang span {
    font-size: 16px;
  }
}
.hamburger-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hamburger-menu__nav-item {
  text-decoration: none;
  font-weight: 400;
  color: #013B62;
  font-size: 18px;
}
@media (min-width: 640px) {
  .hamburger-menu__nav-item {
    font-size: 20px;
  }
}

.container {
  /*max-width: 1085px;*/
  max-width: 1344px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.container--sm {
  max-width: 890px;
}
.container--md {
  max-width: 1440px;
}
.container--lg {
  padding-left: 50px;
  padding-right: 50px;
  max-width: initial;
}
.container--pull-right {
  padding-right: 0;
  max-width: calc(100% - 50px);
}
@media (max-width: 991px) {
  .container--lg {
    padding-left: 24px;
    padding-right: 24px;
  }
  .container--pull-right {
    padding-right: 0;
  }
}

.button {
  position: relative;
  display: inline-flex;
  gap: 8px;
  padding: 15px 24px;
  color: #013B62;
  text-decoration: none;
  background: #9DE471;
  font-size: 18px;
  font-weight: 500;
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.button--white {
  background: #fff;
  color: #013B62;
}
.button--orange {
  background: #DF4307;
  color: #fff;
}
.button--orange:hover {
  border-color: #DF4307 !important;
  background: transparent !important;
  color: #DF4307 !important;
}
.button--orange:hover svg path {
  stroke: #DF4307 !important;
}
.button--orange-transparent {
  color: #DF4307;
  border-color: #DF4307;
  background: transparent;
}
.button--orange-transparent:hover {
  color: #fff !important;
  background: #DF4307 !important;
  border-color: transparent !important;
}
.button--green {
  background: #46A47D;
  color: #fff;
}
.button--green:hover {
  border-color: #46A47D !important;
  background: transparent !important;
  color: #46A47D !important;
}
.button--green:hover svg path {
  stroke: #46A47D !important;
}
.button--green-transparent {
  color: #46A47D;
  border-color: #46A47D;
  background: transparent;
}
.button--green-transparent:hover {
  color: #fff !important;
  background: #46A47D !important;
  border-color: transparent !important;
}
.button--gre .button--external-link svg {
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.button--gre .button--external-link:hover svg {
  transform: rotate(0);
}
.button svg path, .button svg polygon {
  transition: all 0.3s;
}
.button:hover {
  border-color: #013B62;
  background: #013B62;
  color: #fff;
  gap: 14px;
}
.button:hover svg path {
  stroke: #fff;
  fill: #fff;
}
.button:hover svg polygon {
  fill: #fff;
}
@media (max-width: 525px) {
  .button {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.link {
  color: #013B62;
  font-size: 30px;
  line-height: 100%;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.link:hover {
  gap: 22px;
}
@media (max-width: 1024px) {
  .link {
    font-size: 22px;
  }
}

.divider {
  border: 1px solid #B9AE96;
}

.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.arrow-button--gray {
  border-color: rgba(1, 59, 98, 0.4);
}
.arrow-button--gray svg path {
  stroke: rgba(1, 59, 98, 0.4);
}
.arrow-button--dark {
  background: #013B62;
}
.arrow-button--dark svg path {
  stroke: #fff;
}
.arrow-button--orange {
  background: #DF4307;
}
.arrow-button--orange svg path {
  stroke: #fff;
}
.arrow-button--transparent {
  background: transparent;
  border-color: #fff;
  opacity: 1 !important;
}
.arrow-button--transparent.swiper-button-disabled {
  opacity: 0.6 !important;
}
.arrow-button--transparent svg path {
  stroke: #fff;
}
.arrow-button:hover {
  background: #013B62;
}
.arrow-button:hover svg path {
  stroke: #fff;
}

.link-with-icon {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.link-with-icon__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
}
.link-with-icon:hover {
  gap: 32px;
}

.promo-slider {
  position: relative;
  width: 100%;
  max-height: 795px;
  height: calc(100vh - 130px);
  overflow: hidden;
}
.promo-slider__slider {
  height: 100%;
}
.promo-slider__item {
  position: relative;
  height: 100%;
}
.promo-slider__img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.promo-slider__img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.promo-slider__picture {
  display: flex;
  width: 100%;
  height: 100%;
}
.promo-slider__picture img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.promo-slider__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.promo-slider__content .container {
  height: 100%;
}
.promo-slider__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.promo-slider__wrapper-mobile {
  display: none;
}
.promo-slider__top {
  margin-top: 80px;
}
.promo-slider__title {
  font-size: 58px;
  line-height: 125%;
  font-weight: 500;
  color: #fff;
  max-width: 880px;
  margin: 0;
  /*margin-bottom: 40px;*/
  margin-bottom: 20px;
}
.promo-slider__text {
  max-width: 600px;
  /*font-size: 24px;*/
  font-size: 32px;
  font-weight: 400;
  color: #fff;
  line-height: 140%;
  margin-bottom: 20px;
}
.promo-slider__bottom {
  position: relative;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.promo-slider__video img {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.promo-slider__pagination {
  background: rgba(255, 255, 255, 0.15);
  height: 48px;
  border-radius: 8px;
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.15);
  height: 48px;
  border-radius: 8px;
  z-index: 999;
  left: 50%;
  padding-left: 24px;
  padding-right: 24px;
  transform: translateX(-50%);
  backdrop-filter: blur(30px);
}
.promo-slider__pagination .swiper-pagination {
  width: auto;
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.promo-slider__pagination .swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.promo-slider__pagination .swiper-pagination-bullet .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 0%;
  background-color: #fff;
}
.promo-slider__pagination .swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 8px;
  background: #D9D9D9;
}
.promo-slider__pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  width: 0%;
  transition: none;
  z-index: 1;
}
.promo-slider__pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 24px;
}
@media (max-width: 1366px) {
  .promo-slider__top {
    margin-top: 40px;
  }
  .promo-slider__title {
    font-size: 60px;
    line-height: 68px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1280px) {
  .promo-slider__title {
    font-size: 50px;
    line-height: 55px;
  }
  .promo-slider__text {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .promo-slider__wrapper {
    display: none;
  }
  .promo-slider__wrapper-mobile {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
  .promo-slider__mobile-top {
    margin-bottom: 100px;
  }
  .promo-slider__mobile-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-bottom: 24px;
  }
  .promo-slider__title {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .promo-slider__text {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .promo-slider__video {
    width: 35%;
  }
  .promo-slider__pagination {
    left: 24px;
    bottom: 24px;
    transform: translateX(0);
  }
  .promo-slider__pagination .swiper-pagination {
    width: auto;
    position: relative;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .promo-slider {
    /* a {
        display: flex;
        align-items: center;
        justify-content: center;
    }*/
  }
  .promo-slider__title {
    font-size: 35px;
    line-height: 43px;
  }
  .promo-slider__text {
    font-size: 20px;
  }
  .promo-slider__video {
    width: 160px;
  }
}

.numbers {
  background: #013B62;
  padding: 40px 0;
  border-radius: 12px;
}
.numbers--home {
  position: relative;
  top: -12px;
  z-index: 4;
}
.numbers__title {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
  line-height: 64px;
  margin: 0;
  margin-bottom: 60px;
  text-align: center;
}
.numbers__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  column-gap: 56px;
}
.numbers__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #fff;
}
.numbers__item img {
  display: flex;
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  margin-bottom: 24px;
}
.numbers__item h4 {
  margin: 0;
  font-size: 42px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 12px;
  color: #fff;
}
.numbers__item p {
  margin: 0;
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 100%;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 991px) {
  .numbers__title {
    margin-bottom: 40px;
  }
  .numbers__list {
    grid-template-columns: 1fr 1fr;
  }
  .numbers__item h4 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .numbers__list {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .numbers__item h4 {
    font-size: 50px;
  }
}

.locations {
  display: flex;
  flex-direction: column;
  padding: 64px 0;
}
.locations__head {
  text-align: center;
  margin-bottom: 48px;
}
.locations__title {
  margin: 0;
  color: #013B62;
  font-size: 56px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 32px;
}
.locations__desc {
  color: #454745;
  font-size: 20px;
  line-height: 30px;
  margin: 0;
  margin-bottom: 32px;
}
.locations__nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(205, 205, 205, 0.6);
  border-top: 1px solid rgba(205, 205, 205, 0.6);
}
.locations__nav-item {
  position: relative;
  display: flex;
  width: 100%;
  height: 80px;
  border-right: 1px solid rgba(205, 205, 205, 0.6);
  transition: all 0.3s;
}
.locations__nav-item:last-child {
  border-right: none;
}
.locations__nav-item:before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  content: "";
  background: #05443E;
  transition: all 0.3s;
}
.locations__nav-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
  color: #013B62;
  cursor: pointer;
  transition: all 0.3s;
}
.locations__nav-item:hover {
  cursor: pointer;
}
.locations__nav-item:hover:nth-child(1) {
  background: #0bb0ae;
}
.locations__nav-item:hover:nth-child(1) label {
  color: #fff;
}
.locations__nav-item:hover:nth-child(2) {
  background: #FF4700;
}
.locations__nav-item:hover:nth-child(2) label {
  color: #fff;
}
.locations__nav-item:hover:nth-child(3) {
  background: #9DE471;
}
.locations__nav-item:hover:nth-child(4) {
  background: #93ac02;
}
.locations__nav-item:hover:nth-child(4) label {
  color: #fff;
}
.locations__nav-item:hover:nth-child(5) {
  background: #013B62;
}
.locations__nav-item:hover:nth-child(5) label {
  color: #fff;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(1) {
  background: #0bb0ae;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(1) label {
  color: #fff;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(2) {
  background: #FF4700;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(2) label {
  color: #fff;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(3) {
  background: #9DE471;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(4) {
  background: #93ac02;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(5) {
  background: #013B62;
}
.locations__nav-item:has(.locations__nav-input:checked):nth-child(5) label {
  color: #fff;
}
.locations__nav-input {
  position: absolute;
  opacity: 0;
}
.locations__nav-input:checked + label {
  /*color: rgba(#05443e,1);*/
}
.locations__nav-input:checked ~ .locations__bar {
  width: 100%;
}
.locations__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #05443e;
  height: 2px;
  transition: all 0.3s;
}
.locations__map {
  position: relative;
  /* margin: 48px 0;*/
}
.locations__map .container {
  position: relative;
}
.locations__map #map {
  width: 100%;
  height: 525px;
}
.locations__map #map .info-window__icons {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.locations__map #map .info-window__icons img {
  width: 25px;
}
.locations__map #map .info-window__country {
  display: flex;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  color: #013B62;
  margin-bottom: 10px;
  min-height: 43px;
}
.locations__map #map .info-window__country span {
  display: flex;
  position: relative;
  align-items: center;
}
.locations__map #map .info-window__country span:first-child:after {
  display: flex;
  margin: 0 16px;
  content: "";
  width: 1px;
  height: 50%;
  background: #013B62;
}
.locations__map #map .info-window__desc {
  font-size: 12px;
  line-height: 100%;
  font-weight: 400;
  color: #013B62;
}
.locations__map #map .gm-style-iw-d, .locations__map #map .gm-style-iw-ch, .locations__map #map .gm-style {
  padding: 0 !important;
}
.locations__map #map .gm-style .gm-style-iw-d::-webkit-scrollbar {
  height: 0;
  width: 0;
}
.locations__map #map .gm-style-iw-c {
  padding: 10px !important;
  border: 2px solid #013B62 !important;
}
.locations__map #map .gm-ui-hover-effect > span {
  margin: 0 !important;
}
.locations__map #map .gm-ui-hover-effect {
  width: 20px !important;
  height: 20px !important;
}
.locations__map #map .gm-style .gm-style-iw-tc::after {
  display: none !important;
  background: #FAF2D5 !important;
}
.locations__inner-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: absolute;
  left: 20px;
  top: 20px;
  background: #013B62;
  padding: 10px;
  z-index: 3;
}
.locations__inner-nav p {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  gap: 10px;
}
.locations__inner-nav img {
  width: 25px;
}
@media (max-width: 767px) {
  .locations__inner-nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    top: 0;
    left: 0;
    gap: 10px;
  }
  .locations__inner-nav p {
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .locations__title {
    font-size: 40px;
    line-height: 48px;
  }
  .locations__nav-inner .container {
    padding: 0;
  }
  .locations__nav-wrapper {
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .locations__nav {
    width: 150%;
  }
  .locations__nav-item label {
    padding: 0 15px;
  }
  .locations__map {
    /*  margin: 30px 0;*/
  }
  .locations__map #map {
    height: 320px;
  }
  .locations__map #map .info-window {
    padding: 10px 0;
  }
  .locations__map #map .info-window__country {
    height: 30px;
  }
  .locations__map #map .info-window__country span:first-child:after {
    height: 30px;
  }
}

.process-slider {
  background-color: #013B62;
  padding: 90px 0 50px 0;
}
.process-slider__head {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .process-slider__head {
    flex-direction: row;
  }
}
.process-slider__head-title {
  font-weight: 500;
  color: #FFFFFF;
  margin: 0;
  font-size: 34px;
  line-height: 38px;
}
@media (min-width: 1200px) {
  .process-slider__head-title {
    font-size: 60px;
    line-height: 68px;
    max-width: 55%;
  }
}
.process-slider__images {
  margin: 0;
}
@media (min-width: 1200px) {
  .process-slider__images {
    max-width: 350px;
  }
}
.process-slider__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process-slider__slides {
  display: flex;
  flex-direction: column;
  margin: 50px 0;
}
@media (min-width: 1200px) {
  .process-slider__slides {
    margin: 0 -50px 50px 0;
  }
}
.process-slider__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.process-slider__item-title {
  font-weight: 500;
  font-size: 40px;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0;
}
.process-slider__item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #DEF3C6;
  opacity: 40%;
  margin: 0;
}
.process-slider__item.swiper-slide-active p {
  opacity: 1;
}
.process-slider__process {
  background-color: #FFFFFF;
  display: flex;
}
@media (max-width: 1199px) {
  .process-slider__process {
    display: none;
  }
}
.process-slider__process-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1;
  flex: auto;
  padding: 15px 0 15px 40px;
}
@media (min-width: 1600px) {
  .process-slider__process-item {
    padding: 15px 0 15px 62px;
  }
}
.process-slider__process-item > *:not(.process-slider__process-item-bg) {
  position: relative;
  z-index: 1;
}
.process-slider__process-item svg {
  fill: #06AEBC;
}
.process-slider__process-item span {
  font-weight: 500;
  color: #06AEBC;
  font-size: 16px;
}
@media (min-width: 1440px) {
  .process-slider__process-item span {
    font-size: 24px;
  }
}
.process-slider__process-item-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #06AEBC;
  transition: none;
}
.process-slider__process-item:not(:first-child) .process-slider__process-item-bg {
  left: 35px;
}
.process-slider__process-item:not(:last-child)::after, .process-slider__process-item:not(:last-child)::before {
  width: 6px;
  height: 63px;
  background: #013B62;
}
.process-slider__process-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -10px;
  background: #013B62;
  z-index: 2;
  transform: rotate(-50deg);
}
.process-slider__process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -10px;
  background: #013B62;
  z-index: 2;
  transform: rotate(50deg);
}
.process-slider .slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .process-slider .slider-navigation {
    display: none;
  }
}
.process-slider .arrow-button--prev svg {
  transform: rotate(180deg);
}
.process-slider .arrow-button--next {
  background-color: #fff;
}
.process-slider .arrow-button svg {
  width: 20px;
  height: 20px;
}
.process-slider .slider-pagination {
  color: #fff;
  font-weight: normal;
  font-size: 20px;
}

.products-cards {
  padding-top: 80px;
  padding-bottom: 112px;
  background: #013B62;
}
.products-cards--page {
  margin-bottom: 100px;
}
.products-cards__head {
  margin-bottom: 48px;
  text-align: center;
}
.products-cards__title {
  margin: 0;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  color: #fff;
}
.products-cards__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.products-cards__item {
  position: relative;
  border-radius: 12px;
}
.products-cards__img {
  position: relative;
}
.products-cards__img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.products-cards__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.products-cards__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.products-cards__inner-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
  color: #fff;
}
.products-cards__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-cards__bottom p {
  max-width: 60%;
  color: #fff;
  font-size: 16px;
  margin: 0;
  line-height: 140%;
}
@media (max-width: 1366px) {
  .products-cards__bottom p {
    max-width: 80%;
  }
}
@media (max-width: 1170px) {
  .products-cards {
    padding: 64px 0;
  }
  .products-cards--page {
    margin-bottom: 48px;
  }
  .products-cards__inner-title {
    font-size: 32px;
  }
}
@media (max-width: 991px) {
  .products-cards__list {
    grid-template-columns: 1fr 1fr;
  }
  .products-cards__inner-title {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .products-cards__title {
    font-size: 40px;
    line-height: 48px;
  }
  .products-cards__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.sustainability-home {
  overflow: hidden;
  padding: 64px 0;
}
.sustainability-home__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
.sustainability-home__slider {
  overflow: hidden;
}
.sustainability-home__slider-arrows {
  display: flex;
  gap: 16px;
}
.sustainability-home__slider-arrows a.js-prev {
  transform: rotate(180deg);
}
.sustainability-home__slider-arrows a.swiper-button-disabled {
  opacity: 0.5;
}
.sustainability-home__slider-arrows-mobile {
  display: none;
  justify-content: flex-end;
  gap: 16px;
}
.sustainability-home__slider-arrows-mobile a.js-prev {
  transform: rotate(180deg);
}
.sustainability-home__slider-arrows-mobile a.swiper-button-disabled {
  opacity: 0.5;
}
.sustainability-home__title {
  color: #013B62;
  font-size: 45px;
  margin: 0;
  font-weight: 600;
}
.sustainability-home__slider {
  margin-bottom: 64px;
}
.sustainability-home__item {
  display: flex;
  gap: 200px;
}
.sustainability-home__left, .sustainability-home__right {
  position: relative;
  flex: 1;
}
.sustainability-home__left h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 64px;
  color: #013B62;
  margin: 0;
  margin-bottom: 16px;
}
.sustainability-home__left p {
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;
  color: #454745;
  margin: 0;
  margin-bottom: 40px;
}
.sustainability-home__right {
  display: flex;
  justify-content: flex-end;
}
.sustainability-home__img {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 665px;
  max-height: 645px;
}
.sustainability-home__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.sustainability-home__doc {
  position: absolute;
  bottom: 32px;
  right: 24px;
}
.sustainability-home__pagination {
  position: relative;
  width: 100%;
  height: 2px;
}
.sustainability-home__pagination .swiper-scrollbar {
  background: rgba(149, 139, 114, 0.2);
}
.sustainability-home__pagination .swiper-scrollbar-drag {
  background: #013B62;
}
.sustainability-home__pagination .swiper-pagination-progressbar {
  background: rgba(149, 139, 114, 0.2);
}
.sustainability-home__pagination .swiper-pagination-progressbar-fill {
  background: #013B62;
}
@media (max-width: 1366px) {
  .sustainability-home__head {
    margin-bottom: 24px;
  }
  .sustainability-home__title {
    font-size: 40px;
    line-height: 100%;
  }
  .sustainability-home__left h3 {
    font-size: 32px;
    line-height: 41.6px;
  }
  .sustainability-home__left p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 22px;
  }
}
@media (max-width: 1170px) {
  .sustainability-home__item {
    gap: 100px;
  }
}
@media (max-width: 991px) {
  .sustainability-home__item {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .sustainability-home__img {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (max-width: 767px) {
  .sustainability-home {
    padding-bottom: 32px;
  }
  .sustainability-home__title {
    width: 100%;
    text-align: center;
  }
  .sustainability-home__slider {
    margin-bottom: 32px;
  }
  .sustainability-home__slider-arrows, .sustainability-home__pagination {
    display: none;
  }
  .sustainability-home__slider-arrows-mobile {
    display: flex;
  }
}

.numbers-list {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  margin: 0;
  margin-bottom: 60px;
}
.numbers-list li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 50px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 21px;
  color: #013B62;
  line-height: 26px;
  font-weight: 500;
  border-bottom: 2px solid #F0E9DB;
}
.numbers-list li:first-child {
  border-top: 2px solid #F0E9DB;
}
.numbers-list li:before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: transparent;
  border: 2px solid #013B62;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-weight: 500;
  font-size: 18px;
  color: #013B62;
}
@media (max-width: 1366px) {
  .numbers-list {
    margin-bottom: 40px;
  }
  .numbers-list li {
    font-size: 18px;
    line-height: 26px;
  }
}

.colored-box {
  margin: 64px 0;
}
.colored-box--filled {
  padding: 64px 0;
  margin: 0;
  background: #013B62;
}
.colored-box__wrapper {
  display: grid;
  gap: 16px;
}
.colored-box__wrapper--is-2 {
  grid-template-columns: 1fr 1fr;
}
.colored-box__wrapper--is-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.colored-box__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: 12px;
  background: #134679;
  color: #fff;
  position: relative;
}
.colored-box__item--green {
  background: #9DE471;
  color: #05443E;
}
.colored-box__item--orange {
  background: #FAF2D5;
  color: #DF4307;
}
.colored-box__item--with-img {
  min-height: 400px;
  background: transparent;
}
.colored-box__content {
  z-index: 1;
}
.colored-box__content h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 16px;
  line-height: 100%;
}
.colored-box__content h3 {
  font-size: 30px;
  line-height: 100%;
  margin: 0;
  font-weight: 500;
  margin-bottom: 40px;
}
.colored-box__content p {
  font-size: 18px;
  margin: 0;
  max-width: 80%;
  margin-bottom: 40px;
  line-height: 140%;
}
.colored-box__content img {
  margin-bottom: 40px;
}
.colored-box__action {
  z-index: 1;
}
.colored-box__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.colored-box__bg img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 1366px) {
  .colored-box {
    margin: 32px 0;
  }
  .colored-box--filled {
    padding: 32px 0;
    margin: 0;
  }
  .colored-box__item {
    padding: 24px;
  }
}
@media (max-width: 1024px) {
  .colored-box__content p {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .colored-box {
    margin-top: 0;
    margin-bottom: 32px;
  }
  .colored-box--filled {
    margin: 0;
  }
  .colored-box__wrapper--is-3 {
    grid-template-columns: 1fr;
  }
  .colored-box__item {
    min-height: 320px;
  }
}

.featured-news {
  overflow: hidden;
  padding: 96px 0;
  background: #013B62;
}
.featured-news__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.featured-news__head-title {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
  line-height: 64px;
  margin: 0;
}
.featured-news__head a {
  display: flex;
  align-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
.featured-news__head a:hover {
  gap: 12px;
}
.featured-news__wrapper {
  display: flex;
  gap: 16px;
}
.featured-news__single {
  /*flex: 1.5;*/
  flex: 1;
  height: 100%;
}
.featured-news__multiple {
  flex: 1;
}
.featured-news__item-single {
  position: relative;
  text-decoration: none;
  color: #fff;
  text-decoration: none;
  height: 100%;
}
.featured-news__item-single h3 {
  margin: 0;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  color: #fff;
  max-width: 50%;
  margin-top: 16px;
}
.featured-news__item-single img {
  min-height: 390px !important;
}
.featured-news__item-single:hover img {
  transform: scale(1.1);
}
.featured-news__item {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  color: #fff;
  text-decoration: none;
}
.featured-news__item h3 {
  margin: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.featured-news__item p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
.featured-news__item:hover img {
  transform: scale(1.1);
}
.featured-news__img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.featured-news__img img {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: all ease-in-out 0.3s;
}
.featured-news__content {
  width: 100%;
}
.featured-news__mobile-action {
  display: none;
}
@media (max-width: 1440px) {
  .featured-news__single {
    max-width: 770px;
  }
  .featured-news__item-single h3 {
    max-width: 75%;
  }
}
@media (max-width: 1366px) {
  .featured-news {
    padding: 48px 0;
  }
  .featured-news__head {
    margin-bottom: 48px;
  }
}
@media (max-width: 1024px) {
  .featured-news__single {
    flex: 1;
  }
  .featured-news__item-single h3 {
    font-size: 32px;
    line-height: 46px;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .featured-news__wrapper {
    flex-direction: column;
    gap: 48px;
  }
  .featured-news__item-single h3 {
    max-width: 70%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .featured-news__head a {
    display: none;
  }
  .featured-news__mobile-action {
    display: initial;
  }
}
@media (max-width: 575px) {
  .featured-news__item-single h3 {
    max-width: 100%;
  }
  .featured-news__item {
    flex-direction: column;
  }
}

.full-link {
  overflow: hidden;
  background: #013B62;
  color: #fff;
  padding: 80px 0;
}
.full-link__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.full-link__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
}
@media (max-width: 1366px) {
  .full-link {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .full-link {
    padding: 24px;
  }
  .full-link__inner {
    flex-direction: column;
    gap: 48px;
  }
}

.footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 48px;
  background: #002F4F;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(244, 250, 251, 0.22);
}
.footer__logo {
  flex: 1;
}
.footer__info {
  display: flex;
  gap: 90px;
  flex: 1.5;
}
.footer__address {
  flex: 1;
}
.footer__address h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;
  margin-bottom: 28px;
}
.footer__address p {
  margin: 0;
  color: rgba(244, 250, 251, 0.6);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
.footer__contacts {
  flex: 1;
}
.footer__contacts p, .footer__contacts a {
  margin: 0;
  margin-bottom: 10px;
  color: rgba(244, 250, 251, 0.6);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}
.footer__region {
  display: flex;
  gap: 8px;
  color: #fff;
  margin-top: 50px;
}
.footer__region--mobile {
  display: none;
}
.footer__region span {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.footer__catalogue {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  height: auto;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 56px 0;
}
.footer__links {
  display: flex;
  justify-content: space-between;
}
.footer__statics {
  display: flex;
  gap: 40px;
}
.footer__statics a {
  font-size: 14px;
  color: #F4FAFB;
  text-decoration: none;
  transition: all 0.3s;
}
.footer__statics a:hover {
  opacity: 0.5;
}
.footer__copy {
  font-size: 14px;
  color: #F4FAFB;
}
@media (max-width: 1366px) {
  .footer__info {
    flex: 2;
    gap: 60px;
  }
  .footer__address h3 {
    font-size: 26px;
    line-height: 30px;
  }
  .footer__address p {
    font-size: 18px;
  }
  .footer__contacts a, .footer__contacts p {
    font-size: 18px;
  }
  .footer__statics {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .footer__contacts p a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .footer__top {
    flex-direction: column;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__info {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 60px;
  }
  .footer__address h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  .footer__address p {
    font-size: 18px;
    line-height: 26px;
  }
  .footer__region {
    display: none;
    margin: 0;
  }
  .footer__region--mobile {
    display: flex;
  }
  .footer__catalogue {
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .footer__catalogue {
    display: initial;
  }
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 20px;
  }
  .footer__col:last-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer__links {
    gap: 60px;
    flex-direction: column;
    text-align: center;
  }
  .footer__statics {
    flex-direction: column;
  }
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: 999;
  box-shadow: 0px 0px 22px -5px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 22px -5px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 22px -5px rgba(0, 0, 0, 0.75);
}
.back-to-top__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.back-to-top__link svg {
  transform: rotate(-90deg);
}
.back-to-top__link svg path {
  fill: #013B62;
}

.social {
  display: flex;
  gap: 30px;
  align-items: center;
}
.social a {
  text-decoration: none;
  transition: all 0.3s;
}
.social a:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .social {
    justify-content: center;
    margin-top: 40px;
  }
}

.footer-nav {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.footer-nav__title {
  font-size: 16px;
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}
.footer-nav__menu {
  display: flex;
  flex-direction: column;
}
.footer-nav__menu a {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-bottom: 12px;
  line-height: 100%;
  transition: all 0.3s;
}
.footer-nav__menu a:hover {
  color: #fff;
}

.subpage-header {
  position: relative;
  height: 550px;
}
.subpage-header--large {
  height: calc(100vh - 130px);
}
.subpage-header--large:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #002D4B;
  background: linear-gradient(180deg, rgba(0, 45, 75, 0.44) 0%, rgba(1, 59, 98, 0.09) 100%);
}
.subpage-header--small {
  height: 250px;
}
.subpage-header picture {
  display: flex;
  width: 100%;
  height: 100%;
}
.subpage-header picture img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subpage-header__inner {
  position: absolute;
  width: 100%;
  top: 80px;
}
.subpage-header__inner--large {
  position: absolute;
  width: 100%;
  height: calc(100% - 160px);
  top: 0;
  padding: 80px 0;
}
.subpage-header__inner--large .container {
  height: 100%;
}
.subpage-header__inner h1 {
  font-size: 70px;
  color: #fff;
  font-weight: 500;
  line-height: 78px;
}
.subpage-header__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  max-width: 40%;
}
.subpage-header__content p {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
}
.subpage-header .mobile-title {
  display: none;
}
@media (max-width: 1366px) {
  .subpage-header__content {
    max-width: 50%;
  }
  .subpage-header__content p {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .subpage-header {
    height: 375px;
  }
  .subpage-header__inner {
    top: inherit;
    bottom: 40px;
  }
  .subpage-header__inner h1 {
    font-size: 35px;
    line-height: 43px;
  }
  .subpage-header__inner--large {
    bottom: 0;
  }
  .subpage-header__content {
    max-width: 70%;
  }
  .subpage-header__content p {
    line-height: 125%;
  }
}
@media (max-width: 767px) {
  .subpage-header--large {
    height: calc(100vh - 200px);
  }
  .subpage-header--multi {
    top: 0 !important;
    bottom: initial !important;
    height: calc(100% - 48px);
    padding: 24px 0;
  }
  .subpage-header--multi .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .subpage-header__inner--large {
    height: calc(100% - 72px);
    padding: 24px 0;
    bottom: 24px;
  }
  .subpage-header__inner--small {
    height: calc(100% - 72px);
    padding: 24px 0;
    bottom: 24px;
  }
  .subpage-header__inner--small .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .subpage-header__content {
    max-width: 100%;
    justify-content: flex-end;
    gap: 24px;
  }
  .subpage-header .mobile-title {
    display: flex;
  }
}

.page {
  padding-top: 48px;
  padding-bottom: 80px;
}
.page--investor {
  overflow: hidden;
}
.page--padding-top-none {
  padding-top: 0;
}
.page--padding-bottom-none {
  padding-bottom: 0;
}
.page__head {
  margin-bottom: 40px;
}
.page__head--with-select {
  display: flex;
  justify-content: space-between;
}
.page__head--with-select .choices {
  width: 100%;
  height: 48px;
}
.page__head--with-select .choices__inner {
  display: flex;
  align-items: center;
  padding: 0 !important;
  border: 0 !important;
  height: 100%;
}
.page__head--with-select .choices__list {
  padding: 0 !important;
}
.page__head--with-select .choices__placeholder {
  height: 100%;
}
.page__head--with-select .choices__item {
  padding: 0 10px !important;
  font-size: 16px !important;
}
.page__head--with-select .choices__item--choice {
  padding: 10px 14px !important;
}
.page__title {
  color: #013B62;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}
.page__title--centered {
  text-align: center;
}
.page__title--group-companies {
  margin-bottom: 30px;
}
.page__select {
  min-width: 200px;
}
.page__show-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page ul:not(.iti__country-list) {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 24px;
}
.page ul:not(.iti__country-list) li {
  color: #898989;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}
.page ul:not(.iti__country-list) li:last-child {
  margin: 0;
}
.page strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  .page__head--with-select {
    flex-direction: column;
  }
}

.management-list {
  margin-bottom: 90px;
}
.management-list__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.management-list__page-title {
  font-size: 48px;
  font-weight: 600;
  color: #013B62;
  margin-bottom: 22px;
  line-height: 100%;
}
.management-list__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.management-list__item img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.management-list__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #002F4F;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  transition: all 0.3s;
}
.management-list__item a:hover {
  opacity: 0.7;
}
.management-list__name {
  color: #545454;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
.management-list__title {
  color: #545454;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .management-list__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .management-list__item img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 625px) {
  .management-list__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .management-list .container--lg {
    padding-left: 70px;
    padding-right: 70px;
  }
  .management-list__page-title {
    font-size: 40px;
    line-height: 100%;
    text-align: center;
  }
  .management-list__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .management-list__item img {
    /*  max-height: 270px;*/
  }
}

.message-from-ceo__title {
  font-size: 48px;
  font-weight: 600;
  color: #013B62;
  margin-bottom: 40px;
  line-height: 100%;
}
.message-from-ceo__inner {
  display: flex;
  gap: 40px;
}
.message-from-ceo__content {
  max-width: 65%;
  width: 100%;
}
.message-from-ceo__content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  margin-bottom: 40px;
}
.message-from-ceo__content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 20px;
  color: #898989;
  line-height: 140%;
}
@media (max-width: 575px) {
  .message-from-ceo__inner {
    flex-direction: column;
  }
  .message-from-ceo__content {
    max-width: 100%;
  }
  .message-from-ceo__content h3 {
    margin-bottom: 20px;
  }
}

.page-navigation {
  background: #013B62;
  display: flex;
}
.page-navigation__img {
  overflow: hidden;
  flex: 0.8;
}
.page-navigation__img img {
  display: flex;
  width: 100%;
  height: 100%;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  object-fit: cover;
}
.page-navigation__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 0 48px;
}
.page-navigation__nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #FFFAEE;
  /*font-size: 32px;*/
  font-size: 24px;
  /*padding-bottom: 32px;*/
  padding-bottom: 22px;
  border-bottom: 2px solid #F0E9DB;
  margin-bottom: 32px;
  transition: all 0.3s;
}
.page-navigation__nav a:last-child {
  margin: 0;
  border: none;
}
.page-navigation__nav a svg {
  transition: all 0.3s;
}
.page-navigation__nav a:hover {
  color: #C0D731;
}
.page-navigation__nav a:hover svg path {
  stroke: #C0D731;
}
@media (max-width: 1600px) {
  .page-navigation__img {
    flex: 1;
  }
  .page-navigation__nav {
    padding: 28px;
  }
}
@media (max-width: 991px) {
  .page-navigation {
    flex-direction: column;
  }
  .page-navigation__img {
    flex: auto;
    height: 500px;
  }
  .page-navigation__nav {
    padding: 48px 16px;
  }
}

.page-head {
  margin-bottom: 64px;
}
.page-head--centered {
  text-align: center;
}
.page-head--margin-0 {
  margin-bottom: 0;
}
.page-head__spot {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 135%;
  margin-bottom: 32px;
}
.page-head__desc p {
  color: #000;
  font-size: 21px;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: 10px;
}
.page-head__desc h2, .page-head__desc h3, .page-head__desc h4, .page-head__desc h5 {
  color: #013B62;
  line-height: 125%;
  margin-bottom: 10px;
}
.page-head__desc h2 {
  font-size: 26px;
  font-weight: 600;
}
.page-head__desc h3 {
  font-size: 24px;
  font-weight: 500;
}
.page-head__desc h4 {
  font-size: 22px;
}
.page-head__desc h5 {
  font-size: 20px;
}
.page-head__desc ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 24px;
}
.page-head__desc ul li {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}
.page-head__desc ul li:last-child {
  margin: 0;
}

.certificates__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  row-gap: 48px;
}
.certificates__item {
  text-align: center;
}
.certificates__title {
  color: #545454;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}
.certificates__desc {
  color: #545454;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 1170px) {
  .certificates__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .certificates__list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .certificates__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.certificates-slider {
  overflow: hidden;
  margin: 80px 0;
}
.certificates-slider__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 56px;
}
.certificates-slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #013B62;
  display: flex;
  padding: 0 52px;
  text-align: center;
  border-radius: 12px;
  min-height: 355px;
}
.certificates-slider__item img {
  max-width: 230px;
  width: 100%;
  display: flex;
}
.certificates-slider__item h3 {
  color: #013B62;
  font-size: 24px;
  font-weight: 600;
  line-height: 135%;
  margin-bottom: 10px;
}
.certificates-slider__item p {
  color: #454745;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1600px) {
  .certificates-slider__item img {
    width: auto;
    max-width: auto;
  }
}
@media (max-width: 1366px) {
  .certificates-slider__item {
    padding: 0 30px;
  }
  .certificates-slider__item img {
    width: 100%;
  }
  .certificates-slider__item h3 {
    font-size: 20px;
  }
  .certificates-slider__item p {
    min-height: 44px;
  }
}
@media (max-width: 1170px) {
  .certificates-slider {
    margin-bottom: 0;
    margin-top: 30px;
  }
  .certificates-slider__title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 24px;
  }
}

.arge__img {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.arge__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.arge__desc p {
  font-size: 21px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
  text-align: center;
}
.arge__title {
  text-align: center;
  color: #013B62;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
  margin-bottom: 48px;
}
.arge__list {
  margin-top: 130px;
}
@media (max-width: 1170px) {
  .arge__list {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .arge__title {
    font-size: 40px;
    line-height: 48px;
  }
}

.simple-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 200px;
  row-gap: 24px;
}
.simple-list__item {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
  gap: 16px;
  flex: 1;
  font-size: 24px;
  line-height: 64px;
  border-bottom: 2px solid #F0E9DB;
}
@media (max-width: 1366px) {
  .simple-list {
    column-gap: 100px;
  }
  .simple-list__item {
    font-size: 20px;
    line-height: 100%;
  }
}
@media (max-width: 991px) {
  .simple-list {
    column-gap: 50px;
  }
}
@media (max-width: 767px) {
  .simple-list {
    grid-template-columns: 1fr;
  }
}

.facility-detail {
  margin-bottom: 90px;
}
.facility-detail__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 24px;
}
.facility-detail__spot {
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}
.facility-detail__content {
  max-width: 80%;
}
.facility-detail__content p {
  color: #898989;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 24px;
}
@media (max-width: 1170px) {
  .facility-detail {
    margin-bottom: 50px;
  }
  .facility-detail__content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .facility-detail__title {
    font-size: 40px;
    line-height: 48px;
  }
  .facility-detail__spot {
    font-size: 20px;
    line-height: 28px;
  }
}

.facility-slider {
  overflow: hidden;
}
.facility-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.facility-slider__head h3 {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
}
.facility-slider__arrows {
  display: flex;
  gap: 16px;
}
.facility-slider__arrows a.js-prev {
  transform: rotate(180deg);
}
.facility-slider__arrows a.swiper-button-disabled {
  opacity: 0.5;
}
.facility-slider__pagination {
  position: relative;
  background: red;
}
.facility-slider__pagination .swiper-scrollbar-drag {
  background: #013B62 !important;
}
.facility-slider__slider {
  margin-bottom: 70px;
}
.facility-slider__item img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.facility-slider__item--companies img {
  max-width: 200px;
}
@media (max-width: 991px) {
  .facility-slider__head h3 {
    font-size: 40px;
    line-height: 64px;
  }
}
@media (max-width: 767px) {
  .facility-slider__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.breadcrumb li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0.7;
}
.breadcrumb li span {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 1;
}
@media (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}

.mobile-breadcrumb {
  display: none;
}
.mobile-breadcrumb a {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  transition: all 0.3s;
}
.mobile-breadcrumb a svg {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.mobile-breadcrumb a:hover {
  gap: 12px;
}
@media (max-width: 767px) {
  .mobile-breadcrumb {
    display: block;
  }
}

.cross-box {
  margin-bottom: 100px;
}
.cross-box__logo {
  max-width: 200px;
}
.cross-box__logo img {
  max-width: 100%;
}
.cross-box__slider {
  position: relative;
  overflow: hidden;
  max-width: 665px;
}
.cross-box__slider img {
  display: flex;
  border-radius: 12px;
}
.cross-box__item .button {
  margin-top: 100px;
}
.cross-box__wrapper {
  padding-left: 140px;
  padding-right: 140px;
  /*  padding-bottom: 110px;
  margin-bottom: 110px;*/
  padding-bottom: 80px;
  margin-bottom: 80px;
  border-bottom: 2px solid #F0E9DB;
}
.cross-box__wrapper--investor {
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.cross-box__wrapper--companies {
  border-bottom: none;
}
.cross-box__wrapper--companies img {
  border-radius: 0;
}
.cross-box__wrapper:last-child {
  border: none;
  padding-bottom: 0;
}
.cross-box__wrapper:nth-child(even) .cross-box__inner {
  flex-direction: row-reverse;
}
.cross-box__inner {
  display: flex;
  justify-content: space-between;
  gap: 130px;
}
.cross-box__inner--reverse {
  flex-direction: row-reverse;
}
.cross-box__inner--border {
  border: 1px solid #898989;
}
.cross-box__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 16px;
}
.cross-box__content {
  max-width: 580px;
  margin-top: 60px;
  width: 100%;
}
.cross-box__content--sustainability {
  flex-direction: column;
}
.cross-box__content--centered {
  display: flex;
  align-items: center;
}
.cross-box__content--padding-left {
  padding-left: 32px;
}
.cross-box__content--vertical-align {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin: 0;
}
.cross-box__content p {
  color: #454745;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 26px;
}
.cross-box__content p strong {
  font-weight: 500;
}
.cross-box__content p:last-child {
  margin: 0;
}
.cross-box__content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}
.cross-box__content ul {
  padding-left: 24px;
  list-style: disc;
  margin-bottom: 24px;
}
.cross-box__content ul li {
  color: #898989;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 16px;
}
.cross-box__content ul li:last-child {
  margin: 0;
}
.cross-box__actions {
  display: flex;
  gap: 40px;
}
.cross-box__actions .button {
  margin: 0 !important;
}
.cross-box__actions .button svg {
  transform: rotate(-45deg);
}
.cross-box__certificates {
  display: none;
  position: absolute;
  top: 30px;
  padding: 10px;
  background: #fff;
  box-shadow: -1px 3px 21px -1px rgba(0, 0, 0, 0.2);
  gap: 8px;
  border-radius: 12px;
  width: 100%;
}
.cross-box__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cross-box__icons-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cross-box__icons-list img {
  display: none;
}
.cross-box__icons-list img:nth-child(-n+3) {
  display: flex;
}
.cross-box__icons-show-btn {
  position: relative;
  display: flex;
  gap: 8px;
  height: 100%;
}
.cross-box__icons-show-btn a {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #013B62;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}
.cross-box__pagination {
  background: rgba(255, 255, 255, 0.15);
  height: 48px;
  border-radius: 8px;
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 255, 255, 0.15);
  height: 48px;
  border-radius: 8px;
  z-index: 999;
  left: 50%;
  padding-left: 24px;
  padding-right: 24px;
  transform: translateX(-50%);
  backdrop-filter: blur(30px);
}
.cross-box__pagination .swiper-pagination {
  width: auto;
  position: relative;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}
.cross-box__pagination .swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.cross-box__pagination .swiper-pagination-bullet .progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 8px;
  width: 0%;
  background-color: #fff;
}
.cross-box__pagination .swiper-pagination-bullet {
  position: relative;
  overflow: hidden;
  width: 8px;
  height: 8px;
  background: #D9D9D9;
}
.cross-box__pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  width: 0%;
  transition: none;
  z-index: 1;
}
.cross-box__pagination .swiper-pagination-bullet-active {
  width: 35px;
  border-radius: 24px;
}
@media (max-width: 1600px) {
  .cross-box__wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
  .cross-box__actions {
    gap: 25px;
  }
  .cross-box__content {
    max-width: 50%;
  }
  .cross-box__images {
    max-width: 50%;
    width: 100%;
  }
  .cross-box__images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 1366px) {
  .cross-box__wrapper {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
  .cross-box__inner {
    gap: 80px;
  }
  .cross-box__item .button {
    margin-top: 80px;
  }
  .cross-box__content {
    max-width: 100%;
  }
  .cross-box__images {
    max-width: 100%;
  }
  .cross-box__slider {
    max-width: 100%;
  }
  .cross-box__title {
    font-size: 38px;
    line-height: 130%;
  }
  .cross-box__actions {
    flex-direction: column;
  }
  .cross-box__certificates {
    top: 30px;
  }
}
@media (max-width: 1170px) {
  .cross-box__inner {
    gap: 70px;
  }
  .cross-box__inner > div {
    flex: 1;
    width: 50%;
  }
  .cross-box__images img {
    display: flex;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .cross-box__content {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .cross-box {
    margin-bottom: 60px;
  }
  .cross-box__wrapper:nth-child(even) .cross-box__inner {
    flex-direction: column-reverse;
  }
  .cross-box__wrapper:nth-child(even) .cross-box__inner--mobile-col {
    flex-direction: column;
  }
  .cross-box__inner {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .cross-box__inner--mobile-col {
    flex-direction: column;
  }
  .cross-box__inner > div {
    width: 100%;
  }
  .cross-box__inner--reverse {
    flex-direction: column;
  }
  .cross-box__item .button {
    margin-top: 16px;
  }
  .cross-box__content {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cross-box__slider img {
    border-radius: 0;
  }
  .cross-box__wrapper {
    padding: 0;
    border: none;
    margin-bottom: 64px;
  }
  .cross-box__wrapper:last-child {
    margin-bottom: 0;
  }
  .cross-box__inner > div {
    width: auto;
  }
  .cross-box__content {
    padding-left: 24px;
    padding-right: 24px;
    width: calc(100% - 48px);
  }
  .cross-box__content p {
    font-size: 18px;
    line-height: 28px;
  }
  .cross-box__title {
    font-size: 40px;
    line-height: 48px;
  }
}

.arge-card {
  height: 545px;
  margin-top: 80px;
  margin-bottom: 64px;
}
.arge-card .container {
  height: 100%;
}
.arge-card__wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.arge-card__img {
  display: flex;
  width: 100%;
  height: 100%;
}
.arge-card__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.arge-card__inner {
  position: absolute;
  background: #fff;
  padding: 40px;
  width: 445px;
  top: 32px;
  left: 30px;
  border-radius: 12px;
}
.arge-card__inner h3 {
  color: #013B62;
  font-size: 45px;
  font-weight: 500;
  line-height: 53px;
  margin-bottom: 24px;
}
.arge-card__inner p {
  color: #454745;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 88px;
}
@media (max-width: 767px) {
  .arge-card .container {
    padding: 0;
  }
  .arge-card__img img {
    border-radius: 0;
  }
  .arge-card__inner {
    left: 16px;
    width: calc(100% - 112px);
  }
  .arge-card__inner h3 {
    font-size: 40px;
  }
}

.simple-colored-box__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.simple-colored-box__item {
  min-height: 250px;
  padding: 32px 32px 16px 16px;
  border: 1px solid #FBCF29;
  background: #FFFAEE;
  border-radius: 12px;
}
.simple-colored-box__item h3 {
  color: #013B62;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 32px;
}
.simple-colored-box__item p {
  color: #013B62;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 1366px) {
  .simple-colored-box__item {
    padding: 32px 16px;
  }
}
@media (max-width: 1170px) {
  .simple-colored-box__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .simple-colored-box__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .simple-colored-box__item {
    padding: 32px 40px 16px 16px;
  }
}

.download-links {
  margin: 48px 0;
  /*  &__wrapper {
      width: 100%;
  }*/
}
.download-links__list {
  padding: 0 !important;
  list-style: none !important;
}
.download-links__title {
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  color: #013B62;
  margin-bottom: 24px;
}
.download-links__item {
  border-bottom: 1px solid #F0E9DB;
  margin-bottom: 16px;
  padding: 20px 0;
  list-style: none;
}
.download-links__item:first-child {
  border-top: 1px solid #F0E9DB;
}
.download-links__item a {
  display: flex;
  justify-content: space-between;
  color: #013B62;
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
}
.download-links__item a svg {
  min-width: 24px;
}
@media (max-width: 767px) {
  .download-links {
    margin: 24px 0;
  }
  .download-links__wrapper {
    padding: 0 24px;
  }
}

.our-values__img {
  width: 100%;
  position: relative;
  margin-bottom: 64px;
}
.our-values__img img {
  width: 100%;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.our-values__img-title {
  position: absolute;
  bottom: 50px;
}
.our-values__img-title h3 {
  color: #fff;
  font-size: 48px;
  line-height: 100%;
  font-weight: 600;
}
@media (max-width: 991px) {
  .our-values__img {
    height: 420px;
    overflow: hidden;
  }
  .our-values__img img {
    height: 100%;
    display: flex;
    object-fit: cover;
  }
  .our-values__img:before {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0.62) 0%, rgba(2, 175, 204, 0) 56%);
  }
  .our-values__img-title h3 {
    font-size: 40px;
  }
}

.facilities-slider {
  margin-bottom: 80px;
}
.facilities-slider__slider {
  overflow: hidden;
  margin-bottom: 64px;
}
.facilities-slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.facilities-slider__head h3 {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
}
.facilities-slider__arrows {
  display: flex;
  gap: 16px;
}
.facilities-slider__arrows .js-prev {
  transform: rotate(180deg);
}
.facilities-slider__item img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 16px;
  border-radius: 12px;
}
.facilities-slider__pagination {
  position: relative;
  width: 100%;
  height: 2px;
}
.facilities-slider__pagination .swiper-scrollbar {
  background: rgba(149, 139, 114, 0.2);
}
.facilities-slider__pagination .swiper-scrollbar-drag {
  background: #013B62;
}
.facilities-slider__pagination .swiper-pagination-progressbar {
  background: rgba(149, 139, 114, 0.2);
}
.facilities-slider__pagination .swiper-pagination-progressbar-fill {
  background: #013B62;
}
@media (max-width: 1366px) {
  .facilities-slider {
    margin-bottom: 0;
  }
  .facilities-slider__slider {
    margin-bottom: 26px;
  }
}

.page-with-nav {
  padding-top: 64px;
  padding-bottom: 120px;
}
.page-with-nav__inner {
  display: flex;
  gap: 40px;
}
.page-with-nav__nav {
  max-width: 316px;
  width: 100%;
}
.page-with-nav__content {
  width: calc(100% - 316px);
}
@media (max-width: 991px) {
  .page-with-nav {
    padding-bottom: 64px;
  }
  .page-with-nav__inner {
    flex-direction: column;
  }
  .page-with-nav__nav {
    max-width: 100%;
  }
  .page-with-nav__content {
    width: 100%;
  }
}

.side-nav__item {
  margin-bottom: 20px;
  border-bottom: 1px solid #013B62;
}
.side-nav__link {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #013B62;
  padding-bottom: 20px;
}
.side-nav__link.active {
  font-weight: 700;
}
.side-nav__link.active span:before {
  transform: rotate(90deg);
}
.side-nav__link span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}
.side-nav__link span:before {
  content: "";
  width: 2px;
  height: 16px;
  background: #013B62;
  border-radius: 4px;
  transition: all 0.3s;
}
.side-nav__link span:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 16px;
  height: 2px;
  background: #013B62;
  border-radius: 4px;
}
.side-nav__sub {
  display: none;
  margin-top: 20px;
  max-width: 270px;
}
.side-nav__sub-item {
  margin-bottom: 12px;
}
.side-nav__sub-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 12px;
  color: #013B62;
}
.side-nav__sub-link.active {
  font-weight: 600;
}

.page-article h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
}
.page-article p {
  font-size: 20px;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 26px;
}
.page-article a {
  color: initial;
  text-decoration: underline;
}
.page-article ul {
  list-style: disc;
  margin-bottom: 26px;
  padding-left: 20px;
}
.page-article ul li {
  font-size: 20px;
  font-weight: 400;
  line-height: 135%;
  margin-bottom: 8px;
}
.page-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border-radius: 8px;
}
.page-article table thead {
  background: #F5F5F5;
}
.page-article table th, .page-article table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.page-article table th {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  letter-spacing: 0.2px;
}
.page-article table tr:nth-child(even) {
  background: #FAFAFA;
}
.page-article table strong {
  font-weight: 600;
}

.contact-section {
  padding: 0 50px;
  margin-bottom: 100px;
}
.contact-section__head {
  margin-bottom: 48px;
}
.contact-section__title {
  color: #013B62;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .contact-section {
    padding: 0 24px;
    margin-bottom: 64px;
  }
}
@media (max-width: 767px) {
  .contact-section {
    padding: 0;
  }
  .contact-section__head {
    padding: 0 24px;
    margin-bottom: 24px;
  }
  .contact-section__title {
    font-size: 40px;
  }
}

.accordion__head-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 32px;
  color: #013B62;
}
.accordion__item {
  margin-bottom: 24px;
  border-bottom: 1px solid #013B62;
}
.accordion__item:first-child {
  border-top: 1px solid #013B62;
}
.accordion__item.active .accordion__title svg {
  transform: rotate(180deg);
}
.accordion__head {
  padding: 24px 0;
}
.accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #013B62;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  cursor: pointer;
}
.accordion__title svg {
  transition: all 0.3s;
}
.accordion__content {
  display: none;
  padding-bottom: 24px;
}
.accordion__content p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 145%;
}

.address-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.address-card__item {
  display: flex;
  align-items: center;
  gap: 48px;
}
.address-card__img {
  flex: 1;
  max-width: 775px;
}
.address-card__img--lg {
  height: 100%;
}
.address-card__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.address-card__content {
  flex: 1;
}
.address-card__content h4 {
  font-size: 16px;
  color: #013B62;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 130%;
}
.address-card__content h3 {
  font-size: 36px;
  color: #013B62;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 48px;
}
.address-card__inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 24px;
}
.address-card__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.address-card__links a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #013B62;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 1170px) {
  .address-card__list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 991px) {
  .address-card__list {
    grid-template-columns: 1fr;
  }
  .address-card__item {
    gap: 16px;
  }
  .address-card__img {
    flex: 1.5;
  }
  .address-card__action {
    display: flex;
  }
}
@media (max-width: 767px) {
  .address-card__item {
    flex-direction: column;
  }
  .address-card__img img {
    border-radius: 0;
  }
  .address-card__content {
    padding: 0 16px;
  }
}

.tab__head {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab__head-wrapper {
  display: inline-flex;
  gap: 10px;
  border-bottom: 1px solid #013B62;
  margin-bottom: 40px;
}
.tab__head-wrapper a {
  display: flex;
  color: rgba(1, 59, 98, 0.3);
  padding: 8px;
  transition: all 0.3s;
}
.tab__head-wrapper a.active {
  color: #013B62;
  border-bottom: 1px solid #013B62;
}
.tab__content {
  display: none;
}
.tab__content.active {
  display: block;
}
@media (max-width: 767px) {
  .tab__head-wrapper {
    display: flex;
    width: 100%;
  }
  .tab__head-wrapper a {
    flex: 1;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}

.info-card__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.info-card__item {
  border: 1px solid #013B62;
  padding: 12.5px 24px;
}
.info-card__item h4 {
  color: #013B62;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 16px;
}
.info-card__item h3 {
  color: #013B62;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 24px;
}
.info-card__inner {
  margin-bottom: 24px;
  min-height: 60px;
}
.info-card__inner p {
  color: #013B62;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
.info-card__links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.info-card__links a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #013B62;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 1170px) {
  .info-card__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .info-card__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-card__action {
    display: flex;
  }
}
@media (max-width: 767px) {
  .info-card__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.contact-area {
  padding: 40px 0;
  background: #013B62;
}
.contact-area__title {
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
}

.form__row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.form__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.form__item--button {
  align-items: flex-end;
}
.form__item label {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
}
.form__item input {
  font-family: "Jost", sans-serif;
  height: 48px;
  outline: none;
  color: #013B62;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  padding: 0 10px;
  border-radius: 2px;
  border: 1px solid transparent;
}
.form__item textarea {
  font-family: "Jost", sans-serif;
  border-radius: 2px;
  padding: 10px;
  height: 195px;
  outline: none;
  color: #013B62;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  border: 1px solid transparent;
  resize: none;
}
.form__item button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 55px;
  background: #9DE471;
  color: #013B62;
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.form__item button:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.form__item .choices {
  width: 100%;
  height: 48px;
  z-index: 3;
}
.form__item .choices__inner {
  display: flex;
  align-items: center;
  padding: 0 !important;
  border: 0 !important;
  height: 100%;
}
.form__item .choices__list {
  padding: 0 !important;
}
.form__item .choices__placeholder {
  height: 100%;
}
.form__item .choices__item {
  padding: 0 10px !important;
  font-size: 16px !important;
}
.form__item .choices__item--choice {
  padding: 10px 14px !important;
}
.form__item .iti input {
  width: 100%;
}
.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form__privacy input[type=checkbox] {
  opacity: 0;
  left: 0;
  position: absolute;
}
.form__privacy label {
  font-size: 13px;
  line-height: 140%;
  color: #fff;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}
.form__privacy label.form-error {
  color: #DF2228;
}
.form__privacy label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 13px;
  transform: translateY(-50%);
}
.form__privacy label a {
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
}
.form__privacy input[type=checkbox]:checked + label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  position: absolute;
  left: 5px;
  top: 13px;
  transform: translateY(-50%);
}
.form__privacy input[type=checkbox]:checked + label::before {
  /*  border-color: #7ECFDA;
  background-color: #7ECFDA;*/
}
@media (max-width: 767px) {
  .form__row {
    flex-direction: column;
  }
  .form__item--button button {
    width: 100%;
  }
}

.form-error {
  border-color: red !important;
}

.career-development {
  overflow: hidden;
}
.career-development__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.career-development__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
}
.career-development__arrows {
  display: flex;
  gap: 16px;
}
.career-development__arrows .js-prev {
  transform: rotate(180deg);
}
.career-development__slider {
  overflow: hidden;
  margin-bottom: 64px;
}
.career-development__item {
  display: flex;
  justify-content: space-between;
  gap: 130px;
}
.career-development__item h3 {
  color: #013B62;
  font-size: 36px;
  line-height: 64px;
  font-weight: 600;
  margin-bottom: 16px;
}
.career-development__item p {
  color: #454745;
  font-size: 21px;
  margin-bottom: 26px;
  font-weight: 400;
  line-height: 140%;
}
.career-development__item p:last-child {
  margin-bottom: 0;
}
.career-development__img img {
  border-radius: 12px;
}
.career-development__content {
  max-width: 580px;
  margin-top: 60px;
  width: 100%;
}
.career-development__pagination {
  position: relative;
  width: 100%;
  height: 2px;
}
.career-development__pagination .swiper-scrollbar {
  background: rgba(149, 139, 114, 0.2);
}
.career-development__pagination .swiper-scrollbar-drag {
  background: #013B62;
}
.career-development__pagination .swiper-pagination-progressbar {
  background: rgba(149, 139, 114, 0.2);
}
.career-development__pagination .swiper-pagination-progressbar-fill {
  background: #013B62;
}
.career-development__mobile-nav {
  display: none;
}
.career-development__mobile-nav .js-prev {
  transform: rotate(180deg);
}
.career-development__mobile-pagination {
  position: relative;
}
@media (max-width: 1366px) {
  .career-development__title {
    font-size: 38px;
    line-height: 130%;
  }
}
@media (max-width: 1170px) {
  .career-development__content {
    flex: 1;
    width: 50%;
  }
  .career-development__img {
    flex: 1;
    width: 50%;
  }
  .career-development__img img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .career-development__head {
    margin-bottom: 26px;
  }
  .career-development__title {
    font-size: 40px;
    line-height: 48px;
  }
  .career-development__arrows {
    display: none;
  }
  .career-development__item {
    flex-direction: column-reverse;
    gap: 24px;
  }
  .career-development__content {
    width: 100%;
    margin: 0;
  }
  .career-development__img {
    width: 100%;
  }
  .career-development__pagination {
    display: none;
    width: 50px;
  }
  .career-development__mobile-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
  .career-development__mobile-pagination {
    margin: 0 16px;
  }
  .career-development__mobile-pagination .swiper-pagination-fraction {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #013B62;
    font-size: 24px;
    font-weight: 400;
  }
}

.departments {
  padding: 96px 0;
  background: #FAF2D5;
}
.departments__head {
  margin-bottom: 96px;
  padding: 0 30px;
}
.departments__title {
  color: #013B62;
  font-size: 45px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 40px;
}
.departments__desc {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
}
.departments__list {
  margin-bottom: 70px;
}
@media (max-width: 1170px) {
  .departments {
    padding: 48px 0;
  }
  .departments__head {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .departments__head {
    padding: 0;
  }
  .departments__list {
    margin-bottom: 24px;
  }
}

.simple-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 70px;
}
.simple-box.is-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 96px;
}
.simple-box.is-2 .simple-box__item {
  width: 100%;
}
.simple-box__inner {
  display: flex;
  gap: 8px;
}
.simple-box__inner span {
  font-size: 32px;
  color: #013B62;
  font-weight: 400;
  line-height: 100%;
}
.simple-box__item {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid #013B62;
}
.simple-box__item--with-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.simple-box__item p {
  color: #013B62;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.simple-box__item:hover .simple-box__icon {
  transform: rotate(0);
}
.simple-box__title {
  color: #013B62;
  font-size: 20px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 8px;
}
.simple-box__icon {
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
}
@media (max-width: 1170px) {
  .simple-box__item {
    /*padding: 32px 24px;*/
  }
}
@media (max-width: 767px) {
  .simple-box {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 24px;
  }
  .simple-box.is-2 {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.positions__title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 100%;
  color: #013B62;
  margin-bottom: 32px;
}

.employee-stories__slider-wrapper {
  overflow: hidden;
  margin-bottom: 120px;
}
.employee-stories__title {
  color: #013B62;
  font-size: 36px;
  font-weight: 600;
  line-height: 43px;
  margin-bottom: 32px;
}
.employee-stories__arrows {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
.employee-stories__arrows a.js-prev {
  transform: rotate(180deg);
}
.employee-stories__slider .swiper-wrapper {
  align-items: flex-end;
}
.employee-stories__slider .swiper-slide {
  transform: scale(0.7);
  transition: all 0.3s;
}
.employee-stories__slider .swiper-slide .employee-stories__slider-title {
  font-size: 24px;
}
.employee-stories__slider .swiper-slide .employee-stories__slider-content p {
  display: none;
}
.employee-stories__slider .swiper-slide-active {
  transform: scale(1);
}
.employee-stories__slider .swiper-slide-active .employee-stories__slider-title {
  font-size: 53px;
  margin-bottom: 23px;
  line-height: 68px;
}
.employee-stories__slider .swiper-slide-active .employee-stories__slider-content p {
  display: block;
}
.employee-stories__slider-img {
  position: relative;
}
.employee-stories__slider-content {
  margin-bottom: 32px;
}
.employee-stories__slider-content p {
  color: #013B62;
  font-size: 21px;
  font-weight: 400;
}
.employee-stories__slider-title {
  color: #013B62;
  line-height: 100%;
  font-weight: 600;
}
.employee-stories__slider-img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.employee-stories__play-icon {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
}
.employee-stories__arrows-mobile {
  display: none;
  margin-top: 40px;
  gap: 16px;
}
.employee-stories__arrows-mobile a.js-prev {
  transform: rotate(180deg);
}
@media (max-width: 1366px) {
  .employee-stories {
    margin-bottom: 60px;
  }
  .employee-stories__slider .swiper-slide-active .employee-stories__slider-title {
    font-size: 32px;
    line-height: 47px;
    margin-bottom: 16px;
  }
  .employee-stories__slider-content {
    margin-bottom: 26px;
  }
}
@media (max-width: 767px) {
  .employee-stories__arrows {
    display: none;
  }
  .employee-stories__arrows-mobile {
    display: flex;
    justify-content: center;
  }
  .employee-stories__slider-content {
    padding: 0 15px;
  }
  .employee-stories__slider .swiper-slide-active .employee-stories__slider-title {
    font-size: 40px;
    line-height: 48px;
  }
  .employee-stories__slider-img img {
    border-radius: 0;
  }
}

.basic-text {
  /*max-width: 990px;*/
}
.basic-text__item {
  margin-bottom: 48px;
}
.basic-text__item--has-img {
  display: flex;
  justify-content: space-between;
  gap: 130px;
}
.basic-text__title {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 40px;
}
.basic-text__title--sm {
  font-size: 36px;
}
.basic-text__content p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 24px;
}
.basic-text__content p:last-child {
  margin: 0;
}
.basic-text__sub-item {
  padding-left: 70px;
  margin-top: 24px;
}
@media (max-width: 1170px) {
  .basic-text__item {
    margin-bottom: 24px;
  }
  .basic-text__sub-item {
    padding-left: 35px;
  }
  .basic-text__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .basic-text__sub-item {
    padding: 0;
  }
}

.press-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  gap: 20px;
  margin-bottom: 96px;
  padding-left: 50px;
  padding-right: 50px;
}
.press-list--detail {
  padding-left: 0;
  padding-right: 0;
}
.press-list__item img {
  display: flex;
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 16px;
}
.press-list__content iframe {
  width: 100%;
}
.press-list__date {
  min-height: 16px;
  color: #9BA1AD;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}
.press-list__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 22px;
  min-height: 52px;
}
.press-list__link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(37, 40, 45, 0.5);
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s;
}
.press-list__link:hover {
  gap: 24px;
}
@media (max-width: 1440px) {
  .press-list__item img {
    height: 254px;
  }
}
@media (max-width: 991px) {
  .press-list {
    padding-left: 24px;
    padding-right: 24px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .press-list {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: repeat(1, 1fr);
    gap: 54px;
  }
  .press-list__content {
    padding: 0 16px;
  }
  .press-list__title {
    min-height: auto;
  }
}

.news-detail__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.news-detail__info {
  color: #9BA1AD;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.news-detail__spot {
  color: #013B62;
  max-width: 80%;
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 32px;
}
.news-detail__content img {
  display: flex;
  width: 100%;
  max-height: 600px;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 96px;
}
.news-detail__title {
  color: #013B62;
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  margin-bottom: 24px;
}
.news-detail__article p {
  color: #013B62;
  max-width: 80%;
  font-size: 20px;
  line-height: 140%;
  font-weight: 400;
  margin-bottom: 24px;
}
.news-detail__video iframe {
  width: 100%;
  height: 80vh;
}
@media (max-width: 1366px) {
  .news-detail__content img {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .news-detail .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .news-detail__top {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .news-detail__spot {
    max-width: 100%;
  }
  .news-detail__content img {
    height: 255px;
  }
  .news-detail__article p {
    font-size: 18px;
    max-width: 100%;
  }
}

.page-share {
  display: flex;
  gap: 34px;
}
.page-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.page-share a:hover {
  opacity: 0.7;
}

.mobile-hash-nav {
  background: #013B62;
  padding: 32px 24px 24px 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: sticky;
  z-index: 5;
  top: 110px;
  overflow: auto;
  display: none;
}
.mobile-hash-nav::-webkit-scrollbar {
  width: 4px;
}
.mobile-hash-nav::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.mobile-hash-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.mobile-hash-nav__inner {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: max-content;
}
.mobile-hash-nav a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 0.3s;
}
.mobile-hash-nav a.active {
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .mobile-hash-nav {
    display: block;
  }
}

.desktop-hash-nav {
  background: #06AEBC;
  padding: 32px 24px 24px 24px;
  z-index: 5;
  top: 110px;
  overflow: auto;
}
.desktop-hash-nav::-webkit-scrollbar {
  width: 4px;
}
.desktop-hash-nav::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}
.desktop-hash-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}
.desktop-hash-nav__inner {
  display: flex;
  gap: 50px;
  width: 100%;
}
.desktop-hash-nav a {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 8px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  transition: all 0.3s;
}
.desktop-hash-nav a.active {
  color: #fff;
}
@media (max-width: 1200px) {
  .desktop-hash-nav {
    position: sticky;
  }
  .desktop-hash-nav__inner {
    width: max-content;
  }
}
@media (max-width: 767px) {
  .desktop-hash-nav {
    display: block;
    position: sticky;
  }
}

.slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.slider-head--white h3 {
  color: #fff !important;
}
.slider-head--white .slider-head__arrows a.js-prev {
  transform: rotate(180deg);
}
.slider-head h3 {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
}
.slider-head__arrows {
  display: flex;
  gap: 16px;
}
.slider-head__arrows a.js-prev {
  transform: rotate(180deg);
}
.slider-head__arrows a.swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 767px) {
  .slider-head {
    align-items: flex-start;
    gap: 16px;
  }
}

.food-corporates-slider {
  overflow: hidden;
}
.food-corporates-slider__pagination {
  position: relative;
  background: red;
}
.food-corporates-slider__pagination .swiper-scrollbar-drag {
  background: #013B62 !important;
}
.food-corporates-slider__slider {
  margin-bottom: 70px;
}
.food-corporates-slider__item a svg {
  transform: rotate(-45deg);
}
.food-corporates-slider__item a:hover svg {
  transform: rotate(0);
}
.food-corporates-slider__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border: 1px solid #013B62;
  border-radius: 12px;
  margin-bottom: 16px;
}
.food-corporates-slider__img img {
  display: flex;
  max-width: 200px;
  object-fit: contain;
}

.companies__title {
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  color: #013B62;
  margin-bottom: 32px;
}
.companies__list-item {
  display: flex;
  border: 1px solid #9F9F9F;
  gap: 50px;
  margin-bottom: 40px;
}
.companies__list-item > div {
  width: 50%;
  display: flex;
  flex-direction: column;
}
.companies__img {
  justify-content: center;
  align-items: center;
}
.companies__img img {
  width: auto;
  height: 130px;
  object-fit: contain;
}
.companies__content {
  padding: 48px;
  align-items: flex-start;
  justify-content: center;
}
.companies__content-wrapper {
  margin-bottom: 100px;
  max-width: 80%;
}
.companies__content-title {
  color: #013B62;
  font-size: 36px;
  line-height: 43px;
  font-weight: 600;
  margin-bottom: 48px;
}
.companies__spot p {
  color: #898989;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 1440px) {
  .companies__content-wrapper {
    max-width: 90%;
  }
}
@media (max-width: 1200px) {
  .companies__list-item {
    gap: 32px;
  }
  .companies__content {
    padding: 32px;
  }
  .companies__img {
    padding: 0 30px;
  }
  .companies__img img {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .companies__list-item {
    flex-direction: column;
  }
  .companies__list-item > div {
    width: auto;
  }
  .companies__img {
    width: calc(100% - 60px);
    width: auto;
    height: 130px;
    padding: 30px 30px 0 30px;
  }
}
@media (max-width: 767px) {
  .companies .container {
    padding: 0;
  }
  .companies__title {
    font-size: 40px;
    line-height: 110%;
    padding: 0 32px;
  }
  .companies__content-wrapper {
    max-width: 100%;
    margin-bottom: 80px;
  }
  .companies__list-item {
    border: none;
    border-top: 1px solid #9F9F9F;
    margin: 0;
  }
}

.group-compaines-slider {
  padding-left: 140px;
  padding-right: 140px;
  margin-bottom: 130px;
}
.group-compaines-slider__slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.group-compaines-slider__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 56px;
  display: flex;
}
.group-compaines-slider__item {
  width: 100%;
  flex: 1;
}
.group-compaines-slider__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  border: 1px solid #013B62;
  border-radius: 12px;
  margin-bottom: 16px;
}
.group-compaines-slider__img img {
  /*height: 60px;*/
  height: 150px;
}
.group-compaines-slider__content {
  list-style: none !important;
}
.group-compaines-slider__list-item {
  position: relative;
}
.group-compaines-slider__list-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #013B62;
  /*font-size: 30px;*/
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 30px;
  line-height: 135%;
}
.group-compaines-slider__list-item a svg {
  min-width: 24px;
}
.group-compaines-slider__sublist {
  /*position: absolute;*/
  /* top: 100%;*/
  position: relative;
  top: 50%;
  width: calc(100% - 32px);
  left: 0;
  display: none;
  flex-direction: column;
  padding: 16px;
  box-shadow: 0px 0px 19px 0px rgba(0, 0, 0, 0.1);
}
.group-compaines-slider__sublist a {
  color: #013B62;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 12px;
  padding: 0;
}
.group-compaines-slider__pagination {
  position: relative;
}
.group-compaines-slider__pagination .swiper-scrollbar-drag {
  background: #013B62 !important;
}
@media (max-width: 1600px) {
  .group-compaines-slider {
    padding-left: 48px;
    padding-right: 48px;
  }
}
@media (max-width: 1440px) {
  .group-compaines-slider__img {
    padding: 0 22px;
  }
  .group-compaines-slider__img img {
    width: 100%;
    object-fit: contain;
  }
  .group-compaines-slider__list-item a {
    font-size: 26px;
  }
}
@media (max-width: 991px) {
  .group-compaines-slider {
    margin-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .group-compaines-slider__slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .group-compaines-slider__pagination {
    margin-top: 10px;
  }
  .group-compaines-slider__sublist {
    position: relative;
  }
}

.our-brands-section {
  margin-bottom: 150px;
}
.our-brands-section__inner {
  display: flex;
  justify-content: space-between;
  padding: 50px 60px 50px 60px;
  margin: 50px 0;
  /*background: #FFFAEE;*/
  background: #F6F7FB;
  gap: 50px;
}
.our-brands-section__logos {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-end;
}
.our-brands-section__content {
  max-width: 535px;
}
.our-brands-section__content img {
  margin-bottom: 30px;
}
.our-brands-section__content h3 {
  font-size: 32px;
  /*color: #DF4307;*/
  color: #013B62;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 24px;
  line-height: 150%;
}
.our-brands-section__content p {
  font-size: 20px;
  /*color: #DF4307;*/
  color: #454745;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 130%;
}
.our-brands-section__actions {
  /*display: flex;*/
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.our-brands-section__actions .button svg {
  transform: rotate(-45deg);
}
.our-brands-section__mobile-logo {
  display: none;
}
@media (max-width: 1366px) {
  .our-brands-section {
    margin-bottom: 75px;
  }
  .our-brands-section__image img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 1170px) {
  .our-brands-section__inner {
    flex-direction: column-reverse;
    padding: 24px 24px 24px 24px;
    gap: 0;
  }
  .our-brands-section__mobile-logo {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    order: 1;
    align-items: flex-end;
  }
  .our-brands-section__content {
    max-width: 100%;
    padding-right: 24px;
  }
  .our-brands-section__content img {
    display: none;
  }
}
@media (max-width: 767px) {
  .our-brands-section__inner {
    margin: 24px 0;
  }
  .our-brands-section__actions {
    display: flex;
    flex-direction: column;
  }
  .our-brands-section__actions a {
    display: flex;
  }
  .our-brands-section__image {
    margin-bottom: 20px;
  }
  .our-brands-section__content h3 {
    line-height: 120%;
  }
  .our-brands-section .container {
    padding: 0;
  }
  .our-brands-section .page__title {
    padding: 0 24px;
  }
}

.food-products-slider {
  overflow: hidden;
  margin-bottom: 200px;
}
.food-products-slider__pagination {
  position: relative;
  background: red;
}
.food-products-slider__pagination .swiper-scrollbar-drag {
  background: #013B62 !important;
}
.food-products-slider__slider {
  margin-bottom: 70px;
}
.food-products-slider__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.food-products-slider__img {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 16px;
}
.food-products-slider__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
@media (max-width: 1366px) {
  .food-products-slider {
    margin-bottom: 75px;
  }
}

.hasata__picture {
  display: flex;
  width: 100%;
  height: 100%;
  margin-bottom: 28px;
}
.hasata__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hasata__content {
  margin-bottom: 64px;
  max-width: 1200px;
}
.hasata__content p {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 125%;
  margin-bottom: 20px;
}
.hasata__title {
  color: #000;
  font-size: 48px;
  font-weight: 500;
  line-height: 100%;
  margin-bottom: 24px;
}
.hasata__sub-title {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  margin-bottom: 24px;
}
.hasata__icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 50px;
  margin-bottom: 140px;
}
.hasata__icons-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
.hasata__icons-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hasata__icons-item img {
  margin-bottom: 16px;
}
.hasata__icons-item p {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
@media (max-width: 1170px) {
  .hasata__icons-list {
    gap: 10px;
  }
  .hasata__icons-item p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .hasata__icons {
    padding: 0 24px;
  }
}
@media (max-width: 767px) {
  .hasata__icons-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 64px;
  }
}

.sustainability-slider-area {
  background: #013B62;
  padding: 96px 0;
  margin-bottom: 100px;
}
.sustainability-slider-area__slider {
  overflow: hidden;
  margin-bottom: 50px;
}
.sustainability-slider-area__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.sustainability-slider-area__item h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 500;
  line-height: 100%;
}
.sustainability-slider-area__item p {
  color: #fff;
  font-size: 21px;
  font-weight: 400;
  line-height: 100%;
}
.sustainability-slider-area__pagination {
  position: relative;
  background: red;
}
.sustainability-slider-area__pagination .swiper-scrollbar-drag {
  background: #fff !important;
}
@media (max-width: 1600px) {
  .sustainability-slider-area {
    padding: 40px 0;
  }
}

.uncompact {
  margin: 64px 0;
}
.uncompact__wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
}
.uncompact__title {
  font-size: 45px;
  font-weight: 600;
  line-height: 100%;
  color: #013B62;
  margin-bottom: 48px;
}
.uncompact__content p {
  color: #000000;
  font-size: 32px;
  line-height: 140%;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .uncompact__title {
    text-align: center;
  }
  .uncompact__wrapper {
    flex-direction: column;
  }
  .uncompact__content p {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .uncompact__title {
    font-size: 40px;
    margin-bottom: 0;
  }
  .uncompact__wrapper {
    gap: 0;
  }
  .uncompact__content p {
    font-size: 24px;
  }
}

.journey__head {
  margin-bottom: 40px;
}
.journey__title {
  color: #013B62;
  font-size: 48px;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 14px;
}
.journey__desc {
  max-width: 700px;
}
.journey__desc p {
  font-size: 21px;
  color: #454745;
  font-weight: 400;
  line-height: 28px;
}

.journey-slider {
  position: relative;
}
.journey-slider__inner {
  position: relative;
}
.journey-slider__arrows {
  position: absolute;
  top: 45px;
  right: 40px;
  z-index: 3;
}
.journey-slider__slider {
  border-radius: 12px;
  max-height: 700px;
  height: 100%;
}
.journey-slider__slider img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-slider__content {
  position: absolute;
  top: 65px;
  left: 40px;
}
.journey-slider__content h3 {
  color: #fff;
  font-size: 90px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
.journey-slider__content h3 span {
  display: flex;
  font-size: 52px;
}
.journey-slider__content p {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.journey-slider__content ul li {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
}
.journey-slider__timeline-wrapper {
  position: relative;
  margin-left: auto;
  width: calc(100% - 100px);
  bottom: 60px;
}
.journey-slider__timeline {
  display: flex;
  width: 100%;
  margin-top: 20px;
  position: relative;
  bottom: 50px;
}
.journey-slider__timeline:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background: #fff;
  z-index: 1;
  transition: width 0.02s linear;
}
.journey-slider__timeline a {
  flex: 1;
  position: relative;
  text-align: left;
  color: #fff;
  text-decoration: none;
  padding-left: 30px;
  z-index: 3;
}
.journey-slider__timeline a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #fff;
  z-index: 2;
}
.journey-slider__timeline a.active {
  color: #9DE471;
}
.journey-slider__timeline a.active:before {
  background: #9DE471;
  border-color: #9DE471;
}
.journey-slider__timeline a.active:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--progress, 0%);
  height: 4px;
  background: #9DE471;
  z-index: 1;
  transition: width 0.02s linear;
}
.journey-slider__timeline a span {
  position: relative;
  bottom: calc(-100% - 10px);
  left: -60px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  z-index: 3;
}
@media (max-width: 1660px) {
  .journey-slider__timeline-wrapper {
    width: calc(100% - 60px);
  }
  .journey-slider__timeline a span {
    font-size: 26px;
  }
}
@media (max-width: 1200px) {
  .journey-slider__content {
    top: 100px;
  }
  .journey-slider__content h3 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .journey-slider {
    height: 710px;
  }
  .journey-slider .container {
    height: 100%;
    padding: 0;
  }
  .journey-slider__inner {
    height: 100%;
  }
  .journey-slider__slider {
    height: 100%;
  }
  .journey-slider__arrows {
    right: 14px;
  }
  .journey-slider__item {
    height: 100%;
  }
  .journey-slider__content {
    left: 24px;
  }
  .journey-slider__timeline-wrapper {
    width: calc(100% - 24px);
    bottom: 100px;
    overflow: scroll;
    height: 100px;
  }
  .journey-slider__timeline {
    bottom: initial;
    width: 300%;
  }
  .journey-slider__timeline a {
    width: 300px;
  }
  .journey-slider__timeline a span {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .journey-slider {
    height: calc(100vh - 110px);
  }
  .journey-slider__timeline a span {
    left: -30px;
  }
  .journey-slider__slider img {
    object-position: right;
  }
  .journey-slider__content h3 {
    font-size: 60px;
  }
  .journey-slider__content h3 span {
    font-size: 36px;
  }
}

.label {
  display: inline-flex;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #000;
  padding: 4px;
  margin-bottom: 16px;
}

.related-news__title {
  color: #013B62;
  font-size: 45px;
  font-weight: 600;
  line-height: 64px;
  margin-bottom: 56px;
}
@media (max-width: 1170px) {
  .related-news__title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 24px;
  }
}

.organization h4 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 100%;
  color: #545454;
}
@media (max-width: 600px) {
  .organization h4 {
    font-size: 15px;
  }
}
.organization span {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 18px;
  color: #545454;
}
.organization__wrapper h2 {
  font-weight: 700;
  font-size: 20px;
  color: #545454;
  letter-spacing: 0;
  text-align: center;
  line-height: 100%;
}
.organization__tab {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 25px;
  margin-bottom: 109px;
}
@media (max-width: 600px) {
  .organization__tab {
    flex-direction: column;
  }
}
.organization__tab-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #545454;
  font-family: "Jost";
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
  background-color: #ECECEC;
  padding: 32px 0;
  cursor: pointer;
}
.organization__tab-button.js-active {
  background-color: #0D497A;
  color: #FFFFFF;
}
.organization__manager-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  position: relative;
}
.organization__manager-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.organization__manager-wrapper h2 {
  margin-bottom: 24px;
}
.organization__manager-wrapper-item-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  border: 1px solid #898989;
  padding: 16px 17px;
  gap: 13.5px;
  height: max-content;
  background: #fff;
}
@media (max-width: 821px) {
  .organization__manager-wrapper-item-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .organization__manager-wrapper-item-group {
    gap: 11px;
    padding: 15px 10px 25px 10px;
  }
}
.organization__manager-wrapper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: max-content;
  gap: 18px;
  height: max-content;
}
.organization__manager-wrapper-item img {
  display: flex;
  max-width: 161px;
  height: auto;
  object-fit: cover;
}
.organization__manager-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.organization__manager-name span {
  text-align: center;
}
.organization__execution-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.organization__execution-name span {
  text-align: center;
  min-height: 72px;
}
.organization__risk-committee-wrapper-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 44px;
  height: max-content;
}
@media (max-width: 1024px) {
  .organization__risk-committee-wrapper-group {
    position: absolute;
    bottom: 59px;
    right: 224px;
    padding-top: 0;
  }
}
@media (max-width: 821px) {
  .organization__risk-committee-wrapper-group {
    right: 211px;
  }
}
@media (max-width: 768px) {
  .organization__risk-committee-wrapper-group {
    right: 184px;
  }
}
@media (max-width: 430px) {
  .organization__risk-committee-wrapper-group {
    right: 23px;
    bottom: 75px;
  }
}
@media (max-width: 390px) {
  .organization__risk-committee-wrapper-group {
    right: 0;
  }
}
.organization__risk-committee-wrapper-item {
  display: flex;
  gap: 18px;
  max-width: max-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7E7E7E;
  padding: 12px 26.5px 16px 26.5px;
}
.organization__risk-committee-wrapper-item img {
  display: flex;
  max-width: 118px;
  height: auto;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .organization__risk-committee-wrapper-item {
    width: 100%;
    max-width: 155px;
    box-sizing: border-box;
  }
}
.organization__risk-committee-title {
  border: 1px solid #7E7E7E;
  padding: 17px 0 10px 0;
  width: 100%;
  background: #fff;
}
.organization__risk-committee-title p {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #545454;
  line-height: 130%;
}
@media (max-width: 600px) {
  .organization__risk-committee-title {
    width: 162px;
    text-align: center;
    padding: 6px 0;
  }
}
.organization__vertical-border {
  display: flex;
  height: 108px;
  width: 1px;
  margin: auto;
  background-color: #898989;
}
@media (max-width: 1024px) {
  .organization__vertical-border {
    height: 486px;
  }
}
@media (max-width: 600px) {
  .organization__vertical-border {
    position: relative;
    right: 17%;
  }
}
@media (max-width: 600px) {
  .organization__vertical-border {
    position: relative;
    right: 10%;
  }
}
.organization__vertical-border-large {
  display: flex;
  height: 70%;
  position: absolute;
  top: 151px;
  width: 1px;
  margin: auto;
  background-color: #898989;
  z-index: -1;
}
@media (max-width: 1024px) {
  .organization__vertical-border-large {
    right: 302px;
  }
}
@media (max-width: 821px) {
  .organization__vertical-border-large {
    right: 164px;
  }
}
@media (max-width: 768px) {
  .organization__vertical-border-large {
    right: 152px;
  }
}
@media (max-width: 600px) {
  .organization__vertical-border-large {
    right: 5%;
  }
}
.organization__vertical-border-large-mobile {
  display: none;
  height: 70%;
  position: absolute;
  top: 151px;
  width: 1px;
  margin: auto;
  background-color: #898989;
  z-index: -1;
}
@media (max-width: 1024px) {
  .organization__vertical-border-large-mobile {
    display: flex;
    right: 92px;
  }
}
.organization__vertical-border-large-second {
  display: none;
  height: 1281px;
  position: absolute;
  top: 173px;
  width: 1px;
  margin: auto;
  background-color: #898989;
  z-index: -1;
  right: 320px;
}
@media (max-width: 1024px) {
  .organization__vertical-border-large-second {
    display: flex;
  }
}
@media (max-width: 821px) {
  .organization__vertical-border-large-second {
    right: 190px;
  }
}
@media (max-width: 768px) {
  .organization__vertical-border-large-second {
    right: 178px;
  }
}
@media (max-width: 600px) {
  .organization__vertical-border-large-second {
    right: 10%;
    height: 1274px;
  }
}
.organization__vertical-border-s {
  display: flex;
  height: 80px;
  width: 1px;
  margin: auto;
  background-color: #898989;
  position: relative;
}
@media (max-width: 430px) {
  .organization__vertical-border-s {
    margin: inherit;
    left: 29%;
  }
}
@media (max-width: 414px) {
  .organization__vertical-border-s {
    left: 31%;
  }
}
@media (max-width: 376px) {
  .organization__vertical-border-s {
    left: 34%;
  }
}
.organization__vertical-border-ms {
  position: absolute;
  bottom: 33px;
  display: flex;
  height: 85px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
}
@media (max-width: 1024px) {
  .organization__vertical-border-ms {
    display: none;
  }
}
.organization__vertical-border-xs {
  display: flex;
  height: 51px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
}
.organization__vertical-border-xs-invest {
  display: none;
  height: 44px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
  position: absolute;
  bottom: 489px;
}
@media (max-width: 1024px) {
  .organization__vertical-border-xs-invest {
    display: flex;
  }
}
.organization__vertical-border-xs-mobile {
  display: none;
  height: 51px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
}
@media (max-width: 1024px) {
  .organization__vertical-border-xs-mobile {
    display: flex;
  }
}
.organization__vertical-border-m-mobile {
  display: none;
  height: 101px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
  bottom: 70px;
  right: 36px;
  position: absolute;
}
@media (max-width: 1024px) {
  .organization__vertical-border-m-mobile {
    display: flex;
  }
}
.organization__vertical-border-xl-mobile {
  display: none;
  height: 474px;
  width: 1px;
  margin: 0 auto;
  background-color: #898989;
  bottom: 116px;
  left: 34%;
}
@media (max-width: 1024px) {
  .organization__vertical-border-xl-mobile {
    display: flex;
    position: absolute;
    left: 37.5%;
    height: 473px;
    bottom: 120px;
  }
}
@media (max-width: 821px) {
  .organization__vertical-border-xl-mobile {
    left: 269px;
  }
}
@media (max-width: 768px) {
  .organization__vertical-border-xl-mobile {
    left: 251px;
  }
}
@media (max-width: 600px) {
  .organization__vertical-border-xl-mobile {
    left: 5%;
  }
}
.organization__vertical-border-sm {
  display: flex;
  height: 262px;
  width: 1px;
  margin: auto;
  background-color: #898989;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .organization__vertical-border-sm {
    display: none;
  }
}
.organization__vertical-border-m {
  display: flex;
  height: 532px;
  width: 1px;
  margin: auto;
  background-color: #898989;
}
.organization__vertical-border-general {
  display: flex;
  height: 78px;
  width: 1px;
  margin: auto;
  background-color: #898989;
}
.organization__vertical-border-general-s {
  display: flex;
  height: 42px;
  width: 1px;
  margin: auto;
  background-color: #898989;
}
@media (max-width: 1024px) {
  .organization__vertical-border-general-s {
    display: none;
  }
}
.organization__horizontal-border {
  width: 55%;
  position: absolute;
  top: 151px;
  /*right: 13.5%;*/
  right: 18.8%;
  background: #898989;
  height: 1px;
  z-index: -1;
}
@media (max-width: 1366px) {
  .organization__horizontal-border {
    right: 13%;
  }
}
@media (max-width: 1024px) {
  .organization__horizontal-border {
    width: 20%;
    right: 30.5%;
  }
}
@media (max-width: 821px) {
  .organization__horizontal-border {
    width: 30%;
    right: 20.8%;
  }
}
@media (max-width: 768px) {
  .organization__horizontal-border {
    right: 20.7%;
  }
}
@media (max-width: 600px) {
  .organization__horizontal-border {
    width: 40%;
    right: 5%;
  }
}
.organization__horizontal-border-s-mobile {
  display: none;
  width: 205px;
  position: absolute;
  left: 43px;
  background: #898989;
  height: 1px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .organization__horizontal-border-s-mobile {
    display: flex;
    width: 218px;
    left: 55px;
  }
}
@media (max-width: 768px) {
  .organization__horizontal-border-s-mobile {
    width: 211px;
    left: 62px;
  }
}
@media (max-width: 600px) {
  .organization__horizontal-border-s-mobile {
    width: 284px;
    left: 5%;
  }
}
@media (max-width: 414px) {
  .organization__horizontal-border-s-mobile {
    width: 272px;
  }
}
@media (max-width: 390px) {
  .organization__horizontal-border-s-mobile {
    width: 255px;
  }
}
@media (max-width: 376px) {
  .organization__horizontal-border-s-mobile {
    width: 246px;
  }
}
.organization__horizontal-border-second {
  display: none;
  width: 20%;
  position: absolute;
  top: 173px;
  right: 32.2%;
  background: #898989;
  height: 1px;
  z-index: -1;
}
@media (max-width: 1024px) {
  .organization__horizontal-border-second {
    display: flex;
  }
}
@media (max-width: 821px) {
  .organization__horizontal-border-second {
    right: 24%;
  }
}
@media (max-width: 768px) {
  .organization__horizontal-border-second {
    right: 24.1%;
  }
}
@media (max-width: 600px) {
  .organization__horizontal-border-second {
    width: 30%;
    right: 10%;
  }
}
.organization__horizontal-border-large {
  display: flex;
  align-items: center;
  width: 60%;
  height: 1px;
  background: #898989;
  position: absolute;
  top: 82px;
  right: 16%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .organization__horizontal-border-large {
    display: none;
  }
}
.organization__horizontal-border-general {
  display: flex;
  position: absolute;
  background: #898989;
  bottom: 33px;
  width: 64.5%;
  height: 1px;
  z-index: -1;
}
.organization__horizontal-border-general-s {
  display: none;
  position: absolute;
  background: #898989;
  bottom: 532px;
  width: 208px;
  height: 1px;
  z-index: -1;
  right: 320px;
}
@media (max-width: 1024px) {
  .organization__horizontal-border-general-s {
    display: flex;
  }
}
@media (max-width: 821px) {
  .organization__horizontal-border-general-s {
    width: 198px;
    right: 190px;
  }
}
@media (max-width: 768px) {
  .organization__horizontal-border-general-s {
    width: 200px;
    right: 178px;
  }
}
@media (max-width: 600px) {
  .organization__horizontal-border-general-s {
    width: 202px;
    right: 10%;
  }
}
@media (max-width: 414px) {
  .organization__horizontal-border-general-s {
    width: 203px;
  }
}
@media (max-width: 390px) {
  .organization__horizontal-border-general-s {
    width: 207px;
  }
}
@media (max-width: 375px) {
  .organization__horizontal-border-general-s {
    width: 60%;
  }
}
.organization__ceo-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  position: relative;
}
.organization__ceo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 857px;
}
@media (max-width: 1024px) {
  .organization__ceo-container {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .organization__ceo-container {
    align-items: flex-start;
    box-sizing: border-box;
    padding-left: 40px;
  }
}
.organization__ceo-item {
  display: flex;
  gap: 18px;
  max-width: max-content;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7E7E7E;
  padding: 7px 13.5px 28px 13.5px;
  background: #fff;
}
.organization__ceo-item h2 {
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .organization__ceo-item {
    padding: 15.5px 19.5px;
  }
}
.organization__execution-item-group {
  display: flex;
  justify-content: center;
}
.organization__innovation-item-group-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
}
@media (max-width: 1024px) {
  .organization__innovation-item-group-wrapper {
    width: 100%;
    justify-content: end;
    margin-right: 57.5%;
    gap: 9px;
  }
}
@media (max-width: 821px) {
  .organization__innovation-item-group-wrapper {
    margin-right: 46%;
  }
}
@media (max-width: 821px) {
  .organization__innovation-item-group-wrapper {
    margin-right: 37%;
  }
}
@media (max-width: 600px) {
  .organization__innovation-item-group {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}
.organization__innovation-item {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 155px;
  height: 318px;
  box-sizing: border-box;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid #7E7E7E;
  padding: 15px 13px 21px 13px;
  margin-top: 54px;
  background: #fff;
}
.organization__innovation-item img {
  display: flex;
  width: 100%;
  max-width: 125px;
  height: auto;
  object-fit: cover;
}
.organization__innovation-container {
  display: flex;
  position: relative;
}
.organization__execution-wrapper {
  margin-top: 14px;
  position: relative;
}
.organization__execution-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .organization__execution-group {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .organization__execution-group {
    align-items: flex-start;
  }
}
.organization__execution-container {
  display: flex;
  position: relative;
}
.organization__execution-container .organization__horizontal-border {
  top: 144px;
}
.organization__execution-subwrapper {
  display: grid;
  /*grid-template-columns: repeat(6, 1fr);*/
  grid-template-columns: repeat(7, 1fr);
  justify-items: center;
  border: 1px solid #898989;
  padding: 15px 13px 21px 13px;
  margin-top: 20px;
  gap: 10px;
  box-sizing: border-box;
  max-width: max-content;
  min-width: 830px;
  height: 318px;
}
@media (max-width: 1024px) {
  .organization__execution-subwrapper {
    grid-template-columns: repeat(2, 1fr);
    min-width: auto;
    height: auto;
    row-gap: 30px;
  }
}
.organization__execution-subwrapper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  max-width: 125px;
  height: auto;
}
.organization__execution-subwrapper-item img {
  display: flex;
  width: 100%;
  max-width: 125px;
  height: auto;
  object-fit: cover;
}
.organization__execution-subwrapper-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
}
.organization__execution-item {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 155px;
  height: 66px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7E7E7E;
  box-sizing: border-box;
  text-align: center;
  padding: 17px 0 10px 0;
  background: #fff;
}
.organization__execution-item P {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0;
  color: #545454;
}
@media (max-width: 1024px) {
  .organization__execution-item {
    width: 172px;
    max-width: 172px;
    height: 70px;
  }
  .organization__execution-item p {
    max-width: 147px;
  }
}
@media (max-width: 600px) {
  .organization__execution-item {
    width: 100%;
    max-width: 100%;
  }
}
.organization__execution-box-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  top: 144px;
}
@media (max-width: 1024px) {
  .organization__execution-box-wrapper {
    display: none;
  }
}
.organization__execution-box-wrapper-mobile {
  display: none;
  justify-content: center;
  gap: 15px;
  position: relative;
}
@media (max-width: 1024px) {
  .organization__execution-box-wrapper-mobile {
    display: flex;
  }
}
@media (max-width: 600px) {
  .organization__execution-box-wrapper-mobile {
    width: 100%;
  }
}
.organization__dropdown {
  display: flex;
  align-items: center;
  border: 1px solid #898989;
  gap: 26px;
  padding: 25px 23px;
}
@media (max-width: 1024px) {
  .organization__dropdown {
    margin-bottom: 68px;
  }
}
.organization__dropdown-test {
  display: flex;
  width: 100%;
  background: #ECECEC;
  justify-content: center;
}
.organization__general {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 19px;
}
.organization__general-item {
  display: flex;
  gap: 18px;
  width: 100%;
  max-width: 205px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7E7E7E;
  padding: 31px 0;
}
.organization__general-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-items: center;
  gap: 30px;
}
@media (max-width: 1024px) {
  .organization__general-wrapper {
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #7E7E7E;
    padding: 24px 7.5px;
  }
}
@media (max-width: 600px) {
  .organization__general-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.organization__general-wrapper-item {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 200px;
  min-height: 292px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #7E7E7E;
}
@media (max-width: 600px) {
  .organization__general-wrapper-item img {
    width: 90%;
  }
}
.organization__general-wrapper-item-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 15px;
}
.organization__general-wrapper-item-group p {
  font-weight: 700;
  font-size: 20px;
  line-height: 131%;
  letter-spacing: 0;
  color: #545454;
  max-width: 259px;
  text-align: center;
}
@media (max-width: 600px) {
  .organization__general-wrapper-item-group p {
    font-size: 18px;
  }
}

.page-listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.page-listing__img {
  margin-bottom: 10px;
  height: 254px;
}
.page-listing__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .page-listing {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fancybox__container {
  z-index: 9999999;
}

.not-found {
  position: relative;
}
.not-found__img img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.not-found__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.not-found__content h1 {
  font-weight: 600;
  font-size: 200px;
  margin-bottom: 16px;
}
.not-found__content p {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .not-found__img img {
    height: 70vh;
  }
}

.form-nav-wrapper {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.form-nav__menu {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-nav__item {
  position: relative;
}
.form-nav__item input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.form-nav__label {
  display: block;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-nav__label:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.basic-text-slider {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
.basic-text-slider__slider {
  width: 100%;
  overflow: hidden;
}
.basic-text-slider__item {
  display: flex;
  gap: 120px;
}
.basic-text-slider__head {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.basic-text-slider__title {
  color: #013B62;
  font-size: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  line-height: 100%;
}
.basic-text-slider__content p {
  color: #454745;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 26px;
}
.basic-text-slider__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.basic-text-slider__nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e9e9e9;
  transform: rotate(-90deg);
}
.basic-text-slider__nav a:last-child {
  transform: rotate(90deg);
}
@media (max-width: 1600px) {
  .basic-text-slider__item {
    gap: 80px;
  }
}
@media (max-width: 1366px) {
  .basic-text-slider {
    position: relative;
    padding-bottom: 50px;
  }
  .basic-text-slider__nav {
    position: absolute;
    bottom: 0;
    z-index: 3;
    flex-direction: row;
  }
  .basic-text-slider__nav a {
    transform: rotate(90deg);
  }
  .basic-text-slider__nav a:last-child {
    transform: rotate(-90deg);
  }
  .basic-text-slider__img {
    width: 100%;
    height: 100%;
  }
  .basic-text-slider__img img {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .basic-text-slider__content {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .basic-text-slider__item {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .basic-text-slider__content p {
    font-size: 18px;
    line-height: 28px;
  }
}

.form-nav__item input[type=radio]:checked + .form-nav__label {
  background-color: #ffffff;
  color: #003d5c;
}

.form-nav__item input[type=radio]:checked + .form-nav__label:hover {
  background-color: #ffffff;
}
