@import "../fonts/stylesheet.css";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

:root {
  --app-height: 100%;
  --white: #ffffff;
  --black: #1c1c1c;
  --main: #3559e0;
  --main2: #feb946;
}

.c_wh {
  color: var(--white);
}

.c_black {
  color: var(--black);
}

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

.c_main_2 {
  color: var(--main2);
}

.bg_wh {
  background-color: var(--white);
}

.bg_main {
  background-color: var(--main);
}

.bg_main2 {
  background-color: var(--main2);
}

.bg_black {
  background-color: var(--black);
}

.elem__anim > h1, .elem__anim > h2, .elem__anim > h3, .elem__anim > h4, .elem__anim > a, .elem__anim > button, .elem__anim > p, .elem__anim > ul, .elem__anim > ol {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}

body,
html {
  scrollbar-color: var(--main) var(--white);
  scrollbar-width: thick;
  overflow-x: hidden;
}

.swiper-container {
  overflow: hidden;
}

.xyz_start {
  opacity: 0;
}

.xyz_start.xyz-in {
  opacity: 1;
}

body {
  font-family: "Fixel Display", sans-serif;
  background-color: var(--white);
  margin: 0;
  padding: 0;
  position: relative;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  color: var(--black);
}
body.acf_content {
  padding: 15px;
}
body.acf_content h2,
body.acf_content h3,
body.acf_content h4,
body.acf_content p {
  margin-bottom: 20px;
}
body.acf_content li {
  margin-bottom: 0.5em;
}

section {
  position: relative;
}

.ff_m {
  font-family: "Marianna";
}

/* ::-webkit-scrollbar {
  height: 5px;
} */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--main);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

a:hover,
a:active,
a:visited,
a {
  text-decoration: none;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

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

li {
  display: block;
}

p {
  margin-bottom: 0;
  line-height: 1.3em;
}

input:hover,
select:hover,
textarea:hover,
input:active,
select:active,
textarea:active,
input:focus,
select:focus,
textarea:focus,
input,
select,
textarea {
  display: block;
  outline: none;
  font-family: "Fixel Display", sans-serif;
}

button {
  background-color: transparent;
  border: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

button,
button:focus,
button:active,
button:hover {
  outline: none;
}

svg,
path,
stroke {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.container {
  position: relative;
}

a.btn,
button.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Fixel Display", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  height: 74px;
  width: 270px;
  max-width: 100%;
  position: relative;
  background-color: var(--main);
  border: none;
  border-radius: 50px;
  border: 1px solid var(--main);
}
a.btn:hover,
button.btn:hover {
  color: var(--main);
  background-color: var(--white);
  border: 1px solid var(--main);
}
a.btn:active,
button.btn:active {
  color: var(--main);
  background-color: var(--white);
  border: 1px solid var(--main);
}
a.btn.btn_tr,
button.btn.btn_tr {
  color: var(--main);
  background-color: var(--white);
  border: 1px solid var(--main);
}
a.btn.btn_tr:hover,
button.btn.btn_tr:hover {
  color: var(--white);
  background-color: var(--main);
  border: 1px solid var(--main);
}
a.btn.btn_tr:active,
button.btn.btn_tr:active {
  color: var(--white);
  background-color: var(--main);
  border: 1px solid var(--main);
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: transparent;
  background-color: var(--bg1);
  padding: 10px 0;
}
.header.header_fixed {
  padding: 5px 0;
}
.header:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  background-color: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(47, 91, 234, 0.08);
}

.header .container {
  position: relative;
  z-index: 2;
}
.header .social a {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header .social a img {
  width: 100%;
  height: auto;
}
.header .social a:not(:last-child) {
  margin-right: 12px;
}
.header .btn {
  font-size: 14px;
  font-weight: 500;
  width: 170px;
  height: 48px;
}

@media screen and (min-width: 1200px) {
  .header.header_fixed.scroll__up {
    top: 0px;
  }
  .header.header_fixed.scroll__down {
    top: -130px;
  }
}
.breadcrumbs {
  font-size: 18px;
  color: var(--main2);
}
.breadcrumbs a {
  font-size: 18px;
  color: var(--main2);
}
.breadcrumbs .breadcrumb_last {
  font-size: 18px;
  color: var(--black);
}

.custom-logo-link {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  width: 70px;
}
.custom-logo-link img {
  width: 100%;
  height: auto;
}

.lang {
  width: 55px;
  height: 36px;
  background: url(../img/icon_aarow_down.svg) no-repeat 96% center/17px;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.lang .current__lang {
  position: relative;
  color: var(--main);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.lang .current__lang {
  padding-right: 20px;
}
.lang .lang__block {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--white);
  border-radius: 5px;
  padding: 5px 10px;
}
.lang .lang__block.open {
  z-index: 5;
  opacity: 1;
  pointer-events: all;
  top: 100%;
}
.lang .lang__block a {
  color: var(--black);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.lang .lang__block .current-lang {
  display: none;
}

.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
.nav__menu .menu-item {
  position: relative;
  margin: 0 40px;
}
.nav__menu .menu-item.current-menu-item a:hover {
  text-shadow: 0 0 1px;
}
.nav__menu .menu-item a {
  font-size: 18px;
  font-family: "Fixel Display", sans-serif;
  font-weight: 400;
  line-height: 1.2em;
  padding: 0;
  color: var(--main);
  position: relative;
  display: block;
}
.nav__menu .menu-item a:hover {
  text-shadow: 0 0 1px;
}

@media screen and (min-width: 1200px) {
  .nav__menu .menu-item.menu-item-has-children:hover > a:before {
    opacity: 0;
  }
  .nav__menu .menu-item.menu-item-has-children:hover > a::after {
    opacity: 1;
  }
  .nav__menu .menu-item.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    pointer-events: all;
  }
}
.menu__burger {
  display: none;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1440px) {
  .nav__menu .menu-item {
    margin: 0 20px;
  }
}
@media screen and (max-width: 1199px) {
  .nav__menu .menu-item {
    margin-right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .header {
    padding: 15px 0;
  }
  .nav {
    position: fixed;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    z-index: 9;
    right: -320px;
    top: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 0 0px 40px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: var(--white);
  }
  .nav.open_menu {
    right: 0;
    top: 0px;
    opacity: 1;
    pointer-events: all;
  }
  .nav .nav__row {
    width: 100%;
    padding: 20px 12px;
    position: relative;
    margin-bottom: 40px;
  }
  .nav .menu__close {
    width: 25px;
    height: 25px;
    outline: none;
    /* margin-left: auto; */
    position: relative;
    background-color: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    margin-left: auto;
    background: url(../img/close_menu.svg) no-repeat center/contain;
  }
  .nav .menu__close > * {
    pointer-events: none;
  }
  .nav .nav__menu {
    padding: 0;
    width: 100%;
    display: block;
    margin-bottom: 30px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
  .nav .nav__menu .menu-item {
    margin-bottom: 0;
    width: 100%;
    text-align: left;
    margin-right: 0;
    border-top: 1px solid rgba(231, 234, 227, 0.1);
    padding: 0;
  }
  .nav .nav__menu .menu-item:last-child {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(231, 234, 227, 0.1);
  }
  .nav .nav__menu .menu-item a {
    font-size: 20px;
    font-weight: 300;
    position: relative;
    color: var(--black);
    display: block;
    padding: 8px 0;
    border: none;
    line-height: 1.8em;
  }
  .nav .nav__menu .menu-item a:hover {
    color: var(--main);
  }
  .nav .nav__menu .menu-item a::after, .nav .nav__menu .menu-item a::before {
    display: none;
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a {
    padding-right: 10px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children > a.open .open_child_menu {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu {
    position: absolute;
    display: block;
    right: -8px;
    top: calc(50% - 13px);
    width: 26px;
    height: 26px;
    background-color: var(--grey);
    cursor: pointer;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .open_child_menu::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/menu_arrow.svg) no-repeat center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu {
    width: 100%;
    min-width: 250px;
    padding: 0 10px;
    background-color: transparent;
    position: static;
    left: auto;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    pointer-events: all;
    border-radius: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li {
    margin-bottom: 0;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li:last-child {
    padding-bottom: 20px;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a {
    font-size: 12px;
    font-weight: 500;
    position: relative;
    color: var(--white);
    display: block;
    padding: 5px 0;
    border: none;
    text-transform: uppercase;
    line-height: 1.8em;
  }
  .nav .nav__menu .menu-item.menu-item-has-children .sub-menu li a:hover {
    color: var(--gold);
  }
  .nav .header__contact .link__item .icon {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 4px;
  }
  .nav .header__contact .link__item a:hover {
    color: var(--gold);
  }
  .nav .header__contact .order__call {
    border-bottom: 1px dashed var(--white);
    text-align: left;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .menu__burger {
    width: 44px;
    height: 44px;
    display: block;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 4px 5px;
  }
  .menu__burger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main);
    border-radius: 0px;
    margin: 5px 0px;
  }
}
@media screen and (max-width: 991px) {
  a.btn,
  button.btn {
    width: 230px;
    height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .header .header__contacts .header__contact {
    font-size: 12px;
  }
  .header .header__contacts .header__contact .icon {
    width: 12px;
    height: 12px;
  }
  .preloader .preloader__bg.preloader__bg_big {
    width: 243px;
  }
}
.title_1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1.05em;
}

.section__title {
  font-family: "Fixel Display", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1em;
  text-transform: uppercase;
}
.section__title.section__title2 {
  font-size: 48px;
}

.section__offer {
  margin-bottom: 20px;
}

.section__label {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.title_2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2em;
}

.title_3 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2em;
}

.title_4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
}

.text__content h1 {
  font-weight: 600;
}
.text__content h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.text__content h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.text__content h4 {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.2em;
  margin-bottom: 1em;
}
.text__content p,
.text__content li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 1.4em;
}
.text__content li:last-child {
  margin-bottom: 0;
}
.text__content p {
  margin-bottom: 1.4em;
}
.text__content p:last-child {
  margin-bottom: 0;
}
.text__content p a {
  color: var(--red);
}
.text__content p a:hover {
  color: #80181c;
}
.text__content ol,
.text__content ul {
  margin-bottom: 15px;
}
.text__content ul li {
  font-weight: 300;
}
.text__content ul li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--main);
  border-radius: 50px;
  position: absolute;
  left: 5px;
  top: 7px;
}
.text__content li {
  padding-left: 20px;
  position: relative;
  color: var(--black);
}
.text__content li:not(:last-child) {
  margin-bottom: 15px;
}
.text__content ol {
  list-style: none;
  counter-reset: item;
}
.text__content ol li {
  counter-increment: item;
  color: var(--black);
  font-size: 18px;
}
.text__content ol li:before {
  margin-right: 16px;
  content: counter(item) ".";
  background: transparent;
  color: var(--black);
  font-size: 18px;
  width: 1.2em;
  text-align: center;
  display: inline-block;
  height: 16px;
  top: 0px;
}

@media screen and (max-width: 1439px) {
  .title_1 {
    font-size: 84px;
  }
  .text__content h2 {
    font-size: 24px;
  }
  .section__title {
    font-size: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .title_1 {
    font-size: 60px;
  }
  .text__content h2 {
    font-size: 24px;
  }
  .text__content h3 {
    font-size: 20px;
  }
  .section__title {
    font-size: 32px;
  }
  .title_3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .title_1 {
    font-size: 48px;
  }
  .section__title {
    font-size: 28px;
  }
  .section__title.section__title2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .title_1 {
    font-size: 40px;
  }
  .text__content h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .section__title {
    font-size: 28px;
  }
  .section__title.section__title2 {
    font-size: 28px;
  }
  .text__content p,
  li {
    font-size: 16px;
  }
  .text__content ol li:before {
    font-size: 16px;
  }
  .text__content ol li,
  .text__content ul li {
    font-size: 16px;
  }
}
.form__wrap {
  width: 100%;
}
.form__wrap .input__group {
  margin-bottom: 12px;
}
.form__wrap .input__group p {
  margin: 0 !important;
}
.form__wrap .input__group .order__input {
  display: block;
  width: 100%;
  height: 65px;
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  padding-left: 22px;
  border: 1px solid var(--black);
  background-color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  color: var(--black);
  border-radius: 50px;
}
.form__wrap .input__group .order__input.wpcf7-not-valid {
  border-color: red;
}
.form__wrap .input__group .order__input::-webkit-input-placeholder {
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #c4c4c4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-moz-placeholder {
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #c4c4c4;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:-ms-input-placeholder {
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #c4c4c4;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::-ms-input-placeholder {
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #c4c4c4;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input::placeholder {
  font-family: "Fixel Display", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  color: #c4c4c4;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form__wrap .input__group .order__input:focus {
  border-color: var(--black);
}
.form__wrap .input__group .order__input.order__input_message {
  min-height: 88px;
  border-radius: 20px;
  padding-top: 12px;
}
.form__wrap .accept__block label {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__wrap input[type=checkbox] {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 2px solid var(--red);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-right: 10px;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.form__wrap input[type=checkbox]:checked {
  background: url(../img/check_icon.svg) no-repeat center;
}
.form__wrap .wpcf7-not-valid-tip {
  font-size: 18px;
  color: var(--orange);
}
.form__wrap span {
  display: block;
}
.form__wrap .wpcf7-list-item {
  display: block;
  margin: 0 !important;
}
.form__wrap.form__wrap_vacancy .btn {
  width: 100%;
}

.head__section {
  padding-top: 140px;
  padding-bottom: 85px;
}
.head__section .offer__wrap {
  min-width: 50%;
  width: auto;
}
.head__section .offer {
  width: 100%;
  min-height: 588px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 63px 30px 63px 0;
}
.head__section .offer:before {
  content: "";
  display: block;
  width: 150%;
  height: 100%;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px);
  position: absolute;
  right: 0;
  top: 0;
  pointer-events: none;
}
.head__section .offer .offer__subtitle {
  max-width: 385px;
  line-height: 1.5em;
}
.head__section .offer .offer__btn {
  position: absolute;
  left: 0;
  bottom: -120px;
}

@media screen and (max-width: 1199px) {
  .head__section .offer {
    padding: 50px 15px 50px 0;
    min-height: initial;
  }
}
@media screen and (max-width: 991px) {
  .head__section .offer .offer__subtitle {
    font-size: 16px;
  }
  .section_space.mb_50,
  section.mb_50 {
    margin-bottom: 30px;
  }
  .section_space.mt_50,
  section.mt_50 {
    margin-top: 30px;
  }
  .section_space.pt_50,
  section.pt_50 {
    padding-top: 30px;
  }
  .section_space.pb_50,
  section.pb_50 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .head__section .offer__wrap {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .head__section .offer {
    padding: 72px 15px 34px;
    min-height: 300px;
  }
  .head__section .offer:before {
    width: 100%;
  }
  .head__section .offer .offer__btn {
    width: 230px;
    left: calc(50% - 115px);
    height: 65px;
  }
  .head__section .offer .offer__subtitle {
    font-size: 16px;
    line-height: 1.2em;
  }
}
.about .text__content h3 {
  font-size: 28px;
  font-weight: 500;
  color: var(--main);
  margin-bottom: 1em;
  line-height: 1.1em;
}
.about .text__content ul li {
  margin-bottom: 0.3em;
  line-height: 1.2em;
  padding-left: 25px;
}
.about .text__content ul li:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid var(--main);
  border-radius: 50%;
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 4px;
}
.about .text__content.text__content_big p,
.about .text__content.text__content_big li {
  font-size: 24px;
}
.about .about__img {
  height: 446px;
  width: 620px;
  overflow: hidden;
}
.about .about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about .about__img.about__img_right {
  border-radius: 300px 0 0 300px;
  -webkit-transform: none !important;
          transform: none !important;
}
.about .about__img.about__img_left {
  border-radius: 0 300px 300px 0;
  -webkit-transform: translateX(-90px);
          transform: translateX(-90px);
}
.about .about__img.about__img_yellow {
  border: 10px solid var(--main2);
  background-color: var(--main2);
}
.about .about__img.about__img_blue {
  border: 10px solid var(--main);
  background-color: var(--main);
}
.about .about__img.about__img_big {
  width: 720px;
  height: 520px;
}
.about .about__img.about__img_circle {
  width: 380px;
  height: 380px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.about .about__img_circle_wrap {
  height: 600px;
  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;
}
.about .about__img_circle_wrap::before {
  content: "";
  display: block;
  width: 800px;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: var(--main2);
}
.about .about__img_circle_wrap.about__img_blue::before {
  background-color: var(--main);
}
.about .about__img_circle_wrap.about__img_circle_left::before {
  right: 50%;
  border-radius: 0 300px 300px 0;
}
.about .about__img_circle_wrap.about__img_circle_right::before {
  left: 50%;
  border-radius: 300px 0 0 300px;
}
.about.about_head .about__img {
  border-radius: 20px;
  height: 390px;
  margin: 0;
  -webkit-transform: none;
          transform: none;
  border: none;
  width: 100%;
}
.about.about_head .about__img.about__img_big {
  margin-left: 95px;
  width: 605px;
  height: 520px;
  border: none;
  border-radius: 300px 0 0 300px;
}
.about.about_gallary .about__img,
.about.about_gallary .about__img_swiper .swiper-slide {
  width: 100%;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about.about_gallary .about__img img,
.about.about_gallary .about__img_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about.about_gallary .about__img .about__video,
.about.about_gallary .about__img_swiper .swiper-slide .about__video {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_play.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1439px) {
  .about .about__img.about__img_big {
    -webkit-transform: translateX(-191px);
            transform: translateX(-191px);
  }
}
@media screen and (max-width: 1199px) {
  .about .about__img.about__img_big {
    height: 430px;
    width: 580px;
  }
  .about .text__content.text__content_big p,
  .about .text__content.text__content_big li {
    font-size: 20px;
  }
  .about .about__img {
    height: 400px;
    width: 550px;
  }
  .about.about_head .about__img.about__img_big {
    margin-left: 0;
    height: 450px;
  }
  .about.about_gallary .about__img,
  .about.about_gallary .about__img_swiper .swiper-slide {
    height: 320px;
  }
  .about .text__content h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .about .about__img.about__img_big {
    height: 380px;
    width: 500px;
  }
  .about .about__img.about__img_right {
    margin-left: auto;
  }
  .about .about__img.about__img_left {
    -webkit-transform: none;
            transform: none;
  }
  .about .about__img_circle_wrap {
    height: 500px;
  }
  .about.about_head .about__img.about__img_big {
    margin-left: auto;
    height: 380px;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .about .about__img.about__img_big,
  .about .about__img {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .about .text__content.text__content_big p,
  .about .text__content.text__content_big li {
    font-size: 18px;
  }
  .about .btn {
    margin: 0 auto;
  }
  .about .about__img.about__img_big,
  .about .about__img {
    max-width: initial;
    width: calc(100% + 24px);
    height: 70vw;
  }
  .about .about__img.about__img_right {
    margin: 0 -12px;
  }
  .about .about__img.about__img_left {
    -webkit-transform: none;
            transform: none;
    margin: 0 -12px;
  }
  .about .about__img_circle_wrap {
    height: 100vw;
  }
  .about .about__img.about__img_circle {
    width: 70vw;
    height: 70vw;
  }
  .about.about_head .about__img.about__img_big {
    max-width: initial;
    width: calc(100% + 24px);
    height: 70vw;
  }
}
.partners .partners__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.partners .partners__logo img {
  width: 100%;
  height: auto;
}
.partners .partners__info {
  max-width: 300px;
  padding-left: 15px;
}

@media screen and (max-width: 991px) {
  .partners .partners__info {
    width: 70%;
  }
  .partners .partners__logo {
    width: 30%;
  }
  .partners .partners__wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .partners .partners__wrap .partners__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .partners .partners__info,
  .partners .partners__logo {
    width: calc(50% - 12px);
  }
  .partners .partners__item:nth-child(even) .partners__logo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 576px) {
  .partners .partners__wrap .partners__link,
  .partners .partners__wrap .partners__name {
    font-size: 3.3vw;
  }
}
.contact .contact__logo {
  display: block;
  width: 100px;
  margin-bottom: 50px;
}
.contact .contact__info a {
  color: var(--black);
}
.contact .contact__info a:hover {
  color: var(--main);
}
.contact .social a {
  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: 1px solid var(--main);
  border-radius: 50px;
  width: 70px;
  height: 47px;
  margin-right: 18px;
}
.contact .social a:last-child {
  margin-right: 0;
}
.contact .social a:hover {
  border-color: var(--main2);
}
.contact .social a:hover path {
  fill: var(--main2);
}
.contact .contact__form_subtitle {
  max-width: 400px;
}
.contact .form__wrap {
  max-width: 500px;
}

@media screen and (max-width: 991px) {
  .contact .social {
    padding-top: 30px;
  }
  .contact .form__wrap .btn {
    width: 100%;
  }
}
.advant .advant__card {
  min-height: 227px;
  padding: 24px 16px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--main);
}
.advant .advant__card .advant__icon {
  width: 58px;
  height: 58px;
  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: 50%;
  border: 1px solid var(--main2);
  padding: 5px;
}
.advant .advant__card .advant__icon img {
  max-width: 100%;
  max-height: 100%;
}
.advant .advant__card .partners__name {
  line-height: 1.1em;
}

@media screen and (max-width: 991px) {
  .advant .advant__card {
    padding: 15px 12px;
  }
  .advant .advant__card .partners__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .advant .advant__card {
    min-height: initial;
  }
  .advant .advant__card .partners__name {
    font-size: clamp(16px, 5vw, 20px);
    margin-bottom: 1.5vw !important;
  }
  .advant .advant__card .partners__text {
    font-size: clamp(12px, 4.2vw, 16px);
  }
}
.history .history__item {
  position: relative;
}
.history .history__item:before, .history .history__item:after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% + 50px);
  top: 0;
  left: 20px;
  position: absolute;
  background-color: var(--main2);
}
.history .history__item:after {
  top: -60px;
  height: 100px;
}
.history .history__item:first-child:after {
  display: none;
}
.history .history__item:last-child::before {
  height: 100%;
}
.history .history__item .history__name {
  padding-left: 100px;
  z-index: 2;
}
.history .history__item .history__name:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: -6px;
  border-radius: 50%;
  background-color: var(--main);
}
.history .history__item .history__subitem .history__name {
  padding-left: 100px;
}
.history .history__item .history__subitem .history__name:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 12px;
  top: 8px;
  border-radius: 50%;
  background-color: var(--main2);
}
.history .history__item .text__content p {
  margin-bottom: 1em;
}

@media screen and (max-width: 991px) {
  .history .history__item:before, .history .history__item:after {
    left: 15px;
  }
  .history .history__item .history__subitem .history__name {
    font-size: 20px;
    font-weight: 500;
  }
  .history .history__item .history__subitem .history__name::before {
    left: 7px;
    top: 5px;
  }
  .history .history__item .history__name::before {
    width: 30px;
    height: 30px;
    top: -2px;
  }
  .history .history__item .history__subitem .history__name,
  .history .history__item .history__name {
    padding-left: 60px;
  }
}
@media screen and (max-width: 767px) {
  .history .history__item .history__subitem .history__name,
  .history .history__item .history__name {
    padding-left: 30px;
  }
  .history .history__item .text__content p {
    font-size: 14px;
  }
  .history .history__item:before, .history .history__item:after {
    left: 10px;
  }
  .history .history__item .history__subitem .history__name {
    font-size: 16px;
  }
  .history .history__item .history__subitem .history__name::before {
    width: 10px;
    height: 10px;
    left: 5px;
    top: 6px;
  }
  .history .history__item .history__name {
    font-size: 20px;
  }
  .history .history__item .history__name::before {
    width: 20px;
    height: 20px;
    top: 0px;
  }
}
@media screen and (max-width: 576px) {
  .history .history__item {
    margin-bottom: 20px;
  }
  .history .history__item .history__subitem .history__name {
    font-size: 3.6vw;
  }
  .history .history__item .history__name {
    font-size: 5vw;
  }
}
.team .team__img {
  width: 100%;
  height: 330px;
  border-radius: 10px;
  overflow: hidden;
}
.team .team__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper_pag {
  padding-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.swiper_pag .swiper-pagination-bullet {
  opacity: 1;
  background-color: var(--main);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 10px;
  border: 1px solid var(--white);
  -webkit-box-shadow: inset 0 0 0 7px var(--white);
          box-shadow: inset 0 0 0 7px var(--white);
  width: 27px;
  height: 27px;
  background-color: #d8d8d8;
  border-radius: 50%;
}
.swiper_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid var(--main);
  -webkit-box-shadow: inset 0 0 0 7px #e3e8fb;
          box-shadow: inset 0 0 0 7px #e3e8fb;
  background-color: var(--main);
}

@media screen and (max-width: 1439px) {
  .team .team__img {
    height: 290px;
  }
}
@media screen and (max-width: 767px) {
  .team .team__img {
    height: 200px;
  }
  .team .team__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .team .swiper-slide {
    width: 180px;
  }
  .team .swiper-slide .team__img {
    height: 200px;
  }
}
.number .number__name {
  font-size: 80px;
  line-height: 1em;
  letter-spacing: 0.02em;
}
.number .number__text {
  font-size: 40px;
  line-height: 1em;
}

@media screen and (max-width: 1199px) {
  .number .number__name {
    font-size: 66px;
  }
  .number .number__text {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .number .number__name {
    font-size: 50px;
  }
  .number .number__text {
    font-size: 32px;
  }
}
@media screen and (max-width: 576px) {
  .number .number__name {
    font-size: clamp(36px, 13vw, 48px);
  }
  .number .number__text {
    font-size: clamp(24px, 9vw, 32px);
  }
}
.review .review__swiper {
  overflow: visible;
  height: 580px;
}
.review .swiper-slide {
  height: 486px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.review .swiper-slide.swiper-slide-active {
  height: 580px;
}
.review .swiper-slide .review__img {
  height: 100%;
}
.review .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.review .swiper-slide .review__text {
  height: 100%;
  overflow-y: auto;
}
.review .swiper-slide .review__text .text__content h3 {
  color: var(--main);
  font-size: 28px;
}
.review .swiper-slide .about__video {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_play.svg) no-repeat center;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.review .swiper-slide .about__video.about__video_hover {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_zoom.svg) no-repeat center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.review .swiper-slide:hover .about__video.about__video_hover {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_zoom.svg) no-repeat center;
  opacity: 1;
}
.review .swiper_pag {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: calc(33% + 12px);
  padding-top: 0;
  margin-top: -40px;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.review .swiper_pag .swiper-pagination-bullet {
  pointer-events: all;
}
.review .swiper__arrows {
  width: calc(33% - 12px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 12px;
}

.swiper__arrows .swiper__arrow {
  width: 76px;
  height: 76px;
  border: 1px solid var(--main);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background-color: var(--white);
}
.swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 20px;
}
.swiper__arrows .swiper__arrow:hover {
  background-color: var(--main);
}
.swiper__arrows .swiper__arrow:hover svg path {
  stroke: var(--white);
}

@media screen and (max-width: 1199px) {
  .review .review__swiper {
    height: 480px;
  }
  .review .swiper-slide {
    height: 430px;
  }
  .review .swiper-slide.swiper-slide-active {
    height: 480px;
  }
  .review .swiper_pag {
    margin-top: -30px;
  }
}
@media screen and (max-width: 991px) {
  .review .swiper__arrows {
    width: calc(44% - 12px);
  }
  .review .swiper_pag {
    padding-left: calc(44% + 12px);
  }
  .review .review__swiper {
    height: 400px;
  }
  .review .swiper-slide {
    height: 350px;
  }
  .review .swiper-slide.swiper-slide-active {
    height: 400px;
  }
  .review .swiper-slide .review__text .text__content h3 {
    font-size: 20px;
  }
  .review .swiper-slide .review__text .text__content p {
    font-size: 16px;
  }
  .review .swiper-slide .about__video.about__video_hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .swiper__arrows .swiper__arrow {
    width: 50px;
    height: 50px;
  }
  .swiper__arrows .swiper__arrow svg {
    width: 30px;
    height: auto;
  }
  .review .swiper__arrows {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
  }
  .review .swiper_pag {
    padding: 20px 0;
    margin-top: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .review .review__swiper {
    height: 350px;
  }
  .review .swiper-slide {
    height: 300px;
  }
  .review .swiper-slide.swiper-slide-active {
    height: 350px;
  }
}
@media screen and (max-width: 576px) {
  .swiper_pag .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    -webkit-box-shadow: inset 0 0 0 4px var(--white);
            box-shadow: inset 0 0 0 4px var(--white);
  }
  .swiper_pag .swiper-pagination-bullet.swiper-pagination-bullet-active {
    -webkit-box-shadow: inset 0 0 0 4px #e3e8fb;
            box-shadow: inset 0 0 0 4px #e3e8fb;
  }
}
.vacancy .vacancy__card {
  border-radius: 20px;
  padding: 45px 25px;
  border: 1px solid var(--main);
}
.vacancy .vacancy__card .vacancy__name {
  font-size: 30px;
}
.vacancy .vacancy__card .btn {
  width: 270px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media screen and (max-width: 1199px) {
  .vacancy .vacancy__card .vacancy__name {
    font-size: 26px;
  }
}
@media screen and (max-width: 991px) {
  .vacancy .vacancy__card .vacancy__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .vacancy .vacancy__card {
    padding: 25px 12px;
  }
  .vacancy .vacancy__card .vacancy__name {
    font-size: 20px;
  }
  .vacancy .vacancy__card .vacancy__text {
    font-size: 16px;
  }
}
.gallary .gallary__wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gallary .gallary__wrap.gallary__wrap1 {
  height: 770px;
}
.gallary .gallary__wrap.gallary__wrap2 {
  height: calc(50% - 12px);
}
.gallary .gallary__wrap.gallary__wrap_other {
  height: 420px;
}
.gallary .gallary__wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallary .gallary__wrap .about__video {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_zoom.svg) no-repeat center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.gallary .gallary__wrap:hover .about__video {
  opacity: 1;
}
.gallary .gallary__main {
  height: 520px;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  border: 10px solid var(--main2);
  border-radius: 0 300px 300px 0;
  width: 735px;
}
.gallary .gallary__main .swiper-slide {
  overflow: hidden;
  position: relative;
}
.gallary .gallary__main .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallary .gallary__main .swiper-slide .about__video {
  background: rgba(0, 0, 0, 0.2) url(../img/icon_zoom.svg) no-repeat center;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.gallary .gallary__main .swiper-slide:hover .about__video {
  opacity: 1;
}
.gallary .gallary__thumbnail {
  width: 500px;
  max-width: 100%;
  height: 360px;
}
.gallary .gallary__thumbnail .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  height: calc((100% - 26px) / 3) !important;
  cursor: pointer;
  border: 4px solid transparent;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.gallary .gallary__thumbnail .swiper-slide.swiper-slide-thumb-active {
  border: 4px solid var(--main2);
}
.gallary .gallary__thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallary .swiper__arrows {
  position: absolute;
  right: -30px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  z-index: 5;
}
.gallary .swiper__arrows .swiper__arrow.swiper__arrow_left {
  margin-right: 0;
  margin-bottom: 20px;
}
.gallary .social a {
  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: 1px solid var(--main);
  border-radius: 50px;
  width: 70px;
  height: 47px;
  margin-right: 18px;
}
.gallary .social a:last-child {
  margin-right: 0;
}
.gallary .social a:hover {
  border-color: var(--main2);
}
.gallary .social a:hover path {
  fill: var(--main2);
}

@media screen and (max-width: 1439px) {
  .gallary .gallary__main {
    height: 470px;
    width: 643px;
  }
}
@media screen and (max-width: 1199px) {
  .gallary .gallary__main {
    height: 430px;
    width: 620px;
    -webkit-transform: translateX(-150px);
            transform: translateX(-150px);
  }
}
@media screen and (max-width: 991px) {
  .gallary .about__img {
    height: 380px;
    width: 500px;
  }
  .gallary .gallary__main {
    height: 380px;
    width: 500px;
    -webkit-transform: none;
            transform: none;
  }
  .gallary .gallary__main .swiper-slide .about__video {
    opacity: 0.8;
  }
  .gallary .swiper__arrows {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    right: auto;
  }
  .gallary .swiper__arrows .swiper__arrow {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .gallary .swiper__arrows .swiper__arrow.swiper__arrow_left {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .gallary .gallary__thumbnail {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .gallary .gallary__main {
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .gallary .gallary__main {
    max-width: initial;
    width: calc(100% + 24px);
    height: 70vw;
    margin-left: -12px;
  }
}
@media screen and (max-width: 1439px) {
  .gallary .gallary__wrap.gallary__wrap1 {
    height: 735px;
  }
  .gallary .gallary__wrap.gallary__wrap_other {
    height: 355px;
  }
}
@media screen and (max-width: 1199px) {
  .gallary .gallary__wrap.gallary__wrap1 {
    height: 635px;
  }
  .gallary .gallary__wrap.gallary__wrap_other {
    height: 305px;
  }
}
@media screen and (max-width: 991px) {
  .gallary .gallary__wrap .about__video {
    opacity: 1;
  }
  .gallary .gallary__wrap.gallary__wrap1 {
    height: 205px;
  }
  .gallary .gallary__wrap.gallary__wrap_other {
    height: 205px;
  }
}
@media screen and (max-width: 767px) {
  .gallary .gallary__wrap.gallary__wrap2 {
    height: 200px;
    width: calc(50% - 12px);
  }
}
.project .project__img {
  width: 100%;
  height: 390px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 30px;
}
.project .project__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project .project__name {
  margin-bottom: 25px;
}
.project .text__content {
  max-height: 235px;
  overflow-y: auto;
}

@media screen and (max-width: 1199px) {
  .project .project__img {
    height: 320px;
  }
  .project .project__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 991px) {
  .project .project__name {
    font-size: 20px;
  }
  .project .text__content p,
  .project .text__content li {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .project .text__content p,
  .project .text__content li {
    font-size: 16px;
  }
  .project .project__name {
    font-size: 18px;
  }
}
[data-tabbtn] > * {
  pointer-events: none;
}

[data-tabcontent] {
  position: absolute;
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  width: initial;
  max-width: 100%;
  top: 0;
}
[data-tabcontent].active {
  position: relative;
  z-index: 2;
  opacity: 1;
  pointer-events: all;
  height: auto;
}

.donation .donation__btn {
  border-radius: 20px;
  border: 1px solid var(--main);
  background-color: rgba(241, 241, 241, 0.5);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  padding: 16px 20px;
  width: 100%;
  text-align: left;
}
.donation .donation__btn .donation__icon {
  width: 100px;
  height: 90px;
  border-radius: 20px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.donation .donation__btn .donation__icon img {
  max-width: 100%;
  max-height: 100%;
}
.donation .donation__btn:hover, .donation .donation__btn.active {
  background-color: rgba(53, 90, 224, 0.5);
}
.donation .donation__block {
  border: 1px solid var(--main);
  background-color: rgba(241, 241, 241, 0.5);
  border-radius: 20px;
  padding: 48px 44px;
}
.donation .donation__block .donation__name {
  font-size: 38px;
  margin-bottom: 40px;
}
.donation .donation__block .donation__item.donation__item_border::before {
  content: "";
  display: block;
  width: calc(100% + 88px);
  height: 1px;
  background-color: #d9d9d9;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: -44px;
}
.donation .donation__block .donation__item .donation___copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  width: 24px;
  height: 24px;
}
.donation .donation__block .donation__item .donation___copy > * {
  pointer-events: none;
}
.donation .donation__block .donation__item .donation___copy:hover {
  color: var(--main);
}
.donation .donation__block .donation__item .donation___copy:hover path {
  stroke: var(--main);
}
.donation .donation__block .donation___title {
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: 0.5;
}
.donation .donation__block .donation___text {
  max-width: calc(100% - 210px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 15px;
  line-height: 1.2em;
}
.donation .donation__block .donation__all {
  width: 220px;
  height: 50px;
  margin-top: 10px;
  background-color: var(--main);
  font-size: 18px;
  color: var(--white);
}
.donation .donation__block.donation__block_crypto .donation__item {
  background-color: var(--white);
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--main);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.donation .donation__block.donation__block_crypto .donation__item .donation___title {
  opacity: 1;
  font-size: 18px;
}
.donation .donation__block.donation__block_crypto .donation__item .donation___text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 15px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}
.donation .donation__block.donation__block_crypto .donation__item .donation___copy {
  width: auto;
}

.notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 999;
}
.notification.show {
  opacity: 1;
}
.notification .donation__wrap {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
}

@media screen and (max-width: 1439px) {
  .donation .donation__btn {
    font-size: 24px;
  }
}
@media screen and (max-width: 1199px) {
  .donation .donation__block {
    padding: 35px 30px;
  }
  .donation .donation__block .donation__item.donation__item_border::before {
    width: calc(100% + 60px);
    left: -30px;
  }
  .donation .donation__block .donation__name {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .donation .donation__btn {
    padding: 10px 15px;
    font-size: 22px;
    margin-bottom: 8px;
  }
  .donation .donation__block.donation__block_banks .donation__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .donation .donation__block.donation__block_banks .donation___title {
    width: 100%;
    margin-bottom: 8px;
  }
  .donation .donation__block.donation__block_banks .donation___text {
    max-width: calc(100% - 30px);
  }
  .donation .donation__btn .donation__icon {
    width: 80px;
    height: 60px;
    padding: 8px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 991px) {
  .donation .donation__block .donation__name {
    font-size: 24px;
  }
}
@media screen and (max-width: 576px) {
  .donation .donation__block {
    padding: 30px 15px;
  }
  .donation .donation__block .donation__item.donation__item_border::before {
    width: calc(100% + 30px);
    left: -15px;
  }
  .donation .donation__block.donation__block_banks .donation___title {
    margin-bottom: 4px;
    font-size: 14px;
  }
  .donation .donation__block.donation__block_banks .donation__item {
    margin-bottom: 8px;
  }
  .donation .donation__block.donation__block_banks .donation___text {
    font-size: 14px;
    line-height: 1.2em;
  }
  .donation .donation__btn {
    font-size: 18px;
  }
  .donation .donation__btn .donation__icon {
    width: 60px;
    height: 45px;
    padding: 8px;
    border-radius: 15px;
  }
  .donation .donation__block.donation__block_crypto .donation__item .donation___text {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.footer {
  background-color: var(--black);
}
.footer .footer__logo {
  width: 90px;
  height: auto;
}
.footer .footer__logo img {
  width: 100%;
  height: auto;
}
.footer .contact__info a {
  color: var(--white);
}
.footer .contact__info a:hover {
  color: var(--main2);
}
.footer .footer__menu {
  width: 190px;
}
.footer .footer__menu li {
  margin-bottom: 15px;
}
.footer .footer__menu li:first-child {
  margin-bottom: 25px;
}
.footer .footer__menu li:first-child a {
  color: var(--main2);
}
.footer .footer__menu li:last-child {
  margin-bottom: 0;
}
.footer .footer__menu li a {
  font-size: 18px;
  color: var(--white);
  font-weight: 400;
}
.footer .footer__menu li a:hover {
  color: var(--main2);
}
@media screen and (max-width: 991px) {
  .footer .footer__menu {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer .footer__menu li {
    margin-bottom: 8px;
  }
  .footer .footer__menu li:first-child {
    margin-bottom: 15px;
  }
  .footer .footer__menu li a {
    font-size: 16px;
  }
}
.sticky__btn {
  font-size: 13px;
  font-weight: 500;
  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;
  color: var(--white);
  line-height: 1.1em;
  width: 96px;
  height: 96px;
  -webkit-box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.1), 3px 7px 7px rgba(0, 0, 0, 0.1), 8px 15px 10px rgba(0, 0, 0, 0.05);
  background-color: #5c8678;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  border-radius: 50%;
  text-transform: uppercase;
}
.sticky__btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  border: 1px solid #5c8678;
  pointer-events: none;
  -webkit-animation: zoomElem 2.5s ease-in-out infinite;
          animation: zoomElem 2.5s ease-in-out infinite;
}
@-webkit-keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes zoomElem {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
.sticky__btn span {
  display: block;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.popup {
  position: fixed;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(14, 15, 15, 0.35);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup.open {
  z-index: 999999;
  opacity: 1;
  pointer-events: all;
}
.popup.open .popup__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.popup .popup__content {
  background-color: var(--white);
  width: 96%;
  max-width: 500px;
  padding: 0;
  position: relative;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 96%;
  overflow-y: auto;
  padding: 40px 30px;
  border-radius: 20px;
}
.popup .popup__content .popup__head {
  padding: 45px 30px;
  background-color: var(--btn_hover);
}
.popup .popup__content .close_popup {
  background: transparent url(../img/close_menu.svg) no-repeat center/16px;
  border: none;
  width: 30px;
  height: 30px;
  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;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.popup .popup__content .form__wrap .input__group {
  margin-bottom: 20px;
}
.popup .popup__content .form__wrap .btn {
  height: 65px;
}

.open__form > * {
  pointer-events: none;
}

@media screen and (max-width: 1439px) {
  .footer__contact a {
    font-size: 18px;
  }
}
.page_404 {
  height: calc(100vh - 43px);
  min-height: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.page_404 .page_404__title {
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  font-family: "Fixel Display";
  text-transform: uppercase;
  color: var(--lightgrey);
  margin-bottom: 30px;
  line-height: 0.75em;
}
.page_404 .page_404_subtitle {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
  line-height: 1em;
}
.page_404 .page_404__text {
  font-size: 18px;
  max-width: 284px;
  margin: 0 auto 30px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .page_404 .page_404__title {
    font-size: 150px;
  }
}
.cky-prefrence-btn-wrapper .cky-btn {
  font-size: 18px !important;
  border-radius: 10px !important;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-prefrence-btn-wrapper .cky-btn.cky-btn-reject:hover, .cky-prefrence-btn-wrapper .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}

.cky-preference-body-wrapper p {
  font-size: 16px;
}

.cky-consent-container.cky-box-bottom-left {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 15, 15, 0.15);
  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;
}
.cky-consent-container.cky-box-bottom-left.cky-hide {
  display: none;
}
.cky-consent-container.cky-box-bottom-left .cky-consent-bar {
  width: 100%;
  border-radius: 20px;
  max-width: 420px;
  padding: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.1em;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des {
  margin-bottom: 40px;
}
.cky-consent-container.cky-box-bottom-left .cky-notice-des p {
  font-size: 18px;
  line-height: 1.4em;
}
.cky-consent-container.cky-box-bottom-left .cky-btn {
  font-size: 18px;
  border-radius: 10px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-accept:hover {
  background-color: #333333;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences {
  border-width: 1px;
}
.cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-reject:hover, .cky-consent-container.cky-box-bottom-left .cky-btn.cky-btn-preferences:hover {
  background-color: #f7f7f7;
}
@media screen and (max-width: 576px) {
  .page_404 .page_404__title {
    font-size: 120px;
  }
  .page_404 .page_404_subtitle {
    font-size: 32px;
  }
  .page_404 .page_404__text {
    font-size: 16px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-consent-bar {
    width: 100%;
    max-width: 90%;
    padding: 30px;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice .cky-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
  }
  .cky-consent-container.cky-box-bottom-left .cky-notice-des p {
    font-size: 16px;
  }
  .popup .popup__content ifrane {
    padding-bottom: 45px;
  }
}
.ti-widget.ti-goog .ti-controls .ti-next:after,
.ti-widget.ti-goog .ti-controls .ti-prev:after,
.ti-widget.ti-goog .ti-controls .ti-next:before,
.ti-widget.ti-goog .ti-controls .ti-prev:before {
  background-color: var(--btn_green) !important;
}

.ti-widget.ti-goog .ti-footer-filter-text {
  text-align: center !important;
}

html.with-fancybox {
  overflow: auto;
}

#sb_instagram #sbi_load .sbi_load_btn {
  margin: 0 auto;
  height: 56px;
  border-radius: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 16px;
  font-weight: 500;
}

.sbi_follow_btn,
.sb_instagram_header,
.instagram-gallery__actions {
  display: none !important;
}

#instagram-gallery-feed-0 .instagram-gallery-item__media-mask {
  opacity: 0 !important;
}

.instagram-gallery-square .instagram-gallery-item__media-wrap {
  position: relative;
}
.instagram-gallery-square .instagram-gallery-item__media-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3) url(../img/icon_zoom.svg) no-repeat center/25px !important;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 5;
}
.instagram-gallery-square .instagram-gallery-item__media-wrap:hover::before {
  opacity: 1;
}/*# sourceMappingURL=main.css.map */



.head__section_slider {
  position: relative;
  overflow: hidden;
  min-height: 813px;
  padding-top: 140px;
  padding-bottom: 85px;
  background: #f4f7fb;
}

.head-slider,
.head-slider__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.head-slider .swiper-wrapper,
.head-slider .swiper-slide {
  height: 100%;
}

.head-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.head__section_slider .container {
  position: relative;
  z-index: 2;
}

.head-slider__pagination {
  position: absolute;
  z-index: 5;
  bottom: 26px !important;
}

.head-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.75;
}

.head-slider__pagination .swiper-pagination-bullet-active {
  background: #3559E0;
  opacity: 1;
}

@media screen and (max-width: 1199px) {
  .head__section_slider {
    min-height: 650px;
  }
}

@media screen and (max-width: 576px) {
  .head__section_slider {
    min-height: 520px;
    padding-top: 110px;
    padding-bottom: 60px;
  }
}

/* HERO slider section */
.head__section_slider {
  position: relative !important;
  overflow: visible !important;
  min-height: 813px;
  padding-top: 140px;
  padding-bottom: 85px;
  background: #f4f7fb;
  z-index: 5 !important;
}

.head-slider,
.head-slider__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.head-slider .swiper-wrapper,
.head-slider .swiper-slide {
  height: 100%;
}

.head-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.head__section_slider .container,
.head__section_slider .offer__wrap,
.head__section_slider .offer {
  overflow: visible !important;
}

.head__section_slider .container {
  position: relative;
  z-index: 20;
}

/* HERO card */
.head__section_slider .offer {
  position: relative !important;
  min-height: 560px;
  padding-bottom: 80px !important;
  z-index: 30 !important;
}

/* HERO button on the block crossing */
.head__section_slider .offer .offer__btn {
  position: absolute !important;

  left: 0 !important;
  bottom: -125px !important;
  transform: none !important;

  width: 300px !important;
  height: 80px !important;
  min-height: 80px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  border-radius: 50px !important;

  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  z-index: 999 !important;
}

/* Make next block stay under the button */
.head__section_slider + section,
.head__section_slider + div {
  position: relative;
  z-index: 1;
}

/* Slider pagination */
.head-slider__pagination {
  position: absolute;
  z-index: 10;
  bottom: 26px !important;
}

.head-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.75;
}

.head-slider__pagination .swiper-pagination-bullet-active {
  background: #3559E0;
  opacity: 1;
}

/* Tablet */
@media screen and (max-width: 1199px) {
  .head__section_slider {
    min-height: 650px;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .head__section_slider {
    min-height: 520px;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .head__section_slider .offer {
    min-height: 460px;
    padding-bottom: 70px !important;
  }

  .head__section_slider .offer .offer__btn {
    left: 50% !important;
    bottom: -70px !important;
    transform: translateX(-50%) !important;

    width: 240px !important;
    height: 64px !important;
    min-height: 64px !important;

    font-size: 17px !important;
    font-weight: 700 !important;
  }
}
/* HERO slider section */
.head__section_slider {
  position: relative !important;
  overflow: visible !important;
  min-height: 813px;
  padding-top: 140px;
  padding-bottom: 85px;
  background: #f4f7fb;
  z-index: 5 !important;
}

.head-slider,
.head-slider__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.head-slider .swiper-wrapper,
.head-slider .swiper-slide {
  height: 100%;
}

.head-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.head__section_slider .container,
.head__section_slider .offer__wrap,
.head__section_slider .offer {
  overflow: visible !important;
}

.head__section_slider .container {
  position: relative;
  z-index: 20;
}

/* HERO card */
.head__section_slider .offer {
  position: relative !important;
  min-height: 560px;
  padding-bottom: 80px !important;
  z-index: 30 !important;
}

/* HERO button on the block crossing */
.head__section_slider .offer .offer__btn {
  position: absolute !important;

  left: 0 !important;
  bottom: -150px !important;
  transform: none !important;

  width: 300px !important;
  height: 80px !important;
  min-height: 80px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  border-radius: 50px !important;

  font-size: 25px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  z-index: 999 !important;
}

/* Make next block stay under the button */
.head__section_slider + section,
.head__section_slider + div {
  position: relative;
  z-index: 1;
}

/* Slider pagination */
.head-slider__pagination {
  position: absolute;
  z-index: 10;
  bottom: 26px !important;
}

.head-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.75;
}

.head-slider__pagination .swiper-pagination-bullet-active {
  background: #3559E0;
  opacity: 1;
}

/* Tablet */
@media screen and (max-width: 1199px) {
  .head__section_slider {
    min-height: 650px;
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .head__section_slider {
    min-height: 520px;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .head__section_slider .offer {
    min-height: 460px;
    padding-bottom: 70px !important;
  }

  .head__section_slider .offer .offer__btn {
    left: 50% !important;
    bottom: -70px !important;
    transform: translateX(-50%) !important;

    width: 240px !important;
    height: 64px !important;
    min-height: 64px !important;

    font-size: 17px !important;
    font-weight: 700 !important;
  }
}

.contact-choice .wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-choice .wpcf7-list-item {
  margin: 0 !important;
}

.contact-choice label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.contact-choice input[type="radio"] {
  margin: 0;
}

#values .advant__card {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: #ffffff !important;
}

/* Убираем синюю рамку и центрируем карточки */
#values .advant__card,
#statistics .advant__card {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

/* Центрируем иконку */
#values .advant__icon,
#statistics .advant__icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Центрируем текст внутри карточек */
#values .partners__name,
#values .partners__text,
#statistics .partners__name,
#statistics .partners__text {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Если синяя линия задана через border у колонки */
#values .advant__item,
#statistics .advant__item {
  border: none !important;
  outline: none !important;
}

/* Только главная: убираем рамки и центрируем карточки */
body.home #values .advant__card,
body.home #statistics .advant__card {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  text-align: center !important;
}

/* Только главная: центрируем иконки */
body.home #values .advant__icon,
body.home #statistics .advant__icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-left: auto !important;
  margin-right: auto !important;

  width: 86px !important;
  height: 86px !important;
  margin-bottom: 24px !important;
}

body.home #values .advant__icon img,
body.home #statistics .advant__icon img {
  width: 86px !important;
  height: 86px !important;
  object-fit: contain !important;
}

/* Только главная: заголовки больше */
body.home #values .partners__name,
body.home #statistics .partners__name {
  font-size: 34px !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 18px !important;
}

/* Только главная: текст */
body.home #values .partners__text,
body.home #statistics .partners__text {
  font-size: 21px !important;
  line-height: 1.35 !important;
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Только главная: если рамка стоит на колонке */
body.home #values .advant__item,
body.home #statistics .advant__item {
  border: none !important;
  outline: none !important;
}

/* Mobile только для главной */
@media screen and (max-width: 576px) {
  body.home #values .advant__icon,
  body.home #statistics .advant__icon {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 18px !important;
  }

  body.home #values .advant__icon img,
  body.home #statistics .advant__icon img {
    width: 70px !important;
    height: 70px !important;
  }

  body.home #values .partners__name,
  body.home #statistics .partners__name {
    font-size: 28px !important;
  }

  body.home #values .partners__text,
  body.home #statistics .partners__text {
    font-size: 18px !important;
  }
}

/* Только главная: уменьшаем расстояние между цифрой и текстом */
body.home #statistics .partners__name {
  margin-bottom: 6px !important;
}

body.home #statistics .partners__text {
  margin-top: 0 !important;
}

/* ========================================= */
/* Наші цінності: уменьшить заголовки карточек */
/* Не трогаем блок "Наші досягнення" */
/* ========================================= */

body.home #values .partners__name,
body.home #values .partners__name.mb-3 {
  font-size: 25px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
  min-height: 86px !important;
}

/* Если нужно чуть компактнее расстояние под заголовком */
body.home #values .partners__text {
  margin-top: 0 !important;
}
/* Наші цінності: уменьшить иконки */
body.home #values .advant__icon,
body.home #values .advant__icon.mb-3 {
  width: 78px !important;
  height: 78px !important;
  margin-bottom: 12px !important;
}

body.home #values .advant__icon img {
  width: 70px !important;
  height: 70px !important;
  max-width: 70px !important;
  max-height: 70px !important;
  object-fit: contain !important;
}

/* Если после уменьшения иконок стало много воздуха */
body.home #values .advant__card {
  grid-template-rows: 86px 86px auto !important;
}

/* Планшет */
@media screen and (max-width: 991px) {
  body.home #values .advant__icon,
  body.home #values .advant__icon.mb-3 {
    width: 72px !important;
    height: 72px !important;
  }

  body.home #values .advant__icon img {
    width: 64px !important;
    height: 64px !important;
    max-width: 64px !important;
    max-height: 64px !important;
  }

  body.home #values .advant__card {
    grid-template-rows: 80px 78px auto !important;
  }
}

/* Мобилка */
@media screen and (max-width: 576px) {
  body.home #values .advant__icon,
  body.home #values .advant__icon.mb-3 {
    width: 68px !important;
    height: 68px !important;
  }

  body.home #values .advant__icon img {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
  }

  body.home #values .advant__card {
    grid-template-rows: 72px auto auto !important;
  }
}

/* ========================================= */
/* About Us / Про нас: уменьшить заголовки и фото */
/* ========================================= */

/* Заголовки только в текстовых about-блоках */
body.page-id-669 section.about .section__title,
body.page-id-93 section.about .section__title {
  font-size: 25px !important;
  line-height: 1.25 !important;
  margin-bottom: 18px !important;
}

/* Уменьшаем фото в about-блоках */
body.page-id-669 section.about .about__img,
body.page-id-93 section.about .about__img {
  max-width: 82% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Сами изображения */
body.page-id-669 section.about .about__img img,
body.page-id-93 section.about .about__img img {
  width: 100% !important;
  height: auto !important;
  max-height: 430px !important;
  object-fit: cover !important;
}

/* Круглая картинка миссии */
body.page-id-669 section.about .about__img_circle,
body.page-id-93 section.about .about__img_circle {
  max-width: 76% !important;
}

/* Планшет */
@media screen and (max-width: 991px) {
  body.page-id-669 section.about .section__title,
  body.page-id-93 section.about .section__title {
    font-size: 24px !important;
  }

  body.page-id-669 section.about .about__img,
  body.page-id-93 section.about .about__img,
  body.page-id-669 section.about .about__img_circle,
  body.page-id-93 section.about .about__img_circle {
    max-width: 88% !important;
  }
}

/* Мобилка */
@media screen and (max-width: 576px) {
  body.page-id-669 section.about .section__title,
  body.page-id-93 section.about .section__title {
    font-size: 23px !important;
  }

  body.page-id-669 section.about .about__img,
  body.page-id-93 section.about .about__img,
  body.page-id-669 section.about .about__img_circle,
  body.page-id-93 section.about .about__img_circle {
    max-width: 100% !important;
  }

  body.page-id-669 section.about .about__img img,
  body.page-id-93 section.about .about__img img {
    max-height: 340px !important;
  }
}
/* Планшет */
@media screen and (max-width: 991px) {
  body.home #values .partners__name,
  body.home #values .partners__name.mb-3 {
    font-size: 28px !important;
    min-height: 78px !important;
  }
}

/* Мобилка */
@media screen and (max-width: 576px) {
  body.home #values .partners__name,
  body.home #values .partners__name.mb-3 {
    font-size: 26px !important;
    min-height: 0 !important;
    margin-bottom: 12px !important;
  }
}





/* Только страница /pidtrymaty/ */
body:has(#donation) .head__section_slider .offer .title_1,
body:has(#donation) .head__section_slider .offer .section__title {
    color: #000 !important;
}

/* Подзаголовок меньше на 2 px */
body:has(#donation) .head__section_slider .offer .section__title {
    font-size: 38px !important;
}

@media screen and (max-width: 1439px) {
    body:has(#donation) .head__section_slider .offer .section__title {
        font-size: 34px !important;
    }
}

@media screen and (max-width: 1199px) {
    body:has(#donation) .head__section_slider .offer .section__title {
        font-size: 30px !important;
    }
}

@media screen and (max-width: 991px) {
    body:has(#donation) .head__section_slider .offer .section__title {
        font-size: 26px !important;
    }
}

/* Главная страница: фотографии полностью заполняют цветную форму */
body.home section.about .about__img img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block !important;
}


/* ===================================================== */
/* Страницы проектов: опустить фото до уровня заголовка   */
/* ===================================================== */

@media screen and (min-width: 992px) {
  html body section.about.about_head
  > .container
  > .row
  > .col-lg-6:last-child
  .about__img {
    margin-top: 72px !important;
  }
}

/* На планшете и телефоне вернуть обычное положение */
@media screen and (max-width: 991px) {
  html body section.about.about_head
  > .container
  > .row
  > .col-lg-6:last-child
  .about__img {
    margin-top: 0 !important;
  }
}