@font-face {
  font-family: "Mulish";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/Mulish-Light.woff2") format("woff2"), url("../fonts/Mulish-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/Mulish-Regular.woff2") format("woff2"), url("../fonts/Mulish-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"), url("../fonts/Mulish-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Mulish";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/Mulish-Bold.woff2") format("woff2"), url("../fonts/Mulish-Bold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "STIX Two Text";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/STIXTwoText-Regular.woff2") format("woff2"), url("../fonts/STIXTwoText-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "STIX Two Text";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/STIXTwoText-SemiBold.woff2") format("woff2"), url("../fonts/STIXTwoText-SemiBold.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "STIX Two Text";
  font-weight: 700;
  font-style: normal;
  src: url("../fonts/STIXTwoText-Bold.woff2") format("woff2"), url("../fonts/STIXTwoText-Bold.woff") format("woff");
  font-display: swap;
}

*,
:before,
:after {
  outline: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --app-height: 100vh;
  --scrollbar-width: 0px;
  --sect-offset: 120px;
  --box-offset: 60px;
  --dark-color: #103B2A;
  --main-color: #215A42;
  --accent-color: #F5C776;
  --accent-dark-color: #CD9F4E;
  scroll-behavior: auto;
}

::-webkit-input-placeholder {
  opacity: 1;
}

::-moz-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}

body,
html {
  font-size: 16px;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  background: #fff;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.6;
  color: var(--dark-color);
}

.global-noscroll {
  margin-right: var(--scrollbar-width);
}

.global-noscroll,
.global-noscroll body {
  overflow: hidden !important;
}

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

a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
}

strong,
b {
  font-weight: bold;
}

p,
blockquote,
ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
}

ul,
ol {
  padding-left: 1.4em;
}

h1,
.h1,
h2,
.h2 {
  font-weight: bold;
  line-height: 1.15;
  font-size: 50px;
}

h3,
.h3 {
  font-weight: bold;
  line-height: 1.25;
  font-size: 38px;
}

h4,
.h4 {
  font-weight: bold;
  line-height: 1.35;
  font-size: 24px;
}

h5,
.h5 {
  font-weight: bold;
  line-height: 1.35;
  font-size: 18px;
}

h6,
.h6 {
  font-weight: bold;
  font-size: 1rem;
}

img {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.wrapper {
  overflow: hidden;
  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: var(--app-height);
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  width: 100%;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.container {
  width: 1710px;
  margin: 0 auto;
  padding: 0 15px;
}

.img-box {
  position: relative;
}

.img-box img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.img-full-box {
  overflow: hidden;
  position: relative;
}

.img-full-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.tt-upper {
  text-transform: uppercase;
}

.tt-none {
  text-transform: none;
}

.c-main {
  color: var(--main-color);
}

.m-sect {
  margin-top: var(--sect-offset);
  margin-bottom: var(--sect-offset);
}

.mt-sect {
  margin-top: var(--sect-offset);
}

.mb-sect {
  margin-bottom: var(--sect-offset);
}

.p-sect {
  padding-top: var(--sect-offset);
  padding-bottom: var(--sect-offset);
}

.pt-sect {
  padding-top: var(--sect-offset);
}

.pb-sect {
  padding-bottom: var(--sect-offset);
}

.p-box {
  padding: var(--box-offset);
}

span[class*=-gradient] {
  display: inline-block;
}

.c-gradient {
  color: var(--accent-color);
}

@supports (-webkit-background-clip: text) and (-webkit-text-fill-color: transparent) {
  .c-dark-gradient {
    background: -webkit-gradient(linear, left top, right top, from(#103B2A), to(rgba(16, 59, 42, 0.5)));
    background: linear-gradient(to right, #103B2A, rgba(16, 59, 42, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .c-light-gradient {
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0.5)));
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .c-gradient {
    background-color: var(--accent-color);
    background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

[data-animate-item] {
  opacity: 0;
}

[data-children-animate]>* {
  opacity: 0;
}

[data-animate] {
  opacity: 0;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

[data-animate].animated {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

[data-animate=fade].animated {
  -webkit-animation-name: fade;
  animation-name: fade;
}

[data-animate=fadeLeft].animated {
  -webkit-animation-name: fadeLeft;
  animation-name: fadeLeft;
}

[data-animate=fadeRight].animated {
  -webkit-animation-name: fadeRight;
  animation-name: fadeRight;
}

[data-animate=fadeDown].animated {
  -webkit-animation-name: fadeDown;
  animation-name: fadeDown;
}

[data-animate=zoomIn].animated {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
    transform: translate3d(0, 100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100px, 0, 0);
    transform: translate3d(100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.breadcrumbs {
  margin-bottom: 20px;
}

.breadcrumbs ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  position: relative;
  display: inline-block;
  margin-right: 0.3em;
  padding-right: 1em;
}

.breadcrumbs li:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -0.5em;
  content: "\e913";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 0.6em;
}

.breadcrumbs li:last-child {
  opacity: 0.4;
  margin-right: 0;
  padding-right: 0;
}

.breadcrumbs li:last-child:after {
  display: none;
}

.breadcrumbs a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.breadcrumbs a:hover {
  color: var(--accent-color);
}

.pagination,
.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.pagination {
  margin-top: var(--box-offset);
}

.pagination__arrow {
  display: inline-block;
  border-radius: 14px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 59, 42, 0.1);
  box-shadow: inset 0 0 0 1px rgba(16, 59, 42, 0.1);
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pagination__arrow:hover {
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
  box-shadow: inset 0 0 0 1px var(--accent-color);
}

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

.pagination__list a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0 8px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(16, 59, 42, 0.1);
  box-shadow: inset 0 0 0 1px rgba(16, 59, 42, 0.1);
  border-radius: 14px;
  text-decoration: none;
  min-width: 48px;
  line-height: 48px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pagination__list a:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 14px;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.pagination__list a:hover {
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
  box-shadow: inset 0 0 0 1px var(--accent-color);
}

.pagination__list a.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--dark-color);
}

.pagination__list a.active:before {
  opacity: 1;
}

.title {
  margin-bottom: var(--box-offset);
  max-width: 1180px;
  font-weight: 300;
  font-size: 20px;
}

.title strong {
  font-weight: 600;
}

.title-logo {
  margin-bottom: 55px;
  text-align: center;
}

.title-logo img {
  max-width: 380px;
}

.title-logo p {
  margin: 5px 0 0;
  text-transform: uppercase;
  font-size: 20px;
}

.content> :last-child {
  margin-bottom: 0;
}

.content img {
  display: block;
  border-radius: 14px;
}

.content ol,
.content ul {
  padding: 0;
  list-style: none;
}

.content li {
  margin: 10px 0;
}

.content ul li {
  position: relative;
  padding-left: 36px;
}

.content ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  padding-top: 2px;
  text-align: right;
  border-radius: 50%;
  background: var(--main-color);
  content: "\e914";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  font-size: 16px;
  color: var(--accent-color);
}

.content ol {
  counter-reset: num;
}

.content ol li {
  position: relative;
  padding-left: 1.75em;
}

.content ol li:before {
  content: counter(num) ".";
  counter-increment: num;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font: bold 1.25em/1.3 "STIX Two Text", serif;
  color: var(--accent-color);
}

.bg-ellips {
  position: absolute;
  width: 1560px;
  padding: 240px;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  opacity: 0.2;
}

.bg-ellips:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  background: #fff;
}

.btn {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  z-index: 3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 30px;
  min-height: 70px;
  border: none;
  border-radius: 14px;
  background: none;
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
  box-shadow: inset 0 0 0 1px var(--accent-color);
  text-decoration: none;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-size: 16px;
  color: var(--dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.btn .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.btn .ic-up-right {
  font-size: 0.9em;
}

.btn:hover {
  color: var(--accent-color);
}

.btn:hover:before {
  opacity: 0;
}

.btn._bd {
  color: inherit;
}

.btn._bd:before {
  opacity: 0;
}

.btn._bd:hover {
  color: var(--dark-color);
}

.btn._bd:hover:before {
  opacity: 1;
}

.btn._small {
  padding: 10px 24px;
  min-height: 50px;
}

.btn._full {
  width: 100%;
  padding-left: 19px;
  padding-right: 19px;
}

.btn:disabled,
.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.close-btn {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  padding: 0;
  border: none;
  border-radius: 0 14px;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-color);
}

.close-btn:before {
  display: inline-block;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.close-btn:hover:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.play-btn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 18px;
  color: var(--dark-color);
}

.form-box {
  border-radius: 14px;
  background: var(--main-color);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.form-title {
  margin-bottom: 40px;
  max-width: 900px;
  font-weight: 300;
  font-size: 18px;
}

.form-title>* {
  margin-bottom: 10px;
}

.form-title strong {
  font-weight: 600;
}

.form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0 -5px;
}

.form-grid__col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  min-width: 30%;
  padding: 0 5px;
}

.form-grid__col._100p {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 100%;
}

.form-grid__col .form-action {
  margin-top: 10px;
}

.form-field {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 14px;
  line-height: 20px;
  font-weight: 300;
  font-size: 16px;
  color: inherit;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.form-field:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.form-field::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-field::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

textarea.form-field {
  resize: vertical;
}

textarea.form-field:not([rows]) {
  height: 120px;
}

select.form-field {
  cursor: pointer;
  padding-right: 55px;
  background-image: url("../img/select.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 29px) 50%;
  text-overflow: ellipsis;
}

select.form-field option {
  background: var(--dark-color);
  color: #fff;
}

select.form-field._place {
  color: rgba(255, 255, 255, 0.6);
}

.form-option {
  cursor: pointer;
  position: relative;
  display: inline-block;
  min-height: 20px;
  line-height: 20px;
  font-weight: 300;
  font-size: 14px;
}

.form-option input,
.form-option span:before,
.form-option span:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.form-option input {
  opacity: 0;
}

.form-option input:checked~span:after {
  opacity: 1;
}

.form-option span {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
}

.form-option span:before,
.form-option span:after {
  border-radius: 5px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}

.form-option span:before {
  content: "";
  background: rgba(255, 255, 255, 0.1);
}

.form-option span:after {
  padding-left: 1px;
  text-align: center;
  content: "\e906";
  font-family: "icomoon";
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  line-height: 20px;
  font-size: 10px;
  opacity: 0;
  color: #fff;
}

.form-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
  margin-top: 20px;
}

.form-action__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.form-action__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.form-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-social__head {
  margin: 0 20px 0 0;
  font-size: 14px;
}

.form-social .social-grid {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.form-file {
  cursor: pointer;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.form-file__input {
  display: none;
}

.form-file__files {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  padding: 0 30px;
}

.form-file__files-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin-right: 20px;
  display: block;
  position: relative;
  height: 20px;
  line-height: 20px;
  font-weight: 300;
  font-size: 16px;
}

.form-file__files-title span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.form-file__files-icon {
  font-size: 18px;
}

.form-file:hover .form-file__files-btn {
  background: var(--main-color);
  color: #fff;
}

.form-file:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.form-file.selected {
  color: #fff;
}

.sandwich {
  overflow: hidden;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 14px;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
}

.sandwich span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: -1px 0 0 -10px;
  background: var(--dark-color);
  -webkit-transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, -webkit-transform 0.4s;
  transition: width 0.4s, transform 0.4s;
  transition: width 0.4s, transform 0.4s, -webkit-transform 0.4s;
}

.sandwich span:nth-child(1) {
  -webkit-transform: translateY(-6px);
  -ms-transform: translateY(-6px);
  transform: translateY(-6px);
}

.sandwich span:nth-child(3) {
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
}

.sandwich.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sandwich.active span:nth-child(2) {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.sandwich.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.social-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.social-item {
  display: inline-block;
  position: relative;
  z-index: 1;
  border-radius: 14px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  color: var(--dark-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.social-item:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.social-item:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: inset 0 0 0 1px var(--accent-color);
  box-shadow: inset 0 0 0 1px var(--accent-color);
  color: var(--accent-color);
}

.social-item:hover:after {
  opacity: 0;
}

.social-item._head {
  border-radius: 10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 16px;
  color: #fff;
}

.social-item._head:after {
  display: none;
}

.social-item._head:hover {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
  background-color: #fff;
  color: var(--dark-color);
}

.social-item._medium {
  width: 48px;
  height: 48px;
  line-height: 48px;
}

.nav-arrow-prev,
.nav-arrow-next {
  cursor: pointer;
  display: inline-block;
  position: absolute;
  z-index: 10;
  top: 50%;
  margin: -0.5em 0 0;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  color: var(--main-color);
  -webkit-transition: opacity 0.15s, color 0.4s;
  transition: opacity 0.15s, color 0.4s;
}

.nav-arrow-prev:hover,
.nav-arrow-next:hover {
  color: var(--accent-color);
}

.nav-arrow-prev.swiper-button-disabled,
.nav-arrow-prev.disabled,
.nav-arrow-prev:disabled,
.nav-arrow-next.swiper-button-disabled,
.nav-arrow-next.disabled,
.nav-arrow-next:disabled {
  cursor: default;
  opacity: 0.3;
  color: var(--main-color);
}

.nav-arrow-prev.swiper-button-lock,
.nav-arrow-next.swiper-button-lock {
  display: none !important;
}

.nav-arrows {
  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;
  gap: 18px;
  margin-top: 20px;
}

.nav-arrows .nav-arrow-prev,
.nav-arrows .nav-arrow-next {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  margin: 0;
}

.custom-nav {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
  line-height: 1.4;
  font-size: 14px;
}

.custom-nav .nav-arrows {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin: 0 0 0 50px;
}

.custom-nav__line {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  position: relative;
  height: 2px;
  border-radius: 2px;
  background: rgba(33, 90, 66, 0.2);
}

.custom-nav__line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-radius: 2px;
  background: var(--main-color);
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
}

.custom-nav__count {
  opacity: 0.4;
}

.lang-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.lang-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.lang-menu li:nth-child(n+2) {
  margin-left: 0.55em;
  padding-left: 0.55em;
}

.lang-menu li:nth-child(n+2):before {
  content: "/";
  position: absolute;
  top: 50%;
  left: -0.15em;
  margin-top: -0.55em;
  line-height: 1;
  opacity: 0.4;
}

.lang-menu a,
.lang-menu span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

.lang-menu a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.lang-menu a:hover {
  color: var(--accent-color);
}

.lang-menu span {
  cursor: default;
  color: var(--accent-color);
}

.lang-menu span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 199, 118, 0)), color-stop(#F5C776), to(rgba(245, 199, 118, 0)));
  background: linear-gradient(to right, rgba(245, 199, 118, 0), #F5C776, rgba(245, 199, 118, 0));
}

.top-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
  font-size: 14px;
}

a.top-contact {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a.top-contact:hover {
  color: var(--accent-color);
}

.mob-menu {
  display: none;
  position: fixed;
  z-index: 48;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--app-height);
  background: var(--dark-color);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  color: #fff;
}

.mob-menu__wrapper {
  overflow: hidden;
  padding: 90px 0 20px;
  min-height: var(--app-height);
}

.mob-menu__row {
  margin-bottom: 20px;
}

.mob-menu__row:nth-child(n+2) {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mob-menu__row:last-child {
  margin-bottom: 0;
}

.mob-menu__row._contacts {
  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;
  gap: 12px;
}

.mob-menu__row._contacts>* {
  max-width: 100%;
}

.mob-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.4;
  font-weight: 600;
  font-size: 16px;
}

.mob-menu__list a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.mob-menu__list a:hover {
  opacity: 0.8;
}

.mob-menu__list a.active,
.mob-menu__list a.mPS2id-highlight {
  color: var(--accent-color);
}

.mob-menu__list li {
  margin-bottom: 10px;
}

.mob-menu__list li:last-child {
  margin-bottom: 0;
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  line-height: 1.4;
}

.header._scrolled .header__wrapper {
  -webkit-transform: translate3d(0, -55px, 0);
  transform: translate3d(0, -55px, 0);
}

.header._scrolled .header__wrapper:before {
  opacity: 1;
}

.header._scrolled .header__logo {
  -webkit-transform: scale(0.55) translateY(10px);
  -ms-transform: scale(0.55) translateY(10px);
  transform: scale(0.55) translateY(10px);
}

.header._menu:before {
  opacity: 0;
}

.header__wrapper {
  border-top: 5px solid var(--accent-color);
  background: var(--main-color);
  color: #fff;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, top 0.4s;
  transition: transform 0.4s, top 0.4s, -webkit-transform 0.4s;
}

.header__wrapper:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 110px;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__logo {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: inline-block;
  margin-right: 40px;
  max-width: 200px;
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}

.header__logo img {
  display: block;
  max-height: 90px;
}

.header__row {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.header__grid._top {
  height: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__grid._top .social-grid {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-left: auto;
}

.header__grid._bottom {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.header__grid .lang-menu {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  margin-bottom: -1px;
}

.header__dot {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.4;
}

.header__dot:first-child,
.header__dot:last-child {
  display: none;
}

.header__menu {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
}

.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__menu-list a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__menu-list a:hover {
  color: var(--accent-color);
}

.header__menu-list>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu-list>li>a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu-list>li>a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(245, 199, 118, 0)), color-stop(#F5C776), to(rgba(245, 199, 118, 0)));
  background: linear-gradient(to right, rgba(245, 199, 118, 0), #F5C776, rgba(245, 199, 118, 0));
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__menu-list>li>a.active,
.header__menu-list>li>a.mPS2id-highlight {
  color: var(--accent-color);
}

.header__menu-list>li>a.active:before,
.header__menu-list>li>a.mPS2id-highlight:before {
  width: 100%;
}

.header__mess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__mess-head {
  margin: 0 20px 0 0;
  font-size: 14px;
}

.header__toggle {
  display: none;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.header+.m-sect,
.header+.mt-sect {
  margin-top: 195px;
}

.header+.p-sect,
.header+.pt-sect {
  padding-top: 195px;
}

.global-noscroll .header__wrapper,
.popup-opened .header__wrapper {
  margin-right: var(--scrollbar-width);
}

.bann-slider {
  background: var(--dark-color);
  color: #fff;
}

.bann-slider__title {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  text-align: center;
}

.bann-slider__title p {
  margin: 10px auto 0;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 14px;
}

.bann-slider__nav {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.bann-slider__nav-line {
  position: relative;
  margin: 10px auto;
  width: 2px;
  height: 240px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.bann-slider__nav-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 2px;
  background: #fff;
  -webkit-transition: top 0.15s;
  transition: top 0.15s;
}

.bann-slider__nav-count {
  min-width: 20px;
  opacity: 0.4;
}

.bann-item {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--dark-color);
}

.bann-item img,
.bann-item video {
  opacity: 0.4;
}

.bann-item video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.bann-serv {
  padding-top: 1px;
}

.bann-serv__box {
  position: relative;
  z-index: 5;
  padding: 40px;
  margin-top: -125px;
  min-height: 135px;
  border-radius: 14px;
  background: var(--main-color);
  text-align: center;
  color: #fff;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.bann-serv__grid {
  cursor: default;
  overflow: hidden;
  position: relative;
  --grid-gap: 40px;
}

.bann-serv__grid-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 0;
  margin: 0 calc(-1 * var(--grid-gap));
}

.bann-serv__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  position: relative;
  padding: 0 var(--grid-gap);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.bann-serv__col:before {
  content: "";
  position: absolute;
  top: -20px;
  left: var(--grid-gap);
  right: var(--grid-gap);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bann-serv__head {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 15px;
}

.bann-serv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  padding: 0 25px;
}

.bann-serv__items span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.05);
  line-height: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.about {
  position: relative;
  margin: calc(var(--sect-offset) + 40px) 0;
}

.about .bg-ellips {
  z-index: -5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.about__images {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  position: relative;
  width: 480px;
}

.about__images:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 108%;
}

.about__images .img-full-box {
  position: absolute;
  width: 62.5%;
  height: 76.9%;
  border: 3px solid var(--accent-color);
  border-radius: 14px;
}

.about__images._left {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.about__images._left .img-full-box:nth-child(1) {
  top: 0;
  left: 0;
}

.about__images._left .img-full-box:nth-child(2) {
  right: 0;
  bottom: 0;
}

.about__images._right .img-full-box:nth-child(1) {
  top: 0;
  right: 0;
}

.about__images._right .img-full-box:nth-child(2) {
  left: 0;
  bottom: 0;
}

.about__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0 120px;
}

.about__content-wrap>* {
  margin-bottom: 10px;
}

.about__content-wrap>*:last-child {
  margin-bottom: 0;
}

.states-line {
  position: relative;
  padding: 60px 0;
  background: var(--main-color);
  color: #fff;
}

.states-line__line {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -18px;
  width: 0;
  height: 35px;
}

.states-line__line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: url("../img/states-line.png") repeat-x center/auto 100%;
}

.states-line .container {
  position: relative;
  z-index: 1;
}

.states-line__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.states-line__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.states-line__item:nth-child(odd) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.states-line__item:nth-child(odd) .states-line__item-img {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.states-line__item:nth-child(odd) .states-line__item-head {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.states-line__item:nth-child(even) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.states-line__item:nth-child(even) .states-line__item-img {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}

.states-line__item:nth-child(even) .states-line__item-head {
  -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px);
}

.states-line__item-img {
  width: 64px;
  height: 64px;
  opacity: 0;
}

.states-line__item-dot {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
  background-image: linear-gradient(40deg, var(--accent-dark-color), var(--accent-color));
  opacity: 0;
}

.states-line__item-head {
  position: relative;
  margin: -0.1em 0;
  width: 100%;
  height: 1.2em;
  font: 400 30px/1.2 "STIX Two Text", serif;
  opacity: 0;
}

.states-line__item-head span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.states-line._show .states-line__line {
  width: 100%;
  -webkit-transition: width 3s linear;
  transition: width 3s linear;
}

.states-line._show .states-line__item-img,
.states-line._show .states-line__item-dot,
.states-line._show .states-line__item-head {
  opacity: 1;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, transform 0.7s;
  transition: opacity 0.7s, transform 0.7s, -webkit-transform 0.7s;
}

.states-line:not(._show) .states-line__item-img,
.states-line:not(._show) .states-line__item-dot,
.states-line:not(._show) .states-line__item-head {
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

.left-title {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 400px;
  margin-right: 40px;
}

.left-title small {
  display: block;
  font-weight: normal;
  font-size: 0.85em;
}

.partners {
  background: #fff;
}

.partners__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partners__grid {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  overflow: hidden;
  position: relative;
}

.partners__grid-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -1px -1px 0;
}

.partners__item {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 9px 24px;
  width: 25%;
  height: 100px;
  border-right: 1px solid rgba(16, 59, 42, 0.1);
  border-bottom: 1px solid rgba(16, 59, 42, 0.1);
}

.partners__item .img-box {
  width: 100%;
}

.services {
  position: relative;
  color: #fff;
}

.services__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 40px;
  background: var(--dark-color) url("../img/services-bg.jpg") center/cover;
}

.services__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 0;
  margin: 0 -5px;
}

.services__grid-space {
  width: 100%;
  height: calc(var(--box-offset) - 10px);
}

.services__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  padding: 0 5px;
}

.services__col._form {
  width: 75%;
}

.services__col .service-logo-card {
  height: 100%;
}

.service-card {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 14px;
}

.service-card .img-full-box {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: 14px;
  background: var(--dark-color);
}

.service-card .img-full-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, rgba(16, 59, 42, 0)), color-stop(80%, rgba(16, 59, 42, 0.6)), to(rgba(16, 59, 42, 0.9)));
  background: linear-gradient(to bottom, rgba(16, 59, 42, 0) 60%, rgba(16, 59, 42, 0.6) 80%, rgba(16, 59, 42, 0.9) 100%);
}

.service-card__head {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 22px 29px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.service-card__head span {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.service-card__head .ic {
  font-size: 15px;
}

.service-card__content {
  cursor: default;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  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%;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(33, 90, 66, 0.8) url("../img/service-logo.svg") no-repeat 88% 100%;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  font-size: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-card__content>* {
  margin-bottom: 10px;
}

.service-card__content>:last-child {
  margin-bottom: 0;
}

.service-card__btn {
  margin-top: auto;
}

.service-card.hover .service-card__head {
  opacity: 0;
}

.service-card.hover .service-card__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.service-logo-card {
  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: 40px;
  background: var(--dark-color) url("../img/service-logo-card-bg.jpg") center/cover;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  border-radius: 14px;
}

.service-logo-card img {
  max-width: 240px;
  max-height: 240px;
}

.advants {
  overflow: hidden;
  position: relative;
  padding: calc(var(--sect-offset) + 40px) 0 var(--sect-offset);
}

.advants .bg-ellips {
  z-index: -5;
}

.advants .bg-ellips._left {
  top: 0;
  right: 50%;
  -webkit-transform: translate(-21%, -69%);
  -ms-transform: translate(-21%, -69%);
  transform: translate(-21%, -69%);
}

.advants .bg-ellips._right {
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(4%, 72%);
  -ms-transform: translate(4%, 72%);
  transform: translate(4%, 72%);
}

.advants__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px -10px;
}

.advants__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  padding: 0 5px 10px;
}

.advants__col .advant-item {
  height: 100%;
}

.advants__col:nth-child(2n) .advant-item {
  background-color: rgba(245, 199, 118, 0.2);
}

.advant-item {
  padding: 30px;
  border-radius: 14px;
  background: rgba(16, 59, 42, 0.03);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  font-size: 15px;
}

.advant-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.advant-item__img {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 20px;
  width: 64px;
  height: 64px;
}

.advant-item__head {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
}

.advant-item> :last-child {
  margin-bottom: 0;
}

.smi {
  background: var(--dark-color) url("../img/smi-bg.jpg") center/cover;
  color: #fff;
}

.smi__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px 0;
  margin: 0 -5px;
}

.smi__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  padding: 0 5px;
}

.smi__col .smi-item {
  height: 100%;
}

.smi-marquee {
  margin-bottom: var(--box-offset);
}

.smi-marquee__wrap {
  cursor: default;
  overflow: hidden;
  white-space: nowrap;
  height: 124px;
}

.smi-marquee__item {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  vertical-align: middle;
  margin-right: 55px;
  padding: 0 50px;
  width: 280px;
  height: 124px;
  text-align: center;
  white-space: normal;
}

.smi-marquee__item:before,
.smi-marquee__item:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 68px;
}

.smi-marquee__item:before {
  left: 0;
  background: url("../img/smi-marq-left.svg") no-repeat center;
}

.smi-marquee__item:after {
  right: 0;
  background: url("../img/smi-marq-right.svg") no-repeat center;
}

.smi-marquee__item-top,
.smi-marquee__item-year {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
}

.smi-marquee__item-top {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
}

.smi-marquee__item-year {
  font-size: 14px;
}

.smi-marquee__item-head {
  overflow: hidden;
  max-height: 4.5em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font: 600 18px/1.5 "STIX Two Text", serif;
}

.smi-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 10px;
  text-decoration: none;
}

.smi-item .img-full-box {
  display: block;
  margin: 0 -10px;
  border-radius: 14px;
  background: var(--dark-color);
}

.smi-item .img-full-box:before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 400px;
  border-radius: 14px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 59, 42, 0)), to(rgba(16, 59, 42, 0.9)));
  background: linear-gradient(to bottom, rgba(16, 59, 42, 0), rgba(16, 59, 42, 0.9));
  -webkit-transition: 1s;
  transition: 1s;
}

.smi-item .img-full-box .play-btn {
  top: 35%;
}

.smi-item .img-full-box img {
  -webkit-transition: 1s;
  transition: 1s;
}

.smi-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
  z-index: 3;
  margin-top: -120px;
  min-height: 130px;
  padding: 20px 30px;
  border-radius: 14px;
  background: var(--main-color);
  color: #fff;
}

.smi-item__main>* {
  margin-bottom: 10px;
}

.smi-item__main>*:last-child {
  margin-bottom: 0;
}

.smi-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.smi-item__top .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 4px;
  font-size: 15px;
  color: var(--accent-color);
}

.smi-item__head {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
}

.smi-item__descr {
  overflow: hidden;
  max-height: 4.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.6;
  font-size: 15px;
}

.smi-item:hover .img-full-box:before {
  opacity: 0.5;
}

.smi-item:hover .img-full-box img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.docs {
  background: #F8F9F9;
}

.docs__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.docs__wrap .left-title {
  position: relative;
  z-index: 3;
}

.docs__slider {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  position: relative;
}

.docs__slider .custom-nav {
  position: absolute;
  margin: 0;
  left: 440px;
  right: 0;
  bottom: 0;
}

.docs__slider .swiper {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: visible;
  margin: 0;
  width: 300px;
  height: 511px;
}

.docs__slider .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.docs__slider .swiper-slide {
  height: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: width 0.5s, height 0.5s, opacity 0.2s, visibility 0.2s;
  transition: width 0.5s, height 0.5s, opacity 0.2s, visibility 0.2s;
}

.docs__slider .swiper-slide-active,
.docs__slider .swiper-slide-active~.swiper-slide {
  opacity: 1;
  visibility: visible;
}

.docs__slider .swiper-slide-active {
  width: 380px !important;
}

.docs__slider .swiper-slide-active .doc-item {
  border-color: var(--accent-color);
}

.doc-item {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  display: block;
  padding: 27px;
  border: 3px solid transparent;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.doc-item .img-full-box {
  display: block;
  width: 100%;
  padding-bottom: 141%;
}

.contacts {
  position: relative;
}

.contacts__wrap {
  width: 50%;
  padding: var(--sect-offset) 120px var(--sect-offset) 0;
}

.contacts__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  padding: var(--box-offset);
  border-radius: 14px;
  background: var(--main-color);
  color: #fff;
}

.contacts__items {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.contacts__items .social-grid {
  margin-top: 20px;
}

.contacts__logo {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 190px;
  opacity: 0.1;
}

.contacts__map {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
}

.contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-right: 20px;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 22px;
}

.contact-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  line-height: 24px;
  font-size: 15px;
}

.contact-item__main ._head {
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.contact-item__main a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.contact-item__main a:hover {
  color: var(--accent-color);
}

.footer {
  overflow: hidden;
  position: relative;
  z-index: 3;
  background: var(--dark-color) url("../img/footer-lines.png") no-repeat 100% 100%;
  font-size: 15px;
  color: #fff;
}

.footer:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -600px;
  right: 50%;
  margin-right: 250px;
  width: 1200px;
  height: 1200px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.footer:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  background-color: var(--accent-color);
  background-image: linear-gradient(80deg, var(--accent-dark-color), var(--accent-color));
}

.footer__wrap {
  position: relative;
  padding: 120px 0 70px;
}

.footer__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 60px;
}

.footer__grid._bottom {
  margin-top: var(--box-offset);
  padding-right: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  margin-right: 5%;
  width: 200px;
}

.footer__logo-box {
  display: inline-block;
  max-width: 100%;
}

.footer__logo-box img {
  display: block;
  max-height: 120px;
}

.footer__menu-list {
  margin: 0 0 -10px;
  padding: 0;
  list-style: none;
}

.footer__menu-list li {
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}

.footer__menu-list a {
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__menu-list a:hover {
  color: var(--accent-color);
}

.footer__menu._main {
  width: 35%;
}

.footer__menu._main .footer__menu-list {
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.footer__menu._links {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.footer__social {
  max-width: 338px;
}

.footer__copy {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer__dev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.footer__dev span {
  color: rgba(255, 255, 255, 0.6);
}

.footer__dev .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: -0.15em;
  font-size: 24px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__dev:hover .ic {
  color: var(--accent-color);
}

.footer__up {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 10px;
  width: 60px;
  height: 80px;
  border: 1px solid var(--accent-color);
  border-bottom: none;
  border-radius: 14px 14px 0 0;
  text-decoration: none;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer__up .ic {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -0.5em;
  font-size: 19px;
}

.footer__up:hover {
  color: var(--accent-color);
}

.news__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px -10px;
}

.news__col {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 25%;
  padding: 0 5px 10px;
}

.news__col .news-item {
  height: 100%;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 14px;
  background: #F8F9F9;
}

.news-item .img-full-box {
  display: block;
  width: 100%;
  border-radius: 14px;
}

.news-item .img-full-box:before {
  content: "";
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 72.7%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 59, 42, 0)), to(rgba(16, 59, 42, 0.9)));
  background: linear-gradient(to bottom, rgba(16, 59, 42, 0), rgba(16, 59, 42, 0.9));
  opacity: 0.4;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.news-item .img-full-box img {
  -webkit-transition: 1s;
  transition: 1s;
}

.news-item .img-full-box:hover:before {
  opacity: 0;
}

.news-item .img-full-box:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.news-item__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
}

.news-item__main>* {
  margin-bottom: 10px;
}

.news-item__main>*:last-child {
  margin-bottom: 0;
}

.news-item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 14px;
}

.news-item__date .ic {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-right: 15px;
  width: 36px;
  height: 30px;
  border: 1px solid rgba(16, 59, 42, 0.1);
  border-radius: 10px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
}

.news-item__date span {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.news-item__descr {
  overflow: hidden;
  max-height: 4.8em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-height: 1.6;
  font-size: 15px;
  color: rgba(16, 59, 42, 0.6);
}

.news-item__action {
  margin-top: auto;
  padding-top: 10px;
}

.aside-item {
  padding: 40px;
  border-radius: 14px;
  background: #F8F9F9;
}

.aside-item:nth-child(n+2) {
  margin-top: 10px;
}

.aside-item__title {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 59, 42, 0.1);
}

.aside-item__title>* {
  margin-bottom: 10px;
}

.aside-item__title>*:last-child {
  margin-bottom: 0;
}

.post__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.post__main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  max-width: 100%;
}

.post__img {
  margin-bottom: 10px;
}

.post__img img {
  display: block;
  max-width: 100%;
  border-radius: 14px;
}

.post__content {
  border-radius: 14px;
  background: #F8F9F9;
}

.post__action {
  margin-top: var(--box-offset);
}

.post__aside {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 380px;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.post-gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.post-gallery__item {
  border-radius: 14px;
}

.post-gallery__item:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 68.9%;
}

.post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 40px;
}

.post-info__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.post-info__img {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 60px;
  height: 48px;
  margin-right: 20px;
  border-radius: 14px;
}

.post-info__img.ic {
  border: 1px solid rgba(16, 59, 42, 0.1);
  line-height: 46px;
  text-align: center;
  font-size: 22px;
}

.post-info__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  line-height: 1.7;
  font-size: 14px;
}

.post-info__content>* {
  margin-bottom: 0;
}

.post-info__content ._descr {
  font-weight: bold;
}

/* Popups */
.popup {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1180px;
  border-radius: 14px;
  background: var(--main-color);
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  margin: 20px auto;
  padding: 60px;
  word-wrap: break-word;
  color: #fff;
}

.tx-popup.popup {
  max-width: 440px;
  padding: 40px;
}

/* Customize plugins */
.mfp-bg {
  background: rgba(16, 59, 42, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}

.mfp-zoom-in.mfp-removing .mfp-with-anim {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-container {
  padding-left: 6px;
  padding-right: 6px;
}

.mfp-figure:after {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff;
}

.mfp-title {
  color: #fff;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mfp-image-holder .close-btn,
.mfp-iframe-holder .close-btn {
  right: 0;
  height: 40px;
  border-radius: 0;
  background: none;
  text-align: right;
  line-height: 40px;
  font-size: 18px;
  color: #fff;
}

.mfp-image-holder .close-btn:hover,
.mfp-iframe-holder .close-btn:hover {
  opacity: 0.7;
}

.mfp-image-holder .close-btn {
  top: 0;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  width: 100%;
}

.mfp-iframe-holder .close-btn {
  width: auto;
  top: -40px;
}

.swiper-scrollbar {
  background: rgba(33, 90, 66, 0.2);
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  top: auto;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  margin-top: 20px;
}

.swiper-scrollbar-drag {
  background: var(--main-color);
}

[class*=ymaps-2-1][class*=-ground-pane] {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}