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

.modal__title, .news__title, .team__name, .services__title, .slider__title, .hero__title {
  font-family: "Manrope-Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}

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

html {
  overflow-x: hidden;
}

html.html_disabled {
  overflow-y: hidden;
}

body {
  font-size: 18px;
  line-height: 28px;
  color: #000;
}

.body_active {
  opacity: 1;
}

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

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

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  color: #fff;
  background: transparent;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
}

@media (min-width: 993px) {
  .header_sticky {
    position: fixed;
    background: #84665e;
    z-index: 3;
  }
  .header_sticky .header__logo {
    background-color: transparent;
  }
  .header_sticky .nav {
    padding: 20px 0 19px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo {
  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: 289px;
  height: 64px;
  background-color: #84665e;
}

.header__logo-img {
  display: block;
}

.nav {
  padding: 24px 0 17px;
}

@media (min-width: 993px) {
  .header__logo {
    opacity: 0;
    -webkit-transition: opacity 1s ease 0.7s;
    transition: opacity 1s ease 0.7s;
  }
  .body_active .header__logo {
    opacity: 1;
  }
  .nav {
    opacity: 0;
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: opacity 0.9s ease 1s, -webkit-transform 1s ease 0.9s;
    transition: opacity 0.9s ease 1s, -webkit-transform 1s ease 0.9s;
    transition: opacity 0.9s ease 1s, transform 1s ease 0.9s;
    transition: opacity 0.9s ease 1s, transform 1s ease 0.9s, -webkit-transform 1s ease 0.9s;
  }
  .body_active .nav {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 25px;
}

.nav__list-item + .nav__list-item {
  margin-left: 67px;
}

.nav__list-item_mobile {
  display: none;
}

.link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.link:hover {
  opacity: 0.7;
}

.header__btn {
  display: none;
}

.hero {
  overflow: hidden;
  position: relative;
  padding: 256px 0;
  background-size: 100%;
  color: #fff;
  background-color: #436185;
}

@media (min-width: 1600px) {
  .hero {
    padding: 384px 0;
  }
}
@-webkit-keyframes bg-scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes bg-scaling {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.hero_loaded::before {
  background-image: -webkit-image-set(url("/static/images/content/hero-bg.jpg") 1x, url("/static/images/content/hero-bg@2x.jpg") 2x);
  background-image: image-set(url("/static/images/content/hero-bg.jpg") 1x, url("/static/images/content/hero-bg@2x.jpg") 2x);
}

.hero_loaded {
  background-color: transparent;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  animation: bg-scaling 10s infinite alternate ease-in-out;
  -webkit-animation: bg-scaling 10s infinite alternate ease-in-out;
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 133px;
  max-width: 1063px;
  margin: 0 auto;
}

.hero__title {
  font-size: 64px;
  line-height: 80px;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1s ease 2.3s, -webkit-transform 1s ease 2.3s;
  transition: opacity 1s ease 2.3s, -webkit-transform 1s ease 2.3s;
  transition: opacity 1s ease 2.3s, transform 1s ease 2.3s;
  transition: opacity 1s ease 2.3s, transform 1s ease 2.3s, -webkit-transform 1s ease 2.3s;
}

.hero__text {
  max-width: 736px;
  margin-top: 32px;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 1s ease 2.6s, -webkit-transform 1s ease 2.6s;
  transition: opacity 1s ease 2.6s, -webkit-transform 1s ease 2.6s;
  transition: opacity 1s ease 2.6s, transform 1s ease 2.6s;
  transition: opacity 1s ease 2.6s, transform 1s ease 2.6s, -webkit-transform 1s ease 2.6s;
}

.body_active .hero__title,
.body_active .hero__text {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.letters svg path:nth-of-type(1),
.letters svg path:nth-of-type(3) {
  opacity: 0;
  -webkit-transition: opacity 1s ease 2s;
  transition: opacity 1s ease 2s;
}

.letters svg path:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1.5s;
  transition: opacity 1s ease 1.5s;
}

.body_active .letters svg path:nth-of-type(1),
.body_active .letters svg path:nth-of-type(2),
.body_active .letters svg path:nth-of-type(3) {
  opacity: 1;
}

.about {
  padding: 98px 0 128px;
  background-color: rgba(132, 102, 94, 0.1);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.animated.about {
  opacity: 1;
}

.about__inner {
  position: relative;
}

.about__letters {
  position: absolute;
  top: 1px;
  left: 0;
}

.about__letters svg path:nth-of-type(1),
.about__letters svg path:nth-of-type(3) {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1.5s;
  transition: opacity 1s ease 1.5s;
}

.about__letters svg path:nth-of-type(2) {
  opacity: 0;
  -webkit-transition: opacity 1s ease 1.2s;
  transition: opacity 1s ease 1.2s;
}

.animated .about__letters svg path {
  opacity: 1;
}

.about__img {
  position: absolute;
  right: 0;
  top: -188px;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s, -webkit-transform 0.5s ease 0.5s;
}

.slider {
  margin-left: 0;
  padding-left: 110px;
  min-height: 520px;
  max-width: 738px;
  z-index: 2;
}

.slider__wrapper {
  margin-top: 48px;
  height: auto;
}

.slider__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #84665e;
  font-size: 24px;
  line-height: 36px;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0.3s;
  transition: opacity 0.7s ease 0.3s;
}

.title__num {
  width: 26.31px;
}

.title__dash {
  margin: 17px 24px 0;
  width: 64px;
  height: 2px;
  background-color: #84665e;
}

.slider__paragraph {
  margin-top: 24px;
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 0.8s;
  transition: opacity 0.7s ease 0.8s;
}

.slider__pagination.swiper-pagination {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.swiper-pagination {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 32px;
  text-align: left;
}

.swiper-pagination-bullet {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 0;
  background: rgba(132, 102, 94, 0.4);
  opacity: 1;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.swiper-pagination-bullet:hover {
  background: rgba(132, 102, 94, 0.7);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active:hover {
  background-color: #84665e;
}

.slider__btns,
.team__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}

.slider__btns,
.slider__controls {
  opacity: 0;
  -webkit-transition: opacity 0.7s ease 1.8s;
  transition: opacity 0.7s ease 1.8s;
}

.animated .slider__title,
.animated .slider__paragraph,
.animated .slider__controls,
.animated .slider__btns {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  position: static;
  margin: 0;
  padding: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  background-image: url("/static/images/icons/slider-arrow.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: contain;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.swiper-button-prev {
  background-image: url("/static/images/icons/slider-arrow.svg");
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "";
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
}

.services {
  margin-top: 64px;
  padding: 64px 0 24px;
}

.services__inner {
  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;
  gap: 16px;
  padding: 25px 0;
  background-image: url("/static/images/icons/services-letters.svg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: contain;
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.animated .services__inner {
  opacity: 1;
}

.services__img {
  display: block;
  width: 628px;
  height: 680px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 1s ease;
  transition: opacity 0.5s ease, -webkit-transform 1s ease;
  transition: opacity 0.5s ease, transform 1s ease;
  transition: opacity 0.5s ease, transform 1s ease, -webkit-transform 1s ease;
}

.services__info {
  max-width: 519px;
}

.services__title {
  font-size: 24px;
  line-height: 36px;
  color: #84665e;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.5s ease 0.8s, -webkit-transform 0.5s ease 0.8s;
  transition: opacity 0.5s ease 0.8s, -webkit-transform 0.5s ease 0.8s;
  transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s;
  transition: opacity 0.5s ease 0.8s, transform 0.5s ease 0.8s, -webkit-transform 0.5s ease 0.8s;
}

.services__text {
  margin-top: 32px;
  opacity: 0;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: opacity 0.5s ease 1.3s, -webkit-transform 0.5s ease 1.3s;
  transition: opacity 0.5s ease 1.3s, -webkit-transform 0.5s ease 1.3s;
  transition: opacity 0.5s ease 1.3s, transform 0.5s ease 1.3s;
  transition: opacity 0.5s ease 1.3s, transform 0.5s ease 1.3s, -webkit-transform 0.5s ease 1.3s;
}

.image.animated,
.animated .services__text,
.animated .services__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.team {
  padding-top: 72px;
}

.team__btns {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
}

.team__controls {
  opacity: 0;
}

.animated .team__btns,
.animated .team__controls {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 1.4s;
  transition: opacity 0.3s ease 1.4s;
}

.team__wrapper {
  height: auto;
  margin-top: 16px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.team__slide {
  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: #f0f3f4;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.animated .team__slide {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.team__slide.swiper-slide {
  height: auto;
}

.team__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.team__pagination {
  text-align: center;
}

.team__text {
  padding: 32px 24px 0;
  margin-bottom: 16px;
}

.team__name {
  font-size: 18px;
  line-height: 28px;
  color: #84665e;
}

.team__job-title {
  margin-top: 4px;
  font-size: 16px;
  line-height: 25px;
  color: #84665e;
}

.team__descr {
  margin-top: 12px;
  font-size: 16px;
  line-height: 25px;
}

.team__email {
  margin-top: auto;
  margin-left: 24px;
  margin-bottom: 32px;
  width: 18px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.team__email:hover {
  opacity: 0.7;
}

.team__mail-icon {
  display: block;
}

.news {
  margin-top: 144px;
  padding-bottom: 144px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.news.animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.news__item {
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.news__wrapper {
  overflow: hidden;
}

.news__item:hover {
  opacity: 0.8;
}

.news__item:hover .news__img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.news__main {
  color: #fff;
  grid-column-start: 1;
  grid-column-end: 3;
}

.news__img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.news__main .news__img {
  height: 100%;
}

.news__main .news__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  padding-bottom: 16px;
  background-color: rgba(0, 0, 0, 0.75);
}

.news__title {
  margin-top: 16px;
  font-size: 18px;
  line-height: 28px;
  color: #84665e;
}

.news__main .news__title {
  margin-top: 0;
  color: #fff;
}

.news__text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 25px;
}

.news__date {
  margin-top: 8px;
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.5);
}

.news__main .news__date {
  color: rgba(255, 255, 255, 0.5);
}

.news__link {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.footer {
  padding: 96px 0;
  background-color: #84665e;
  color: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 24px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.animated .footer__inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.footer__map {
  width: 628px;
  height: 320px;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__logo {
  width: 303px;
  height: 54px;
}

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

.footer__address {
  font-style: normal;
}

.footer__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 0.75;
}

.overlay {
  display: none;
}

.overlay_active {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}

.loader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  background-color: white;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  z-index: 4;
}

.loader__symbols {
  width: 50px;
  height: 50px;
}

.loader__letters {
  width: 385px;
}

.loader__symbols path:nth-of-type(2) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.loader__symbols path:nth-of-type(1),
.loader__symbols path:nth-of-type(3) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

.loader * {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.loader_animated * {
  opacity: 1;
}

.loader_animated {
  pointer-events: none;
}

.loader__s {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.loader__b {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.loader__to,
.loader__rid,
.loader__n,
.loader__g,
.loader__e {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}

.loader__leg,
.loader__al {
  -webkit-transition-delay: 5s;
          transition-delay: 5s;
}

/* new */

.loader__logotype_1 {
  -webkit-transition-duration: 2s;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  transition-duration: 2s;
}

.loader__logotype_2 {
  -webkit-transition-duration: 2s;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  transition-duration: 2s;
}

.loader__top_1 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.loader__top_2 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.loader__top_3 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.loader__top_4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.loader__top_5 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.loader__top_6 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

.loader__top_7 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.loader__top_8 {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.loader__top_9 {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}

.loader__top_10 {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.loader__top_11 {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}

.loader__bottom_1 {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}

.loader__bottom_2 {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.loader__bottom_3 {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}

.loader__bottom_4 {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

.loader__bottom_5 {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

[class*=ymaps-2][class*=-ground-pane] {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(100%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 80px 128px;
  overflow-y: scroll;
  width: 100%;
  height: auto;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  z-index: 4;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.modal_visible {
  opacity: 1;
  pointer-events: all;
}

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

.modal__link {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.modal__link:hover {
  color: #000;
}

.modal__btn {
  width: 18px;
  height: 18px;
  background-image: url("/static/images/icons/close-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.modal__btn:hover {
  opacity: 0.5;
}

.modal__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  margin-top: 96px;
  padding-bottom: 61px;
  background-image: url("/static/images/content/modal-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modal__img {
  display: block;
  width: 519px;
}

.modal__info {
  max-width: 628px;
}

.modal__date {
  font-size: 16px;
  line-height: 25px;
  color: rgba(0, 0, 0, 0.5);
}

.modal__title {
  margin-top: 16px;
  font-size: 24px;
  line-height: 36px;
  color: #84665e;
}

.modal__text {
  margin-top: 32px;
}

body {
  font-family: "Manrope-Regular", sans-serif;
  font-style: normal;
  font-weight: 400;
}

.hero__title, .slider__title, .services__title, .team__name, .news__title, .modal__title {
  font-family: "Manrope-Bold", sans-serif;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1281px) {
  .hero {
    padding: 206px 0;
  }
  .hero__inner {
    gap: 125px;
  }
  .letters svg {
    width: 177px;
    height: 177px;
  }
  .about__letters svg {
    width: 479px;
    height: 479px;
  }
  .about__img,
.services__img {
    width: 580px;
    height: 528px;
  }
  .about__img {
    top: -175px;
  }
  .footer__map {
    width: 580px;
    height: 296px;
  }
  .modal__title {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 1150px) {
  .about__letters svg {
    width: 440px;
    height: 440px;
  }
  .about__slider {
    padding-left: 0;
    max-width: 450px;
    min-height: 410px;
  }
  .about__img,
.services__img {
    width: 466px;
  }
  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer__links {
    margin-top: 32px;
  }
  .footer__link {
    display: block;
  }
  .loader__symbols {
    width: 32px;
    height: 32px;
  }
  .loader__letters {
    width: 240px;
  }
}
@media (max-width: 1024px) {
  .news {
    margin-top: 48px;
    padding-bottom: 128px;
  }
  .news__title {
    font-size: 16px;
    line-height: 25px;
  }
  .news__text,
.news__date {
    font-size: 14px;
    line-height: 23px;
  }
  .modal {
    padding-left: 0;
    padding-right: 0;
  }
  .modal .container {
    padding: 0;
  }
  .modal__top {
    padding-left: 80px;
    padding-right: 80px;
  }
  .modal__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
    background-image: none;
  }
  .modal__info {
    max-width: 100%;
    margin-left: 80px;
    margin-right: 80px;
    background-image: url("/static/images/content/modal-bg.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .modal__img {
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
    line-height: 25px;
  }
  .header {
    position: fixed;
    background-color: #84665e;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity 1s ease 0.7s;
    transition: opacity 1s ease 0.7s;
  }
  .body_active .header {
    opacity: 1;
  }
  .header__inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__logo {
    width: auto;
  }
  .link:hover,
.footer__link:hover,
.team__email:hover {
    opacity: 1;
  }
  .link:active,
.team__email:active {
    opacity: 0.7;
  }
  .footer__link:active {
    opacity: 0.75;
  }
  .swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
  }
  .swiper-button-next:active,
.swiper-button-prev:active {
    opacity: 0.8;
  }
  .nav {
    position: absolute;
    top: 100%;
    right: 0;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .nav {
    padding: 0 24px 64px;
    width: 333px;
    max-width: 100%;
    background-color: #84665e;
  }
  .nav_active {
    opacity: 1;
    pointer-events: all;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__list-item + .nav__list-item {
    margin-top: 24px;
    margin-left: 0;
  }
  .nav__list-item_mobile {
    display: block;
    margin-top: 32px;
  }
  .nav__list-item_mobile + .nav__list-item_mobile {
    margin-top: 0;
  }
  .header__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 24px;
    height: 14px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__btn:active {
    opacity: 0.7;
  }
  .header__line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .header__btn_active .header__line:first-child {
    -webkit-transform: rotate(45deg) translate(4px, 3px);
            transform: rotate(45deg) translate(4px, 3px);
  }
  .header__btn_active .header__line:nth-child(2) {
    opacity: 0;
  }
  .header__btn_active .header__line:last-child {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
            transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero {
    padding: 128px 0 76px;
  }
  .hero__inner {
    gap: 86px;
  }
  .letters svg {
    width: 164px;
    height: 164px;
  }
  .hero__title {
    font-size: 24px;
    line-height: 36px;
  }
  .hero__text {
    margin-top: 24px;
  }
  .about {
    padding-bottom: 86px;
  }
  .slider__title {
    font-size: 20px;
    line-height: 30px;
  }
  .about__slider {
    max-width: 415px;
  }
  .about__letters {
    top: 13px;
  }
  .about__letters svg {
    width: 352px;
    height: 352px;
  }
  .slider__pagination.swiper-pagination {
    margin-top: 53px;
  }
  .slider__wrapper {
    margin-top: 18px;
  }
  .about__img {
    top: -124px;
  }
  .about__img,
.services__img {
    width: 352px;
    height: 504px;
  }
  .slider__paragraph {
    margin-top: 32px;
  }
  .title__dash {
    margin: 14px 16px 0;
    width: 50px;
  }
  .title__num {
    width: 23px;
  }
  .services {
    margin-top: 0;
    padding: 48px 0 24px;
  }
  .services .container {
    padding: 0;
  }
  .services__img {
    width: 100%;
    height: 400px;
  }
  .services__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 84px;
    background-position: center 0;
    background-size: calc(100% - 40px) auto;
    padding-top: 36px;
    padding-bottom: 0;
  }
  .services__info {
    padding: 0 20px;
    max-width: 642px;
  }
  .services__title {
    font-size: 20px;
    line-height: 30px;
  }
  .team {
    padding: 64px 0 0;
  }
  .team .container {
    padding: 0 83px;
  }
  .footer {
    padding: 48px 0 64px;
  }
  .footer__logo {
    width: 290px;
    height: 52px;
  }
  .footer__map {
    width: 415px;
    height: 232px;
  }
}
@media (max-width: 768px) {
  .news__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .news__main {
    grid-column-end: 2;
  }
  .news__main .news__img {
    height: auto;
  }
  .news__main .news__bottom {
    position: static;
    padding: 0;
    background-color: transparent;
  }
  .news__main .news__title {
    margin-top: 16px;
    color: #84665e;
  }
  .news__main .news__text {
    color: #000;
  }
  .news__main .news__date {
    color: rgba(0, 0, 0, 0.5);
  }
  .news__img,
.news__main .news__img {
    height: 250px;
  }
  .modal {
    padding-bottom: 64px;
  }
  .modal__inner {
    margin-top: 48px;
  }
  .modal__top {
    padding-left: 20px;
    padding-right: 20px;
  }
  .modal__info {
    margin-left: 20px;
    margin-right: 20px;
  }
  br {
    content: " ";
    display: block;
    margin-top: 8px;
    line-height: 1;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-bottom: 64px;
  }
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .letters svg {
    width: 96px;
    height: 95px;
  }
  .hero__text {
    margin-top: 16px;
  }
  .about {
    padding-top: 64px;
    padding-bottom: 0;
  }
  .about .container {
    padding: 0;
  }
  .about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 64px;
  }
  .about__letters {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .about__slider {
    max-width: 100%;
    padding: 0 20px;
  }
  .about__img {
    position: static;
    width: 100%;
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .services {
    padding-top: 64px;
    padding-bottom: 0;
  }
  .services__inner {
    padding-top: 0;
    background-image: none;
  }
  .services__info {
    background-image: url("/static/images/icons/services-letters.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .slider__pagination.swiper-pagination {
    margin-top: 32px;
  }
  .team__btns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer {
    padding: 64px 0;
  }
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 64px;
  }
  .footer__map {
    width: 100%;
    height: 320px;
  }
  .footer__info {
    gap: 64px;
  }
}
@media (max-width: 576px) {
  .about__slider {
    min-height: 419px;
  }
  .about__letters svg {
    width: 335px;
    height: 335px;
  }
  .team .container {
    padding: 0 20px;
  }
  .footer__logo {
    width: 273px;
    height: 49px;
  }
  .nav {
    padding-top: 8px;
    width: 100%;
  }
  .news__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 475px) {
  .about__letters {
    top: 83px;
  }
  .modal__img {
    height: 300px;
  }
}
@media (max-width: 376px) {
  .services__info {
    background-position: center calc(50% - 13px);
  }
}
@media (max-width: 350px) {
  .about__letters {
    width: 100%;
    left: 0;
    right: 0;
    -webkit-transform: none;
            transform: none;
  }
  .about__letters svg {
    width: 100%;
  }
}