* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

button,
div,
li,
a {
  -webkit-tap-highlight-color: transparent;
}

input::-ms-clear {
  display: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

@font-face {
  font-family: "Century Gothic";
  src: url("../files/fonts/CenturyGothic.eot");
  src: url("../files/fonts/CenturyGothic.eot?#iefix") format("embedded-opentype"), url("../files/fonts/CenturyGothic.woff2") format("woff2"), url("../files/fonts/CenturyGothic.woff") format("woff"), url("../files/fonts/CenturyGothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../files/fonts/CenturyGothic-Bold.eot");
  src: url("../files/fonts/CenturyGothic-Bold.eot?#iefix") format("embedded-opentype"), url("../files/fonts/CenturyGothic-Bold.woff2") format("woff2"), url("../files/fonts/CenturyGothic-Bold.woff") format("woff"), url("../files/fonts/CenturyGothic-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
:root {
  --white: #fff;
  --black: #000;
  --green: #67a126;
  --gray-dark: #3a3e43;
  --gray-light: #9c9d9d;
  --error: #EF5350;
  --disabled: #dddddd;
  --mask: #00000099 ;
}

:root {
  --header-height: 92px;
  --footer-height: 34px;
  --section-gap: 44px;
  --section-border-width: 2px;
}
@media screen and (max-width: 991px) {
  :root {
    --footer-height: 58px;
  }
}

body.lock {
  overflow: hidden;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-family: "Century Gothic", sans-serif;
  position: relative;
  background: #0b0d0b;
  color: var(--white);
}
.wrapper:has(.intro) .footer {
  background: var(--black);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  padding: 0 16px;
}

.content {
  flex: 1 0 auto;
}
.content > section {
  background: var(--gray-dark);
  height: calc(100vh - var(--footer-height));
}
@media screen and (max-width: 991px) {
  .content > section {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
.content > section:first-child {
  padding-top: calc(var(--header-height) + var(--section-gap));
  border: var(--section-border-width) solid var(--white);
}
.content > section:not(.intro) {
  padding: calc(var(--header-height) + var(--section-gap)) 50px 50px;
}
@media screen and (max-width: 991px) {
  .content > section:not(.intro) {
    padding: calc(var(--header-height) + var(--section-gap)) 16px 50px;
  }
}
@media screen and (max-width: 991px) {
  .content > section.intro {
    height: calc(100vh - var(--footer-height));
  }
}
@media screen and (max-width: 991px) {
  .content > section.services {
    padding: calc(var(--header-height) - var(--section-border-width)) 0 50px;
  }
}
.content > section.projects {
  padding: calc(var(--header-height) - var(--section-border-width)) 0 0;
}
.content > section.about {
  overflow-y: auto;
}
@media screen and (max-width: 991px) {
  .content > section.about {
    padding-left: 0;
    padding-right: 0;
    padding-top: calc(var(--header-height) + var(--section-gap) / 2);
  }
}
@media screen and (max-width: 991px) {
  .content > section.documents {
    padding-right: 0;
    flex-direction: unset;
    height: calc(100vh - var(--footer-height));
  }
}
.content > section.about, .content > section.documents, .content > section.contacts {
  background: var(--white);
}

.header {
  background: var(--gray-dark);
  border: 2px solid var(--white);
  height: var(--header-height);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header > .container {
  height: 100%;
}
.header__body {
  padding: 0 50px;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header__body {
    padding: 0 16px;
    justify-content: flex-end;
  }
}
.header__menu {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: var(--gray-dark);
    flex-direction: column;
    padding: 132px 20px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    border: 2px solid var(--white);
    overflow-y: auto;
  }
}
.header__menu.active {
  transform: translateX(0);
}
.header__logo {
  width: 192px;
  height: 40px;
}
.header__logo > svg {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1439px) {
  .header__logo {
    width: 156px;
  }
}
@media screen and (max-width: 1199px) {
  .header__logo {
    order: 3;
  }
}
.header a {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 20px;
  transition: all 0.3s ease-out;
}
.header__links {
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1;
  justify-content: center;
}
.header__links > a {
  max-width: 300px;
  text-align: center;
  display: inline-flex;
  height: 100%;
  align-items: center;
  padding: 0 16px;
}
.header__links > a:hover, .header__links > a.active {
  background: var(--white);
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media screen and (max-width: 1439px) {
  .header__links > a {
    padding: 0 8px;
  }
}
@media screen and (max-width: 1199px) {
  .header__links {
    flex-direction: column;
    gap: 32px;
    order: 1;
  }
  .header__links > a {
    height: auto;
    max-width: unset;
    font-size: 24px;
    line-height: 28px;
  }
}
.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.header__contacts > a {
  width: 100%;
  text-align: center;
  border: 1px solid var(--white);
  padding: 8px 16px;
}
.header__contacts > a:hover {
  background: var(--green);
}
@media screen and (max-width: 1199px) {
  .header__contacts {
    order: 2;
    margin-top: 100px;
    margin-bottom: 80px;
  }
}

.footer {
  height: var(--footer-height);
  background: var(--gray-dark);
  border: 2px solid var(--white);
  border-top: 0;
}
.footer__body {
  height: 100%;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__body > span, .footer__body > a {
  font-size: 14px;
  text-transform: uppercase;
}
.footer__body > a {
  text-decoration: underline;
}
@media screen and (max-width: 991px) {
  .footer__body {
    padding: 10px 16px;
    gap: 12px;
  }
}

.loader {
  position: fixed;
  z-index: 150;
  background: var(--gray-dark);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: loader-opacity 1s ease-out calc(var(--gradient-duration) - 0.5s) forwards, loader-hide 0s ease-out calc(var(--gradient-duration) + 0.5s) forwards;
  --gradient-duration: 3s;
}
.loader__body {
  padding: 0 16px;
}
.loader__logo {
  display: flex;
  position: relative;
}
.loader__logo > svg {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.loader__mask {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-mask: url("../img/loader_mask.svg") 0 0/100% 100% no-repeat;
          mask: url("../img/loader_mask.svg") 0 0/100% 100% no-repeat;
}
.loader__gradient {
  position: absolute;
  height: 120%;
  background: linear-gradient(to bottom, var(--gray-dark) 0%, #cccccc 33%, #e5e5e5 43%, #f2f2f2 54%, #ffffff 100%);
  max-height: 0%;
  animation-name: loader-gradient-slide-up;
  animation-timing-function: ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}
.loader__gradient--org {
  width: 42%;
  bottom: 27%;
  left: 0%;
}
.loader__gradient--dash {
  height: 40%;
  width: 9.5%;
  bottom: 47.2%;
  left: 42%;
}
.loader__gradient--expo {
  width: 50%;
  bottom: 0%;
  left: 51.5%;
}
.loader__gradient--stands {
  height: 40%;
  width: 50%;
  bottom: 0%;
  left: 0%;
}
.loader__gradient--stands::before, .loader__gradient--stands::after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  background: linear-gradient(to bottom, var(--gray-dark) 0%, #759751 33%, #67a126 43%, #67a126 54%, #67a126 100%);
}
.loader__gradient--stands::before {
  left: 68%;
  width: 3.4%;
}
.loader__gradient--stands::after {
  left: 86.2%;
  width: 6.2%;
}
.loader__gradient--org, .loader__gradient--expo {
  animation-duration: var(--gradient-duration);
}
.loader__gradient--dash, .loader__gradient--stands {
  animation-duration: calc(var(--gradient-duration) * 4);
}

@keyframes loader-opacity {
  to {
    opacity: 0;
  }
}
@keyframes loader-hide {
  to {
    width: 0;
  }
}
@keyframes loader-gradient-slide-up {
  from {
    max-height: 0%;
  }
  to {
    max-height: 120%;
  }
}
.intro {
  display: flex;
  flex-direction: column;
  position: relative;
  --title-anim-delay: 4s;
  --title-anim-duration: 2s;
  --logo-parts-anim-duration: 1.5s;
  --logo-wrap-anim-duration: 1s;
  --bg-anim-duration: 1.4s;
  --logo-parts-anim-delay: calc(var(--title-anim-delay) + var(--title-anim-duration) - 1.5s);
  --logo-wrap-anim-delay: calc(var(--logo-parts-anim-delay) + var(--logo-parts-anim-duration) + 0.2s);
  --bg-anim-delay: calc(var(--logo-parts-anim-delay) + var(--logo-parts-anim-duration) + 0.2s);
}
.intro__bg {
  position: absolute;
  top: -264px;
  left: 0;
  right: 0;
  bottom: 0;
  animation: brightnessChange var(--bg-anim-duration) ease-out var(--bg-anim-delay) forwards;
  filter: brightness(0.2);
}
.intro__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.intro__body {
  position: relative;
  height: 100%;
}
.intro__title {
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  opacity: 0;
  animation: opacityChange var(--title-anim-duration) ease-out var(--title-anim-delay) forwards;
}
@media screen and (max-width: 991px) {
  .intro__title {
    padding: 0 16px;
  }
}
.intro h1,
.intro h2 {
  font-size: 38px;
  text-transform: uppercase;
  line-height: 46px;
}
@media screen and (max-width: 1439px) {
  .intro h1,
  .intro h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 1199px) {
  .intro h1,
  .intro h2 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media screen and (max-width: 991px) {
  .intro h1,
  .intro h2 {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
  }
}
.intro__logo {
  position: absolute;
  width: 100%;
  max-width: 90%;
  bottom: 50%;
  right: 40px;
  animation: logoWrapPositioning var(--logo-wrap-anim-duration) ease-out var(--logo-wrap-anim-delay) forwards;
}
@media screen and (max-width: 991px) {
  .intro__logo {
    right: unset;
    margin-left: 24px;
  }
}
.intro__logo > svg {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 644px;
  width: 100%;
  animation: logoPartsPositioning var(--logo-parts-anim-duration) ease-out var(--logo-parts-anim-delay) forwards;
}
.intro__logo > svg:nth-child(1) {
  transform: translateY(-100vh);
}
.intro__logo > svg:nth-child(2) {
  transform: translateY(100vh);
}

@keyframes brightnessChange {
  from {
    filter: brightness(0.2);
  }
  to {
    filter: brightness(1);
  }
}
@keyframes opacityChange {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes logoPartsPositioning {
  to {
    transform: translateY(0);
  }
}
@keyframes logoWrapPositioning {
  to {
    bottom: 60px;
    max-width: 644px;
  }
}
@media screen and (max-width: 991px) {
  @keyframes logoWrapPositioning {
    to {
      bottom: 60px;
      max-width: 90%;
    }
  }
}
.materials {
  display: grid;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 206px;
}
@media screen and (max-width: 991px) {
  .materials {
    gap: 30px;
  }
}
.materials__block:nth-child(2) {
  grid-column: span 2;
}
.materials__block:nth-child(4) {
  grid-column: span 2;
}
@media screen and (max-width: 991px) {
  .materials__block:nth-child(4) {
    order: 99;
  }
}

.materials-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
}
@media screen and (max-width: 991px) {
  .materials-card {
    max-height: 460px;
  }
}
@media screen and (max-width: 991px) {
  .materials-card {
    max-height: 260px;
  }
}
.materials-card__img {
  height: 100%;
  border: 10px solid var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease-out;
}
.materials-card__img.a:hover {
  border-color: var(--green);
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .materials-card__img {
    border-width: 5px;
  }
}
.materials-card__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
@media screen and (max-width: 991px) {
  .materials-card__img > img {
    position: unset;
  }
}
.materials-card__caption {
  font-size: 15px;
  line-height: 18px;
  text-transform: uppercase;
}
.materials-card__caption > span {
  color: var(--green);
}
.materials-card__bottom {
  display: flex;
  gap: 36px;
}
.materials-card__link {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  transition: color 0.3s ease-out;
  gap: 6px;
}
.materials-card__link:hover {
  color: var(--green);
}
.materials-card__link::before {
  content: "";
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='22' viewBox='0 0 19 22' fill='none'%3E%3Cpath d='M10.5833 7.75008H16.5416L10.5833 1.79175V7.75008ZM2.99998 0.166748H11.6666L18.1666 6.66675V19.6667C18.1666 20.2414 17.9384 20.7925 17.532 21.1988C17.1257 21.6051 16.5746 21.8334 16 21.8334H2.99998C2.42534 21.8334 1.87424 21.6051 1.46791 21.1988C1.06159 20.7925 0.833313 20.2414 0.833313 19.6667V2.33341C0.833313 1.75878 1.06159 1.20768 1.46791 0.80135C1.87424 0.395021 2.42534 0.166748 2.99998 0.166748ZM8.34081 11.4767C8.78498 12.4517 9.34831 13.2534 9.99831 13.8059L10.4425 14.1526C9.49998 14.3259 8.19998 14.6292 6.82415 15.1601L6.70498 15.2034L7.24665 14.0767C7.73415 13.1342 8.09165 12.2784 8.34081 11.4767ZM15.3608 15.6042C15.5558 15.4092 15.6533 15.1601 15.6641 14.8892C15.6966 14.6726 15.6425 14.4667 15.5341 14.2934C15.22 13.7842 14.4075 13.5459 13.0641 13.5459L11.6666 13.6217L10.7241 12.9934C10.0416 12.4301 9.42415 11.4442 8.99081 10.2201L9.03415 10.0684C9.39165 8.62758 9.72748 6.88341 9.01248 6.16842C8.92502 6.08349 8.82157 6.01678 8.70813 5.97215C8.5947 5.92752 8.47352 5.90585 8.35165 5.90842H8.09165C7.69081 5.90842 7.33331 6.33091 7.23581 6.74258C6.83498 8.18341 7.07331 8.97425 7.47415 10.2851V10.2959C7.20331 11.2492 6.85665 12.3542 6.30415 13.4701L5.26415 15.4201L4.29998 15.9509C2.99998 16.7634 2.38248 17.6734 2.26331 18.2476C2.21998 18.4534 2.24165 18.6376 2.31748 18.8326L2.34998 18.8867L2.86998 19.2226L3.34665 19.3417C4.22415 19.3417 5.22081 18.3126 6.56415 16.0159L6.75915 15.9401C7.87498 15.5826 9.26165 15.3334 11.125 15.1276C12.2408 15.6801 13.5516 15.9292 14.375 15.9292C14.8516 15.9292 15.1766 15.8101 15.3608 15.6042ZM14.9166 14.8351L15.0141 14.9542C15.0033 15.0626 14.9708 15.0734 14.9166 15.0951H14.8733L14.6675 15.1167C14.1691 15.1167 13.4 14.9109 12.6091 14.5642C12.7066 14.4559 12.75 14.4559 12.8583 14.4559C14.375 14.4559 14.8083 14.7267 14.9166 14.8351ZM4.98248 16.4167C4.27831 17.7059 3.63915 18.4209 3.15165 18.5834C3.20581 18.1717 3.69331 17.4567 4.46248 16.7526L4.98248 16.4167ZM8.25415 8.93091C8.00498 7.95591 7.99415 7.16508 8.17831 6.71008L8.25415 6.58008L8.41665 6.63425C8.60081 6.89425 8.62248 7.24091 8.51415 7.82591L8.48165 7.99925L8.30831 8.88758L8.25415 8.93091Z' fill='%23EF5350'/%3E%3C/svg%3E") 0 0/100% 100% no-repeat;
  height: 100%;
  width: 20px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 186px 1fr 1fr;
  gap: 16px;
}
.services__block:first-child {
  grid-column: span 3;
}
@media screen and (max-width: 991px) {
  .services__block:not(:first-child) {
    padding: 0 16px;
  }
}

.services-card {
  display: block;
  background: var(--white);
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--white);
  transition: border-color 0.3s ease-out;
}
@media screen and (max-width: 991px) {
  .services-card {
    height: 280px;
  }
}
.services-card:not(.services-card--top):hover {
  border-color: var(--green);
}
.services-card__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.services-card__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services-card__content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 0 16px 16px;
}
.services-card__content > h4 {
  font-size: 24px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  width: 100%;
}
.services-card__content > h4 > p > span {
  color: var(--green);
}

.services__block:first-child .services-card {
  border-radius: 10px 10px 0 10px;
  border-width: 0;
}
.services__block:first-child .services-card .services-card__content {
  justify-content: flex-end;
  align-items: flex-end;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .services__block:first-child .services-card {
    border-radius: 0;
  }
  .services__block:first-child .services-card .btn {
    margin-bottom: 16px;
  }
}
.services__block:nth-child(3n+3) .services-card h4 {
  text-align: center;
}
.services__block:nth-child(3n+4) .services-card h4 {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .services__block:nth-child(3n+3) .services-card h4, .services__block:nth-child(3n+4) .services-card h4 {
    text-align: left;
  }
}

.projects {
  position: relative;
}
@media screen and (max-width: 991px) {
  .projects {
    min-height: 100vh;
  }
}
.projects__btn {
  z-index: 1;
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media screen and (max-width: 991px) {
  .projects__btn {
    top: 274px;
    right: 0;
  }
}
.projects__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray-light);
  z-index: 1;
}
.projects__bg > .swiper {
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .projects__bg > .swiper {
    margin-top: var(--header-height);
  }
}

.about {
  --text-gap: 28px;
}
.about__body {
  width: 100%;
  height: 100%;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .about__body {
    flex-direction: column;
  }
}
.about__text {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--text-gap);
}
.about__text:not(:first-child) {
  padding-top: 60px;
  width: 100%;
  padding-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .about__text:not(:first-child) {
    padding-top: 0;
  }
}
.about__text > h2 {
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .about__text > h2 {
    font-size: 32px;
  }
}
.about__text > h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.about__text > h3:not(:first-child) {
  padding-top: var(--text-gap);
}
@media screen and (max-width: 991px) {
  .about__text > h3 {
    font-size: 20px;
  }
}
.about__text > p {
  font-size: 24px;
  line-height: 32px;
}
@media screen and (max-width: 991px) {
  .about__text > p {
    font-size: 18px;
  }
}
.about__text > .btn {
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .about__text > .btn {
    margin-top: 0;
  }
}
@media screen and (max-width: 991px) {
  .about__text {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
.about__slider {
  width: 45%;
}
@media screen and (max-width: 991px) {
  .about__slider {
    width: 100%;
  }
}
.about__slider > .swiper {
  border-radius: 20px;
  overflow: hidden;
  border: 10px solid var(--gray-light);
}
@media screen and (max-width: 991px) {
  .about__slider > .swiper {
    height: 380px;
    border: none;
    border-radius: 0;
  }
}
.about__slider > .swiper .swiper__prev,
.about__slider > .swiper .swiper__next {
  top: unset;
  transform: none;
  bottom: 30px;
  right: 30px;
}
@media screen and (max-width: 991px) {
  .about__slider > .swiper .swiper__prev,
  .about__slider > .swiper .swiper__next {
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
  }
}
.about__slider > .swiper .swiper__prev {
  right: 105px;
}
@media screen and (max-width: 991px) {
  .about__slider > .swiper .swiper__prev {
    left: 16px;
  }
}

.contacts {
  color: var(--black);
}
.contacts__body {
  display: flex;
  height: 100%;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  .contacts__body {
    flex-direction: column;
  }
}
.contacts__info {
  width: 45%;
}
@media screen and (max-width: 991px) {
  .contacts__info {
    width: 100%;
  }
}
.contacts__info > h2 {
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .contacts__info > h2 {
    font-size: 32px;
  }
}
.contacts__maps {
  width: 50%;
  margin: -52px -52px -52px 0;
  flex: 1;
}
@media screen and (max-width: 991px) {
  .contacts__maps {
    width: 100%;
    margin: 0;
    height: 380px;
    flex: unset;
  }
}
.contacts__map {
  width: 100%;
  height: 100%;
}

.modal--thanks .modal__body {
  height: unset;
}

.documents {
  padding-right: 0;
}
.documents__body {
  color: var(--black);
  width: 100%;
  height: 100%;
}
.documents__caption {
  display: flex;
  align-items: center;
  gap: 16px;
}
.documents__caption > h2 {
  font-size: 44px;
  font-weight: 700;
}
@media screen and (max-width: 991px) {
  .documents__caption > h2 {
    font-size: 32px;
  }
}
.documents__caption .swiper__prev,
.documents__caption .swiper__next {
  position: unset;
  transform: none;
  width: 28px;
  height: 46px;
}
.documents__slider {
  margin-top: 34px;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .documents__slider > .swiper--documents {
    height: 86%;
    overflow-y: auto;
  }
}
.documents .materials-card {
  justify-content: flex-start;
}
.documents .materials-card__img {
  border-width: 5px;
  min-height: 346px;
  height: 346px;
}
.documents .materials-card__img > img {
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 991px) {
  .documents .materials-card {
    max-height: unset;
  }
}

.burger {
  --size: 40px;
  --bg: transparent;
  --color: var(--white);
  --radius: 8px;
  --shadow: none;
  --elements-radius: 4px;
  --elements-thick: 2px;
  --elements-width: 26px;
  --elements-space: 6px;
  width: var(--size);
  height: var(--size);
  flex: 0 0 var(--size);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--bg);
  position: relative;
  transition: all 0.3s ease-out;
  cursor: pointer;
  display: none;
  z-index: 105;
}
@media screen and (max-width: 1199px) {
  .burger {
    display: block;
  }
}
.burger::before, .burger::after {
  content: "";
  position: absolute;
  height: var(--elements-thick);
  width: var(--elements-width);
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--color);
  transition: all 0.3s ease-out;
  border-radius: var(--elements-radius);
}
.burger::before {
  top: calc(50% - var(--elements-space) - var(--elements-thick));
}
.burger::after {
  top: calc(50% + var(--elements-space) + var(--elements-thick));
}
.burger > span {
  position: absolute;
  height: var(--elements-thick);
  width: var(--elements-width);
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--color);
  transition: all 0.3s ease-out;
  border-radius: var(--elements-radius);
}
.burger.active::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  top: 50%;
}
.burger.active::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  top: 50%;
}
.burger.active > span {
  background: transparent;
  width: 0;
}

.btn {
  --btn-height: 65px;
  font-family: inherit;
  display: inline-flex;
  height: var(--btn-height);
  cursor: pointer;
  background: transparent;
}
.btn > span {
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--white);
  transition: all 0.3s ease-out;
  color: var(--black);
  padding: 0 20px;
  height: 100%;
}
.btn:after {
  content: "";
  display: block;
  width: var(--btn-height);
  height: var(--btn-height);
  min-width: var(--btn-height);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' fill='none'%3E%3Cpath d='M14.3563 6.20258L117.895 116.202C122.1 120.669 118.933 128 112.798 128H0V0C5.43589 0 10.6306 2.24434 14.3563 6.20258Z' fill='%2367A126'/%3E%3C/svg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 128 128' fill='none'%3E%3Cpath d='M14.3563 6.20258L117.895 116.202C122.1 120.669 118.933 128 112.798 128H0V0C5.43589 0 10.6306 2.24434 14.3563 6.20258Z' fill='%2367A126'/%3E%3C/svg%3E") no-repeat;
  background: var(--white);
  transition: all 0.3s ease-out;
}
.btn:hover > span, .btn:hover:after, .btn.active > span, .btn.active:after {
  background: var(--green);
  color: var(--white);
}
.btn--xl {
  --btn-height: 128px;
  pointer-events: none;
}
.btn--xl > span {
  font-size: 24px;
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  .btn--xl {
    --btn-height: 90px;
  }
  .btn--xl > span {
    text-align: left;
    font-size: 20px;
    padding: 0 0 0 20px;
  }
  .btn--xl.btn--left-bottom > span {
    padding: 0 20px 0 0;
  }
}
.btn--xs {
  --btn-height: 28px;
}
.btn--xs > span {
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 0 12px;
}
.btn--xs::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 27' fill='none'%3E%3Cpath d='M19.9928 1.46032L8.14918 24.3016C7.28958 25.9594 5.57781 27 3.71041 27H0.75V0H19.105C19.8549 0 20.338 0.794661 19.9928 1.46032Z' fill='%239C9D9D'/%3E%3C/svg%3E") no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 21 27' fill='none'%3E%3Cpath d='M19.9928 1.46032L8.14918 24.3016C7.28958 25.9594 5.57781 27 3.71041 27H0.75V0H19.105C19.8549 0 20.338 0.794661 19.9928 1.46032Z' fill='%239C9D9D'/%3E%3C/svg%3E") no-repeat;
  margin-left: -2px;
}
.btn--green > span, .btn--green:after {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover > span, .btn--green:hover:after {
  background: var(--white);
  color: var(--black);
}
.btn--gray > span, .btn--gray:after {
  background: var(--gray-light);
  color: var(--white);
}
.btn--full-width > span {
  max-width: unset;
}
.btn--left-bottom {
  flex-direction: row-reverse;
}
.btn--left-bottom::after {
  transform: scaleX(-1);
}
.btn--left-bottom > span {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .btn--left-bottom {
    margin-left: 8px;
  }
}
.btn--right-top::after {
  transform: scaleY(-1);
}
.btn--large-text > span {
  font-size: 28px;
}

.tabz {
  position: relative;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .tabz {
    display: flex;
    flex-direction: column-reverse;
  }
}
.tabz__nav {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  max-width: 360px;
  padding: 50px 0 0 50px;
  gap: 26px;
}
@media screen and (max-width: 991px) {
  .tabz__nav {
    padding: 16px;
    max-width: unset;
    gap: 16px;
  }
}
.tabz__head, .tabz > .tabz__nav > .btn {
  width: 100%;
  cursor: pointer;
  transition: filter 0.3s ease-out;
}
.tabz__head > span, .tabz > .tabz__nav > .btn > span {
  flex: 1;
  white-space: nowrap;
}
.tabz__head:hover, .tabz > .tabz__nav > .btn:hover {
  filter: grayscale(2);
}
.tabz__content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .tabz__content {
    position: relative;
    height: 380px;
  }
}
.tabz__field {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-out;
  transform: translateX(-105%);
}
.tabz__field.active {
  transform: translateX(0);
}
.tabz__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border-radius: 50%;
  padding: 4px;
  border: 2px solid var(--black);
}
@media screen and (max-width: 991px) {
  .tabz__close {
    right: 16px;
    top: 16px;
    width: 38px;
    height: 38px;
  }
}
.tabz__bg {
  display: none;
}
.tabz__bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.tabz--projects .tabz__field {
  z-index: 2;
}
.tabz--projects .tabz__field .swiper__slide > img {
  -o-object-fit: contain;
     object-fit: contain;
}
.tabz--projects .tabz__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.tabz--projects:has(.tabz__field.active) .tabz__content {
  z-index: 3;
}
.tabz--projects:has(.tabz__field.active) .tabz__bg {
  opacity: 1;
  background: aqua;
  z-index: 2;
  filter: blur(5px) grayscale(1) brightness(0.5);
}
@media screen and (max-width: 991px) {
  .tabz--projects:has(.tabz__field.active) .tabz__bg {
    z-index: 1;
  }
}
@media screen and (max-width: 991px) {
  .tabz--projects .projects__btn {
    z-index: 3;
  }
}
.tabz--contacts {
  margin-top: 24px;
  height: unset;
}
@media screen and (max-width: 991px) {
  .tabz--contacts {
    flex-direction: column;
  }
}
.tabz--contacts .tabz__nav {
  padding: 0;
  flex-direction: row;
  border-bottom: 1px solid var(--gray-light);
  max-width: unset;
  color: var(--gray-light);
}
.tabz--contacts .tabz__head {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  width: unset;
}
.tabz--contacts .tabz__head:hover {
  filter: none;
  color: var(--green);
}
.tabz--contacts .tabz__head.active {
  color: var(--green);
  border-bottom: 2px solid var(--green);
}
.tabz--contacts .tabz__content {
  position: relative;
  height: unset;
}
.tabz--contacts .tabz__field {
  position: relative;
  display: none;
  padding: 24px 0 60px;
  font-size: 20px;
  line-height: 28px;
}
.tabz--contacts .tabz__field.active {
  display: block;
}
.tabz--contacts .tabz__field > p:not(:first-child) {
  margin-top: 16px;
}
.tabz--contacts .tabz__field button, .tabz--contacts .tabz__field a {
  font-size: inherit;
  background: transparent;
  color: var(--green);
  text-decoration: underline;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .swiper {
    height: 380px;
  }
}
.swiper__slides {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  background: var(--gray);
}
.swiper__slide > img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper__prev, .swiper__next {
  position: absolute;
  width: 58px;
  height: 94px;
  background: var(--white);
  cursor: pointer;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: 2px solid var(--black);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease-out;
}
.swiper__prev::before, .swiper__next::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='31' height='58' viewBox='0 0 31 58' fill='none'%3E%3Cpath d='M28 55L3 28L28 3' stroke='%2334363A' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 50% 50%/70% 70% no-repeat;
}
.swiper__prev:hover, .swiper__next:hover {
  background: var(--gray-light);
}
@media screen and (max-width: 991px) {
  .swiper__prev, .swiper__next {
    width: 38px;
    height: 68px;
  }
  .swiper__prev::before, .swiper__next::before {
    background-size: 60%;
  }
}
.swiper__prev {
  right: 126px;
}
@media screen and (max-width: 991px) {
  .swiper__prev {
    left: 16px;
  }
}
.swiper__next {
  right: 50px;
}
@media screen and (max-width: 991px) {
  .swiper__next {
    right: 16px;
  }
}
.swiper__next::before {
  transform: scaleX(-1);
}

.checkbox-field {
  --checkbox-size: 15px;
  --checkbox-border-width: 2px;
  --checkbox-border-color: var(--black);
  --checkbox-border-radius: 0;
  --checkbox-background-color: transparent;
  --checkbox-mark: url("data:image/svg+xml,%3Csvg width='800px' height='800px' viewBox='0 0 24 24' role='img' xmlns='http://www.w3.org/2000/svg' aria-labelledby='okIconTitle' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none' color='%23000000'%3E%3Ctitle id='okIconTitle'%3EOk%3C/title%3E%3Cpolyline points='4 13 9 18 20 7'/%3E%3C/svg%3E");
  --checkbox-mark-size: 86%;
  --checkbox-label-color: var(--gray-light);
  --checkbox-label-fs: 16px;
  --checkbox-label-lh: 20px;
  --checkbox-label-margin: 12px;
  --checkbox-vertical-position: flex-start;
  --checkbox-margin-top: 2px;
  display: flex;
  align-items: center;
}
.checkbox-field > input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
}
.checkbox-field > input[type=checkbox] ~ label {
  position: relative;
  display: flex;
  align-items: var(--checkbox-vertical-position);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.checkbox-field > input[type=checkbox] ~ label::before, .checkbox-field > input[type=checkbox] ~ label::after {
  content: "";
  display: block;
  flex: 0 0 var(--checkbox-size);
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  pointer-events: all;
  cursor: pointer;
  position: relative;
  margin-top: var(--checkbox-margin-top);
}
.checkbox-field > input[type=checkbox] ~ label::before {
  background: var(--checkbox-background-color);
  border: var(--checkbox-border-width) solid var(--checkbox-border-color);
  border-radius: var(--checkbox-border-radius);
  order: 1;
  z-index: 1;
}
.checkbox-field > input[type=checkbox] ~ label::after {
  background: var(--checkbox-mark);
  background-size: var(--checkbox-mark-size);
  background-repeat: no-repeat;
  background-position: center;
  order: 2;
  margin-left: calc(0px - var(--checkbox-size));
  opacity: 0;
  transition: opacity 0.2s ease-out;
  z-index: 2;
}
.checkbox-field > input[type=checkbox] ~ label > span {
  order: 3;
  color: var(--checkbox-label-color);
  font-size: var(--checkbox-label-fs);
  line-height: var(--checkbox-label-lh);
  margin-left: var(--checkbox-label-margin);
}
.checkbox-field > input[type=checkbox]:checked ~ label::after {
  opacity: 1;
}
.checkbox-field > input[type=checkbox].error ~ label::before {
  border-color: var(--error);
}
.checkbox-field > input[type=checkbox].error ~ label > span {
  color: var(--error);
}
.checkbox-field > input[type=checkbox]:disabled ~ label::before {
  background: var(--disabled);
}
.checkbox-field > input[type=checkbox]:disabled ~ label::before, .checkbox-field > input[type=checkbox]:disabled ~ label::after {
  pointer-events: none;
  cursor: auto;
}

.input-field {
  --input-background: var(--white);
  --input-border-color: var(--gray-light);
  --input-border-thick: 2px;
  --input-border-style: solid;
  --input-border-radius: 0;
  --input-padding-vertical: 15px;
  --input-padding-horizontal: 15px;
  --input-placeholder-color: var(--gray-light);
  --input-text-color: var(--black);
  --input-text-fs: 20px;
  --input-text-lh: 20px;
  --input-icon-size: 24px;
  --input-height: calc(var(--input-padding-vertical) * 2 + var(--input-text-lh) + var(--input-border-thick) * 2);
  position: relative;
  width: 100%;
}
.input-field > input {
  width: 100%;
  background: var(--input-background);
  padding: var(--input-padding-vertical) var(--input-padding-horizontal);
  border: var(--input-border-thick) var(--input-border-style) var(--input-border-color);
  border-radius: var(--input-border-radius);
  color: var(--input-text-color);
  font-size: var(--input-text-fs);
  line-height: var(--input-text-lh);
  text-overflow: ellipsis;
}
.input-field > input::-moz-placeholder {
  color: var(--input-placeholder-color);
}
.input-field > input::placeholder {
  color: var(--input-placeholder-color);
}
.input-field > input ~ svg {
  position: absolute;
  top: calc((var(--input-height) - var(--input-icon-size)) / 2);
  right: var(--input-padding-horizontal);
  width: var(--input-icon-size);
  height: var(--input-icon-size);
}
.input-field > input ~ svg > path {
  fill: var(--black);
}
.input-field > input:disabled {
  pointer-events: none;
  background: var(--disabled);
}
.input-field > input.error {
  border-color: var(--error);
}
.input-field:has(svg) > input {
  padding-right: calc(var(--input-padding-horizontal) * 1.5 + var(--input-icon-size));
}

.form__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  color: var(--gray-light);
}
.form__body > h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}
.form__inputs {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .form__inputs {
    flex-direction: column;
  }
}
.form__bottom {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.form__bottom > button:hover > span {
  background: var(--gray-light);
}
.form__bottom > button:hover::after {
  background: var(--gray-light);
}
.form__bottom > button > span {
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .form__bottom {
    flex-direction: column;
  }
}

.form-warn {
  color: var(--error);
  font-size: 16px;
  line-height: 20px;
  display: none;
}
.form-warn.error {
  display: block;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.3s ease-out;
}
.modal.active {
  transform: scale(1);
}
.modal__mask {
  position: absolute;
  background-color: var(--mask);
  width: 100%;
  height: 100%;
}
.modal__body {
  max-width: 760px;
  background: var(--white);
  padding: 50px;
  position: relative;
  color: var(--black);
}
.modal__body h3 {
  font-size: 32px;
  font-weight: 700;
}
.modal__body p {
  font-size: 20px;
  line-height: 28px;
  max-height: 90%;
  overflow-y: auto;
}
@media screen and (max-width: 991px) {
  .modal__body p {
    padding-right: 8px;
  }
}
@media screen and (max-width: 991px) {
  .modal__body {
    max-height: 86%;
    height: 100%;
    margin: 0 16px;
    padding: 30px;
  }
}
.modal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
.modal__close {
  flex: 0 0 32px;
  height: 32px;
}

.close {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.close__inner {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}
.close__inner::before, .close__inner::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 80%;
  background: var(--black);
  transition: all 0.3s ease-out;
  border-radius: 4px;
}
.close__inner::before {
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.close__inner::after {
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
/*# sourceMappingURL=style.css.map */
