@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.modal.is-visible .modal__backdrop {
  opacity: 1;
}
.modal__dialog {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 100%;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 546px;
  background-color: #fff;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.98);
          transform: translateY(20px) scale(0.98);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media (max-width: 768px) {
  .modal__content {
    padding: 24px 20px;
  }
}
.modal.is-visible .modal__content {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.modal__header {
  position: relative;
  margin-bottom: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .modal__header {
    margin-bottom: 20px;
  }
}
.modal__title {
  margin: 0;
  padding-right: 40px;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  color: #3B474F;
}
.modal__title span {
  color: #0B6289;
}
@media (max-width: 768px) {
  .modal__title {
    font-size: 26px;
  }
}
@media (max-width: 576px) {
  .modal__title {
    font-size: 22px;
  }
}
.modal__close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.modal__close img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  color: #0B6289;
}
.modal__close:hover {
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
}
@media (max-width: 576px) {
  .modal__close {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.modal__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 16px;
}
.modal__field label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #3B474F;
}
.modal__field label .required {
  color: #E20613;
}
.modal__field input {
  height: 50px;
  padding: 0 16px;
  border: 1px solid transparent;
  background-color: #E5E9EB;
  font-size: 14px;
  color: #3B474F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.modal__field input::-webkit-input-placeholder {
  color: rgba(129, 137, 141, 0.8274509804);
}
.modal__field input::-moz-placeholder {
  color: rgba(129, 137, 141, 0.8274509804);
}
.modal__field input:-ms-input-placeholder {
  color: rgba(129, 137, 141, 0.8274509804);
}
.modal__field input::-ms-input-placeholder {
  color: rgba(129, 137, 141, 0.8274509804);
}
.modal__field input::placeholder {
  color: rgba(129, 137, 141, 0.8274509804);
}
.modal__field input:focus {
  outline: none;
  border-color: #0B6289;
  background-color: #fff;
}
.modal__field.has-error input {
  border-color: #E20613;
  background-color: #fff;
}
.modal__error {
  display: block;
  min-height: 0;
  margin-top: 0;
  font-size: 12px;
  color: #E20613;
  line-height: 1.3;
}
.modal__error:not(:empty) {
  margin-top: 4px;
}
.modal__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .modal__checkboxes {
    gap: 8px;
  }
}
.modal__checkbox + .modal__error:not(:empty) {
  margin-top: -4px;
  margin-bottom: 4px;
}
.modal__checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.modal__checkbox.has-error .modal__checkbox-box {
  border-color: #E20613;
}
.modal__checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.modal__checkbox-box {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 1px solid #81898D;
  background-color: #fff;
  position: relative;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.modal__checkbox-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
input:checked ~ .modal__checkbox-box {
  background-color: #0B6289;
  border-color: #0B6289;
}
input:checked ~ .modal__checkbox-box::after {
  opacity: 1;
}
input:focus-visible ~ .modal__checkbox-box {
  outline: 2px solid #0B6289;
  outline-offset: 2px;
}
.modal__checkbox-text {
  font-size: 14px;
  line-height: 1.4;
  color: #81898D;
}
.modal__submit {
  position: relative;
  margin: 0 auto;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 241px;
  height: 54px;
  margin-top: auto;
  color: #fff;
  background-color: #0B6289;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
}
.modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.modal__submit {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.modal__submit::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #0B6289;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 1;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.modal__submit span {
  position: relative;
  z-index: 2;
}
.modal__submit:hover {
  color: #0B6289;
  background-color: #0B6289;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.modal__submit:hover::before {
  background-color: #fff;
}
.modal__submit:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 992px) {
  .modal__submit {
    width: 220px;
    height: 52px;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .modal__submit::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
}
@media (max-width: 768px) {
  .modal__submit {
    width: 205px;
    height: 50px;
    font-size: 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .modal__submit::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
@media (max-width: 576px) {
  .modal__submit {
    width: 195px;
    height: 47px;
    font-size: 14px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .modal__submit::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
.modal__status {
  margin-top: 0;
  font-size: 14px;
  text-align: center;
  min-height: 0;
}
.modal__status:not(:empty) {
  margin-top: 16px;
}
.modal__status.is-success {
  color: #0B6289;
}
.modal__status.is-error {
  color: #e5484d;
}

body.modal-open {
  overflow: hidden;
}

:root {
  --header-height: 82px;
}

header {
  position: fixed;
  width: 100vw;
  padding: 1em 25px;
  z-index: 1000;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.home-page header {
  background-color: rgba(0, 0, 0, 0.1);
}
.home-page header .menu {
  opacity: 0;
  visibility: hidden;
}
.home-page header .menu .item {
  color: #fff;
  background-color: rgba(190, 199, 206, 0.1);
}
.home-page header .menu .item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.home-page header .contacts a {
  color: #fff;
}
.inner-page header {
  background-color: #fff;
}
.inner-page header .menu .item {
  color: #3B474F;
  background-color: #BEC7CE 0.2;
}
.inner-page header .menu .item:hover {
  background-color: rgb(214.5869565217, 220.8043478261, 223.9130434783);
}
.inner-page header .menu .item-dropdown .dropdown {
  background-color: rgba(19, 21, 23, 0.6);
}
.inner-page header .menu .item-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.inner-page header .menu .item-dropdown:hover .item::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 3px;
}
.inner-page header .contacts a {
  color: #3B474F;
}
.inner-page header .logo img {
  -webkit-filter: brightness(35%);
          filter: brightness(35%);
}
.inner-page header .burger img {
  -webkit-filter: brightness(35%);
          filter: brightness(35%);
}
.inner-page header.scrolled {
  background-color: rgba(19, 21, 23, 0.8);
}
.inner-page header.scrolled .menu .item {
  color: #fff;
  background-color: rgba(190, 199, 206, 0.1);
}
.inner-page header.scrolled .menu .item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.inner-page header.scrolled .menu .item-dropdown .dropdown {
  background-color: rgba(19, 21, 23, 0.8);
}
.inner-page header.scrolled .menu .item-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.inner-page header.scrolled .menu .item-dropdown:hover .item::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 3px;
}
.inner-page header.scrolled .logo img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}
.inner-page header.scrolled .burger img {
  filter: brightness(100%);
  -webkit-filter: brightness(100%);
}
.inner-page header.scrolled .contacts a {
  color: #fff;
}
header.scrolled {
  background-color: rgba(19, 21, 23, 0.8);
}
header.offcanvas-active {
  background-color: #F0F0F0 !important;
}
@media (max-width: 992px) {
  header {
    position: fixed;
    padding: 1em 0;
    --header-height: 54px;
  }
}
header .logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .logo a {
  display: block;
}
header .logo a img {
  display: block;
  width: 291px;
  height: auto;
}
@media (max-width: 992px) {
  header .logo a img {
    width: 230px;
  }
}
@media (max-width: 768px) {
  header .logo a img {
    width: 200px;
  }
}
@media (max-width: 576px) {
  header .logo a img {
    width: 184px;
  }
}
header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.wrapper_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: auto;
}
@media (max-width: 992px) {
  .wrapper_2 {
    display: none;
  }
}
@media (max-width: 768px) {
  .wrapper_2 {
    display: none;
  }
}
@media (max-width: 576px) {
  .wrapper_2 {
    display: none;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 43px;
  margin-right: 24px;
  gap: 12px;
}
.menu .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 43px;
  padding: 20px;
  color: #fff;
  background-color: rgba(190, 199, 206, 0.1);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.menu .item:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.menu .item:active {
  background-color: rgba(11, 98, 137, 0.2);
  color: #84B0C3;
}
.menu .item-dropdown {
  position: relative;
  height: 43px;
}
.menu .item-dropdown .dropdown {
  position: absolute;
  top: 43px;
  left: 0;
  min-width: 240px;
  padding: 8px 0;
  background-color: rgba(19, 21, 23, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 20;
}
.menu .item-dropdown .dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.menu .item-dropdown .dropdown a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.menu .item-dropdown .dropdown a:active {
  background-color: rgba(11, 98, 137, 0.2);
  color: #84B0C3;
}
.menu .item-dropdown--nested {
  position: relative;
}
.menu .item-dropdown--nested > .dropdown-link {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-right: 14px;
}
.menu .item-dropdown--nested > .dropdown--nested {
  top: 0;
  left: 100%;
  min-width: 240px;
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
}
.menu .item-dropdown--nested:hover > .dropdown--nested {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.menu .item-dropdown--nested:hover > .dropdown-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.menu .item-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.menu .item-dropdown:hover .item::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  margin-top: 3px;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 220px;
}
.contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #BEC7CE;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  gap: 10px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contacts a:hover {
  opacity: 0.7;
}
.contacts a img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.contacts a:first-child {
  margin-bottom: 2px;
}

.burger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.burger img {
  display: block;
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
}

.mobile-menu__header {
  background-color: #3B474F;
}

.offcanvas-body {
  background-color: #3B474F;
}

.mobile-menu {
  width: 100%;
  max-width: none;
  background-color: #3B474F;
  border: none;
}
@media (min-width: 992px) {
  .mobile-menu .mobile-menu {
    display: none !important;
  }
}
.mobile-menu__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 70px;
  padding: 0 16px;
  width: 100vw;
}
.mobile-menu__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 184px;
  height: 36px;
}
.mobile-menu__logo img {
  display: block;
  width: 184px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__close {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
}
.mobile-menu__body {
  padding: 20px 16px;
  overflow-y: auto;
  width: 100vw;
}
.mobile-menu__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 43px;
  padding: 0 20px;
  color: #fff;
  background-color: rgba(190, 199, 206, 0.1);
  border: none;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
  margin-top: 12px;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-menu__item:hover {
  color: #fff;
  background-color: rgba(190, 199, 206, 0.18);
}
.mobile-menu__item--dropdown {
  cursor: pointer;
  text-align: left;
}
.mobile-menu__submenu {
  width: 100%;
  padding: 0 20px;
  background-color: rgba(19, 21, 23, 0.1);
  margin-bottom: 12px;
}
.mobile-menu__subitem {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-height: 40px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(190, 199, 206, 0.15);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.mobile-menu__subitem:hover {
  color: #84B0C3;
}
.mobile-menu__subitem:last-child {
  border-bottom: none;
}
.mobile-menu__subitem--nested {
  padding-left: 23px;
  color: #fff;
}
.mobile-menu__submenu--nested {
  padding: 0;
}
.mobile-menu__submenu--nested .mobile-menu__subitem {
  min-height: 40px;
}
.mobile-menu__arrow {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.mobile-menu .mobile-menu__item--dropdown[aria-expanded=true] .mobile-menu__arrow,
.mobile-menu .mobile-menu__subitem--dropdown[aria-expanded=true] .mobile-menu__arrow {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.mobile-menu__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.mobile-menu__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #BEC7CE;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  gap: 10px;
}
.mobile-menu__contact img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.mobile-menu__contact:active {
  color: #fff;
}

.footer {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.footer__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__container--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .footer__container {
    width: 100%;
    padding: 0 28px;
  }
}
@media (max-width: 576px) {
  .footer__container {
    width: 100%;
    padding: 0 16px;
  }
}
.footer__main {
  background-color: #0B6289;
  padding: 50px 0;
}
@media (max-width: 768px) {
  .footer__main {
    padding: 32px 0 0;
  }
}
@media (max-width: 576px) {
  .footer__main {
    padding: 24px 0 0;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}
@media (max-width: 768px) {
  .footer__top {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0 auto;
    grid-template-columns: 1fr auto;
    -ms-grid-rows: auto 0 auto 0 auto;
        grid-template-areas: "brand brand" "nav nav" "contacts contacts";
    gap: 0;
    margin-bottom: 0;
  }
  .footer__top .wrapper {
    grid-area: brand;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .footer__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
  .footer__top .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
  }
}
.footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 350px;
}
@media (max-width: 768px) {
  .footer__brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.footer__logo {
  display: inline-block;
}
.footer__logo img {
  width: 309px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__logo {
    display: block;
  }
  .footer__logo img {
    display: block;
    width: 300px;
    height: auto;
  }
}
@media (max-width: 576px) {
  .footer__logo {
    display: block;
    width: 100%;
  }
  .footer__logo img {
    display: block;
    width: 100%;
    height: auto;
  }
}
.footer__nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 576px) {
  .footer__nav {
    width: 100%;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .footer__nav {
    grid-area: nav;
    width: 100%;
    margin-top: 36px;
  }
}
@media (max-width: 768px){
  .footer__top .wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .footer__nav {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (max-width: 768px) {
  .footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .footer__menu__menu-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}
.footer__menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}
.footer__menu-link:hover {
  opacity: 0.5;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .footer__menu-link {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer__menu-link {
    white-space: nowrap;
  }
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  max-width: 440px;
}
@media (max-width: 768px) {
  .footer__contacts {
    width: 100%;
    max-width: none;
    gap: 10px;
    margin-top: 32px;
  }
}
.footer__contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.footer__contact-item:hover {
  opacity: 0.5;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .footer__contact-item {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer__contact-item {
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  .footer__contact-item img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer__contact-item-adress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 992px) {
  .footer__contact-item-adress {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer__contact-item-adress {
    gap: 10px;
    font-size: 16px;
    line-height: 1.4;
  }
  .footer__contact-item-adress img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 28px;
    height: 28px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 576px) {
  .footer__socials {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 18px;
    margin-top: 20px;
  }
}
.footer__social-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.footer__social-btn:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer__social-btn img {
  width: 38px;
  height: 38px;
}
.footer__quick-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .footer__quick-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 22px 0 14px;
  }
}
.footer__quick-link {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer__quick-link:hover img {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
@media (max-width: 992px) {
  .footer__quick-link {
    font-size: 15px;
  }
  .footer__quick-link img {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 768px) {
  .footer__quick-link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 7px 0;
    font-size: 16px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .footer__quick-link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding: 7px 0;
    font-size: 14px;
    line-height: 1.2;
  }
}
.footer__img {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.footer__bottom {
  background-color: #3B474F;
  padding: 14px 0;
}
.footer__developer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.footer__developer img {
  display: block;
  height: 38px;
}

.main__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 219px;
  height: 71px;
  margin-top: 20px;
  color: #0B6289;
  background-color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 19px 100%, 0 calc(100% - 19px));
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}
.main__button:hover {
  color: #0B6289;
  background-color: rgba(255, 255, 255, 0.8235294118);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.main__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 768px) {
  .main__button {
    margin-top: 0px;
    width: 160px;
    height: 47px;
    font-size: 14px;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  }
}
@media (max-width: 576px) {
  .main__button {
    margin-top: 20px;
  }
}

.advantages {
  position: relative;
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.advantages__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
@media (max-width: 768px) {
  .advantages__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
    gap: 20px;
  }
}
.advantages__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .advantages__content {
    display: contents;
  }
}
.advantages__number {
  color: #0B6289;
  font-size: 78px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -1px;
}
@media (max-width: 992px) {
  .advantages__number {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .advantages__number {
    font-size: 54px;
  }
}
@media (max-width: 576px) {
  .advantages__number {
    font-size: 50px;
  }
}
.advantages__description {
  margin-top: auto;
  color: #0B6289;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 992px) {
  .advantages__description {
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 768px) {
  .advantages__description {
    font-size: 12px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .advantages__description {
    font-size: 12px;
    line-height: 1.2;
  }
}
.advantages h2 {
  margin: 0;
  max-width: 660px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.5px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.advantages h2 span {
  color: #0B6289;
}
@media (max-width: 992px) {
  .advantages h2 {
    font-size: 32px;
    line-height: 32px;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .advantages h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .advantages h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    margin: 0 0 32px;
    font-size: 28px;
    line-height: 28px;
  }
}
.advantages__stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
  min-width: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  aspect-ratio: 1/1;
}
.advantages__stats > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.advantages__stats > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
.advantages__stats > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
.advantages__stats > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
@media (max-width: 992px) {
  .advantages__stats {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 768px) {
  .advantages__stats {
    max-height: 340px;
  }
}
@media (max-width: 576px) {
  .advantages__stats {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 576px) {
  .advantages__stats {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    width: 100%;
    margin-bottom: 32px;
  }
  .advantages__stats > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .advantages__stats > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
  }
  .advantages__stats > *:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .advantages__stats > *:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
}
.advantages__stat {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  padding: 20px;
}
.advantages__stat:nth-child(2), .advantages__stat:nth-child(4) {
  border-left: 1px solid #0B6289;
}
.advantages__stat:nth-child(3), .advantages__stat:nth-child(4) {
  border-top: 1px solid #0B6289;
}
@media (max-width: 576px) {
  .advantages__stat {
    padding: 8px;
  }
}
.advantages .catalog__button_1 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 241px;
  height: 54px;
  margin-top: auto;
  color: #fff;
  background-color: #0B6289;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.advantages .catalog__button_1::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #0B6289;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 1;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.advantages .catalog__button_1 span {
  position: relative;
  z-index: 2;
}
.advantages .catalog__button_1:hover {
  color: #0B6289;
  background-color: #0B6289;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.advantages .catalog__button_1:hover::before {
  background-color: #fff;
}
.advantages .catalog__button_1:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 992px) {
  .advantages .catalog__button_1 {
    width: 220px;
    height: 52px;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .advantages .catalog__button_1::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
}
@media (max-width: 768px) {
  .advantages .catalog__button_1 {
    width: 205px;
    height: 50px;
    font-size: 14px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .advantages .catalog__button_1::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
@media (max-width: 576px) {
  .advantages .catalog__button_1 {
    width: 195px;
    height: 47px;
    font-size: 14px;
    font-weight: 600;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .advantages .catalog__button_1::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}

.quality {
  position: relative;
  width: 100%;
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.quality__cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media (max-width: 992px) {
  .quality__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .quality__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: auto;
  }
}
.quality__content h2 {
  margin: 0;
  max-width: 660px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-bottom: 1em;
}
@media (max-width: 992px) {
  .quality__content h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
.quality__content span {
  color: #0B6289;
}

.quality-card {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  cursor: pointer;
  -webkit-transition: -webkit-box-flex 0.45s ease;
  transition: -webkit-box-flex 0.45s ease;
  transition: flex 0.45s ease;
  transition: flex 0.45s ease, -webkit-box-flex 0.45s ease, -ms-flex 0.45s ease;
}
@media (max-width: 768px) {
  .quality-card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    height: 160px;
    min-height: unset;
    overflow: hidden;
    -webkit-transition: none;
    transition: none;
  }
}
.quality-card__bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2px;
  margin-top: auto;
  margin-bottom: -4px;
  padding-right: 34px;
}
@media (max-width: 992px) {
  .quality-card__bottom-row {
    padding-right: 0;
  }
}
.quality-card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  max-height: 320px;
  padding: 34px 0;
  z-index: 2;
}
@media (max-width: 992px) {
  .quality-card__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 0fr;
    grid-template-rows: auto 0fr;
    -ms-flex-line-pack: end;
        align-content: end;
    height: auto;
    min-height: 160px;
    max-height: none;
    padding: 28px;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.45s ease, min-height 0.45s ease;
    transition: grid-template-rows 0.45s ease, min-height 0.45s ease;
    transition: grid-template-rows 0.45s ease, min-height 0.45s ease, -ms-grid-rows 0.45s ease;
  }
}
@media (max-width: 768px) {
  .quality-card__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 0fr;
    grid-template-rows: auto 0fr;
    -ms-flex-line-pack: end;
        align-content: end;
    height: auto;
    min-height: 160px;
    max-height: none;
    padding: 20px;
    overflow: hidden;
    -webkit-transition: grid-template-rows 0.45s ease, min-height 0.45s ease;
    transition: grid-template-rows 0.45s ease, min-height 0.45s ease;
    transition: grid-template-rows 0.45s ease, min-height 0.45s ease, -ms-grid-rows 0.45s ease;
  }
}
.quality-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.5px;
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (max-width: 992px) {
  .quality-card__title {
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 28px;
    margin: 0 !important;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .quality-card__title {
    -ms-grid-row: 1;
    grid-row: 1;
    font-size: 24px;
    margin: 0 !important;
    padding: 0;
  }
}
.quality-card__text {
  max-width: 570px;
  margin-top: auto;
  margin-bottom: -4px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
@media (max-width: 992px) {
  .quality-card__text {
    -ms-grid-row: 2;
    grid-row: 2;
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: none;
            transform: none;
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 768px) {
  .quality-card__text {
    font-size: 14px;
    -ms-grid-row: 2;
    grid-row: 2;
    min-height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform: none;
            transform: none;
    margin: 0;
    padding: 0;
  }
}
.quality-card__arrow {
  position: static;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  right: 24px;
  bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background-color: #BEC7CE;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease, background-color 0.2s ease;
  transition: opacity 0.3s ease, background-color 0.2s ease;
}
.quality-card__arrow img {
  display: block;
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .quality-card__arrow img {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 576px) {
  .quality-card__arrow img {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 576px) {
  .quality-card__arrow {
    width: 28px;
    height: 28px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 768px) {
  .quality-card__arrow {
    width: 28px;
    height: 28px;
    right: 16px;
    bottom: 16px;
  }
}
.quality-card.active {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0px;
          flex: 2 1 0;
}
.quality-card.active .quality-card__text {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.quality-card.active .quality-card__arrow {
  opacity: 1;
}
@media (max-width: 992px) {
  .quality-card.active {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important;
  }
  .quality-card.active .quality-card__content {
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    min-height: 0;
  }
  .quality-card.active .quality-card__text {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .quality-card.active {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important;
    height: auto;
    overflow: visible;
  }
  .quality-card.active .quality-card__content {
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    min-height: 0;
  }
  .quality-card.active .quality-card__text {
    margin-top: 40px;
  }
}
@media (max-width: 992px) {
  .quality-card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 768px) {
  .quality-card {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    min-height: 160px;
    overflow: hidden;
    -webkit-transition: none;
    transition: none;
  }
}
.quality-card--blue {
  color: #fff;
}
.quality-card--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0B6289;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 992px) {
  .quality-card--blue::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
@media (max-width: 768px) {
  .quality-card--blue::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 160px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.quality-card--blue .quality-card__title {
  position: relative;
  z-index: 2;
  margin-top: 226px;
  margin-bottom: -226px;
  padding: 0 34px;
  -webkit-transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
  transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
}
@media (max-width: 992px) {
  .quality-card--blue .quality-card__title {
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .quality-card--blue .quality-card__title {
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.quality-card--blue .quality-card__text {
  color: #BEC7CE;
  padding-left: 34px;
}
@media (max-width: 992px) {
  .quality-card--blue .quality-card__text {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .quality-card--blue .quality-card__text {
    padding: 0;
  }
}
.quality-card--blue .quality-card__arrow {
  background-color: #BEC7CE;
}
.quality-card--blue.active .quality-card__title {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .quality-card--blue.active::before {
    bottom: 0;
    height: auto;
  }
}
.quality-card--light {
  color: #3B474F;
}
.quality-card--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #E5E9EB;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 992px) {
  .quality-card--light::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
@media (max-width: 768px) {
  .quality-card--light::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 160px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.quality-card--light .quality-card__title {
  position: relative;
  z-index: 2;
  margin-top: 226px;
  margin-bottom: -226px;
  padding: 0 34px;
  -webkit-transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
  transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
}
@media (max-width: 992px) {
  .quality-card--light .quality-card__title {
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.quality-card--light .quality-card__text {
  color: #3B474F;
  padding-left: 34px;
}
@media (max-width: 992px) {
  .quality-card--light .quality-card__text {
    padding: 0;
  }
}
.quality-card--light.active .quality-card__title {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .quality-card--light.active::before {
    bottom: 0;
    height: auto;
  }
}
.quality-card--dark {
  color: #fff;
}
.quality-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #3B474F;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 992px) {
  .quality-card--dark::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
@media (max-width: 768px) {
  .quality-card--dark::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 160px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.quality-card--dark .quality-card__title {
  position: relative;
  z-index: 2;
  margin-top: 226px;
  margin-bottom: -226px;
  padding: 0 34px;
  -webkit-transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
  transition: margin-top 0.4s ease, margin-bottom 0.4s ease;
}
@media (max-width: 992px) {
  .quality-card--dark .quality-card__title {
    padding: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.quality-card--dark .quality-card__text {
  color: #BEC7CE;
  padding-left: 34px;
}
@media (max-width: 992px) {
  .quality-card--dark .quality-card__text {
    padding: 0;
  }
}
.quality-card--dark .quality-card__arrow {
  background-color: #BEC7CE;
}
.quality-card--dark.active .quality-card__title {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .quality-card--dark.active::before {
    bottom: 0;
    height: auto;
  }
}

.catalog {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #fff;
}
.catalog__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 38px;
  gap: 20px;
}
@media (max-width: 576px) {
  .catalog__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.catalog__title-wrap h2 {
  margin: 0;
  max-width: 1000px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.catalog__title-wrap h2 span {
  color: #0B6289;
}
@media (max-width: 992px) {
  .catalog__title-wrap h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .catalog__title-wrap h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .catalog__title-wrap h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 28px;
  }
}
.catalog__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.catalog__actions__actions > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 576px) {
  .catalog__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.catalog__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.catalog__nav-btn {
  width: 32px;
  height: 32px;
  background-color: #3B474F;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.catalog__nav-btn img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog__nav-btn--next {
  background-color: #3B474F;
}
.catalog__nav-btn:hover:not(.swiper-button-disabled) {
  background-color: #0B6289;
}
.catalog__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.catalog__slider {
  padding-bottom: 20px !important;
}
.catalog__pagination {
  bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.catalog__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 0;
  background-color: #E5E9EB;
  opacity: 1;
  margin: 0 !important;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.catalog__pagination .swiper-pagination-bullet-active {
  background-color: #3B474F;
}

.product-card {
  position: relative;
  background-color: #E5E9EB;
  padding: 24px;
  height: 418px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}
.product-card__header {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
.product-card__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  color: #3B474F;
  margin: 0;
}
@media (max-width: 992px) {
  .product-card__title {
    font-size: 18px;
  }
}
.product-card__image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
}
.product-card__image-wrap .product-card__image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: none;
  max-height: none;
}
.product-card__footer {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card__info-btn {
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.7;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.product-card__info-btn img {
  width: 18px;
  height: 18px;
}
.product-card__info-btn:hover {
  opacity: 1;
}
.product-card__link-btn {
  width: 32px;
  height: 32px;
  background-color: #3B474F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.product-card__link-btn img {
  width: 16px;
  height: 16px;
}
.product-card__link-btn:hover {
  background-color: #0B6289;
}
@media (max-width: 992px) {
  .product-card {
    height: 350px;
    width: auto;
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .product-card {
    height: 350px;
    width: auto;
    padding: 16px;
  }
}
@media (max-width: 576px) {
  .product-card {
    height: 350px;
    width: auto;
    padding: 16px;
  }
}

.mission {
  position: relative;
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mission__main {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 60%;
  grid-template-columns: 40% 60%;
  margin-left: calc(50% - 50vw);
  height: 531px;
  background-color: #3B474F;
}
@media (max-width: 576px) {
  .mission__main {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    min-height: 0;
    background-color: #3B474F;
  }
}
.mission__image {
  position: relative;
  height: 531px;
  background-color: #3B474F;
  overflow: hidden;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 70px) 0, 100% 70px, 100% 100%, 0 100%);
}
.mission__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background-color: #3B474F;
}
@media (max-width: 576px) {
  .mission__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: calc(100% - 32px);
    height: 311px;
    margin: 0 16px 16px;
    clip-path: polygon(0 0, calc(100% - 72px) 0, 100% 72px, 100% 100%, 0 100%);
  }
  .mission__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}
.mission__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 516px;
  padding: 32px 42px 32px;
  background-color: #3B474F;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 992px) {
  .mission__content {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .mission__content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-height: 0;
    height: auto;
    padding: 16px 16px 16px;
    background-color: #3B474F;
  }
}
.mission__label {
  position: relative;
  z-index: 2;
  color: #BEC7CE;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 38px;
}
@media (max-width: 576px) {
  .mission__label {
    margin-bottom: 18px;
  }
}
.mission__title {
  position: relative;
  z-index: 2;
  max-width: 770px;
  margin: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 992px) {
  .mission__title {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .mission__title {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .mission__title {
    max-width: none;
    font-size: 28px;
  }
}
.mission__description {
  position: relative;
  z-index: 2;
  max-width: 425px;
  margin: 38px 0 0;
  color: #BEC7CE;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 576px) {
  .mission__description {
    max-width: none;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
  }
}
.mission__button {
  z-index: 3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 175px;
  height: 54px;
  margin-top: auto;
  color: #3B474F;
  background-color: #E5E9EB;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.mission__button::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #E5E9EB;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 1;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.mission__button span {
  position: relative;
  z-index: 2;
}
.mission__button:hover {
  color: #E5E9EB;
  background-color: #E5E9EB;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.mission__button:hover::before {
  background-color: #3B474F;
}
.mission__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 992px) {
  .mission__button {
    width: 175px;
    height: 52px;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .mission__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
}
@media (max-width: 768px) {
  .mission__button {
    width: 175px;
    height: 50px;
    font-size: 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .mission__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
@media (max-width: 576px) {
  .mission__button {
    width: 157px;
    height: 47px;
    font-size: 14px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .mission__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
.mission__decor {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 350px;
  height: 350px;
  z-index: 1;
  pointer-events: none;
}
.mission__decor img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .mission__decor {
    width: 300px;
    height: 300px;
    opacity: 30%;
  }
}
@media (max-width: 768px) {
  .mission__decor {
    width: 200px;
    height: 200px;
    opacity: 30%;
  }
}
@media (max-width: 576px) {
  .mission__decor {
    display: none;
  }
}
.mission__principles {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
}
@media (max-width: 576px) {
  .mission__principles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 20px;
  }
}

.mission-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 275px;
  padding: 24px 22px;
  border-top: 2px solid #0B6289;
  border-bottom: 2px solid #0B6289;
}
.mission-card__title {
  max-width: 480px;
  margin: 0;
  color: #3B474F;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.3px;
}
@media (max-width: 992px) {
  .mission-card__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .mission-card__title {
    max-width: none;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.mission-card__text {
  margin: auto 0 0;
  color: #3B474F;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
}
@media (max-width: 992px) {
  .mission-card__text {
    font-size: 14px;
    margin: auto 0 0;
  }
}
@media (max-width: 576px) {
  .mission-card__text {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .mission-card {
    padding: 16px 6px;
    min-height: 0;
  }
}
@media (max-width: 576px) {
  .mission-card {
    min-height: 0;
    padding: 16px 0;
    border-top: 2px solid #0B6289;
    border-bottom: none;
  }
  .mission-card:last-child {
    border-bottom: 2px solid #0B6289;
  }
}

.main-frame {
  --main-progress: 0;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-frame {
    height: 100svh;
    min-height: 0;
  }
}
.main-frame__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/dist/img/main_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-transition: -webkit-transform 1.4s var(--ease-out-expo);
  transition: -webkit-transform 1.4s var(--ease-out-expo);
  transition: transform 1.4s var(--ease-out-expo);
  transition: transform 1.4s var(--ease-out-expo), -webkit-transform 1.4s var(--ease-out-expo);
}
.main-frame.is-switching .main-frame__background {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.main-frame__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 19, 28, 0.2)), to(rgba(3, 19, 28, 0.8)));
  background: linear-gradient(0deg, rgba(3, 19, 28, 0.2) 0%, rgba(3, 19, 28, 0.8) 100%);
  pointer-events: none;
}
.main-frame__container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.main-frame__content {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
  max-width: min(560px, 46vw);
  pointer-events: none;
}
.main-frame__content .main__button,
.main-frame__content .main-frame__pagination {
  pointer-events: auto;
}
@media (max-width: 992px) {
  .main-frame__content {
    top: 64px;
    right: 10px;
    bottom: 20px;
    left: 10px;
    -webkit-transform: none;
            transform: none;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.main-frame__text {
  position: relative;
  will-change: transform, opacity, filter;
}
.main-frame__text.is-leaving h1,
.main-frame__text.is-leaving p {
  -webkit-animation: mainTextOut 0.28s var(--ease-out-soft) forwards;
          animation: mainTextOut 0.28s var(--ease-out-soft) forwards;
}
.main-frame__text.is-leaving p {
  -webkit-animation-delay: 0.04s;
          animation-delay: 0.04s;
}
.main-frame__text.is-entering h1,
.main-frame__text.is-entering p {
  -webkit-animation: mainTextIn 0.55s var(--ease-out-expo) both;
          animation: mainTextIn 0.55s var(--ease-out-expo) both;
}
.main-frame__text.is-entering p {
  -webkit-animation-delay: 0.08s;
          animation-delay: 0.08s;
}
.main-frame h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0%;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
@media (max-width: 768px) {
  .main-frame h1 {
    margin: 10px 0 0;
    font-size: 36px;
    line-height: 1.1;
  }
}
.main-frame p {
  margin: 24px 0 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .main-frame p {
    margin: 10px 0 0;
    font-size: 22px;
    line-height: 1.25;
  }
}
@media (max-width: 768px) {
  .main-frame p {
    margin: 10px 0 0;
    font-size: 16px;
  }
}
.main-frame .main__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 219px;
  height: 71px;
  margin-top: 240px;
  color: #fff;
  background-color: #0B6289;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 19px 100%, 0 calc(100% - 19px));
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}
.main-frame .main__button:hover {
  color: #0B6289;
  background-color: #fff;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.main-frame .main__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 992px) {
  .main-frame .main__button {
    margin-top: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (max-width: 768px) {
  .main-frame .main__button {
    width: 160px;
    height: 47px;
    font-size: 14px;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  }
}
.main-frame__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-frame__pagination .swiper-pagination-bullet {
  position: relative;
  width: 28px;
  height: 3px;
  margin: 0 !important;
  border: 0;
  padding: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: background-color 0.25s ease, width 0.35s var(--ease-out-soft);
  transition: background-color 0.25s ease, width 0.35s var(--ease-out-soft);
}
.main-frame__pagination .swiper-pagination-bullet span {
  position: absolute;
  inset: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  background: #fff;
}
.main-frame__pagination .swiper-pagination-bullet-active {
  width: 48px;
  background: rgba(255, 255, 255, 0.22);
}
.main-frame__pagination .swiper-pagination-bullet-active span {
  -webkit-transform: scaleX(var(--main-progress, 0));
          transform: scaleX(var(--main-progress, 0));
  -webkit-transition: -webkit-transform 0.05s linear;
  transition: -webkit-transform 0.05s linear;
  transition: transform 0.05s linear;
  transition: transform 0.05s linear, -webkit-transform 0.05s linear;
}
@media (max-width: 768px) {
  .main-frame__pagination {
    margin-top: 18px;
  }
}
.main-frame__equipment {
  position: absolute;
  z-index: 2;
  right: -40px;
  bottom: 40px;
  width: min(860px, 58vw);
  height: min(640px, 78vh);
  -webkit-perspective: 1400px;
          perspective: 1400px;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(7%, #000), color-stop(93%, #000), to(transparent));
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(7%, #000), color-stop(93%, #000), to(transparent));
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
@media (max-width: 992px) {
  .main-frame__equipment {
    top: 210px;
    right: 0;
    bottom: 96px;
    left: 0;
    width: min(640px, 92%);
    height: auto;
    margin-inline: auto;
    opacity: 1;
    -webkit-perspective: none;
            perspective: none;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
@media (max-width: 768px) {
  .main-frame__equipment {
    top: 190px;
    right: 0;
    bottom: 84px;
    left: 0;
    width: 100%;
    height: auto;
  }
}
.main-frame__swiper {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.main-frame__swiper .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
          transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.main-frame__swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.main-frame__media {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
          filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transition: -webkit-filter 0.45s ease, -webkit-transform 1.4s var(--ease-out-expo);
  transition: -webkit-filter 0.45s ease, -webkit-transform 1.4s var(--ease-out-expo);
  transition: filter 0.45s ease, transform 1.4s var(--ease-out-expo);
  transition: filter 0.45s ease, transform 1.4s var(--ease-out-expo), -webkit-filter 0.45s ease, -webkit-transform 1.4s var(--ease-out-expo);
}
.main-frame__media::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, transparent 72%);
  z-index: 0;
  pointer-events: none;
  -webkit-transform: scaleX(1.05);
          transform: scaleX(1.05);
  opacity: 0.85;
}
.main-frame.is-switching .main-frame__media {
  -webkit-filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35)) blur(0.2px);
          filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35)) blur(0.2px);
}
.main-frame__video, .main-frame__poster {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.main-frame__video {
  display: none;
  background: transparent;
}
.main-frame__video[data-ready=true] {
  display: block;
}
.main-frame__video[data-ready=true] + .main-frame__poster {
  display: none;
}
.main-frame.is-ready .main-frame__equipment {
  -webkit-animation: mainEquipmentIn 1.1s var(--ease-out-expo) both;
          animation: mainEquipmentIn 1.1s var(--ease-out-expo) both;
}
@media (max-width: 992px) {
  .main-frame__background, .main-frame.is-switching .main-frame__background {
    -webkit-transform: none;
            transform: none;
  }
  .main-frame__text {
    will-change: auto;
  }
  .main-frame__text.is-leaving h1,
  .main-frame__text.is-leaving p, .main-frame__text.is-entering h1,
  .main-frame__text.is-entering p {
    -webkit-animation: none;
            animation: none;
  }
  .main-frame__media, .main-frame.is-switching .main-frame__media {
    -webkit-filter: none;
            filter: none;
  }
  .main-frame__media::after {
    display: none;
  }
  .main-frame.is-ready .main-frame__equipment {
    -webkit-animation: none;
            animation: none;
  }
  .main-frame__video, .main-frame__video[data-ready=true] {
    display: none !important;
  }
  .main-frame__poster, .main-frame__video[data-ready=true] + .main-frame__poster {
    display: block !important;
  }
}

@-webkit-keyframes mainTextOut {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-28px, 10px, 0);
            transform: translate3d(-28px, 10px, 0);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}

@keyframes mainTextOut {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-28px, 10px, 0);
            transform: translate3d(-28px, 10px, 0);
    -webkit-filter: blur(4px);
            filter: blur(4px);
  }
}
@-webkit-keyframes mainTextIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(36px, 14px, 0);
            transform: translate3d(36px, 14px, 0);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes mainTextIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(36px, 14px, 0);
            transform: translate3d(36px, 14px, 0);
    -webkit-filter: blur(6px);
            filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes mainEquipmentIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(80px, 40px, 0) scale(0.92);
            transform: translate3d(80px, 40px, 0) scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes mainEquipmentIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(80px, 40px, 0) scale(0.92);
            transform: translate3d(80px, 40px, 0) scale(0.92);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
            transform: translate3d(0, 0, 0) scale(1);
  }
}
:root {
  --header-height: 82px;
}

* {
  font-family: "Noto Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

section {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  section {
    margin-bottom: 60px;
  }
}

.label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #0B6289;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 38px;
}
@media (max-width: 992px) {
  .label {
    margin-bottom: 18px;
  }
}
@media (max-width: 768px) {
  .label {
    margin-bottom: 18px;
  }
}
@media (max-width: 576px) {
  .label {
    margin-bottom: 18px;
  }
}

.catalog__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 241px;
  height: 54px;
  margin-top: auto;
  color: #fff;
  background-color: #0B6289;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 13px 100%, 0 calc(100% - 13px));
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease;
  transition: color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.catalog__button::before {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: #0B6289;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  z-index: 1;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.catalog__button span {
  position: relative;
  z-index: 2;
}
.catalog__button:hover {
  color: #0B6289;
  background-color: #0B6289;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.catalog__button:hover::before {
  background-color: #fff;
}
.catalog__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (max-width: 992px) {
  .catalog__button {
    width: 220px;
    height: 52px;
    font-size: 16px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .catalog__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
}
@media (max-width: 768px) {
  .catalog__button {
    width: 205px;
    height: 50px;
    font-size: 14px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .catalog__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}
@media (max-width: 576px) {
  .catalog__button {
    width: 195px;
    height: 47px;
    font-size: 14px;
    font-weight: 600;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  }
  .catalog__button::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  }
}

h2 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
  max-width: 660px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
}
h2 span {
  color: #0B6289;
}

.team {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  background-color: #fff;
}
.team__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 38px;
}
@media (max-width: 768px) {
  .team__header {
    margin-bottom: 32px;
  }
}
.team__title-wrap h2 {
  margin: 0;
  max-width: 660px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
}
.team__title-wrap h2 span {
  color: #0B6289;
}
@media (max-width: 992px) {
  .team__title-wrap h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .team__title-wrap h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
@media (max-width: 576px) {
  .team__title-wrap h2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    margin: 0 0 16px;
    font-size: 28px;
    line-height: 28px;
  }
}
.team__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.team__nav-btn {
  width: 32px;
  height: 32px;
  background-color: #3B474F;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background-color 0.2s ease, opacity 0.2s ease;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}
.team__nav-btn img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.team__nav-btn--next {
  background-color: #3B474F;
}
.team__nav-btn:hover:not(.swiper-button-disabled) {
  background-color: #0B6289;
}
.team__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.team__slider {
  padding-bottom: 20px !important;
}
.team__pagination {
  bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
}
.team__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 0;
  background-color: #E5E9EB;
  opacity: 1;
  margin: 0 !important;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.team__pagination .swiper-pagination-bullet-active {
  background-color: #3B474F;
}
.team .team-card {
  position: relative;
  height: 524px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #E5E9EB;
  overflow: hidden;
}
@media (max-width: 768px) {
  .team .team-card {
    height: 440px;
  }
}
.team .team-card__image-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .team .team-card__image-wrap {
    height: 240px;
  }
}
@media (max-width: 768px) {
  .team .team-card__image-wrap {
    width: 100%;
    height: auto;
  }
}
.team .team-card__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.team .team-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 18px 18px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (max-width: 992px) {
  .team .team-card__info {
    padding: 16px 16px 0;
  }
}
.team .team-card__name {
  color: #3B474F;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 600;
}
@media (max-width: 992px) {
  .team .team-card__name {
    font-size: 18px;
  }
}
.team .team-card__position {
  margin: 0;
  color: #3B474F;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}
@media (max-width: 992px) {
  .team .team-card__position {
    font-size: 14px;
  }
}
.team .team-card__button {
  height: 64px;
  padding: 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  background-color: #3B474F;
  text-decoration: none;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.team .team-card__button img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 768px) {
  .team .team-card__button img {
    width: 22px;
    height: 22px;
  }
}
.team .team-card__button:hover {
  background-color: #0B6289;
}
@media (max-width: 768px) {
  .team .team-card__button {
    font-size: 14px;
    height: 54px;
    padding: 0 16px;
  }
}

.companies-frame {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.companies-frame__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 38px;
}
.companies-frame__title-wrap h2 {
  margin: 0;
  max-width: 660px;
  color: #3B474F;
  font-size: 40px;
  line-height: 40px;
  font-weight: 600;
}
.companies-frame__title-wrap h2 span {
  color: #0B6289;
}
@media (max-width: 992px) {
  .companies-frame__title-wrap h2 {
    font-size: 32px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .companies-frame__title-wrap h2 {
    font-size: 28px;
    line-height: 28px;
  }
}
.companies-frame__logos--grid {
  width: 100%;
}
@media (max-width: 768px) {
  .companies-frame__logos--grid {
    display: none;
  }
}
.companies-frame__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 28px;
}
.companies-frame__row:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .companies-frame__row {
    margin-bottom: 0px;
  }
}
.companies-frame__marquee {
  display: none;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.companies-frame__marquee::-webkit-scrollbar {
  display: none;
}
.companies-frame__marquee {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 70px), transparent 100%);
}
@media (max-width: 768px) {
  .companies-frame__marquee {
    display: block;
  }
}
.companies-frame__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: companies-marquee 40s linear infinite;
          animation: companies-marquee 40s linear infinite;
}
.companies-frame__track.is-paused {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

.company-logo {
  min-width: 0;
  width: auto;
  height: 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0;
  padding: 0 24px;
  cursor: default;
  overflow: hidden;
}
@media (max-width: 768px) {
  .company-logo {
    height: 64px;
    width: auto;
    margin-right: 24px;
    padding: 0;
  }
}
.company-logo img {
  display: block;
  min-width: 0;
  height: 108px;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.75;
  -webkit-transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: opacity 0.3s ease, -webkit-filter 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease;
  transition: filter 0.3s ease, opacity 0.3s ease, -webkit-filter 0.3s ease;
}
@media (max-width: 768px) {
  .company-logo img {
    height: 64px;
    width: auto;
    margin-right: 0px;
  }
}
.company-logo:hover img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}
.company-logo.is-highlighted img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  opacity: 1;
}

@-webkit-keyframes companies-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes companies-marquee {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .companies-frame__track {
    -webkit-animation: none;
            animation: none;
  }
}
.contacts-page {
  padding-top: var(--header-height);
  background-color: #fff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.contacts-page .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #3B474F;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contacts-page .breadcrumbs {
    margin-bottom: 6px;
  }
}
.contacts-page .breadcrumbs a {
  color: #3B474F;
  text-decoration: none;
}
.contacts-page .breadcrumbs a:hover {
  color: #0B6289;
}
.contacts-page .breadcrumbs span:last-child {
  color: #3B474F;
}
.contacts-page__title {
  margin: 0 0 16px;
  color: #0B6289;
  font-size: 48px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -1px;
}
@media (max-width: 576px) {
  .contacts-page__title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .contacts-page {
    --header-height: 54px;
  }
}

.contacts-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 12px;
  margin-bottom: 38px;
}
@media (max-width: 576px) {
  .contacts-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
  }
}
.contacts-tabs__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #BEC7CE;
  background-color: #fff;
  color: #3B474F;
  font-family: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contacts-tabs__button:hover {
  border-color: #0B6289;
  color: #0B6289;
}
.contacts-tabs__button.active {
  border-color: #0B6289;
  color: #0B6289;
  background-color: #fff;
}

.contacts-tab-content {
  display: none;
}
.contacts-tab-content.active {
  display: block;
}

.management-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px 20px;
  width: 100%;
}
@media (max-width: 576px) {
  .management-grid {
    -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.management-card {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% 50%;
  grid-template-columns: 50% 50%;
  overflow: hidden;
}
@media (max-width: 576px) {
  .management-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    overflow: hidden;
  }
}
.management-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 576px) {
  .management-card__photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
.management-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 576px) {
  .management-card__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.management-card__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  padding: 24px 24px 0;
}
.management-card__info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #E5E9EB;
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 52px) 0, 100% 52px, 100% 100%, 0 100%);
}
@media (max-width: 992px) {
  .management-card__info::before {
    clip-path: polygon(0 0, calc(100% - 42px) 0, 100% 42px, 100% 100%, 0 100%);
  }
}
@media (max-width: 768px) {
  .management-card__info::before {
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 32px, 100% 100%, 0 100%);
  }
}
@media (max-width: 992px) {
  .management-card__info {
    padding: 16px 16px 0;
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .management-card__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: auto;
    min-height: 162px;
    padding: 12px 12px 0;
    overflow: hidden;
  }
  .management-card__info::before {
    clip-path: none;
  }
}
.management-card__top {
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .management-card__top {
    display: block;
  }
}
.management-card__name {
  margin: 0;
  color: #3B474F;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 600;
}
@media (max-width: 992px) {
  .management-card__name {
    font-size: 16px;
  }
}
.management-card__position {
  margin: 8px 0 0;
  color: #3B474F;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 992px) {
  .management-card__position {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .management-card__position {
    margin-top: 6px;
    font-size: 12px;
  }
}
.management-card__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% + 48px);
  height: 60px;
  margin-top: auto;
  margin-left: -24px;
  padding: 0 24px;
  color: #fff;
  background-color: #3B474F;
  text-decoration: none;
  z-index: 3;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.management-card__button span {
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
@media (max-width: 992px) {
  .management-card__button span {
    font-size: 14px;
  }
}
.management-card__button img {
  display: block;
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .management-card__button img {
    width: 20px;
    height: 20px;
  }
}
.management-card__button:hover {
  background-color: #0B6289;
}
@media (max-width: 992px) {
  .management-card__button {
    height: 50px;
  }
}
@media (max-width: 576px) {
  .management-card__button {
    width: calc(100% + 24px);
    height: 50px;
    min-height: 50px;
    margin-top: auto;
    margin-left: -12px;
    padding: 0 12px;
  }
}

.contacts-map {
  width: 100%;
  height: 560px;
  margin-bottom: 40px;
}
.contacts-map__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (max-width: 768px) {
  .contacts-map {
    margin-bottom: 24px;
    height: auto;
  }
}

.contacts__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media (max-width: 768px) {
  .contacts__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contacts-card {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  min-width: 0;
  min-height: 260px;
}
@media (max-width: 768px) {
  .contacts-card {
    min-height: 180px;
  }
}
.contacts-card__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 34px;
  z-index: 2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 768px) {
  .contacts-card__content {
    padding: 24px 20px;
  }
}
.contacts-card__title {
  margin: 0 0 auto;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.5px;
}
@media (max-width: 992px) {
  .contacts-card__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contacts-card__title {
    font-size: 24px;
  }
}
.contacts-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin-top: 40px;
}
.contacts-card__line {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
}
.contacts-card__line--link {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.contacts-card__line--link:hover {
  opacity: 0.75;
}
.contacts-card__line--ao {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #BEC7CE;
}
@media (max-width: 768px) {
  .contacts-card__line--ao {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contacts-card__line {
    font-size: 14px;
  }
}
.contacts-card--blue {
  -webkit-box-flex: 2;
      -ms-flex: 2 1 0px;
          flex: 2 1 0;
  color: #fff;
}
.contacts-card--blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0B6289;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 768px) {
  .contacts-card--blue::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.contacts-card--blue .contacts-card__line {
  color: #BEC7CE;
}
.contacts-card--blue .contacts-card__title {
  color: #fff;
}
.contacts-card--light {
  color: #3B474F;
}
.contacts-card--light::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #E5E9EB;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 768px) {
  .contacts-card--light::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.contacts-card--light .contacts-card__line {
  color: #3B474F;
}
.contacts-card--dark {
  color: #fff;
}
.contacts-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #3B474F;
  z-index: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 45px 100%, 0 calc(100% - 45px));
}
@media (max-width: 768px) {
  .contacts-card--dark::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 27px 100%, 0 calc(100% - 27px));
  }
}
.contacts-card--dark .contacts-card__line {
  color: #BEC7CE;
}

.contacts-details {
  width: 100%;
  border-top: 1px solid #0B6289;
}
.contacts-details__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 60%;
  grid-template-columns: 40% 60%;
  padding: 20px 0;
  border-bottom: 1px solid #E5E9EB;
  color: #3B474F;
  font-size: 16px;
  line-height: 1.4;
}
.contacts-details__row span {
  color: #3B474F 0.5;
}
.contacts-details__row strong {
  font-weight: 600;
}
/*# sourceMappingURL=index.css.map */