@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  height: 100%;
}
/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Stem Medium";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  font-family: Arial;
  padding-top: 113px;
  overflow-x: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

.body__opened {
  overflow: hidden;
}

.container {
  max-width: 1206px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }
}

.blog__links::-webkit-scrollbar {
  width: 0;
}

.header {
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 36px;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  -webkit-transition: top 0.6s ease-in-out;
  transition: top 0.6s ease-in-out;
  background: #ffffff;
}
@media screen and (max-width: 1024px) {
  .header {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 27px;
    padding-top: 27px;
  }
}

.nav-up {
  top: -100%;
}

.top__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid rgba(1, 61, 49, 0.06);
  padding-bottom: 36px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top__line {
    padding-bottom: 0;
    border-bottom: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header__right {
  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;
  width: 83%;
}
@media screen and (max-width: 1024px) {
  .header__right {
    display: none;
  }
}

.burger {
  display: none;
  position: relative;
  width: 24px;
  margin-left: 20px;
}
.burger span {
  width: 24px;
  height: 3px;
  background: rgb(1, 61, 49);
  display: block;
  margin-bottom: 6px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.burger span:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.burger__opened span {
  position: absolute;
}
.burger__opened span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.burger__opened span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger__opened span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.logo {
  width: 17%;
}
@media screen and (max-width: 1024px) {
  .logo {
    width: auto;
  }
  .logo img {
    width: 94.58px;
    height: 30px;
  }
}

.lang {
  margin-right: 10px !important;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.lang a {
  color: #4F4F4F;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
  font-weight: 500;
  font-size: 16px;
  border: none;
  outline: none;
}

.top__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .top__buttons {
    display: none;
  }
}

a.current__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px 5px 5px 5px;
  font-size: 18px;
  color: rgb(1, 61, 49);
  font-weight: 700;
  display: flex;
  align-items: center;
  padding: 19.51px 39.75px;
}

.pll-parent-menu-item {
  border: 2px solid rgba(1, 61, 49, 0.1);
  border-radius: 32.5px;
}

.lang__arrow::before {
  content: "";
  -webkit-mask-image: url("../img/lang__arrow.svg");
          mask-image: url("../img/lang__arrow.svg");
  background: #000000;
  min-width: 11px;
  min-height: 8px;
  display: block;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.rotate::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.active {
  border-radius: 5px 5px 5px 5px;
}

.lang__arrow {
  margin-left: 4px;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}

.lang__hover {
  width: 100%;
  background: #fff;
  -webkit-transform: translate(0px, 100px);
          transform: translate(0px, 100px);
  -webkit-transition: 0.3s ease 0s;
  transition: 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  border: 2px solid rgba(1, 61, 49, 0.06);
  border-radius: 20px;
  position: absolute;
  z-index: 2;
}
.lang__hover li a {
  color: rgb(1, 61, 49);
  padding: 20px 40px;
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  border-radius: 20px;
}
.lang__hover li a:hover {
  background: rgb(1, 61, 49);
  color: rgb(241, 255, 70);
}

.opened {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top__menu .menu .menu-item {
  position: relative;
  margin-right: 50px;
}
.top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.top__menu .menu .menu-item a {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: rgb(1, 61, 49);
  text-decoration: none;
}
.top__menu .menu .menu-item a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .top__menu .menu .menu-item {
    margin-right: 40px;
  }
}
.top__menu .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top__menu .menu .menu-item-has-children a::after {
  content: "";
  display: block;
  width: 11px;
  height: 8px;
  background: url(../img/menu__arrow.svg);
  position: relative;
  margin-left: 5px;
}
.top__menu .menu .menu-item-has-children .sub-menu {
  position: absolute;
  background: #FFFFFF;
  min-width: 230px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  border: 2px solid rgba(1, 61, 49, 0.06);
  left: 0px;
  top: 100%;
  z-index: 5;
  -webkit-transform: translate(0px, 100%);
          transform: translate(0px, 100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease 0s;
  transition: 0.25s ease 0s;
}
.top__menu .menu .menu-item-has-children .sub-menu a {
  display: block;
  width: 100%;
  border-radius: 0;
}
.top__menu .menu .menu-item-has-children .sub-menu a::after {
  display: none;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item {
  margin-right: 0;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  font-size: 16px;
  padding: 26px;
  width: 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;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a:hover {
  background: rgb(1, 61, 49);
  text-decoration: none;
  color: rgb(241, 255, 70);
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item a:hover::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow__right.svg);
  display: block;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) a {
  border-radius: 0px 0px 20px 20px;
}
.top__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-child(1) a {
  border-radius: 20px 20px 0px 0px;
}
.top__menu .menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.button3 {
  background: #fff;
  border-radius: 50px;
  width: 159px;
  height: 66px;
  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: rgb(1, 61, 49);
  border: 2px solid rgb(1, 61, 49);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button3:hover {
  text-decoration: underline;
  color: rgb(241, 255, 70);
  background: rgb(1, 61, 49);
}

.mobile__menu {
  position: fixed;
  top: 86px;
  background: #ffffff;
  height: 100%;
  width: 100%;
  z-index: 500;
  height: calc(100% - 86px);
  overflow-x: scroll;
  padding-bottom: 60px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.mobile__menu .top__menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mobile__menu .top__menu .menu .menu-item-37 {
  padding-bottom: 20px;
}
.mobile__menu .top__menu .menu .menu-item-52 {
  padding-bottom: 20px;
}
.mobile__menu .top__menu .menu .menu-item {
  position: relative;
  margin-right: 0px;
  border-top: 1px solid rgba(1, 61, 49, 0.06);
  width: 100%;
}
.mobile__menu .top__menu .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.mobile__menu .top__menu .menu .menu-item a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.1s;
  transition: 0.1s;
  color: rgb(1, 61, 49);
  text-decoration: none;
  opacity: 0.6;
  padding-top: 20px;
  padding-left: 30px;
  display: block;
}
.mobile__menu .top__menu .menu .menu-item a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1200px) {
  .mobile__menu .top__menu .menu .menu-item {
    margin-right: 40px;
  }
}
.mobile__menu .top__menu .menu .big a {
  font-size: 18px;
  opacity: 1;
}
.mobile__menu .top__menu .menu .menu-item-has-children:nth-last-child(1) a {
  border-bottom: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu {
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  background: transparent;
  min-width: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0px;
  border: none;
  left: 0px;
  top: 100%;
  z-index: 5;
  -webkit-transform: translate(0px, 0%);
          transform: translate(0px, 0%);
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  border-bottom: 1px solid rgba(1, 61, 49, 0.06);
  border-radius: 0;
  padding-top: 0px;
  padding-bottom: 0;
  padding: 20px 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) a {
  border-bottom: 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu a {
  display: block;
  width: 100%;
  border-radius: 0;
  opacity: 1;
  border-radius: 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu a::after {
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item {
  border-top: none;
  margin-right: 0;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a {
  font-size: 18px;
  width: 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;
  padding-left: 20px;
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a:hover {
  background: transparent;
  text-decoration: none;
  color: rgb(1, 61, 49);
}
.mobile__menu .top__menu .menu .menu-item-has-children .sub-menu .menu-item a:hover::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow__right.svg);
  display: none;
}
.mobile__menu .top__menu .menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.mobile__menu__opened {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.body__opened .langs__mobile {
  display: block;
}

.langs__mobile {
  display: none;
}
.langs__mobile .pll-parent-menu-item {
  border: none;
}
.langs__mobile .lang__hover {
  border: none;
  border-radius: 0;
  background: transparent;
}
.langs__mobile .lang__hover li a {
  padding: 0 40px;
}
.langs__mobile .current__lang {
  padding-right: 0;
  padding-bottom: 0px;
  padding-top: 0;
}

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

.section {
  padding: 114px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .section {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding-bottom: 75px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 6px;
  }
}

.est {
  width: 17%;
  color: rgb(1, 61, 49);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .est {
    margin-bottom: 20px;
  }
}

.section__title {
  font-size: 48px;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 38px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}

.section__txt {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  opacity: 0.6;
}
.section__txt span {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .section__txt {
    font-size: 16px;
    line-height: 20px;
  }
  .section__txt br {
    display: none;
  }
}

.section__back {
  position: absolute;
  bottom: 0;
  right: 200px;
}
@media screen and (max-width: 1600px) {
  .section__back {
    right: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .section__back {
    display: none;
  }
}

.section__block {
  position: relative;
  z-index: 1;
  width: 100%;
}

.rounded {
  position: relative;
  background: #ffffff;
  margin-top: 14px;
}
@media screen and (max-width: 1024px) {
  .rounded {
    margin-top: 50px;
  }
}

.section1 {
  background: rgb(1, 61, 49);
  border-radius: 50px 50px 0 0;
  height: 468px;
  padding: 0 50px;
}
@media screen and (max-width: 1600px) {
  .section1 {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .section1 {
    border-radius: 30px 30px 0 0;
    height: 339px;
  }
}

.section1__back {
  position: absolute;
  left: 143px;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .section1__back {
    display: none;
  }
}

.scroll {
  position: absolute;
  top: 181px;
}
@media screen and (max-width: 1366px) {
  .scroll {
    display: none;
  }
}

.section1__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.section1__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  top: 181px;
}
@media screen and (max-width: 1024px) {
  .section1__left {
    -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;
    width: 100%;
  }
}

.section1__right {
  position: absolute;
  right: 327px;
  top: -176px;
}
@media screen and (max-width: 1600px) {
  .section1__right {
    right: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .section1__right {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    top: -90px;
  }
  .section1__right img {
    width: 168px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.button1 {
  background: rgb(241, 255, 70);
  border-radius: 50px;
  padding: 19.5px 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: rgb(1, 61, 49);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button1:hover {
  text-decoration: underline;
}

.section1__txt {
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 20px;
}
@media screen and (max-width: 1024px) {
  .section1__txt {
    display: none;
  }
}

.section1__yellow {
  background: rgb(241, 255, 70);
  height: 192px;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  padding: 0 50px;
  width: 100%;
  overflow: hidden;
  overflow-x: scroll;
}
@media screen and (max-width: 1024px) {
  .section1__yellow {
    border-radius: 30px 30px 0 0;
    height: 140px;
    padding: 0 30px;
  }
}

.yellow__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  top: 38px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .yellow__row {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .yellow__row {
    top: 23px;
  }
}

.yellow__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 80px;
}

.yellow__block:nth-last-child(1) {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  .yellow__right div:not(:last-of-type) {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .yellow__block {
    max-width: 300px;
    width: max-content;
    margin-right: 40px;
  }
}

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

.yellow__txt {
  font-weight: 700;
  font-size: 16px;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
}

@media screen and (max-width: 1024px) {
  .yellow__txt {
    font-size: 11px;
  }
}

.yellow__img {
  margin-right: 20px;
}

@media screen and (max-width: 1024px) {
  .yellow__left {
    margin-right: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .yellow__img img {
    max-width: 90px;
    width: auto;
  }
}

.section2 {
  position: relative;
  padding: 150px 0;
  border-top: 20px solid rgb(1, 61, 49);
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .section2 {
    padding: 30px 0;
    border-top: 10px solid rgb(1, 61, 49);
    border-radius: 30px 30px 0 0;
    margin-top: -38px;
    padding-top: 59px;
  }
}

.section2__back {
  position: absolute;
  left: 200px;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .section2__back {
    display: none;
  }
}

.section2__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .section2__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.section2__left {
  width: 53.2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .section2__left {
    width: 100%;
  }
}

.s2__left__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  text-transform: uppercase;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.s2__left__title::before {
  content: "";
  width: 46px;
  height: 46px;
  background: url(../img/section2__ico1.svg);
  display: block;
  margin-right: 16px;
}

.s2__left__txt1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 36px;
  color: rgb(1, 61, 49);
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .s2__left__txt1 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

.s2__left__txt2 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  opacity: 0.6;
  width: 80%;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
@media screen and (max-width: 1024px) {
  .s2__left__txt2 {
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin-bottom: 40px;
  }
}

.section2__right {
  width: 36.8%;
}
@media screen and (max-width: 1024px) {
  .section2__right {
    width: 100%;
  }
}

.s2__right__item {
  padding: 40px 58px;
  background: rgb(249, 249, 249);
  border-radius: 24px;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s2__right__item {
    left: 23px;
    width: calc(100% - 23px);
    padding: 40px;
  }
}

.s2__right__title {
  color: rgb(1, 61, 49);
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .s2__right__title {
    font-size: 18px;
    line-height: 20px;
  }
}

.s2__right__txt {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .s2__right__txt {
    font-size: 14px;
    line-height: 18px;
  }
}

.s2__right__number {
  color: rgb(241, 255, 70);
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.04em;
  font-weight: 700;
  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;
  border-radius: 100px;
  width: 56px;
  height: 56px;
  background: rgb(1, 61, 49);
  position: relative;
  border: 5px solid #fff;
  position: absolute;
  left: -23px;
  top: 22px;
}
.s2__right__number::before {
  content: "";
  width: 15px;
  height: 19px;
  background: url(../img/section2__ico2.svg) no-repeat;
  display: block;
  position: absolute;
  bottom: -4px;
  left: -5px;
}

.section2__img {
  border-radius: 50px 50px 0 0;
  height: 534px;
}
.section2__img img {
  height: 534px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 50px 50px 0 0;
}
@media screen and (max-width: 1024px) {
  .section2__img {
    height: 334px;
    border-radius: 30px 30px 0 0;
  }
  .section2__img img {
    border-radius: 30px 30px 0 0;
    height: 334px;
  }
}

.section3 {
  background: rgb(1, 61, 49);
  border-top: 20px solid rgb(241, 255, 70);
  border-radius: 50px 50px 0 0;
  margin-top: -48px;
  padding: 150px 0;
  position: relative;
  padding-bottom: 253px;
}
@media screen and (max-width: 1024px) {
  .section3 {
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    border-top: 10px solid rgb(241, 255, 70);
    padding: 88px 0;
    padding-bottom: 165px;
  }
}

.section3__back1 {
  position: absolute;
  right: 50px;
  top: -18%;
}
@media screen and (max-width: 1024px) {
  .section3__back1 {
    display: none;
  }
}

.section3__back2 {
  position: absolute;
  left: 50px;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section3__back2 {
    display: none;
  }
}

.section3__button {
  position: absolute;
  top: -43px;
  right: 360px;
}
@media screen and (max-width: 1024px) {
  .section3__button {
    right: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.s3__title {
  font-size: 48px;
  line-height: 44px;
  letter-spacing: -0.04em;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .s3__title {
    font-size: 38px;
    line-height: 35px;
    margin-bottom: 40px;
  }
}

.s3__item {
  margin-bottom: 53px;
}
.s3__item:nth-last-child(1) {
  margin-bottom: 0px;
}

.s3__item__line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  position: relative;
  margin-bottom: 37px;
}
.s3__item__line::before {
  content: "";
  width: 14px;
  height: 2px;
  background: rgb(241, 255, 70);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.s3__item__block {
  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;
}
@media screen and (max-width: 1024px) {
  .s3__item__block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.s3__number {
  color: rgb(241, 255, 70);
  font-size: 16px;
  line-height: 18px;
  letter-spacing: -0.04em;
  font-weight: 700;
  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;
  border-radius: 100px;
  min-width: 56px;
  min-height: 56px;
  background: url("../img/number__yellow.svg") no-repeat;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  bottom: -5px;
  left: -4px;
}
@media screen and (max-width: 1024px) {
  .s3__number {
    bottom: 8px;
  }
}

.number__block {
  width: 13%;
}
@media screen and (max-width: 1024px) {
  .number__block {
    width: 46px;
    margin-right: 15px;
  }
}

.s3__number__txt1 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #ffffff;
  width: 43%;
  position: relative;
  top: 6px;
}
@media screen and (max-width: 1024px) {
  .s3__number__txt1 {
    width: 100%;
    margin-bottom: 0px;
    font-size: 20px;
    line-height: 22px;
  }
}

.s3__number__txt2 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.5);
  width: 50%;
  position: relative;
  top: 18px;
}
@media screen and (max-width: 1024px) {
  .s3__number__txt2 {
    width: 100%;
  }
}

.s3__block__main {
  width: 87%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .s3__block__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% - 61px);
  }
}

.section4 {
  padding: 150px 0;
  border-radius: 50px 50px 0 0;
  background: rgb(249, 249, 249);
  margin-top: -89px;
  position: relative;
  z-index: 1;
  padding-bottom: 196px;
}
@media screen and (max-width: 1024px) {
  .section4 {
    border-radius: 30px 30px 0 0;
    padding: 60px 0;
    padding-bottom: 90px;
  }
}
.section4 .swiper {
  overflow: hidden;
}
@media screen and (max-width: 1204px) {
  .section4 .swiper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.section4 .swiper-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .section4 .swiper-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-grid-columns: initial;
    grid-template-columns: initial;
    grid-column-gap: initial;
    grid-row-gap: initial;
  }
}
.section4 .swiper-pagination {
  position: relative;
  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;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  margin-top: 30px;
}
.section4 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: rgb(1, 61, 49);
  opacity: 0.1;
}
.section4 .swiper-pagination-bullet-active {
  opacity: 1;
  width: 9px;
  height: 9px;
}
@media screen and (max-width: 1024px) {
  .section4 .container {
    padding: 0;
  }
  .section4 .section4__title {
    padding: 0 30px;
  }
}

.section4__title {
  font-size: 48px;
  line-height: 44px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  margin-bottom: 100px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1024px) {
  .section4__title {
    font-size: 38px;
    line-height: 35px;
    margin-bottom: 40px;
  }
}

.object {
  background: #ffffff;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .object {
    border-radius: 30px;
  }
}

.object__img {
  margin-bottom: 40px;
}
.object__img a {
  cursor: unset;
}
.object__img img {
  width: 100%;
  max-height: 440px;
  height: 440px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .object__img img {
    max-height: 300px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .object__img {
    margin-bottom: 30px;
  }
}

.object__body {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .object__body {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}

.object__title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  text-decoration: none;
  margin-bottom: 20px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .object__title {
    font-size: 18px;
    line-height: 20px;
  }
}

.object__geo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: rgb(1, 61, 49);
  text-decoration: underline;
  margin-bottom: 30px;
}
.object__geo::before {
  content: "";
  min-width: 20px;
  min-height: 20px;
  background: url(../img/geo.svg) no-repeat;
  display: block;
  margin-right: 10px;
}

.object__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: rgba(1, 61, 49, 0.6);
  margin-bottom: 30px;
}


.object__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .object__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.object__power {
  margin-right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .object__power {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

.power__txt1 {
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  opacity: 0.5;
}

.power__txt2 {
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(1, 61, 49);
}

.object__ico {
  margin-right: 10px;
}

.button2 {
  background: rgb(1, 61, 49);
  border-radius: 50px;
  padding: 19.5px 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: rgb(241, 255, 70);
  font-size: 18px;
  letter-spacing: -0.02em;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: 0.5s ease 0s;
  transition: 0.5s ease 0s;
}
.button2:hover {
  text-decoration: underline;
}

.section4__buttons {
  margin-top: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .section4__buttons {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.objects__number {
  margin-left: 10px;
  background: rgba(1, 61, 49, 0.1);
  border-radius: 32.5px;
  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: 22px 24px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(1, 61, 49, 0.6);
}

.section5 {
  padding: 150px 0;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.section5 .section4__buttons {
  margin-top: 34px;
}
@media screen and (max-width: 1024px) {
  .section5 {
    border-radius: 30px 30px 0 0;
    padding: 60px 0;
  }
}

.team {
  border-radius: 30px 30px 0 0;
}
.team a {
  text-decoration: none;
  display: block;
}
.team:hover .team__img {
  background: rgb(241, 255, 70);
}
.team:hover .team__name {
  text-decoration: underline;
}

.team__img {
  border-radius: 30px;
  background: rgb(243, 243, 243);
  width: 100%;
  padding-top: 60px;
  width: 100%;
  margin-bottom: 32px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team__img img {
  max-height: 438px;
}
@media screen and (max-width: 1024px) {
  .team__img img {
    max-height: 314px;
  }
}

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

.team__number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  opacity: 0.3;
  margin-right: 40px;
}

.team__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 12px;
}

.team__work {
  font-size: 16px;
  line-height: 20px;
  color: rgb(1, 61, 49);
  opacity: 0.6;
}

.swiper2 {
  overflow-x: hidden;
}

.swiper-pagination2 {
  position: relative;
  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;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  margin-top: 60px;
}

.swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: rgb(1, 61, 49);
  opacity: 0.1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 9px;
  height: 9px;
}

.slider {
  overflow-x: hidden;
  position: relative;
}
.slider .swiper-wrapper {
  max-width: 1206px;
  width: 1206px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .slider .swiper-wrapper {
    max-width: inherit;
    width: inherit;
    margin: inherit;
  }
}
.slider .swiper-slide {
  width: 440px;
  max-width: 440px;
}
/* .slider .swiper-slide:nth-last-child(1) {
  opacity: 0.3;
} */
@media screen and (max-width: 1024px) {
  .slider .swiper-slide:nth-last-child(1) {
    opacity: 1;
  }
}
.slider .swiper-slide:nth-last-child(1):hover {
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .slider .swiper-slide {
    width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .slider {
    padding: 0 30px;
  }
}

.services .section {
  padding-bottom: 127px;
}

.page-template-object__page .section {
  padding-bottom: 127px;
}
.page-template-object__page .footer {
  margin-top: 0;
}

.services__img {
  background: url("../img/services__img.jpg") no-repeat;
  background-size: cover;
  min-height: 590px;
  width: 100%;
  display: block;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 0;
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  .services__img {
    border-radius: 30px 30px 0 0;
    min-height: 334px;
    padding: 0 30px;
    background-position: center top;
  }
}

.how {
  padding: 150px 0;
  border-top: 20px solid rgb(241, 255, 70);
  background: #ffffff;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .how {
    padding: 60px 0;
    border-top: 10px solid rgb(241, 255, 70);
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
  }
}

.how__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .how__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.how__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .how__left {
    width: 100%;
    margin-bottom: 66px;
  }
}

.how__right {
  width: 445px;
}
@media screen and (max-width: 1024px) {
  .how__right {
    width: 100%;
  }
}

.how__item {
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.how__item:nth-last-child(1) {
  margin-bottom: 0px;
}
.how__item:nth-last-child(1) .item__line {
  display: none;
}
@media screen and (max-width: 1024px) {
  .how__item {
    margin-bottom: 40px;
  }
}

.how__item__left {
  position: relative;
}

.item__number {
  color: rgb(1, 61, 49);
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.04em;
  font-weight: 700;
  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;
  border-radius: 100px;
  min-width: 56px;
  min-height: 56px;
  background: url("../img/number__grey.svg") no-repeat;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: -149px;
}
@media screen and (max-width: 1600px) {
  .item__number {
    position: relative;
    left: 0;
    margin-right: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .item__number {
    margin-right: 20px;
  }
}

.item__title {
  font-size: 48px;
  line-height: 44px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .item__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 30px;
  }
}

.item__txt1 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .item__txt1 {
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 20px;
  }
}

.item__txt2 {
  font-size: 16px;
  line-height: 20px;
  font-weight: 40;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  opacity: 0.6;
}

.txt3 {
  margin-top: 34px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 40;
  color: rgba(1, 61, 49, 0.6);
  letter-spacing: -0.04em;
  font-style: italic;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.txt3::before {
  content: "";
  min-width: 6px;
  min-height: 6px;
  width: 6px;
  height: 6px;
  background: rgb(1, 61, 49);
  display: block;
  margin-right: 30px;
  position: relative;
  top: 5px;
}

.item__line {
  margin-top: 70px;
  height: 2px;
  width: 100%;
  background: rgba(1, 61, 49, 0.06);
  display: block;
  position: relative;
}
.item__line::before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(1, 61, 49);
}
@media screen and (max-width: 1024px) {
  .item__line {
    margin-top: 40px;
  }
}

.how__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgb(241, 255, 70);
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  text-decoration: none;
  border-radius: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 40px;
  padding-right: 74px;
  margin-top: -57px;
}
.how__button::before {
  content: "";
  min-width: 24px;
  min-height: 24px;
  display: block;
  background: url("../img/how__arrow.svg") no-repeat;
  margin-right: 20px;
}
.how__button:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .how__button {
    font-size: 16px;
    line-height: 18px;
    padding: 30px;
    border-radius: 21px;
    margin-top: -30px;
  }
}

.projects {
  border-radius: 50px 50px 0 0;
  background: rgb(249, 249, 249);
  padding-bottom: 150px;
}
.projects .section4__buttons {
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .projects .section4__buttons {
    margin-top: 40px;
  }
}

.projects__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: -44px;
}
@media screen and (max-width: 1024px) {
  .projects__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.objects__hidden {
  margin-top: 20px;
  display: none;
}

.objects__opened {
  display: -ms-grid;
  display: grid;
}

.button__hidden {
  display: none;
}

.blog__page {
  background: rgb(249, 249, 249);
  border-radius: 50px 50px 0 0;
  padding: 155px 0;
  margin-top: 44px;
}
.blog__page .container {
  position: relative;
}
.blog__page .blog__img {
  position: absolute;
  z-index: 0;
  right: -30px;
  top: -335px;
}
@media screen and (max-width: 1024px) {
  .blog__page .blog__img {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .blog__page {
    border-radius: 30px 30px 0 0;
    padding: 40px 0;
    padding-bottom: 200px;
  }
}

.blog__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 1024px) {
  .blog__block {
    margin-bottom: 30px;
  }
}

.blog__number {
  position: relative;
}
.blog__number .item__number {
  top: -22px;
}
@media screen and (max-width: 1024px) {
  .blog__number .item__number {
    top: 0;
  }
}

.blog__title {
  font-size: 48px;
  line-height: 44px;
  color: rgb(1, 61, 49);
  font-weight: 700;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1024px) {
  .blog__title {
    font-size: 22px;
    line-height: 28px;
  }
}

.blog__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 1024px) {
  .blog__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    display: none;
  }
}

.blog__row__mobile {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .blog__row__mobile {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    display: -ms-grid;
    display: grid;
  }
}

.blog__item {
  background: #fff;
  border-radius: 50px;
}

.blog__item__img {
  border-radius: 50px;
  position: relative;
  margin-bottom: 40px;
}
.blog__item__img img {
  border-radius: 50px;
  width: 100%;
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .blog__item__img img {
    height: 300px;
    border-radius: 30px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 1024px) {
  .blog__item__img {
    margin-bottom: 47px;
    border-radius: 30px;
  }
}

.blog__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -17px;
  left: 40px;
}
@media screen and (max-width: 1024px) {
  .blog__info {
    left: 30px;
  }
}

.blog__category {
  font-size: 12px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  border-radius: 32.5px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 20px;
  height: 34px;
  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;
  background: rgb(241, 255, 70);
  margin-right: 10px;
}

.blog__date {
  font-size: 12px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  border-radius: 32.5px;
  width: 94px;
  height: 34px;
  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;
  background: rgb(1, 61, 49);
}

.blog__item__content {
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .blog__item__content {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
}

.blog__item__title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 20px;
}
.blog__item__title a {
  text-decoration: none;
  color: rgb(1, 61, 49);
}
.blog__item__title a:hover {
  text-decoration: underline;
}

.blog__item__desc {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.02em;
  color: rgba(1, 61, 49, 0.6);
}

.blog__button {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .blog__button .button2 {
    padding: 19px 10px;
    width: 100%;
    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;
  }
}

.blog__item__main {
  margin-bottom: 106px;
}
.blog__item__main:nth-last-child(1) {
  margin-bottom: 0;
}

.video .blog__item__img img {
  height: 333px;
}
.video .play {
  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;
  position: absolute;
  display: flex;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.video .play img {
  width: 71px;
  height: 50px;
  border-radius: 0;
}

.pdf {
  font-size: 20px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  background: #fff;
  border-radius: 50px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.pdf::before {
  content: "";
  width: 44px;
  height: 44px;
  min-width: 50px;
  min-height: 50px;
  background: url("../img/pdf.svg") no-repeat;
  margin-right: 20px;
}
.pdf:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .pdf {
    padding: 20px;
    font-size: 14px;
    line-height: 16px;
    border-radius: 30px;
  }
}

.blog__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  position: relative;
  scrollbar-width: 0;
  white-space: nowrap;
  overflow: auto;
  -webkit-clip-path: inset(0 0 0px 0);
          clip-path: inset(0 0 0px 0);
}
.blog__links::-webkit-scrollbar {
  width: 0;
  display: none !important;
}
.blog__links a {
  background: rgba(1, 61, 49, 0.06);
  border-radius: 32.5px;
  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-decoration: none;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  font-weight: 700;
  margin-right: 10px;
  padding: 20px 42px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
}
.blog__links a:nth-last-child(1) {
  margin-right: 0;
}
.blog__links a:hover {
  color: rgb(241, 255, 70);
  background: rgb(1, 61, 49);
}
@media screen and (max-width: 1024px) {
  .blog__links a {
    margin-right: 18px;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
  }
}
@media screen and (max-width: 1024px) {
  .blog__links {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.l {
  position: relative;
}
.l::after {
  content: "";
  width: 60px;
  height: 66px;
  background: url("../img/links.svg") no-repeat;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .l::after {
    display: block;
  }
}
.l::before {
  content: "";
  width: 30px;
  height: 66px;
  background: url("../img/links.svg") no-repeat;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  .l::before {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .l {
    margin-top: 10px;
  }
}

.blog .section {
  padding-bottom: 16px;
}
.blog .footer {
  margin-top: -50px;
}

.blog__hidden__news {
  margin-top: 20px;
  display: none;
}

.news__active {
  display: -ms-grid;
  display: grid;
}

.button__hidden {
  display: none;
}

@media screen and (max-width: 1024px) {
  .blog__button {
    display: none;
  }
}

.blog__button2 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .blog__button2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.button2__hidden {
  display: none;
}

.blog__row__mobile__hidden {
  display: none;
  margin-top: 20px;
}

.news__active2 {
  display: -ms-grid;
  display: grid;
}

.post-type-archive-blog .footer {
  margin-top: -50px;
}
.post-type-archive-blog .section {
  padding-bottom: 0;
}

.blog__single .section__title {
  margin-bottom: 29px;
}
@media screen and (max-width: 1024px) {
  .blog__single .section__title {
    font-size: 32px;
    line-height: 35px;
  }
  .blog__single .section__title br {
    display: none;
  }
}
.blog__single .blog__page {
  margin-top: 18px;
}

.section__txt {
  padding-right: 50%;
}
@media screen and (max-width: 1600px) {
  .section__txt {
    padding-right: 40%;
  }
}
@media screen and (max-width: 1440px) {
  .section__txt {
    padding-right: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .section__txt {
    padding-right: 0%;
  }
}

.section__title {
  padding-right: 50%;
}
@media screen and (max-width: 1600px) {
  .section__title {
    padding-right: 40%;
  }
}
@media screen and (max-width: 1440px) {
  .section__title {
    padding-right: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .section__title {
    padding-right: 0%;
  }
}

.single-blog .section__title {
  padding-right: 50%;
}
@media screen and (max-width: 1600px) {
  .single-blog .section__title {
    padding-right: 40%;
  }
}
@media screen and (max-width: 1440px) {
  .single-blog .section__title {
    padding-right: 30%;
  }
}
@media screen and (max-width: 1024px) {
  .single-blog .section__title {
    padding-right: 0%;
  }
}
.single-blog .blog__row {
  display: -ms-grid;
  display: grid;
}
.single-blog .all__news {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .single-blog .all__news .button2 {
    padding: 19px 10px;
    width: 100%;
    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;
  }
}

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

.post__cat {
  font-size: 12px;
  line-height: 26px;
  letter-spacing: -0.02em;
  color: #ffffff;
  border-radius: 32.5px;
  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: 4px 20px;
  margin-right: 10px;
  background: rgb(1, 61, 49);
  font-weight: 700;
}
.post__cat:nth-last-child(1) {
  margin-right: 0;
}

.single__img {
  border-radius: 50px;
  margin-bottom: 100px;
}
.single__img img {
  max-height: 543px;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-box-shadow: 0px 30px 30px rgba(1, 61, 49, 0.4);
          box-shadow: 0px 30px 30px rgba(1, 61, 49, 0.4);
}
@media screen and (max-width: 1024px) {
  .single__img {
    border-radius: 30px;
    margin-bottom: 40px;
  }
  .single__img img {
    max-height: 300px;
    border-radius: 30px;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}

.single__content {
  width: 75%;
  margin: 0 auto;
}
.single__content h2 {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 40px;
}
.single__content h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 30px;
}
.single__content p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: #658981;
  margin-bottom: 30px;
  margin-bottom: 40px;
}
.single__content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
.single__content ul li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 20px;
}
.single__content ul li:nth-last-child(1) {
  margin-bottom: 0;
}
.single__content ul li::before {
  content: "";
  min-width: 6px;
  min-height: 6px;
  width: 6px;
  height: 6px;
  background: rgb(1, 61, 49);
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .single__content {
    width: 100%;
  }
  .single__content h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  .single__content h3 {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .single__content p {
    margin-bottom: 30px;
  }
  .single__content ul {
    margin-bottom: 30px;
  }
}

.single__video {
  margin-bottom: 60px;
}
.single__video .single__video__img {
  max-height: 510px;
  border-radius: 50px;
  position: relative;
  margin-bottom: 20px;
}
.single__video .single__video__img a {
  display: block;
  text-decoration: none;
}
.single__video .single__video__img img {
  height: 510px;
  width: 100%;
  border-radius: 50px;
}
.single__video .single__video__img .play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  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;
}
.single__video .single__video__img .play img {
  width: auto;
  height: auto;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .single__video {
    margin-bottom: 40px;
  }
  .single__video .single__video__img {
    max-height: 177px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 20px;
  }
  .single__video .single__video__img img {
    height: 177px;
    width: 100%;
    border-radius: 30px;
  }
}

.single__video__title {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  font-style: italic;
  text-align: center;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .single__video__title {
    font-size: 14px;
    line-height: 18px;
  }
}

.single__line {
  height: 2px;
  width: 100%;
  background: rgba(1, 61, 49, 0.06);
  display: block;
  position: relative;
  margin: 60px 0;
}
.single__line::before {
  content: "";
  width: 14px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(1, 61, 49);
}
@media screen and (max-width: 1024px) {
  .single__line {
    margin: 40px 0;
  }
}

.files__title {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .files__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

.swiper3 {
  overflow: hidden;
}

.single-blog .footer {
  margin-top: -50px;
}

.about__back1 {
  position: absolute;
  top: 0;
  right: 50px;
}
@media screen and (max-width: 1024px) {
  .about__back1 {
    display: none;
  }
}

.about__back2 {
  position: absolute;
  bottom: 0;
  left: 50px;
}
@media screen and (max-width: 1024px) {
  .about__back2 {
    display: none;
  }
}

.about__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: -0.02em;
  color: rgb(1, 61, 49);
  text-transform: uppercase;
}
.about__title img {
  margin-right: 16px;
}

.about__txt1 {
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
}
@media screen and (max-width: 1024px) {
  .about__txt1 {
    margin-top: 30px;
    font-size: 22px;
    line-height: 28px;
    text-align: left;
  }
}

.about__row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about__row1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .about__left {
    display: none;
  }
}

.about__right {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .about__right {
    width: 100%;
  }
  .about__right br {
    display: none;
  }
}

.about__txt2 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .about__txt2 {
    font-size: 18px;
  }
}

.about__txt3 {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  opacity: 0.6;
}

.team__page__title {
  font-size: 48px;
  line-height: 44px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  margin-bottom: 100px;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1024px) {
  .team__page__title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}

.team__page__row {
  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;
  margin-bottom: 70px;
}
.team__page__row:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .team__page__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}

.team__page__left {
  width: 440px;
  background: rgb(243, 243, 243);
  margin-right: 73px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 62px;
}
@media screen and (max-width: 1024px) {
  .team__page__left {
    width: 100%;
    margin-right: 0;
    padding-top: 44px;
    margin-bottom: 20px;
  }
  .team__page__left img {
    width: 245px;
  }
}

.team__page__right {
  width: calc(100% - 440px - 73px);
}
@media screen and (max-width: 1024px) {
  .team__page__right {
    width: 100%;
  }
}

.team__page__name {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .team__page__name {
    font-size: 18px;
    line-height: 20px;
  }
}

.team__page__posada {
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 30px;
  opacity: 0.6;
}
@media screen and (max-width: 1024px) {
  .team__page__posada {
    font-size: 14px;
    line-height: 18.2px;
    margin-bottom: 20px;
  }
}

.team__page__content {
  margin-bottom: 35px;
}
.team__page__content p {
  font-size: 16px;
  line-height: 20.8px;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  margin-bottom: 20px;
  opacity: 0.6;
}
.team__page__content p:nth-last-child(1) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .team__page__content {
    margin-bottom: 30px;
  }
}

.team__page__contacts a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  text-decoration: none;
}
.team__page__contacts a:hover {
  text-decoration: underline;
}
.team__page__contacts a:nth-last-child(1) {
  margin-bottom: 0;
}
.team__page__contacts a img {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
}
.team__page__contacts a span {
  border-radius: 100px;
  border: 2px solid rgba(1, 61, 49, 0.1);
  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;
  width: 52px;
  height: 52px;
  margin-right: 13px;
}
@media screen and (max-width: 1024px) {
  .team__page__contacts a {
    font-size: 16px;
  }
}

.contacts .footer {
  margin-top: -50px;
  z-index: 1;
}

.contacts__block a {
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  font-weight: 400;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}
.contacts__block a img {
  margin-right: 20px;
}
.contacts__block a:hover {
  text-decoration: underline;
}
.contacts__block .contm {
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  font-weight: 400;
  color: rgb(1, 61, 49);
  letter-spacing: -0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contacts__block .contm img {
  margin-right: 20px;
}

.section__form {
  border: 10px solid rgb(249, 249, 249);
  border-radius: 50px;
  padding: 50px 30px;
  width: 440px;
  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;
  position: absolute;
  right: 19%;
  background: #fff;
  z-index: 2;
}
.section__form form {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .section__form {
    right: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .section__form {
    right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .section__form {
    right: 0px;
    position: relative;
    width: 100%;
    padding: 30px 10px;
    border-radius: 46px;
    margin-top: 40px;
  }
}

.cf7sg-container.cf7sg-not-grid {
  width: 100%;
}

.form__title {
  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;
}
.form__title img {
  margin-bottom: 20px;
}
.form__title .form__title1 {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgb(1, 61, 49);
  text-align: center;
  margin-bottom: 30px;
  font-family: arial;
}

.form__input {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  height: 70px;
}
.form__input label {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 40px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .form__input label {
    left: 30px;
  }
}
.form__input input {
  min-width: 100%;
  border-radius: 32.5px;
  background: rgba(1, 61, 49, 0.03);
  border: none;
  outline: none;
  padding: 0;
  height: 70px;
  padding: 0 40px;
  font-size: 16px;
  color: rgb(1, 61, 49);
  font-weight: 700;
  letter-spacing: -0.04em;
  z-index: 1;
  position: relative;
  border: 2px solid transparent;
}
.form__input input:focus {
  border: 2px solid rgb(1, 61, 49);
}
@media screen and (max-width: 1024px) {
  .form__input input {
    padding: 0;
    padding-left: 30px;
  }
}
.form__input .active {
  font-size: 12px;
  top: -38px;
}

.form__textarea {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
  height: 160px;
}
.form__textarea label {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  position: absolute;
  top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 40px;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .form__textarea label {
    left: 30px;
  }
}
.form__textarea textarea {
  min-width: 100%;
  border-radius: 32.5px;
  background: rgba(1, 61, 49, 0.03);
  border: none;
  outline: none;
  padding: 0;
  height: 160px;
  padding: 22px 40px;
  font-size: 16px;
  color: rgb(1, 61, 49);
  font-weight: 700;
  letter-spacing: -0.04em;
  z-index: 1;
  position: relative;
  border: 2px solid transparent;
}
.form__textarea textarea:focus {
  border: 2px solid rgb(1, 61, 49);
}
.form__textarea textarea::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  font-family: arial;
}
.form__textarea textarea::-moz-placeholder {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  font-family: arial;
}
.form__textarea textarea:-ms-input-placeholder {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  font-family: arial;
}
.form__textarea textarea::-ms-input-placeholder {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  font-family: arial;
}
.form__textarea textarea::placeholder {
  font-size: 16px;
  line-height: 26px;
  color: rgba(1, 61, 49, 0.6);
  font-weight: 700;
  font-family: arial;
}
@media screen and (max-width: 1024px) {
  .form__textarea textarea {
    padding-left: 30px;
    padding-right: 0;
  }
}
.form__textarea .active {
  top: 5px;
  font-size: 12px;
}

.form__button {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: rgb(241, 255, 70);
  letter-spacing: -0.02em;
  width: 221px;
  height: 66px;
  margin: 0 auto;
  background: rgb(1, 61, 49);
  border-radius: 32.5px;
  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;
  cursor: pointer;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  margin-top: 20px;
}
.form__button:hover {
  text-decoration: underline;
}

.map {
  position: relative;
  border-radius: 50px 50px 0 0;
}
.map img {
  border-radius: 50px 50px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .map img {
    border-radius: 0px 0px 0 0;
    height: 832px;
  }
}
.map .map__ico {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  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;
}
@media screen and (max-width: 1024px) {
  .map .map__ico img {
    height: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .map {
    border-radius: 0px 0px 0 0;
    height: 832px;
    margin-top: -300px;
  }
}

.page-template-contacts__page .footer {
  margin-top: -50px;
  z-index: 100;
}

.footer__top {
  height: 226px;
  background: rgb(241, 255, 70);
  border-radius: 50px 50px 0 0;
  border-top: 20px solid rgb(1, 61, 49);
}
.footer__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer__top .footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 62%;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  top: 35px;
}
@media screen and (max-width: 1024px) {
  .footer__top .footer__row {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .footer__top {
    border-radius: 30px 30px 0 0;
    border-top: 10px solid rgb(1, 61, 49);
    height: 177px;
  }
}

.footer__bottom {
  background: rgb(1, 61, 49);
  border-radius: 50px 50px 0 0;
  margin-top: -80px;
  padding: 100px 0;
}
.footer__bottom .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.footer__bottom .footer__bottom__block {
  width: 62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .footer__bottom .footer__bottom__block {
    width: 100%;
  }
}

.footer__txt {
  font-size: 18px;
  line-height: 22px;
  color: rgb(1, 61, 49);
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-left: 15px;
}

.footer__contacts {
  margin-bottom: 80px;
}
.footer__contacts a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  line-height: -0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
.footer__contacts a:nth-last-child(1) {
  margin-bottom: 0;
}
.footer__contacts a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 360px) {
  .footer__contacts a {
    font-size: 14px;
  }
}
.footer__contacts img {
  margin-right: 27px;
}

.copyright {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  opacity: 0.6;
}
.copyright a {
  color: #fff;
}
.copyright a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .copyright {
    font-size: 12px;
    line-height: 14px;
  }
}

.footer__img {
  position: absolute;
  left: -34px;
  top: -274px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .footer__img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    top: -237px;
  }
  .footer__img img {
    width: 178px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.btn-up {
  width: 99px;
  height: 99px;
  border-radius: 100px;
  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: relative;
  -webkit-transition: 0.6s ease 0s;
  transition: 0.6s ease 0s;
  cursor: pointer;
  background: url("../img/totop.svg") no-repeat;
  position: absolute;
  bottom: 60px;
  right: -3px;
  z-index: 500;
}
.btn-up:hover {
  background: url("../img/totop__hover.svg") no-repeat;
}
@media screen and (max-width: 1024px) {
  .btn-up {
    bottom: inherit;
    top: 0;
    right: 30px;
  }
}

.footer__logo img {
  min-width: 97.56px;
  min-height: 23.51px;
}

.footer__bottom__block .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 124px !important;
}
.footer__bottom__block .menu .menu-item {
  margin-right: 57px;
}
.footer__bottom__block .menu .menu-item:nth-last-child(1) {
  margin-right: 0;
}
.footer__bottom__block .menu .menu-item a {
  font-size: 18px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  line-height: -0.04em;
}
.footer__bottom__block .menu .menu-item a:hover {
  text-decoration: underline;
}
.footer__bottom__block .menu .menu-item-has-children {
  position: relative;
}
.footer__bottom__block .menu .menu-item-has-children a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__bottom__block .menu .menu-item-has-children a::after {
  content: "";
  display: block;
  width: 11px;
  height: 8px;
  background: url(../img/menu__arrow__white.svg);
  position: relative;
  margin-left: 5px;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu {
  position: absolute;
  background: #FFFFFF;
  min-width: 230px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px;
  border: 2px solid rgba(1, 61, 49, 0.06);
  left: 0px;
  top: 100%;
  z-index: 5;
  -webkit-transform: translate(50px, 0);
          transform: translate(50px, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.25s ease 0s;
  transition: 0.25s ease 0s;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item {
  margin-right: 0;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a {
  color: rgb(1, 61, 49);
  font-size: 16px;
  padding: 26px;
  width: 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;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a::after {
  display: none;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a:hover {
  background: rgb(1, 61, 49);
  text-decoration: none;
  color: rgb(241, 255, 70);
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a:hover::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../img/arrow__right.svg);
  display: block;
}
@media screen and (max-width: 1024px) {
  .footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a:hover::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item a {
    color: #fff;
    padding: 0;
    font-size: 14px;
    padding-left: 20px;
  }
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item:nth-last-child(1) a {
  border-radius: 0px 0px 20px 20px;
}
.footer__bottom__block .menu .menu-item-has-children .sub-menu .menu-item:nth-child(1) a {
  border-radius: 20px 20px 0px 0px;
}
@media screen and (max-width: 1024px) {
  .footer__bottom__block .menu .menu-item-has-children .sub-menu {
    position: relative;
    background: transparent;
    min-width: auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 20px;
    border: none;
    left: 0px;
    top: 0;
    z-index: 5;
    -webkit-transform: translate(0px, 0);
            transform: translate(0px, 0);
    opacity: 1;
    visibility: visible;
    -webkit-transition: 0.5s ease 0s;
    transition: 0.5s ease 0s;
    margin-top: 10px;
  }
}
.footer__bottom__block .menu .menu-item-has-children:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 1024px) {
  .footer__bottom__block .menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px !important;
  }
  .footer__bottom__block .menu .menu-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer__bottom__block .menu .menu-item:nth-last-child(1) {
    margin-bottom: 0;
  }
  .footer__bottom__block .menu .menu-item a {
    font-size: 16px;
    line-height: 22px;
  }
}

footer.footer {
  margin-top: 50px;
}

#wpadminbar {
  display: none !important;
}