:root {
  --body-ff: "Mabry Pro", Arial, Helvetica, sans-serif;
  --body-fz: 18px;
  --body-lh: 1.4;
  --body-fc: var(--white);
  --body-bg: var(--blue-deep);
  --h-ff: var(--body-ff);
  --h-fw: 700;
  --h-lh: 1.3;
  --h-mb: 0 0 25px 0;
  --h1-fz: 70px;
  --h2-fz: 51px;
  --h3-fz: 48px;
  --h4-fz: 42px;
  --h5-fz: 36px;
  --h6-fz: 32px;
  --p-mb: 0 0 25px 0;
  --sec-p: 86px;
  --sec-h-mb: 30px;
  --sec-h-t-mb: 15px;
  --black: #000000;
  --white: #ffffff;
  --gray: #F6F6F6;
  --gray-light: #F0F0F0;
  --gray-dark: #45505B;
  --gray-deep: rgba(0, 0, 0, 0.1);
  --blue: #58A0E9;
  --blue-smoke: #3C84CD;
  --blue-deep: #18415A;
  --blue-dark: #133448;
}

@media screen and (max-width: 1200px) {
  :root {
    --body-fz: 16px;
    --h1-fz: 52px;
    --h2-fz: 42px;
    --h3-fz: 38px;
    --h4-fz: 32px;
    --h5-fz: 28px;
    --h6-fz: 26px;
    --sec-p: 60px;
  }
}
@media screen and (max-width: 991px) {
  :root {
    --h1-fz: 42px;
    --h2-fz: 38px;
    --h3-fz: 32px;
    --h4-fz: 28px;
    --h5-fz: 26px;
    --h6-fz: 24px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --h2-fz: 36px;
    --h3-fz: 28px;
    --h4-fz: 26px;
    --h5-fz: 24px;
    --h6-fz: 22px;
    --h-lh: 1.1;
    --sec-p: 45px;
    --sec-h-mb: 20px;
  }
}
@media screen and (max-width: 576px) {
  :root {
    --h2-fz: 28px;
    --h3-fz: 26px;
    --h4-fz: 24px;
    --h5-fz: 22px;
    --h6-fz: 20px;
  }
}
.container {
  box-sizing: border-box;
  --bs-gutter-x: 30px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.row {
  --bs-gutter-x: 30px;
}

.gx-base {
  --bs-gutter-x: 30px;
}
@media (max-width: 576px) {
  .gx-base {
    --bs-gutter-x: 15px;
  }
}

.gy-base {
  --bs-gutter-y: 30px;
}
@media (max-width: 576px) {
  .gy-base {
    --bs-gutter-y: 15px;
  }
}

.gx-small {
  --bs-gutter-x: 15px;
}

.gy-small {
  --bs-gutter-y: 15px;
}

.gx-medium {
  --bs-gutter-x: 30px;
}

.gy-medium {
  --bs-gutter-y: 30px;
}

@font-face {
  font-family: "Mabry Pro";
  src: url("../img/MabryPro-Bold.woff2") format("woff2"), url("../img/MabryPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry Pro";
  src: url("../img/MabryPro-Medium.woff2") format("woff2"), url("../img/MabryPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mabry Pro";
  src: url("../img/MabryPro-Regular.woff2") format("woff2"), url("../img/MabryPro-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fw-100 {
  font-weight: 100 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.color-black {
  color: var(--black) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.color-white {
  color: var(--white) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.color-gray {
  color: var(--gray) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.color-gray-dark {
  color: var(--gray-dark) !important;
}

.bg-gray-dark {
  background-color: var(--gray-dark) !important;
}

.color-gray-deep {
  color: var(--gray-deep) !important;
}

.bg-gray-deep {
  background-color: var(--gray-deep) !important;
}

.color-blue {
  color: var(--blue) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.color-blue-smoke {
  color: var(--blue-smoke) !important;
}

.bg-blue-smoke {
  background-color: var(--blue-smoke) !important;
}

.color-blue-deep {
  color: var(--blue-deep) !important;
}

.bg-blue-deep {
  background-color: var(--blue-deep) !important;
}

.color-blue-dark {
  color: var(--blue-dark) !important;
}

.bg-blue-dark {
  background-color: var(--blue-dark) !important;
}

.reset-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.d-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.m-0 {
  margin: 0 !important;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

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

.pb-0 {
  padding-bottom: 0 !important;
}

.position-relative {
  position: relative !important;
}

.full-img {
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}

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

body {
  font-family: var(--body-ff);
  font-size: var(--body-fz);
  line-height: var(--body-lh);
  color: var(--body-fc);
  background-color: var(--body-bg);
  -webkit-tap-highlight-color: transparent;
  text-rendering: geometricPrecision;
}

* {
  outline-offset: 3px;
  outline-color: var(--black);
}
*::selection {
  color: var(--white);
  background: var(--black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--h-ff);
  font-weight: var(--h-fw);
  line-height: var(--h-lh);
  margin: var(--h-mb);
  text-transform: uppercase;
}

h1,
.h1 {
  font-size: var(--h1-fz);
}

h2,
.h2 {
  font-size: var(--h2-fz);
}

h3,
.h3 {
  font-size: var(--h3-fz);
}

h4,
.h4 {
  font-size: var(--h4-fz);
}

h5,
.h5 {
  font-size: var(--h5-fz);
}

h6,
.h6 {
  font-size: var(--h6-fz);
}

p {
  margin: var(--p-mb);
}

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

b,
strong {
  font-weight: bold;
}

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

.button {
  font-family: inherit;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  padding: 2px 38px 0 38px;
  box-sizing: border-box;
  background-color: transparent;
  color: var(--white);
  min-height: 80px;
  transition: border-color ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
@media (max-width: 1200px) {
  .button {
    padding: 2px 38px 0 38px;
    min-height: 65px;
  }
}
.button-border {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button-border:hover {
  border-color: rgba(255, 255, 255, 0.6);
}
.button-border.border-gray {
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: var(--black);
}
.button-border.border-gray:hover {
  border-color: rgba(0, 0, 0, 0.6);
}
.button.bg-blue {
  color: var(--white);
  background-color: var(--blue-smoke);
  border-color: var(--blue-smoke);
}
.button.bg-blue:hover {
  opacity: 0.8;
}
.button-link {
  text-transform: uppercase;
  padding: 4px 0;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color ease-in-out 0.4s;
}
.button-link:hover {
  color: var(--blue-smoke);
}
.button-link:hover path {
  fill: var(--blue-smoke);
}
.button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.button-icon path {
  transition: fill ease-in-out 0.2s;
}
.button .button-icon {
  position: relative;
  top: -1.5px;
}
.button-video {
  display: block;
  position: relative;
  transition: opacity ease-in-out 0.2s;
}
.button-video:before, .button-video:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.button-video:before {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  background-color: var(--white);
}
.button-video:after {
  left: 50.08%;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 9.5px 0 9.5px 16px;
  border-color: transparent transparent transparent var(--blue-deep);
  transform: rotate(0deg) translate(-50%, -50%);
}
.button-video:hover {
  opacity: 0.8;
}

button.button.bg-blue {
  border: none;
}

.button {
  position: relative;
  overflow: hidden;
}

/* слой-заливка */
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue-dark); 
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 4.5s ease;
  z-index: 0;
}


.button span {
  position: relative;
  z-index: 1;
}

/* запускаем анимацию при loading */
.button.loading::before {
  transform: scaleX(1);
}

.button.loading.success::before {
  transform: scaleX(0)!important;
  transition: transform 0.1s ease;
}





.input-group {
  margin-bottom: 12px;
}
.input-label {
  display: block;
  margin-bottom: 5px;
}
.input-line:not(:last-child) {
  margin-bottom: 24px;
}
.input-control {
  font-family: inherit;
  font-size: 16px;
  color: var(--black);
  max-width: 100%;
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  box-sizing: border-box;
  border: 1px solid transparent;
  background-color: var(--gray-light);
  outline: none;
  transition: border-color ease-in-out 0.2s;
}
.input-control::-webkit-input-placeholder {
  color: var(--black);
  opacity: 0.2;
}
.input-control:-moz-placeholder {
  color: var(--black);
  opacity: 0.2;
}
.input-control::-moz-placeholder {
  color: var(--black);
  opacity: 0.2;
}
.input-control:-ms-input-placeholder {
  color: var(--black);
  opacity: 0.2;
}
.input-control:focus {
  border-color: var(--black);
}
.input-control.bordered {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.input-control.bordered:focus {
  border-color: var(--black);
}
.input-checkbox, .input-radio {
  display: block;
  margin: 0;
  position: relative;
}
.input-checkbox:not(:last-child), .input-radio:not(:last-child) {
  margin-bottom: 10px;
}
.input-checkbox input[type=checkbox],
.input-checkbox input[type=radio], .input-radio input[type=checkbox],
.input-radio input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 1;
  visibility: hidden;
}
.input-checkbox span, .input-radio span{
  display: block;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
.input-checkbox span a, .input-radio span a {
  color: var(--black);
  text-decoration: none;
}
.input-checkbox span a:hover, .input-radio span a:hover {
  text-decoration: underline;
}

.policy_label span {
  display: block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}
.policy_label span a  {
  color: var(--black);
  text-decoration: none;
}
.policy_label span a:hover {
  text-decoration: underline;
}

.input-checkbox span:before, .input-checkbox span:after, .input-radio span:before, .input-radio span:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 1px;
  cursor: pointer;
  transition: top ease-in-out 0.2s, left ease-in-out 0.2s, opacity ease-in-out 0.2s, background-color ease-in-out 0.2s;
}
.input-checkbox input[type=checkbox]:checked + span:before {
  background-color: var(--blue-deep);
}
.input-checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.input-checkbox span:before {
  background-color: var(--gray-light);
}
.input-checkbox span:after {
  background-image: url("data:image/svg+xml,%3csvg%20width='11'%20height='8'%20viewBox='0%200%2011%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%203.5L4%206.5L9.5%201'%20stroke='white'%20stroke-width='2'/%3e%3c/svg%3e");
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
.input-radio input[type=radio]:checked + span:before {
  background-color: var(--s-black);
}
.input-radio input[type=radio]:checked + span:after {
  opacity: 1;
}
.input-radio span:before, .input-radio span:after {
  border-radius: 100%;
}
.input-radio span:after {
  width: 12px;
  height: 12px;
  left: 5px;
  top: 6px;
  background-color: var(--s-white);
}
.input-radio span:before {
  border: 1px solid var(--s-black);
}

select.input-control {
  background-image: url("data:image/svg+xml,%3csvg%20width='19'%20height='11'%20viewBox='0%200%2019%2011'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%201L9.5%209.5L18%201'%20stroke='black'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.section {
  padding-top: var(--sec-p);
  padding-bottom: var(--sec-p);
  overflow: hidden;
}
.section.has-top-border {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.section.has-bottom-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.section-header {
  margin-bottom: var(--sec-h-mb);
}
.section-header.d-flex {
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .section-header.d-flex .button {
    min-width: 430px;
  }
}
@media screen and (min-width: 1440px) {
  .section-header.d-flex .button.custom {
    min-width: 327px;
  }
}
.section-footer {
  margin-top: var(--sec-h-mb);
}
@media (max-width: 991px) {
  .section-footer .button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .section-footer .button {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.section-title {
  margin-bottom: var(--sec-h-t-mb);
}
.section-title:last-child {
  margin: 0;
}
.section-actions {
  gap: 32px;
}

.modal {
  --bs-modal-width: 465px;
}
.modal-close {
  position: absolute;
  cursor: pointer;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  top: 0;
  right: 0;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: opacity ease-in-out 0.2s;
  opacity: 0.2;
  z-index: 3;
}
.modal-close:hover {
  opacity: 1;
}
.modal-content {
  padding: 40px;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}
@media (max-width: 576px) {
  .modal-content {
    padding: 30px;
  }
}
.modal-content-header {
  margin-bottom: 24px;
}
.modal-content-title {
  margin: 0;
  font-size: 32px;
  color: var(--black);
  line-height: 1.2;
  text-transform: none;
}
@media (max-width: 576px) {
  .modal-content-title {
    font-size: 26px;
  }
}
.modal-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: var(--radius-xs);
}
.modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: relative;
}
.swiper-pagination-bullet {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--black);
  opacity: 0.5 !important;
  transition: opacity ease-in-out 0.2s;
}
.swiper-pagination-bullet-active {
  opacity: 1 !important;
}
.swiper-control {
  color: var(--white);
  font-family: inherit;
  font-size: 22px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border: none;
  background-color: var(--black);
  z-index: 2;
  width: 40px;
  height: 40px;
  transition: opacity ease-in-out 0.2s;
  --control-gap: -65px;
}
.swiper-control:hover {
  opacity: 0.5;
}
.swiper-control.prev {
  left: var(--control-gap);
}
.swiper-control.next {
  right: var(--control-gap);
}
.swiper-control.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.inside-box {
  position: relative;
}

.inside_box_height {
  height: 700px;
}

@media (max-width: 1199px) {

.inside_box_height {

  height: 500px;

}
}


@media (max-width: 991px) {

.inside-box {

  height: auto;

}
}




.inside-box-inner {
  z-index: 2;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}
@media screen and (min-width: 991px) {
  .inside-box-inner {
    position: absolute;
    max-width: 500px;
  }
  .inside-box-inner.top-left {
    left: 40px;
    top: 40px;
  }
  .inside-box-inner.bottom-left {
    bottom: 40px;
    left: 40px;
    max-width: 565px;
  }
}
@media (max-width: 991px) {
  .inside-box-inner {
    padding: 30px;
  }
}
@media (max-width: 576px) {
  .inside-box-inner {
    padding: 20px;
  }
}
.inside-box-tag {
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 576px) {
  .inside-box-tag {
    font-size: 14px;
  }
}
.inside-box-tag, .inside-box-title {
  margin-bottom: 16px;
  line-height: 1.1;
      z-index: 1;
    position: relative;
}
@media (max-width: 576px) {
  .inside-box-tag, .inside-box-title {
    margin-bottom: 12px;
  }
}
.inside-box-title {
  font-size: 42px;
  text-transform: none;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .inside-box-title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .inside-box-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .inside-box-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .inside-box-title {
    font-size: 26px;
  }
}
.inside-box-desc {
  font-size: 20px;
  opacity: 0.6;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .inside-box-desc {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .inside-box-desc {
    font-size: 16px;
  }
}
.inside-box-desc:last-child {
  margin: 0;
}
.inside-box-footer {
  margin-top: 35px;
}

.controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.controls-button {
  cursor: pointer;
  background-color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  width: 40px;
  height: 80px;
  transition: background-color ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .controls-button {
    height: 40px;
  }
}
.controls-button:hover {
  background-color: var(--blue);
}
.controls-button.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.controls-button.fill-black {
  background-color: transparent;
}
.controls-button.fill-black path {
  stroke: black;
}
.controls-button.fill-black:hover {
  opacity: 0.5;
}

.tags {
  gap: 2px;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .tags {
    margin-bottom: 20px;
  }
}
.tags li a {
  display: inline-block;
  padding: 12px 15px 10px 15px;
  box-sizing: border-box;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .tags li a {
    font-size: 14px;
  }
}
.tags li a.current, .tags li a:hover {
  background-color: var(--blue);
}

.pagination {
  gap: 2px;
}
@media (max-width: 576px) {
  .pagination {
    justify-content: center;
  }
}
.pagination li a {
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100%;
  transition: background-color ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .pagination li a {
    font-size: 14px;
  }
}
.pagination li a.current, .pagination li a:hover {
  background-color: var(--blue);
}

.brand {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px;
  box-sizing: border-box;
}
.brand-img {
  width: 180px;
  height: 104px;
}
@media (max-width: 1440px) {
  .brand-img {
    width: 120px;
    height: 80px;
  }
}
.brand-img img {
  max-height: 40px;
  max-width: 110px;
}
@media (max-width: 1440px) {
  .brand-img img {
    max-height: 30px;
    max-width: 80px;
  }
}
.brand-name {
  flex: 1;
  font-size: 24px;
  line-height: 1.2;
  padding: 8px 8px 8px 16px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .brand-name {
    font-size: 20px;
  }
}




.bread {
  display: flex;
  gap: 4px;
}

.bread a {
  text-decoration: none;
}

.bread_now {
  opacity: .5;
}

.bread-item + .bread-item::before {
  content: "/";
  margin: 0 4px;
}

.slider_img .controls-button {
  background-color: #fff; 
}

.company-about-text ul {
  margin-left: 14px;
} 


.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 20px 0;
  transition: background-color ease-in-out 0.2s;
}
.header-single {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.header.active-menu, .header.fixed {
  background-color: var(--blue-dark);
}
.header.fixed .header-logo {
  width: 100px;
}
@media (max-width: 576px) {
  .header {
    padding: 15px 0;
  }
}
.header a {
  text-decoration: none;
  transition: color ease-in-out 0.2s, opacity ease-in-out 0.2s;
}
.header a:hover {
  color: var(--blue-smoke);
}
.header-logo {
  display: block;
  width: 226px;
  will-change: auto;
  transition: width ease-in-out 0.2s !important;
}
@media (max-width: 1440px) {
  .header-logo {
    width: 180px;
  }
}
@media (max-width: 1200px) {
  .header-logo {
    width: 100px;
  }
}
.header-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .header-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    max-width: 100%;
    height: calc(100dvh - 100%);
    overflow-y: auto;
    width: 100%;
    left: 50%;
    top: 100%;
    background-color: var(--blue-dark);
    padding: 30px;
    box-sizing: border-box;
    transform: translate(-50%, 0);
    opacity: 0;
    visibility: hidden;
    transition: opacity ease-in-out 0.2s, visibility ease-in-out 0.2s;
  }
  .header-nav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 576px) {
  .header-nav {
    padding: 15px;
  }
}
@media (max-width: 1200px) {
  .header-nav-container {
    max-width: 920px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 991px) {
  .header-nav-container {
    max-width: 690px;
  }
}
@media (max-width: 768px) {
  .header-nav-container {
    max-width: 500px;
  }
}
@media (max-width: 576px) {
  .header-nav-container {
    max-width: 100%;
  }
}
.header-nav-list {
  gap: 32px;
}
@media (max-width: 1200px) {
  .header-nav-list {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.header-nav-list li a {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 15px;
}
@media (max-width: 1200px) {
  .header-nav-list li a {
    font-size: 20px;
  }
}
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 600;
}
.header-contact-phone {
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 1440px) {
  .header-contact-phone {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  .header-contact-phone {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .header-contact-phone {
    font-size: 18px;
  }
}
.header-contact-email {
  font-size: 15px;
  opacity: 0.7;
}
@media (max-width: 1440px) {
  .header-contact-email {
    font-size: 14px;
  }
}
.header-contact-email:hover {
  opacity: 1;
}
.header-toggle {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  width: 30px;
  height: 18px;
  cursor: pointer;
}
.header-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--white);
  position: absolute;
  transition: transform ease-in-out 0.2s, opacity ease-in-out 0.2s, top ease-in-out 0.2s, bottom ease-in-out 0.2s;
}
.header-toggle span:nth-child(1) {
  top: 0;
}
.header-toggle span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
.header-toggle span:nth-child(3) {
  bottom: 0;
}
.header-toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.header-toggle.active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.active span:nth-child(3) {
  bottom: inherit;
  top: 50%;
  transform: translate(0, -50%) rotate(-45deg);
}
.header-actions {
  gap: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
}
.hero.has-bg {
  background-position: center;
  background-size: cover;
  position: relative;
  border: none;
}
.hero.has-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.6;
  background-color: var(--blue-dark);
}
.hero.has-bg .container {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 1440px) {
  .hero.has-bg .container {
    padding-top: 290px;
  }
}
.hero-img {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
  width: auto;
  height: calc(100% - 120px);
}
.hero-img2 {
    position: absolute;
    pointer-events: none;
    bottom: -120px;
    right: 0;
    margin-right: -353px;
    width: auto;
    height: calc(100% + 50px);
    opacity: .4;
  }

@media (max-width: 1200px) {
  .hero-img {
    min-width: 100%;
    height: auto;
  }

  .hero-img2 {
    max-width: 100%; 
    height: auto;
  }
}
@media (max-width: 768px) {
  .hero-img {
    min-width: 150%;
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .hero-img {
    min-width: 200%;
  }
}
.hero-container {
  min-height: 100dvh;
  padding-bottom: 70px;
  padding-top: 218px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .hero-container {
    padding-bottom: 50px;
    padding-top: 120px;
  }
}
@media (max-width: 576px) {
  .hero-container {
    padding-bottom: 45px;
  }
}
.hero-content {
  margin-bottom: 60px;
}
.hero-content.custom .hero-content-title {
  max-width: 1105px;
  margin-bottom: 25px;
}
.hero-content-title {
  max-width: 608px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .hero-content-title {
    max-width: 500px;
  }
}
@media (max-width: 991px) {
  .hero-content-title {
    max-width: 400px;
  }
}
.hero-content-desc {
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  max-width: 950px;
}
.hero-content-desc:last-child {
  margin: 0;
}
@media (max-width: 1440px) {
  .hero-content-desc {
    font-size: 24px;
    max-width: 750px;
  }
}
@media (max-width: 1200px) {
  .hero-content-desc {
    font-size: 20px;
  }
}
.hero-footer {
  display: flex;
  align-items: center;
  gap: 37px;
}
@media (max-width: 1440px) {
  .hero-footer {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .hero-footer:not(.custom) {
    padding: 20px;
    background-color: var(--blue-dark);
  }
}
.hero-footer-icon {
  max-width: 69px;
}
@media (max-width: 1440px) {
  .hero-footer-icon {
    max-width: 50px;
  }
}
.hero-footer-text {
  flex: 1;
  max-width: 488px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .hero-footer-text {
    font-size: 20px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .hero-footer-text {
    font-size: 16px;
  }
}

.products-line:not(:last-child) {
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .products-line:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .products-line:not(:last-child) {
    margin-bottom: 30px;
  }
}
.products-box {
  display: block;
  position: relative;
  height: 440px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 1440px) {
  .products-box {
    height: 340px;
  }
}
@media (max-width: 576px) {
  .products-box {
    height: 280px;
  }
}
.products-box:hover {
  opacity: 0.8;
}
.products-box:before {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, #030e14 100%);
}
.products-box:not(:last-child) {
  margin-bottom: 16px;
}
.products-box-content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 32px 44px 30px 30px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--white);
  z-index: 2;
}
@media (max-width: 1440px) {
  .products-box-content {
    padding: 25px;
  }
}
@media (max-width: 991px) {
  .products-box-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.products-box-title {
  flex: 1;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .products-box-title {
    font-size: 38px;
  }
}
@media (max-width: 576px) {
  .products-box-title {
    font-size: 32px;
  }
}
.products-box-tag {
  display: inline-block;
  padding: 14px 24px 11px 24px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1440px) {
  .products-box-tag {
    font-size: 12px;
    padding: 10px 14px 7px 14px;
  }
}
@media screen and (min-width: 991px) {
  .products-cats.custom {
    column-count: 2;
    column-gap: 60px;
  }
  .products-cats.custom .products-cats-item {
    padding-left: 0;
    padding-right: 0;
  }
  .products-cats.custom .products-cats-item:nth-last-child(1) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.products-cats-item {
  display: flex;
  width: 100%;
  padding: 50px 32px;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: 500;
  text-transform: none;
}
.products-cats-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 1440px) {
  .products-cats-item {
    font-size: 26px;
    padding: 40px 25px;
  }
}
@media (max-width: 576px) {
  .products-cats-item {
    font-size: 22px;
    padding: 24px 0;
  }
}
.services-box {
  position: relative;
  overflow: hidden;
}
.services-box.has-bg {
  background-position: center;
  background-size: cover;
  min-height: 320px;
}
@media (max-width: 768px) {
  .services-box.has-bg {
    min-height: 330px;
  }
}
.services-box.has-bg .services-box-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px 30px 15px 30px;
    z-index: 2;
}

.services-box:hover  .services-box-content {
    padding: 30px;
}

@media (max-width: 576px) {
  .services-box.has-bg .services-box-content {
    padding: 20px;
  }
}
.services-box.has-bg:before {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top, black, transparent);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, #0a212f 100%); 
}


.services-box.has-bg:hover:before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #0a212f 100%); 
   height: 100%;
}

.services-box-content {
  padding: 45px 35px 25px 35px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .services-box-content {
    padding: 35px 35px 10px 35px;
  }
}
@media (max-width: 576px) {
  .services-box-content {
    padding: 20px 20px 10px 20px;
  }
}
.services-box-name {
  font-size: 28px;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.0;
}
@media (max-width: 1440px) {
  .services-box-name {
    font-size: 24px;
  }
}






.services-box-name,
.services-box-desc{
  transform: translateY(var(--desc-shift));
  transition: transform .5s ease, opacity .5s ease;
  will-change: transform;
  pointer-events: none;
}

.services-box-desc{ opacity: 0; }

.services-box:hover .services-box-name,
.services-box:hover .services-box-desc,
.services-box:focus-within .services-box-name,
.services-box:focus-within .services-box-desc{
  transform: translateY(0);
}

.services-box:hover .services-box-desc,
.services-box:focus-within .services-box-desc{
  opacity: 1;
}



.services-box-name2 {
  font-size: 28px;
  text-transform: none;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .services-box-name2 {
    font-size: 24px;
  }
}
.services-box-desc2 {
  font-weight: 500;
  opacity: 0.6;
  line-height: 1.2;
}


.services-box2 {
  position: relative;
}


.objects-controls {
  position: absolute;
  z-index: 3;
  right: 57px;
  bottom: 57px;
}
@media (max-width: 991px) {
  .objects-controls {
    bottom: inherit;
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 576px) {
  .objects-controls {
    top: 20px;
    right: 20px;
  }
}
.objects-row {
  --bs-gutter-y: 60px;
}
@media (max-width: 1440px) {
  .objects-row {
    --bs-gutter-y: 50px;
  }
}
@media (max-width: 1200px) {
  .objects-row {
    --bs-gutter-y: 40px;
  }
}
@media (max-width: 991px) {
  .objects-row {
    --bs-gutter-y: 30px;
  }
}
.objects-box-img {
  position: relative;
  padding-top: 59.5%;
  margin-bottom: 24px;
}
.objects-box-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  left: 0;
  top: 0;
}
.objects-box-tag {
  font-size: 15px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.objects-box-name {
  margin-bottom: 8px;
  line-height: 1.2;
  font-size: 24px;
  text-transform: none;
}
@media (max-width: 1440px) {
  .objects-box-name {
    font-size: 22px;
  }
}
.objects-box-name a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.objects-box-name a:hover {
  color: var(--blue);
}
.objects-box-desc {
  font-weight: 500;
  opacity: 0.6;
}
.objects-item:not(:last-child) {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 576px) {
  .objects-item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.objects-item-row {
  --bs-gutter-x: 40px;
}
.objects-item-geo {
  margin-bottom: 15px !important;
}
.objects-item-geo .project-geo-text {
  font-size: 16px;
}
.objects-item-title {
  margin-bottom: 25px;
  font-size: 40px;
  font-weight: 500;
  text-transform: none;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .objects-item-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .objects-item-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .objects-item-title {
    font-size: 26px;
  }
}
.objects-item-title a {
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.objects-item-title a:hover {
  color: var(--blue);
}
.objects-item-meta {
  column-count: 1 !important;
}
@media screen and (min-width: 1200px) {
  .objects-item .button {
    min-height: 60px;
  }
}

.about-desc {
  position: relative;
}
.about-desc-img {
  position: absolute;
  right: calc(100% + 80px);
  min-width: 1050px;
  top: 0;
}
@media (max-width: 1440px) {
  .about-desc-img {
    min-width: 900px;
  }
}
@media (max-width: 991px) {
  .about-desc-img {
    right: 10%;
    min-width: 800px;
    opacity: 0.2;
  }
}
.about-desc-text {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .about-desc-text {
    font-size: 28px;
  }
}
@media (max-width: 991px) {
  .about-desc-text {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media (max-width: 576px) {
  .about-desc-text {
    font-size: 22px;
  }
}
.about-desc-text p:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .about-desc-text p:not(:last-child) {
    margin-bottom: 20px;
  }
}
.about-desc .button {
  min-width: 230px;
}
@media (max-width: 576px) {
  .about-desc .button {
    min-width: auto;
    width: 100%;
  }
}

.clients-slider {
  overflow: inherit;
}
.clients-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.clients-slider .swiper-slide {
  width: 220px;
  background-color: white;
}
@media (max-width: 576px) {
  .clients-slider .swiper-slide {
    width: 180px;
  }
}
.clients-box {
  height: 90px;
}

.clients-box img {
  max-width: 120px;
  max-height: 74px;
  height: auto;
  display: block;
}

.fill_x .fill_x_content{
  overflow:hidden;
}
.fill_x .fill_x_content::before{
  content:""; position:absolute; inset:0; background:var(--blue) !important; transform:scaleX(0); 
  transform-origin:left; transition:transform .65s ease;
}
.fill_x:hover .fill_x_content::before{ transform:scaleX(1); } 


.grid-one {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
}

.grid-one .grid-col:nth-child(1) {
  grid-area: 1/3/2/4;
}

.grid-one .grid-col:nth-child(2) {
  grid-area: 1/4/2/5;
}

.grid-one .grid-col:nth-child(3) {
  grid-area: 2/3/3/5;
}

.grid-one .grid-col:nth-child(4) {
  grid-area: 1/1/3/3;
}


.grid-one .grid-col:nth-child(5) {
    grid-area: 3 / 1 / 3 / 3;
}

@media (max-width: 991px) {
  .grid-one{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 8px;
  }

  .grid-one .grid-col{
    grid-area: auto !important; /* сброс ручных grid-area */
    height: auto;
    min-height: 280px;
  }
}


@media (max-width: 678px) {
  .grid-one{
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-gap: 8px;
  }

  .grid-one .grid-col{
    grid-area: auto !important; 
    height: auto;
    min-height: 280px;
  }
}


.routs-box {
  padding: 65px 45px;
  position: relative;
  box-sizing: border-box;
}
@media (max-width: 1200px) {
  .routs-box {
    padding: 45px;
  }
}
@media (max-width: 576px) {
  .routs-box {
    padding: 20px;
  }
}
.routs-box-header {
  margin-bottom: 45px;
  max-width: 480px;
}
@media (max-width: 576px) {
  .routs-box-header {
    margin-bottom: 20px;
  }
}
.routs-box-title {
  margin-bottom: 15px;
  font-size: 42px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .routs-box-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .routs-box-title {
    font-size: 28px;
  }
}
.routs-box-desc {
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .routs-box-footer .button {
    min-width: 315px;
  }
}
@media (max-width: 576px) {
  .routs-box-footer .button {
    width: 100%;
  }
}
.routs-box-decor {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  pointer-events: none;
}
@media (max-width: 576px) {
  .routs-box-decor {
    opacity: 0.5;
  }
}

.gallery-header {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.gallery-slider {
  overflow: inherit;
}
.gallery-slider:not(:last-child) {
  margin-bottom: 16px;
}
.gallery-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
}
.gallery-slider .swiper-slide {
  width: auto;
  height: 300px;
}
@media (max-width: 1200px) {
  .gallery-slider .swiper-slide {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .gallery-slider .swiper-slide {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .gallery-slider .swiper-slide {
    height: 140px;
  }
}
.gallery-slider-1 {
  transform: scale(-1, 1);
}
.gallery-slider-1 img {
  transform: scale(-1, 1);
}

.news-box {
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: opacity ease-in-out 0.2s;
}
@media (max-width: 576px) {
  .news-box {
    padding: 20px;
  }
}
.news-box:hover {
  opacity: 0.6;
}
.news-box-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.news-box-date {
  display: block;
  margin-bottom: 55px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.4;
}
@media (max-width: 1440px) {
  .news-box-date {
    margin-bottom: 30px;
  }
}
.news-box-title {
  text-transform: none;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
}
.excursion-box {
  padding: 105px 45px 80px 45px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .excursion-box {
    padding: 80px 50px;
  }
}
@media (max-width: 576px) {
  .excursion-box {
    padding: 35px;
  }
}
.excursion-box-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
}
@media (max-width: 1440px) {
  .excursion-box-img {
    right: -200px;
  }
}
@media (max-width: 768px) {
  .excursion-box-img {
    right: 0;
    width: 100%;
    height: auto;
    opacity: 0.2;
  }
}
.excursion-box-inner {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .excursion-box-inner .button {
    width: 100%;
  }
}
.excursion-box-title {
  text-transform: none;
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 991px) {
  .excursion-box-title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .excursion-box-title {
    font-size: 26px;
  }
}
.excursion-box-desc {
  max-width: 416px;
  opacity: 0.6;
  line-height: 1.2;
  margin-bottom: 35px;
}
@media (max-width: 576px) {
  .excursion-box-desc {
    margin-bottom: 20px;
  }
}

.company-header {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.company-title {
  max-width: 570px;
}
.company-logo {
  max-width: 84px;
  width: 100%;
}
@media (max-width: 1440px) {
  .company-logo {
    max-width: 50px;
  }
}
.company-about {
  --bs-gutter-x: 50px;
}
@media (max-width: 1200px) {
  .company-about {
    --bs-gutter-x: 30px;
  }
}
.company-about-title {
  text-transform: none;
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .company-about-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .company-about-title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
.company-about-desc {
  font-size: 24px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .company-about-desc {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .company-about-desc {
    font-size: 18px;
  }
}
.company-advantages {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .company-advantages {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 991px) {
  .company-advantages .col-lg-4:nth-child(3n) .company-advantages-text {
    border: none;
  }
}
@media (max-width: 991px) {
  .company-advantages .col-lg-4:last-child .company-advantages-text {
    border: none;
  }
}
.company-advantages-text {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  padding-right: 30px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 991px) {
  .company-advantages-text {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
  }
}

.partners-box {
  gap: 30px;
}
@media (max-width: 1440px) {
  .partners-box {
    gap: 20px;
  }
}
.partners-box-logo {
  width: 256px;
  height: 138px;
}
@media (max-width: 1440px) {
  .partners-box-logo {
    width: 180px;
    height: 110px;
  }
}
@media (max-width: 576px) {
  .partners-box-logo {
    width: 140px;
    height: 80px;
  }
}
.partners-box-logo img {
  max-height: 50px;
  max-width: 190px;
  display: block;
}
@media (max-width: 1440px) {
  .partners-box-logo img {
    max-height: 40px;
    max-width: 170px;
  }
}
@media (max-width: 576px) {
  .partners-box-logo img {
    max-height: 30px;
    max-width: 130px;
  }
}
.partners-box-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.partners-box-desc {
  font-size: 20px;
  max-width: 300px;
  margin-bottom: 20px;
}
@media (max-width: 1440px) {
  .partners-box-desc {
    font-size: 18px;
  }
}
.partners-box-url {
  font-size: 18px;
}
@media (max-width: 1440px) {
  .partners-box-url {
    font-size: 16px;
  }
}

.licenses-box-img {
  padding: 65px 59px;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .licenses-box-img {
    padding: 50px;
  }
}
.licenses-box-desc {
  font-size: 18px;
}
@media (max-width: 1440px) {
  .licenses-box-desc {
    font-size: 16px;
  }
}




.topmenu { list-style: none; margin: 0; padding: 0; }
.topmenu > li { position: relative; }

/* ссылка верхнего уровня */
.tags li a.toplink{
  display: inline-block;
  position: relative;
  padding-right: 36px; 
  color: #fff;
  text-decoration: none;
}

/* стрелочка справа (как caret вниз) */
.has-sub > .toplink::after{
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid rgba(255,255,255,.9);
}

.tags .submenu{
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 300px;
  display: none;              /* скрыто по умолчанию */
  background: #0f3f55;
  z-index: 20;
}

/* показываем при наведении */
.has-sub:hover > .submenu{
  display: block;
}

/* ссылки в подменю */
.tags .submenu a{
  display: block;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  width: 100%;
}
.tags .submenu a:hover{ background: rgba(255,255,255,.08); }

/* чтобы подменю не “дергало” верстку и не перекрывало ховер */
.has-sub { position: relative; }


.project {
  overflow: inherit;
}
.project-header {
  margin-bottom: 32px;
}
.project-meta {
  margin-bottom: 40px;
  column-count: 2;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .project-meta {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .project-meta {
    column-count: 1;
  }
}
.project-meta li:not(:last-child) {
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .project-meta li:not(:last-child) {
    margin-bottom: 10px;
  }
}
.project-meta li span {
  font-weight: 600;
  color: #58A0E9;
}

.project-meta_single li span {
  font-weight: 600;
  color: #fff;
  opacity: .5;
}

.project-geo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 29px;
}
.project-geo-icon {
  width: 24px;
  height: 24px;
}
.project-geo-text {
  flex: 1;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .project-geo-text {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .project-geo-text {
    font-size: 16px;
  }
}
.project-title {
  font-size: 48px;
}
@media (max-width: 1200px) {
  .project-title {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .project-title {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .project-title {
    font-size: 32px;
  }
}
.project-cta {
  position: sticky;
  top: 110px;
  padding: 40px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .project-cta {
    padding: 30px;
  }
}
.project-cta-header {
  margin-bottom: 45px;
}
@media (max-width: 1440px) {
  .project-cta-header {
    margin-bottom: 30px;
  }
}
.project-cta-title {
  line-height: 1.2;
  font-size: 32px;
  margin-bottom: 16px;
}
@media (max-width: 1440px) {
  .project-cta-title {
    font-size: 28px;
    margin-bottom: 14px;
  }
}
.project-cta-desc {
  opacity: 0.6;
  font-size: 20px;
  line-height: 1.1;
}
@media (max-width: 1440px) {
  .project-cta-desc {
    font-size: 18px;
  }
}
.project-cta-footer .button {
  margin-bottom: 16px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1440px) {
  .project-cta-footer .button {
    font-size: 14px;
  }
}
.project-cta-footer small {
  opacity: 0.5;
  font-size: 14px;
  line-height: 1.2;
  display: inline-block;
}
.project-img-inner {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .project-img-inner {
    margin-bottom: 10px;
  }
}
.project-img-desc {
  line-height: 1.2;
  opacity: 0.6;
}
@media (max-width: 576px) {
  .project-img-desc {
    font-size: 14px;
  }
}
.project-desc {
  font-size: 24px;
  line-height: 1.2;
}

.project-desc ul {
      padding-left: 15px;
}
@media (max-width: 1440px) {
  .project-desc {
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .project-desc {
    font-size: 20px;
  }
}
.project-desc:last-child {
  margin: 0;
}
.project-content {
  font-size: 18px;
}
.project-content h2,
.project-content h3,
.project-content h4,
.project-content h5,
.project-content h6 {
  text-transform: none;
}
.project-content-line:not(:last-child) {
  margin-bottom: 40px;
}

.project-content-line ul {
  margin-left: 14px;
}

.single {
  padding-top: 220px;
}
@media (max-width: 1200px) {
  .single {
    padding-top: 120px;
  }
}

.cta-header .section-desc {
  opacity: 0.5;
  max-width: 450px;
}
.cta-item:not(.current) {
  display: none;
}
.cta-item-header {
  margin-bottom: 32px;
  line-height: 1.2;
  font-weight: 500;
  font-size: 40px;
}
@media (max-width: 1440px) {
  .cta-item-header {
    font-size: 32px;
    margin-bottom: 25px;
  }
}
@media (max-width: 1200px) {
  .cta-item-header {
    font-size: 26px;
  }
}
.cta-item-content {
  margin-bottom: 30px;
}
.cta-item-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 576px) {
  .cta-item-footer {
    flex-direction: column;
    gap: 15px;
  }
}
.cta-item-button {
  padding-left: 70px;
  padding-right: 70px;
}
@media (max-width: 576px) {
  .cta-item-button {
    width: 100%;
  }
}
.cta-item-progress {
  flex: 1;
}
@media (max-width: 576px) {
  .cta-item-progress {
    width: 100%;
    text-align: center;
  }
}
.cta-item-progress-text {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 9px;
  opacity: 0.5;
}
.cta-item-progress-val {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  background-color: var(--gray-light);
  height: 3px;
}
.cta-item-progress-val span {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--blue);
  border-radius: 3px;
}
.cta-item-checkbox {
  display: block;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.cta-item-checkbox input {
  display: none;
}
.cta-item-checkbox input:checked + .cta-item-checkbox-inner:before {
  background-color: var(--blue-deep);
  background-image: url("data:image/svg+xml,%3csvg%20width='11'%20height='8'%20viewBox='0%200%2011%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%203.5L4%206.5L9.5%201'%20stroke='white'%20stroke-width='2'/%3e%3c/svg%3e");
}
.cta-item-checkbox-inner {
  position: relative;
  padding: 24px 32px 24px 80px;
  box-sizing: border-box;
}
.cta-item-checkbox-inner:before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: var(--gray-light);
  position: absolute;
  left: 32px;
  top: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px;
  transition: background-color ease-in-out 0.2s, background-image ease-in-out 0.2s;
}
.cta-item-checkbox-name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}
.cta-item-checkbox-name:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1440px) {
  .cta-item-checkbox-name {
    font-size: 20px;
  }
}
.cta-item-checkbox-desc {
  font-size: 20px;
  line-height: 1.2;
  opacity: 0.5;
}
@media (max-width: 1440px) {
  .cta-item-checkbox-desc {
    font-size: 16px;
  }
}

.cta-prev {
  color: #000;
    border: 2px solid #e5e5e5;
}

.steps {
  overflow: inherit;
}
.steps-header .section-desc {
  opacity: 0.6;
  font-size: 20px;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .steps-header .section-desc {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  .steps-header .section-desc {
    font-size: 16px;
  }
}
.steps-img {
  position: sticky;
  top: 110px;
  opacity: 0.5;
}
@media screen and (min-width: 991px) {
  .steps-img {
    min-width: calc(100% + 100px);
    margin-left: -100px;
  }
}
.steps-item {
  background-color: var(--blue-dark);
  padding: 40px;
  box-sizing: border-box;
  position: relative;
}
.steps-item:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .steps-item:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .steps-item {
    padding: 30px;
  }
}
.steps-item-num {
  position: absolute;
  right: 40px;
  top: 40px;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .steps-item-num {
    right: 20px;
    top: 20px;
  }
}
.steps-item-title {
  text-transform: none;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 20px;
  padding-right: 30px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .steps-item-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  .steps-item-title {
    font-size: 28px;
  }
}
@media (max-width: 576px) {
  .steps-item-title {
    font-size: 22px;
  }
}
.steps-item-desc {
  font-size: 18px;
}
.steps-item-desc:last-child {
  margin: 0;
}
.steps-item-vals {
  font-size: 18px;
}
@media (max-width: 1440px) {
  .steps-item-vals {
    font-size: 16px;
  }
}
.steps-item-vals-item:not(:last-child) {
  margin-bottom: 20px;
}
.footer {
  padding-bottom: calc(var(--sec-p) / 1.3);
  box-sizing: border-box;
}
.footer-single {
  padding-top: calc(var(--sec-p) / 1.3);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer a {
  display: inline-block;
  text-decoration: none;
  transition: color ease-in-out 0.2s;
}
.footer a:hover {
  color: var(--blue-smoke);
}
.footer a.color-white:hover {
  color: var(--blue-smoke) !important;
}
.footer-map {
  filter: grayscale(100%);
}
@media (max-width: 991px) {
  .footer-map {
    pointer-events: none;
  }
}
.footer-row {
  --bs-gutter-y: 30px;
}
@media screen and (min-width: 1200px) {
  .footer-row {
    --bs-gutter-x: 70px;
  }
}
@media (max-width: 991px) {
  .footer-row {
    flex-direction: column-reverse;
  }
}
.footer-info {
  margin-bottom: 30px;
}
.footer-info-title {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 1440px) {
  .footer-info-title {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .footer-info-title {
    font-size: 24px;
  }
}
.footer-info-phones {
  gap: 50px;
  margin-bottom: 13px;
}
@media (max-width: 1440px) {
  .footer-info-phones {
    gap: 10px 30px;
  }
}
.footer-info-phones-item {
  font-size: 32px;
  font-weight: 600;
  color: var(--blue-smoke);
  line-height: 1;
}
@media (max-width: 1440px) {
  .footer-info-phones-item {
    font-size: 28px;
  }
}
@media (max-width: 1200px) {
  .footer-info-phones-item {
    font-size: 24px;
  }
}
.footer-info-phones, .footer-info-email {
  margin-bottom: 12px;
}
.footer-info-email {
  font-size: 22px;
  font-weight: 600;
}
.footer-info-email:hover {
  color: var(--blue-smoke);
}
.footer-info-time {
  font-size: 14px;
}
.footer-meta {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}
.footer-meta:not(:last-child) {
  margin-bottom: 35px;
}
.footer-meta-text {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 15px;
}

.footer-alfa {
  gap: 13px;
}
.footer-alfa-icon {
  width: 50px;
  height: 50px;
}
.footer-alfa-text {
  flex: 1;
}
.footer-nav {
  gap: 32px;
}
@media (max-width: 1440px) {
  .footer-nav {
    gap: 20px;
  }
}
@media (max-width: 1200px) {
  .footer-nav {
    gap: 10px;
  }
}
@media (max-width: 991px) {
  .footer-nav {
    margin-bottom: 30px;
    column-count: 2;
    display: block !important;
  }
}
.footer-nav li a {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .footer-nav li a {
    padding: 15px 0;
  }
}