:root {
  --gradient-1: linear-gradient(90deg, #eaf8fb 0%, #eaf7f2 100%);
  --gradient-2: linear-gradient(270deg, #00a775 0%, #00acd4 100%);
  --gradient-3: linear-gradient(270deg, #00963c 0%, #00a0e6 100%);
  --gradient-4: linear-gradient(90deg, #00963c 0%, #00a0e6 100%);
  --gradient-5: linear-gradient(180deg, #237580 0%, #05252e 34.78%, #000408 100%);
  --white: #fff;
  --black: #000;
  --black30: rgba(0, 0, 0, 0.3);
  --green: #00963c;
  --blue: #00a0e6;
}

@font-face {
  font-family: "Plumb";
  src: url("fonts/Plumb-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Plumb";
  src: url("fonts/Plumb-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "Plumb";
  src: url("fonts/Plumb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}
h1,
.h1 {
  font-size: 50px;
  line-height: 130%;
  font-weight: 500;
  text-transform: uppercase;
}

h2,
.h2 {
  font-weight: 500;
  font-size: 36px;
  line-height: 130%;
}
h2:not([class]),
.h2:not([class]) {
  margin: 80px 0 30px 0;
}

h3,
.h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 125%;
}
h3:not([class]),
.h3:not([class]) {
  margin: 80px 0 30px 0;
}

h4,
.h4 {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
h4:not([class]),
.h4:not([class]) {
  margin: 50px 0 25px 0;
}

.text {
  font-size: 24px;
  line-height: 140%;
}

.text-1 {
  font-weight: 500;
  font-size: 24px;
  line-height: 135%;
}

.text-2 {
  font-size: 22px;
  line-height: 130%;
}

.text-3 {
  font-size: 16px;
  line-height: 120%;
}

.btn-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

.numbers-text {
  font-weight: 700;
  font-size: 110px;
  line-height: 120%;
}

.menu-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

main p,
.modal p {
  margin: 0 0 15px 0;
}
main ul:not([class]), main ol:not([class]),
.modal ul:not([class]),
.modal ol:not([class]) {
  margin: 20px 0 30px 0;
  padding: 0 0 0 20px;
}
main ul:not([class]) li, main ol:not([class]) li,
.modal ul:not([class]) li,
.modal ol:not([class]) li {
  margin: 0 0 10px 0;
}
main table:not([class]),
.modal table:not([class]) {
  width: 100%;
  border-collapse: collapse;
  margin: 80px 0;
}
main table:not([class]) td, main table:not([class]) th,
.modal table:not([class]) td,
.modal table:not([class]) th {
  padding: 30px;
  text-align: left;
}
main table:not([class]) th,
.modal table:not([class]) th {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  background: var(--gradient-2);
}
main table:not([class]) td,
.modal table:not([class]) td {
  border: 1px solid var(--black30);
  border-width: 0 1px 1px 0;
}
main table:not([class]) td:first-child,
.modal table:not([class]) td:first-child {
  border-width: 0 1px 1px 1px;
}
main ul:not([class]) li,
.modal ul:not([class]) li {
  list-style-type: disc;
}
main ul:not([class]) li::marker,
.modal ul:not([class]) li::marker {
  color: var(--green);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-tap-highlight-color: rgba(0, 0, 0, 0);
  -o-tap-highlight-color: rgba(0, 0, 0, 0);
  -ms-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:first-child {
  margin-top: 0 !important;
}

*:last-child {
  margin-bottom: 0 !important;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  font-size: 18px;
  line-height: 140%;
  font-family: "Plumb";
  font-weight: 400;
  color: var(--black);
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--gradient-1);
}

main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  outline: none;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  resize: none;
}

a {
  color: var(--black);
}

a:not([class]) {
  color: var(--black);
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
}

a,
a:visited {
  text-decoration: none;
}

input,
button,
textarea {
  font-family: "Plumb";
  font-weight: 400;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: middle;
}

iframe {
  width: 100%;
}

input:-webkit-autofill {
  background: #ffffff;
  -webkit-transition: 10000000000s linear;
  transition: 10000000000s linear;
}

.header {
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--gradient-1);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
.header__lang {
  position: relative;
}
.header__lang-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.header__lang-head.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.header__lang-head.active + .header__lang-body {
  display: block;
}
.header__lang-body {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
}
.header__lang line {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 100;
}
.header__burger {
  display: none;
}
.header__burger span {
  display: block;
  position: relative;
  background: var(--black);
  width: 35px;
  height: 1px;
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
}
.header__burger span:not(:last-child) {
  margin: 0 0 9px 0;
}
.header__mobile {
  display: none;
}
.header__mobile-contacts {
  margin: 0 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
.header .logo {
  position: relative;
  z-index: 100;
}
.header a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header a:hover {
  color: var(--green) !important;
}

.header-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  z-index: 100;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
.header-box .header {
  background: transparent;
}
.header-box:has(.header.scroll) {
  color: var(--black);
}
.header-box:has(.header.scroll)::before {
  opacity: 1;
}
.header-box:has(.header.scroll) a {
  color: var(--black);
}
.header-box:has(.header.scroll) line {
  stroke: var(--black);
}
.header-box:has(.header.scroll) .header__burger span {
  background: var(--black);
}
.header-box a {
  color: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-box line {
  stroke: var(--white);
}
.header-box .header__burger span {
  background: var(--white);
}

.footer {
  padding: 50px 0;
  border-top: 1px solid transparent;
  -o-border-image: var(--gradient-3) 1;
  border-image: var(--gradient-3) 1;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  margin: 0 0 60px 0;
}
.footer__inner:last-child {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px 30px;
}
.footer a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer a:hover {
  color: var(--green) !important;
}
.footer__menu {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 200px;
  -moz-column-gap: 200px;
  column-gap: 200px;
}
.footer__menu-item {
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  margin: 0 0 10px 0;
}
.footer p {
  margin: 0 0 5px 0;
}
.footer a {
  text-decoration: none !important;
}
.footer__contacts {
  text-align: right;
}
.footer .social {
  margin: 30px 0 0 0;
}

.logo {
  display: block;
  width: 200px;
}

.container {
  max-width: 1580px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}

.centered-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px 0 0 0;
}

.top-page {
  padding: 30px 0 40px 0;
}

.breadcrumbs {
  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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin: 0 0 60px 0;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.breadcrumbs__link:hover {
  color: var(--green);
}
.breadcrumbs__link::after {
  content: url(../img/svg/bread.svg);
}
.breadcrumbs__item:last-child {
  opacity: 0.7;
}

.page-body {
  padding: 0 0 120px 0;
}

.txt-gal {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 0 40px 0;
}

.txt-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
  opacity: 0.7;
  margin: 0 0 20px 0;
}

.txt-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin: 80px 0;
}
.txt-row__img {
  width: 740px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.section {
  margin: 120px 0;
}
.section__head {
  margin: 0 0 50px 0;
}
.section__head.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.arrow-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.arrow-link path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.arrow-link:hover {
  color: var(--green);
}
.arrow-link:hover path {
  stroke: var(--green);
}
.arrow-link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border: 1px solid transparent;
  -o-border-image: var(--gradient-3) 1;
  border-image: var(--gradient-3) 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  background: var(--gradient-3);
  z-index: -1;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  opacity: 1;
}
.swiper-button-prev:hover path,
.swiper-button-next:hover path {
  stroke: var(--white);
}
.swiper-button-prev.swiper-button-lock,
.swiper-button-next.swiper-button-lock {
  display: none !important;
}
.swiper-button-prev path,
.swiper-button-next path {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: auto;
  height: auto;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

.swiper-button-prev {
  left: -20px;
}

.swiper-button-next {
  right: -20px;
}

.slider-box {
  position: relative;
}
.slider-box .swiper {
  position: static;
}

.gallery-slider__img {
  position: relative;
  padding-top: 110%;
}
.gallery-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery-slider__item:hover .gallery-slider__content {
  opacity: 1;
}
.gallery-slider__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: rgba(54, 54, 54, 0.9);
  opacity: 0;
  color: #fff;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 5px;
}

.articles__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.articles-card:hover img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.articles-card__head {
  padding-top: 56%;
  position: relative;
  margin: 0 0 15px 0;
  overflow: hidden;
}
.articles-card__head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.articles-card__date {
  margin: 0 0 5px 0;
}
.articles-card__category {
  margin: 0 0 10px 0;
}
.articles-card__date, .articles-card__category {
  opacity: 0.7;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social__item path, .social__item circle {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.social__item:hover path {
  fill: var(--green);
}
.social__item:has(circle[fill="#00A0E6"]):hover path {
  fill: var(--white);
}
.social__item:has(circle[fill="#00A0E6"]):hover circle {
  fill: var(--green);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  color: var(--white);
  border: 1px solid transparent;
  -o-border-image: var(--gradient-4) 1;
  border-image: var(--gradient-4) 1;
  background: transparent;
  position: relative;
  z-index: 1;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn.black {
  color: var(--black);
}
.btn.black:hover {
  color: var(--white);
}
.btn:hover::before {
  opacity: 1;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  background: var(--gradient-4);
  z-index: -1;
}

.main-screen {
  position: relative;
  color: #fff;
}
.main-screen img {
  width: 100%;
}
.main-screen .btn {
  margin: 40px 0 0 0;
}
.main-screen__inner {
  max-width: 1054px;
}
.main-screen__heading {
  margin: 0 0 15px 0;
  font-weight: 700;
  font-size: 58px;
  line-height: 120%;
  text-transform: uppercase;
  color: transparent;
  background: var(--gradient-3);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 0 15px 0;
}
.main-screen__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  padding: 292px 0 0 0;
}

.solution {
  padding: 60px 0;
  background: var(--gradient-2);
  color: var(--white);
}
.solution ul:not([class]) li::marker {
  color: var(--white);
}
.solution__text {
  max-width: 760px;
}
.solution__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.faq__item {
  border-bottom: 1px solid var(--white);
}
.faq__item:first-child {
  border-top: 1px solid var(--white);
}
.faq__item-body {
  display: none;
  padding: 0 30px 30px 30px;
}
.faq__item-head {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.faq__item-head.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq__item-head.active line:last-child {
  opacity: 0;
}
.faq__item-head svg, .faq__item-head line {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.cookies {
  background: #fff;
  position: fixed;
  left: 50%;
  bottom: 30px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 668px;
  padding: 22px 0;
  width: 100%;
  z-index: 2000;
  font-size: 20px;
  line-height: 24px;
  border-radius: 20px;
}
.cookies__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}

.geo__outer {
  position: relative;
}
.geo__box {
  position: relative;
}
.geo__box g {
  pointer-events: bounding-box;
}
.geo svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.geo svg g g {
  cursor: pointer;
}

.tooltip {
  width: 380px;
  padding: 20px;
  border-radius: 3px;
  border: 1px solid transparent;
  -o-border-image: var(--gradient-4) 1;
  border-image: var(--gradient-4) 1;
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
  z-index: 50;
}
.tooltip__close {
  display: none;
  pointer-events: all;
}
.tooltip__close svg {
  position: static;
}
.tooltip p {
  margin: 0 0 5px 0;
  opacity: 0.7;
}
.tooltip * {
  margin-top: 0 !important;
}

.events__inner {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}
.events__item {
  margin: 0 0 20px 0;
  position: relative;
  -webkit-column-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.events__item:hover .events__item-img img {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
}
.events__item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  padding: 30px 25px 30px 30px;
}
.events__item-heading {
  text-transform: uppercase;
}
.events__item-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.events__item-img img {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.events__item-img::before {
  content: "";
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}

.modal {
  padding: 60px 50px;
  background: var(--gradient-1);
}
.modal .slider-box {
  margin: 40px 0 0 0;
}
.modal__slider-img {
  position: relative;
  padding-top: 76%;
}
.modal__slider-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.event-modal {
  max-width: 1400px;
  width: 100%;
}
.event-modal h1, .event-modal .h1 {
  margin: 0 0 40px 0;
}
.event-modal h1 + img, .event-modal .h1 + img {
  min-height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
}
.event-modal .txt-info {
  margin: 40px 0 20px 0;
}
.event-modal__hashes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--blue);
  margin: 0 0 20px 0;
}
.event-modal__hashes a {
  text-decoration: none;
  color: var(--blue);
}

.main-feedback {
  position: relative;
  background: var(--gradient-3);
  overflow: hidden;
  padding: 68px 0;
  color: var(--white);
}
.main-feedback .social {
  margin: 30px 0 0 0;
}
.main-feedback .social__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.main-feedback .social__item path, .main-feedback .social__item circle {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.main-feedback .social__item:hover path {
  fill: var(--green);
}
.main-feedback .social__item:has(circle[fill="#00A0E6"]):hover path {
  fill: var(--white);
}
.main-feedback .social__item:has(circle[fill="#00A0E6"]):hover circle {
  fill: var(--green);
}
.main-feedback__inner {
  max-width: 1020px;
  position: relative;
  z-index: 2;
}
.main-feedback__img {
  position: absolute;
  top: -300px;
  right: 0;
  width: 615px;
}

.main-footer {
  background: var(--gradient-5);
  color: var(--white);
}
.main-footer a {
  color: var(--white);
}

.contacts {
  margin: 120px 0 !important;
}
.contacts a {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.contacts a:hover {
  color: var(--green) !important;
}
.contacts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 82px;
}
.contacts a {
  text-decoration: none !important;
}
.contacts__layout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.contacts__item-head {
  margin: 0 0 10px 0;
  opacity: 0.7;
}
.contacts__item.span-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.contacts__map {
  width: 760px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 320px;
}

.blog-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 40px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.blog-head__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--blue);
}
.blog-head__row a {
  color: var(--blue);
  text-decoration: none;
}

.jq-selectbox {
  width: 133px;
}
.jq-selectbox__select {
  height: 53px;
}
.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.jq-selectbox.opened .jq-selectbox__select-text {
  border-width: 1px 1px 0 1px;
}
.jq-selectbox ul:not([class]) {
  margin: 0;
  padding: 0;
}
.jq-selectbox ul:not([class]) li {
  margin: 0 !important;
  padding: 7px 20px;
}
.jq-selectbox ul:not([class]) li.disabled {
  display: none;
}

.jq-selectbox__trigger {
  width: 15px;
  height: 7px;
  background: url(../img/svg/chevron.svg) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  top: 25px;
  right: 20px;
}

.jq-selectbox__dropdown {
  width: 100%;
  top: 100% !important;
  bottom: auto !important;
  left: 0 !important;
  right: auto !important;
  background: var(--gradient-1);
  border: 1px solid transparent;
  -o-border-image: var(--gradient-4) 1;
  border-image: var(--gradient-4) 1;
}

.jq-selectbox__select-text {
  padding: 13px 20px;
  border: 1px solid transparent;
  -o-border-image: var(--gradient-4) 1;
  border-image: var(--gradient-4) 1;
}

select {
  opacity: 0;
  visibility: hidden;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  margin: 30px 0 0 0 !important;
}
.pagination__link, .pagination__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: var(--white);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pagination__item.current {
  color: var(--white);
  background: var(--green);
}
.pagination__item.current .pagination__link {
  color: var(--white);
  background: var(--green);
}
.pagination__link.current {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pagination__link:hover, .pagination__link.current {
  color: var(--white);
  background: var(--green);
}
.pagination__dots {
  pointer-events: none;
}
@media screen and (max-width: 1820px) {
  .geo__box {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1600px) {
  h1,
  .h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 26px;
  }
  h2:not([class]),
  .h2:not([class]) {
    margin: 60px 0 30px 0;
  }
  h3,
  .h3 {
    font-size: 22px;
  }
  h3:not([class]),
  .h3:not([class]) {
    margin: 60px 0 30px 0;
  }
  h4,
  .h4 {
    font-size: 18px;
  }
  .text {
    font-size: 20px;
  }
  .text-1 {
    font-size: 20px;
  }
  .text-2 {
    font-size: 18px;
  }
  .text-3 {
    font-size: 15px;
  }
  .numbers-text {
    font-size: 80px;
  }
  .menu-text {
    font-size: 17px;
  }
  main table:not([class]) td, main table:not([class]) th,
  .modal table:not([class]) td,
  .modal table:not([class]) th {
    padding: 20px;
  }
  main table:not([class]) th,
  .modal table:not([class]) th {
    font-size: 18px;
  }
  html,
  body {
    font-size: 16px;
  }
  .container {
    max-width: 1350px;
  }
  .main-screen__inner {
    max-width: 927px;
  }
  .main-screen__heading {
    font-size: 50px;
  }
  .solution__text {
    max-width: 500px;
  }
  .geo__box {
    max-width: 800px;
  }
  .tooltip {
    width: 220px;
  }
}
@media screen and (max-width: 1440px) {
  h2:not([class]),
  .h2:not([class]) {
    margin: 50px 0 25px 0;
  }
  h3:not([class]),
  .h3:not([class]) {
    margin: 50px 0 25px 0;
  }
  h4:not([class]),
  .h4:not([class]) {
    margin: 50px 0 25px 0;
  }
  .footer__menu {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
  }
  .container {
    max-width: 1023px;
  }
  .top-page {
    padding: 20px 0 35px 0;
  }
  .breadcrumbs {
    margin: 0 0 30px 0;
  }
  .txt-row__img {
    width: 500px;
  }
  .main-screen__inner {
    max-width: 800px;
  }
  .main-screen__content {
    padding: 140px 0 0 0;
  }
  .solution__text {
    max-width: 400px;
  }
  .events__inner {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .events__item-content {
    padding: 15px;
  }
  .contacts__map {
    width: 460px;
  }
}
@media screen and (max-width: 1024px) {
  h1,
  .h1 {
    font-size: 34px;
  }
  h2,
  .h2 {
    font-size: 22px;
  }
  h2:not([class]),
  .h2:not([class]) {
    margin: 40px 0 25px 0;
  }
  h3,
  .h3 {
    font-size: 20px;
  }
  h3:not([class]),
  .h3:not([class]) {
    margin: 40px 0 25px 0;
  }
  h4,
  .h4 {
    font-size: 16px;
  }
  h4:not([class]),
  .h4:not([class]) {
    margin: 40px 0 25px 0;
  }
  .text {
    font-size: 18px;
  }
  .text-1 {
    font-size: 18px;
  }
  .text-2 {
    font-size: 16px;
  }
  .text-3 {
    font-size: 13px;
  }
  .btn-text {
    font-size: 17px;
  }
  .numbers-text {
    font-size: 68px;
  }
  main table:not([class]),
  .modal table:not([class]) {
    margin: 50px 0;
  }
  main table:not([class]) td, main table:not([class]) th,
  .modal table:not([class]) td,
  .modal table:not([class]) th {
    padding: 15px;
  }
  main table:not([class]) th,
  .modal table:not([class]) th {
    font-size: 16px;
  }
  html,
  body {
    font-size: 15px;
  }
  .header {
    padding: 15px 0;
  }
  .header__burger {
    display: block;
  }
  .header__mobile {
    display: block;
  }
  .header__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 50;
    background: -webkit-gradient(linear, right top, left top, from(#00131d), color-stop(47.81%, #00111b), to(#00060a));
    background: linear-gradient(270deg, #00131d 0%, #00111b 47.81%, #00060a 100%);
    padding: 84px 20px 50px 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    opacity: 0;
    visibility: hidden;
  }
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin: 0 0 30px 0;
  }
  .header.open-menu {
    color: var(--white) !important;
  }
  .header.open-menu line {
    stroke: var(--white) !important;
  }
  .header.open-menu a {
    color: var(--white) !important;
  }
  .header.open-menu .header__wrapper {
    opacity: 1;
    visibility: visible;
  }
  .header.open-menu .header__burger span {
    background: var(--white) !important;
  }
  .header.open-menu .header__burger span:last-child {
    display: none;
  }
  .header.open-menu .header__burger span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 10px;
  }
  .header.open-menu .header__burger span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .footer__menu {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .logo {
    width: 120px;
  }
  .container {
    padding: 0 20px;
  }
  .page-body {
    padding: 0 0 80px 0;
    overflow: hidden;
  }
  .txt-gal {
    margin: 0 0 30px 0;
  }
  .txt-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
    margin: 50px 0;
  }
  .txt-row__img {
    width: auto;
  }
  .section {
    margin: 80px 0;
  }
  .section__head {
    margin: 0 0 40px 0;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .slider-box {
    padding: 0 0px 70px 0;
  }
  .slider-box .swiper-button-prev {
    bottom: 0;
    top: auto;
    left: calc(50% - 30px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .slider-box .swiper-button-next {
    bottom: 0;
    top: auto;
    right: auto;
    left: calc(50% + 30px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .gallery-slider__content {
    padding: 10px;
    opacity: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(115%, rgb(0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 115%);
  }
  .articles__layout {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .social__item svg {
    width: 40px;
    height: 40px;
  }
  .main-screen__heading {
    font-size: 30px;
  }
  .solution {
    padding: 30px 0;
  }
  .solution__text {
    max-width: unset;
  }
  .solution__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .faq__item-body {
    padding: 0 15px 15px 15px;
  }
  .faq__item-head {
    padding: 15px;
  }
  .faq__item-head svg {
    width: 30px;
    height: 30px;
  }
  .geo__inner {
    position: relative;
  }
  .geo__wrapper {
    overflow: auto;
    scrollbar-width: none;
  }
  .geo__inner {
    width: 701px;
    height: 400px;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  .geo__inner img {
    width: 100%;
    height: 100%;
  }
  .tooltip__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 10px;
    right: 10px;
  }
  .tooltip {
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: none !important;
  }
  .tooltip.active {
    display: block !important;
  }
  .modal {
    padding: 40px 20px 40px 20px;
  }
  .main-feedback {
    padding: 50px 0;
  }
  .main-feedback .social__item svg {
    width: 40px;
    height: 40px;
  }
  .main-feedback__img {
    width: 400px;
    top: -100px;
  }
  .contacts {
    margin: 80px 0 !important;
  }
  .contacts__row {
    gap: 30px;
  }
  .contacts__layout {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
  }
  .contacts__item.span-2 {
    grid-column: auto;
  }
}
@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 26px;
  }
  h2,
  .h2 {
    font-size: 20px;
  }
  h3,
  .h3 {
    font-size: 18px;
  }
  h4,
  .h4 {
    font-size: 14px;
  }
  .text {
    font-size: 16px;
  }
  .text-1 {
    font-size: 14px;
  }
  .text-2 {
    font-size: 14px;
  }
  .text-3 {
    font-size: 12px;
  }
  .btn-text {
    font-size: 16px;
  }
  .numbers-text {
    font-size: 40px;
  }
  .menu-text {
    font-size: 16px;
  }
  main p,
  .modal p {
    margin: 0 0 10px 0;
  }
  main ul:not([class]), main ol:not([class]),
  .modal ul:not([class]),
  .modal ol:not([class]) {
    margin: 15px 0 20px 0;
  }
  main table:not([class]),
  .modal table:not([class]) {
    display: block;
  }
  main table:not([class]) *,
  .modal table:not([class]) * {
    display: block;
  }
  main table:not([class]) td, main table:not([class]) th,
  .modal table:not([class]) td,
  .modal table:not([class]) th {
    padding: 0;
  }
  main table:not([class]) tr:has(th),
  .modal table:not([class]) tr:has(th) {
    display: none;
  }
  main table:not([class]) tr:not(:last-child),
  .modal table:not([class]) tr:not(:last-child) {
    padding: 0 0 15px 0;
    margin: 0 0 15px 0;
    border-bottom: 1px solid var(--black30);
  }
  main table:not([class]) th,
  .modal table:not([class]) th {
    font-size: 14px;
  }
  main table:not([class]) td,
  .modal table:not([class]) td {
    border: none !important;
  }
  main table:not([class]) td:not(:last-child),
  .modal table:not([class]) td:not(:last-child) {
    margin: 0 0 10px 0;
  }
  main table:not([class]) td::before,
  .modal table:not([class]) td::before {
    content: attr(data-cell);
    display: block;
    font-weight: 700;
    margin: 0 0 5px 0;
  }
  html,
  body {
    font-size: 14px;
  }
  .footer {
    padding: 30px 0 50px 0;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 0 30px 0;
  }
  .footer__menu {
    -webkit-column-count: unset;
    -moz-column-count: unset;
    column-count: unset;
  }
  .footer__contacts {
    text-align: left;
  }
  .txt-gal {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
    margin: 0 0 18px 0;
  }
  .section__head {
    margin: 0 0 30px 0;
  }
  .gallery-slider__img {
    padding-top: 151%;
  }
  .btn {
    padding: 16px 25px;
  }
  .main-screen .btn {
    background: var(--black);
  }
  .main-screen .btn {
    margin: 30px 0 0 0;
  }
  .main-screen__content {
    padding: 104px 0 0 0;
  }
  .cookies {
    bottom: 0;
    border-radius: 12px 12px 0 0;
  }
  .cookies__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 20px;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .cookies__inner .btn {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .events__inner {
    -webkit-column-count: unset;
    -moz-column-count: unset;
    column-count: unset;
  }
  .events__item-img {
    padding-top: 72%;
  }
  .events__item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .main-feedback__img {
    width: 200px;
    top: auto;
    bottom: -30px;
  }
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .contacts__map {
    width: 100%;
    height: 200px;
  }
  .pagination__link, .pagination__dots {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 560px) {
  .articles__layout {
    -ms-grid-columns: 4fr;
    grid-template-columns: 4fr;
    gap: 20px;
  }
}