@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

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

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

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

:root {
  --container-side-padding: 50px;
  --theme-color: #15499F;
}

@font-face {
  font-family: "SourceSansPro";
  font-display: swap;
  src: local('SourceSansPro-Light'), local('SourceSansPro-Light'), url(/assets/front_pages/fonts/SourceSansPro-Light.woff2) format('woff2');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  font-display: swap;
  src: local('SourceSansPro-Regular'), local('SourceSansPro-Regular'), url(/assets/front_pages/fonts/SourceSansPro-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SourceSansPro";
  font-display: swap;
  src: local('SourceSansPro-Bold'), local('SourceSansPro-Bold'), url(/assets/front_pages/fonts/SourceSansPro-Bold.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Rubik";
  font-display: swap;
  src: local('Rubik-Regular'), local('Rubik-Regular'), url(/assets/front_pages/fonts/Rubik-Regular.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
}


body {
  font-family: "SourceSansPro", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  background-color: #fff;
  font-size: 16px;
  color: #000;
}

.lock {
  overflow: hidden;
}

.wrapper {
  position: relative;
  min-width: 360px;
  margin: 0 auto;
  min-height: 100%;
  -webkit-animation: showSite 1s linear forwards;
          animation: showSite 1s linear forwards;
}

.container {
  max-width: 1270px;
  padding-left: var(--container-side-padding);
  padding-right: var(--container-side-padding);
  margin: 0 auto;
}

h1 {
  color: #0B1F35;
  font-weight: 700;
}

html {
  scroll-behavior: smooth;
}

#toTop {
  display:none;
  width:50px;
  height: 50px;
  position:fixed;
  border: 3px solid #15499F;
  background-color: #15499F;
  border-radius: 50%;
  bottom:20px;
  right:25px;
  padding: 8px 0 0 9px;
  cursor:pointer;
  -webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
  -moz-animation: circle-anim 2.4s infinite ease-in-out !important;
  -ms-animation: circle-anim 2.4s infinite ease-in-out !important;
  -o-animation: circle-anim 2.4s infinite ease-in-out !important;
  animation: circle-anim 2.4s infinite ease-in-out !important;
  box-shadow: 0 0 15px #15499F;
}

#toTop:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  width: 36px;
  height: 35px;
  transition: 0.2s ease-in-out;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url('/assets/img/iconmonstr-arrow-up-lined.svg');
}

#toTop:hover:before{
  top: 0px;
}

h2 {
  color: #0B1F35;
  font-weight: 700;
  font-size: 35px;
}

h2 span {
  color: var(--theme-color);
}

h3 {
  font-weight: 700;
}

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

button {
  text-align: left;
  font-size: inherit;
  background-color: transparent;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
}

.btn {
  font-family: "Rubik", sans-serif;
  text-align: center;
  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;
  border-radius: 4px;
  padding: 1em;
}

.empty-btn {
  position: relative;
  overflow: hidden;
  color: var(--theme-color);
  border: 1px solid currentColor;
}

.empty-btn::after {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  opacity: 0;
}

.empty-btn::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  opacity: 0;
}

.empty-btn span {
  position: relative;
  z-index: 1;
  color: #000;
}

.empty-btn:active::before {
  opacity: 1;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.empty-btn:active::after {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.empty-btn:active span {
  color: #fff !important;
}

.blue-btn {
  position: relative;
  overflow: hidden;
  color: var(--theme-color);
  width: 10.875em;
}

.blue-btn span {
  position: relative;
  z-index: 1;
  color: #fff;
}

.blue-btn::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: currentColor;
}

.blue-btn:active::before {
  -webkit-filter: brightness(0.5) !important;
          filter: brightness(0.5) !important;
}

.descr {
  max-width: 28.5em;
  font-size: 20px;
}

.descr a {
  font-weight: 600;
  color: var(--theme-color);
}

.descr a:hover {
  text-decoration: underline;
}

.descr p:not(:last-child) {
  margin-bottom: 1.25em;
}

.descr--last p:last-child {
  color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 10px;
}

.descr--last p:last-child::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--theme-color);
  margin-top: 0.5em;
  margin-right: 0.75em;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  height: 100px;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.2s linear 0s;
  -o-transition: background-color 0.2s linear 0s;
  transition: background-color 0.2s linear 0s;
}

.header__container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  color: var(--theme-color);
}

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

.header__entry {
  margin-right: 13px;
  width: 7em;
}

.header__burger {
  display: none;
  margin-left: 20px;
  -webkit-transition: color 0.2s linear 0s, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  transition: color 0.2s linear 0s, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s, color 0.2s linear 0s;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s, color 0.2s linear 0s;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s, color 0.2s linear 0s, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.header__burger-menu {
  display: none;
  position: absolute;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 40;
  top: 100px;
  left: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  -webkit-transform: translateY(calc(-100px - 100%));
      -ms-transform: translateY(calc(-100px - 100%));
          transform: translateY(calc(-100px - 100%));
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  transition: -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  -o-transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s, -webkit-transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.header__burger-menu.is-open {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.nav {
  color: #000;
  margin-left: auto;
  margin-right: 17.5%;
}

.show {
  display: block !important;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-right: 10px;
  padding-left: 20px !important;
}

.nav li:not(:last-child) {
  margin-right: 15px;
}

.nav__link {
  white-space: nowrap;
  color: #000;
}

.nav__link:hover {
  text-decoration: underline;
}

.nav__link--main {
  display: none;
}

.burger {
  color: var(--theme-color);
  position: relative;
  width: 40px;
  height: 30px;
}

.burger span {
  position: absolute;
  border-radius: 5px;
  left: 0;
  width: 100%;
  height: 20%;
  background-color: currentColor;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger span:nth-child(3) {
  bottom: 0;
}

.logo-wrapper {
  color: var(--theme-color);
  -webkit-transition: color 0.2s linear 0s;
  -o-transition: color 0.2s linear 0s;
  transition: color 0.2s linear 0s;
}

.logo-letters {
  color: #fff;
  -webkit-transition: color 0.2s linear 0s;
  -o-transition: color 0.2s linear 0s;
  transition: color 0.2s linear 0s;
}

.is-active.header {
  background-color: var(--theme-color);
}

.is-active .burger {
  color: #fff;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.is-active .logo-wrapper {
  color: #fff;
}

.is-active .logo-letters {
  color: var(--theme-color);
}

.is-active .header__entry {
  border: 1px solid #fff;
}

.is-active .header__entry span {
  color: #fff;
}

.is-active .header__acces span {
  color: var(--theme-color);
}

.is-active .header__acces::before {
  background-color: #fff;
}

.intro {
  position: relative;
  overflow: hidden;
  padding-top: 200px;
  padding-bottom: 100px;
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, #FFFFFF), color-stop(40%, rgba(255, 255, 255, 0)), to(#E9E9E9));
  background: -o-linear-gradient(right, #FFFFFF 25%, rgba(255, 255, 255, 0) 40%, #E9E9E9);
  background: linear-gradient(to left, #FFFFFF 25%, rgba(255, 255, 255, 0) 40%, #E9E9E9);
}

.intro__container {
  position: relative;
  z-index: 20;
}

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

.intro__content {
  margin-right: 9%;
}

.intro__title {
  color: #0B1F35;
  font-size: 40px;
  max-width: 18em;
  margin-bottom: 15px;
}

.intro__title span {
  color: var(--theme-color);
}

.intro__descr {
  max-width: 35em;
  margin-bottom: 2.2em;
  color: #0B1F35;
}

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

.intro__image {
  color: var(--theme-color);
}

.intro__image svg {
  width: 197px;
  height: 197px;
}

.intro__more {
  margin-right: 30px;
  width: 10.875em;
}

.intro__more span {
  color: var(--theme-color);
}

.intro-bg {
  position: absolute;
  stroke: var(--theme-color);
}

.intro-bg--1 {
  top: 0px;
  left: 0;
  width: 28.5%;
  min-width: 350px;
}

.intro-bg--2 {
  left: 0;
  bottom: -6%;
  width: 40.5%;
}

.intro-bg--3 {
  bottom: 0;
  right: 0;
  width: 32%;
}

.intro-bg-m {
  color: var(--theme-color);
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}

.network {
  padding-top: 100px;
  padding-bottom: 100px;
}

.network__title {
  max-width: 15.5em;
}

.network__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.network__image {
  color: var(--theme-color);
  margin-right: 50px;
}

.network__image svg {
  width: 487px;
  height: 354px;
}

.innovation {
  padding-top: 75px;
  padding-bottom: 100px;
  position: relative;
  -webkit-clip-path: url(#innovation-wave);
          clip-path: url(#innovation-wave);
  background-color: #F8F8F8;
}

.innovation__title {
  margin-bottom: 20px;
}

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

.innovation__text {
  padding-top: 20px;
  margin-right: 10%;
}

.innovation__image {
  color: var(--theme-color);
}

.innovation__image svg {
  width: 430px;
  height: 467px;
}

#innovation-svg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.treasure {
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.treasure__title {
  margin-bottom: 5px;
}

.treasure__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.treasure__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-auto-rows: 1fr;
  gap: 12px;
  margin-right: 50px;
}

.treasure__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1em;
  background-color: var(--theme-color);
  -webkit-box-shadow: 0px 0px 4.49569px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 4.49569px rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 20px;
  min-height: 5.5em;
  width: 13em;
}

.treasure__item:first-child {
  grid-row: span 2;
}

.include {
  padding-top: 45px;
  padding-bottom: 45px;
  color: #fff;
  background-color: var(--theme-color);
}

.include__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.include__text {
  margin-right: 50px;
}

.include__title {
  color: #fff;
  margin-bottom: 15px;
}

.include__image img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.care {
  padding-top: 100px;
  padding-bottom: 100px;
}

.care__title {
  max-width: 15em;
}

.care__content {
  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;
}

.care__image {
  margin-right: 30px;
}

.image-care {
  position: relative;
}

.image-care > img {
  max-width: 100%;
  min-width: 345px;
}

.image-care__item {
  position: absolute;
}

.image-care__item img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.image-care__item--1 {
  bottom: 9%;
  left: 34%;
}

.image-care__item--2 {
  top: 11%;
  left: 42%;
}

.image-care__item--3 {
  top: 13%;
  left: 57%;
}

.image-care__item--4 {
  top: 8%;
  left: 76%;
}

.image-care__item--5 {
  bottom: 21%;
  left: 90%;
}

.getting {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F8F8F8;
}

.getting__title {
  text-align: center;
  margin-bottom: 2em;
}

.getting__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: center;
  grid-auto-rows: 1fr;
  gap: 20px 35px;
}

.getting__svg {
  color: var(--theme-color);
  position: absolute;
}

.getting__svg--1 {
  top: 0;
  left: 0;
  width: 42.5%;
}

.getting__svg--2 {
  bottom: 0;
  left: 8%;
  width: 43%;
}

.getting__svg--3 {
  bottom: 0;
  right: 0;
  width: 16.5%;
}

.item-getting span {
  display: inline-block;
  margin-bottom: 20px;
  height: 6px;
  width: 34%;
  min-width: 70px;
  background-color: var(--theme-color);
}

.item-getting__wrapper {
  font-weight: 600;
  color: #0B1F35;
  font-size: 20px;
  max-width: 16em;
}

.item-getting:last-child {
  grid-column: 1 / -1;
}

.helper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.helper__content {
  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;
}

.helper__title {
  margin-bottom: 20px;
}

.helper__descr {
  margin-right: 30px;
}

.helper__image {
  color: var(--theme-color);
}

.helper__image svg {
  width: 448px;
  height: 501px;
}

.footer {
  background-color: #F5F5F6;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.footer__column {
  padding-bottom: 10px;
  padding-top: 50px;
}

.footer__links p {
  font-weight: 700;
  font-size: 20px;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__list li {
  font-size: 16px;
  font-weight: 300;
}

.footer__list li:not(:last-child) {
  margin-bottom: 7px;
}

.footer__list a {
  color: #000;
}

.footer__copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #000000;
  text-align: center;
  font-weight: 300;
  font-size: 13px;
}

.info-footer {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info-footer__links {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 60px;
  font-size: 18px;
}

.info-footer__phone {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 15px;
}

.info-footer__phone svg {
  -webkit-transition: -webkit-transform 0.2s ease-in-out 0s;
  transition: -webkit-transform 0.2s ease-in-out 0s;
  -o-transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
  margin-right: 10px;
}

.info-footer__phone:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.info-footer__mail {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: var(--theme-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info-footer__mail svg {
  -webkit-transition: -webkit-transform 0.2s ease-in-out 0s;
  transition: -webkit-transform 0.2s ease-in-out 0s;
  -o-transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
  margin-right: 10px;
}

.info-footer__mail:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.info-footer__policy {
  text-align: center;
  font-size: 16px;
}

.info-footer__policy p:last-child {
  color: #8B8B8B;
  margin-top: 15px;
  font-size: 16px;
}

.info-footer__logo {
  color: var(--theme-color);
  margin-bottom: 30px;
}

.actions-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.actions-footer__scl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 30px;
  margin-bottom: 20px;
}

.actions-footer__scl li {
  -webkit-transition: -webkit-transform 0.2s ease-in-out 0s;
  transition: -webkit-transform 0.2s ease-in-out 0s;
  -o-transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s;
  transition: transform 0.2s ease-in-out 0s, -webkit-transform 0.2s ease-in-out 0s;
}

.actions-footer__scl li:not(:last-child) {
  margin-right: 8px;
}

.actions-footer__scl li:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.actions-footer__scl a svg {
  color: var(--theme-color);
}

.actions-footer__btn {
  width: 150px;
  padding: 16px 10px;
}

.actions-footer__btn span {
  font-size: 12px;
}

.director-modal {
  position: fixed;
  display: none;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.director-modal__body {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;

}

.director-modal__body p {
  color: #fff;
  font-size: 18px;
  text-align: center;
}

.director-modal__body p.director-modal__alert {
  font-size: 16px;
  margin: 0 -10px;
}

.director-modal__body--thanks {
  padding-top: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.director-modal__body--thanks h4 {
  margin-bottom: 5px !important;
}

.director-modal__body--thanks > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}

.director-modal__body.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.director-modal__form {
  position: relative;
  border-radius: 25px;
  padding: 30px 25px;
  margin: auto;
  width: 100%;
  max-width: 361px;
  background-color: var(--theme-color);
}

.director-modal__form h4 {
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 35px;
}

.director-modal__form input,
.director-modal__form textarea {
  color: #fff;
  width: 100%;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 7px;
  font-size: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.director-modal__form input::-webkit-input-placeholder, .director-modal__form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.director-modal__form input::-moz-placeholder, .director-modal__form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.director-modal__form input:-ms-input-placeholder, .director-modal__form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.director-modal__form input::-ms-input-placeholder, .director-modal__form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.director-modal__form input::placeholder,
.director-modal__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.director-modal__form input {
  height: 49px;
}

.director-modal__form textarea {
  margin-bottom: 15px;
  padding-top: 12px;
  margin-top: 25px;
  min-height: 177px;
  resize: none;
}

.director-modal__agree label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  font-size: 16px;
  color: #fff;
}

.director-modal__agree label a{
  color: #fff;
  text-decoration: underline;
}

.network_list_item{
  margin-bottom: 10px;
}

.director-modal__agree label span {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 2px;
  margin-right: 10px;
  margin-top: 0.2em;
  color: var(--theme-color);
  pointer-events: none;
}

.director-modal__agree label svg {
  color: var(--theme-color);
  opacity: 0;
  pointer-events: none;
}

.director-modal__agree input[type="checkbox"]:checked + label svg {
  opacity: 1;
}

.director-modal__btn {
  margin: 0 auto;
  margin-top: 25px;
  background-color: #fff;
  width: 174px;
  border-radius: 4px;
  color: var(--theme-color);
  font-size: 16px;
}

.director-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 15px;
  height: 15px;
  background: url("../../img/modal/close-btn.svg") 50% 50% no-repeat;
}

.director-modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.director-modal__logo {
  color: var(--theme-color);
}

@media (min-width: 993px) {
  .empty-btn:hover span {
    color: currentColor;
  }

  .empty-btn:hover::after {
    opacity: 1;
  }

  .blue-btn:hover::before {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}

@media (max-width: 1920px) {
  h2 {
    font-size: calc(20px + 15 * ((100vw - 360px) / (1920 - 360)));
  }

  .descr {
    font-size: calc(14px + 6 * ((100vw - 360px) / (1920 - 360)));
  }

  .intro__title {
    font-size: calc(25px + 15 * ((100vw - 360px) / (1920 - 360)));
  }

  .intro__image svg {
    width: calc(124px + 73 * ((100vw - 360px) / (1920 - 360)));
  }

  .intro__image svg {
    height: calc(124px + 73 * ((100vw - 360px) / (1920 - 360)));
  }

  .network__image svg {
    width: calc(324px + 163 * ((100vw - 360px) / (1920 - 360)));
  }

  .network__image svg {
    height: calc(236px + 118 * ((100vw - 360px) / (1920 - 360)));
  }

  .innovation__image svg {
    width: calc(238px + 192 * ((100vw - 360px) / (1920 - 360)));
  }

  .innovation__image svg {
    height: calc(258px + 209 * ((100vw - 360px) / (1920 - 360)));
  }

  .treasure__item {
    font-size: calc(14px + 6 * ((100vw - 360px) / (1920 - 360)));
  }

  .item-getting__wrapper {
    font-size: calc(14px + 6 * ((100vw - 360px) / (1920 - 360)));
  }

  .helper__image svg {
    width: calc(340px + 108 * ((100vw - 360px) / (1920 - 360)));
  }

  .helper__image svg {
    height: calc(344px + 157 * ((100vw - 360px) / (1920 - 360)));
  }

  .info-footer__links {
    font-size: calc(14px + 4 * ((100vw - 360px) / (1920 - 360)));
  }

  .info-footer__policy p:last-child {
    font-size: calc(14px + 2 * ((100vw - 360px) / (1920 - 360)));
  }
}

@media (max-width: 1200px) {
  .nav {
    margin-right: 0;
  }
}

@media (max-width: 1150px) {
  .header__actions {
    margin-left: auto;
  }

  .header__burger {
    display: block;
  }

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

  .nav {
    width: 100%;
  }

  .nav {
    margin: 0;
    padding-right: var(--container-side-padding);
    padding-left: var(--container-side-padding);
  }

  .nav ul {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: auto;
    margin: -8px;

  }

  .nav li {
    margin: 8px;
  }

  .nav__link--main {
    display: block;
  }
}

@media (max-width: 992px) {
  :root {
    --container-side-padding: 30px;
  }

  .treasure__title {
    margin-bottom: 1.2em;
  }

  .treasure__descr {
    max-width: unset;
  }

  .getting__list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: unset;
    max-width: 700px;
    margin: 0 auto;
  }

  .item-getting:last-child {
    grid-column: unset;
  }

  .item-getting:nth-child(5) {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
    grid-column: 1 / -1;
  }

  .info-footer__links {
    display: block;
  }

  .info-footer__phone {
    margin-bottom: 10px;
  }

  .info-footer__policy {
    margin-top: 30px;
    padding-bottom: 10px;
    padding-right: var(--container-side-padding);
    padding-left: var(--container-side-padding);
  }
}

@media (max-width: 768px) {
  :root {
    --container-side-padding: 20px;
  }

  body {
    font-size: 14px;
  }

  .header {
    height: 80px;
  }

  .header__logo svg {
    width: 93px;
    height: 42px;
  }

  .header__burger-menu {
    top: 80px;
    -webkit-transform: translateY(calc(-80px - 100%));
        -ms-transform: translateY(calc(-80px - 100%));
            transform: translateY(calc(-80px - 100%));
  }

  .burger {
    width: 30px;
    height: 25px;
  }

  .intro {
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .network {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .network__title {
    margin-bottom: 15px;
  }

  .network__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .network__image {
    -ms-flex-item-align: center;
        align-self: center;
    margin-right: 0;
  }

  .network__descr {
    margin-bottom: 25px;
    max-width: unset;
  }

  .innovation {
    -webkit-clip-path: unset;
            clip-path: unset;
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .innovation__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .innovation__text {
    margin-right: 0;
    padding-top: 0;
  }

  .innovation__descr {
    max-width: unset;
    margin-bottom: 25px;
  }

  .innovation__image {
    -ms-flex-item-align: center;
        align-self: center;
  }

  .treasure {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .include__container {
    display: block;
  }

  .include__text {
    margin-right: 0;
  }

  .include__descr {
    margin-bottom: 30px;
    max-width: unset;
  }

  .care {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .care__title {
    margin-bottom: 15px;
  }

  .care__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .care__image {
    margin-right: 0;
  }

  .care__descr {
    margin-bottom: 42px;
    max-width: unset;
  }

  .image-care > img {
    min-width: unset;
  }

  .getting {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .helper {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .helper__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .helper__descr {
    max-width: unset;
    margin-right: 0;
    margin-bottom: 35px;
  }
}

@media (max-width: 576px) {
  :root {
    --container-side-padding: 15px;
  }

  body {
    font-size: 12px;
  }

  .header {
    height: 60px;
  }

  .header__logo svg {
    width: 72px;
    height: 32px;
  }

  .header__actions {
    font-size: 10px;
  }

  .header__burger-menu {
    top: 60px;
    -webkit-transform: translateY(calc(-60px - 100%));
        -ms-transform: translateY(calc(-60px - 100%));
            transform: translateY(calc(-60px - 100%));
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .burger {
    width: 25px;
    height: 20px;
  }

  .intro {
    padding-top: 100px;
    padding-bottom: 60px;
    background: #fff;
  }

  .intro__wrapper {
    display: block;
  }

  .intro__content {
    margin-right: 0;
  }

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

  .intro__more {
    margin-right: 23px;
  }

  .intro-bg {
    display: none;
  }

  .intro-bg-m {
    display: block;
  }

  .treasure__content {
    display: block;
  }

  .treasure__items {
    margin-right: 0;
    margin-bottom: 20px;
    gap: 7px;
  }

  .treasure__item:first-child {
    width: unset;
    max-width: 13em;
    padding: 13px;
  }

  .include {
    padding-top: 50px;
    padding-bottom: 70px;
  }

  .getting__list {
    gap: 20px 10px;
  }

  .getting__svg {
    display: none;
  }

  .item-getting span {
    margin-bottom: 15px;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__links {
    grid-row: 1 / span 2;
  }

  .footer__info {
    padding-bottom: 0;
  }

  .footer__actions {
    padding-bottom: 0;
    padding-top: 0;
  }

  .info-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 35px;
  }

  .info-footer__links {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .info-footer__phone {
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }

  .info-footer__logo {
    display: none;
  }

  .actions-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }

  .actions-footer__btn {
    margin-bottom: 12px;
  }
}

@media (max-width: 370px) {
  :root {
    --container-side-padding: 10px;
  }
}

@media (max-width: 992px) and (min-width: 577px) {
  .treasure__items {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .treasure__item:first-child {
    grid-row: unset;
  }
}
@media (min-width: 1150px) {
  .header__actions__wrapper {
    display: none;
  }
}
@media (max-width: 1150px) {
  .header__burger {
    display: block;
  }

  .header__actions__wrapper {
    display: block;
  }

  .header__actions {
    display: none;
  }
}

@media (min-width: 1150px) {
  .header__actions__wrapper {
    display: none;
  }
}
@media (max-width: 1150px) {
  .header__burger {
    display: block;
  }
}

.show {
  display: block;
}

.select-lang__header{
  margin-right: 20px;
  cursor: pointer;
}

.select-lang__text {
  font-size: calc(12px + 4 * ((100vw - 360px)/ (1920 - 360)));;
  line-height: 19px;
  color: #000000;
  display: inline-block;
  padding-left: 40px;
  padding-bottom: 3px;
  padding-top: 3px;
}
.select-lang__wrapper {
  position: relative;
}


.select-lang {
  display: none;
  background: #FFFFFF;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  border-radius: 17px;
  position: absolute;
  top: 35px;
  left: -10px;
}


.select-lang__item {
  margin-bottom: 5px;
}

.select-lang__text{
  background-repeat: no-repeat;
  background-position: 16px 5px;
  position: relative;
}

.select-lang--active{
  text-transform: uppercase;
}

.select-lang__list {
  padding: 5px 10px !important;
}

.select-lang--active::before {
  content: "\276F";
  width: 7px;
  height: 13px;
  transform: rotate(90deg);
  position: absolute;
  top: 6px;
  left: 3px;
}

.nav ul {
  padding-left: 20px !important;
}

.blue-btn{
  width: 190px !important;
}

.select-lang__ua {
  background-image: url("/assets/front_pages/img/flags/ua.svg");
}
.select-lang__ru {
  background-image: url("/assets/front_pages/img/flags/ru.svg");
}
.select-lang__en {
  background-image: url("/assets/front_pages/img/flags/en.svg");
}
.select-lang__pl {
  background-image: url("/assets/front_pages/img/flags/pl.svg");
}
.select-lang__ge {
  background-image: url("/assets/front_pages/img/flags/ge.svg");
}
.select-lang__ka {
  background-image: url("/assets/front_pages/img/flags/ka.svg");
}
.select-lang__es {
  background-image: url("/assets/front_pages/img/flags/es.svg");
}
.select-lang__fr {
  background-image: url("/assets/front_pages/img/flags/fr.svg");
}
.select-lang__id {
  background-image: url("/assets/front_pages/img/flags/id.svg");
}
.select-lang__ph {
  background-image: url("/assets/front_pages/img/flags/ph.svg");
}
.select-lang__pt {
  background-image: url("/assets/front_pages/img/flags/pt.svg");
}
.select-lang__vn {
  background-image: url("/assets/front_pages/img/flags/vn.svg");
}
@media (max-width: 992px) {
  .select-lang__header {
    margin-right: 5px;
    margin-left: 8px;
  }
}

.disabled {
  pointer-events: none;
  opacity: .4;
}

.error {
  box-shadow: 0 0 20px red;
}

.director-modal__form input {
  margin-bottom: 12px;
  height: 49px;
}

.director-modal__form input:last-child {
  margin-bottom: 0;
}

.header__action {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

