@charset "UTF-8";
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

input {
  outline: none;
}

/* Убираем стрелки в Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Убираем стрелки в Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

/* Основные стили */
:root {
  --transition: 0.3s;
  --error-red: red;
  --red: #dd0b15;
  --black: #000;
  --gray: #efefef;
  --font-family: "Geologica", sans-serif;
  --swiper-pagination-bottom: 95px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-border-radius: 0%;
  --swiper-pagination-bullet-height: max-content;
  --swiper-pagination-bullet-size: max-content;
  --swiper-pagination-bullet-inactive-color: transparent;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-family);
  min-width: 390px;
  overflow-x: hidden !important;
  overflow-anchor: none !important;
  color: var(--black);
  font-weight: 400;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

body.stop-scroll {
  overflow-y: hidden !important;
}

a,
button {
  cursor: pointer;
  transition: var(--transition);
  display: block;
  color: var(--black);
}

svg,
path,
circle {
  transition: var(--transition);
}

img {
  transition: var(--transition);
  object-fit: cover;
}

input {
  transition: var(--transition);
}

input:focus {
  border-color: #b4b4b4 !important;
}

sup {
  font-size: 10px;
}

.just-validate-error-label {
  display: none !important;
}

.just-validate-error-field {
  border-color: var(--red) !important;
}
.just-validate-error-field::placeholder {
  color: var(--red) !important;
}
.just-validate-error-field ~ label {
  border-color: var(--red) !important;
}

.just-validate-error-label {
  font-weight: 200;
  font-size: 16px;
  line-height: 120%;
  color: var(--red);
}

.swiper-button-disabled {
  opacity: 0.6 !important;
  cursor: no-drop;
}

.mail {
  transition: var(--transition);
  cursor: copy;
  position: relative;
  width: max-content;
}
.mail img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(150%) translateY(-50%);
  transition: var(--transition);
  opacity: 0;
}
.mail:hover {
  color: var(--primary);
}
.mail:hover .hover {
  opacity: 1;
}
.mail.copy .hover {
  display: none;
}
.mail.copy .hidden {
  display: block;
  opacity: 1;
}
.hidden {
  display: none;
}
.is-open {
  color: var(--red) !important;
  gap: 10px !important;
  pointer-events: none;
}
.is-open svg {
  width: 12px !important;
}
.red-btn {
  background: var(--red);
  border-radius: 12px;
  font-weight: 400;
  line-height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.red-btn:hover {
  background: #ff4952;
}
.red-btn:active {
  background: #bc171f;
}

.container {
  max-width: 1688px;
  padding: 0 40px;
  margin: 0 auto;
  box-sizing: content-box;
}

.backdrop {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
  visibility: visible;
}
.backdrop.open {
  z-index: 5;
  opacity: 1;
  visibility: visible;
}

.mt {
  margin-top: 100px;
}

.subtitle {
  font-weight: 500;
  font-size: 42px;
}

.opacity {
  background: #F5F5F5 !important;
}

@media (max-width: 1380px) {
  .mt {
    margin-top: 80px;
  }
  .subtitle {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .mt {
    margin-top: 60px;
  }
  .subtitle {
    font-size: 26px;
  }
}
/* Подключение шрифтов */
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.header.white .header__links-link, .header.white .header__contacts-link {
  color: #fff;
}
.header-wrap {
  margin-top: 24px;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-logo {
  width: 247px;
  height: 47px;
  position: relative;
  z-index: 4;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 72px;
}
.header__menu {
  position: relative;
  z-index: 10;
}
.header__menu.open .header__menu-btn {
  background: var(--red);
  color: #fff;
}
.header__menu.open .header__menu-btn .close {
  display: none;
}
.header__menu.open .header__menu-btn .open {
  display: block;
}
.header__menu.open .header__menu-modal {
  opacity: 1;
  visibility: visible;
  max-height: 290px;
}
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--gray);
  border-radius: 12px;
  width: 139px;
  height: 49px;
  font-size: 18px;
  line-height: 100%;
}
.header__menu-btn .open {
  display: none;
}
.header__menu-btn:hover {
  background: #DEDEDE;
}
.header__menu-modal {
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.3);
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  width: 541px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  overflow: hidden;
}
.header__menu-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.header__menu-list {
  display: grid;
  gap: 16px;
  height: max-content;
}
.header__menu-list:last-child .header__menu-main {
  margin-bottom: 4px;
}
.header__menu-list a {
  display: flex;
  align-items: center;
  gap: 0;
}
.header__menu-list a svg {
  width: 0px;
}
.header__menu-list a:hover {
  color: var(--red);
  gap: 10px;
}
.header__menu-list a:hover svg {
  width: 12px;
}
.header__menu-main {
  font-size: 18px;
}
.header__menu-main.services {
  color: #B4B4B4;
}
.header__menu-second {
  font-weight: 300;
  font-size: 18px;
}
.header__menu-contacts {
  display: none;
}
.header__menu-callback {
  display: none;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 4;
}
.header__links-link {
  font-size: 18px;
}
.header__links-link:hover {
  color: var(--red);
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 72px;
  position: relative;
  z-index: 4;
}
.header__contacts-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
}
.header__contacts-link:hover {
  color: var(--red);
}
.header__contacts-link svg {
  flex-shrink: 0;
}
.header-callback {
  border-radius: 12px;
  width: 187px;
  height: 58px;
  font-size: 18px;
  position: relative;
  z-index: 4;
}

@media (max-width: 1680px) {
  .header-nav, .header__links, .header__contacts {
    gap: 52px;
  }
}
@media (max-width: 1480px) {
  .header-nav, .header__links, .header__contacts {
    gap: 42px;
  }
}
@media (max-width: 1380px) {
  .header-wrap {
    margin-top: 20px;
    margin-bottom: 24px;
  }
  .header-logo {
    width: 226px;
    height: 43px;
  }
  .header-nav {
    gap: 52px;
  }
  .header__menu.open .header__menu-modal {
    max-height: 370px;
  }
  .header__menu-btn {
    gap: 8px;
    width: 124px;
    height: 48px;
    font-size: 16px;
  }
  .header__menu-modal {
    width: 536px;
  }
  .header__menu-nav {
    gap: 32px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 24px;
  }
  .header__menu-bot {
    margin-top: 24px;
  }
  .header__menu-contacts {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__menu-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
  }
  .header__links {
    gap: 52px;
  }
  .header__links-link {
    font-size: 16px;
  }
  .header__contacts {
    gap: 0;
  }
  .header__contacts-link.mail {
    display: none;
  }
  .header-callback {
    width: 167px;
    height: 48px;
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  .header-wrap {
    margin-top: 18px;
  }
  .header__menu.open .header__menu-modal {
    max-height: 410px;
  }
  .header__menu-btn {
    width: 136px;
    font-size: 20px;
  }
  .header__menu-bot {
    display: flex;
    gap: 32px;
  }
  .header__menu-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header__menu-callback {
    width: 167px;
    height: 48px;
    font-size: 16px;
    display: flex;
  }
  .header__links {
    display: none;
  }
  .header__contacts-link {
    font-size: 20px;
  }
  .header-callback {
    display: none;
  }
}
@media (max-width: 730px) {
  .header__menu-main.services {
    /* display: none; */
  }
  .header__menu-list a:hover {
    gap: 0;
  }
  .header__menu-list a:hover svg {
    width: 0;
  }
  .header-wrap {
    margin-top: 22px;
  }
  .header-logo {
    width: 190px;
    height: 36px;
  }
  .header__menu {
    position: fixed;
    top: 17px;
    right: 40px;
  }
  .header__menu.open .header__menu-modal {
    max-height: 75vh;
    transform: translateX(0) translateY(100%);
  }
  .header__menu-btn {
    width: 120px;
    height: 46px;
    font-size: 18px;
  }
  .header__menu-modal {
    width: 354px;
    max-height: 75vh;
    height: max-content;
    overflow-y: auto;
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-100%);
    opacity: 0;
    visibility: visible;
  }
  .header__menu-nav {
    gap: 16px;
    grid-template-columns: 1fr;
  }
  .header__menu-bot {
    display: grid;
  }
  .header__menu-callback {
    width: 100%;
  }
  .header__contacts {
    display: none;
  }
}
@media (max-width: 680px) {
  .header__menu {
    right: 18px;
  }
}
.application-title {
  max-width: 1050px;
}
.application-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
}
.application__work {
  background: #E9E9E9;
  border-radius: 24px;
  padding: 52px;
  transition: var(--transition);
}
.application__work-top {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}
.application__work-icon {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: var(--red);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application__work-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.application__work-radio:hover .application__work-name {
  color: var(--red);
  gap: 8px;
}
.application__work-radio:hover .application__work-name svg {
  width: 14px;
}
.application__work-img {
  background: #fff;
  border-radius: 18px;
  aspect-ratio: 1.405/1;
  position: relative;
  overflow: hidden;
  display: block;
}
.application__work-img svg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.application__work-img img {
  position: absolute;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  top: 0;
  right: 0;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}
.application__work-name {
  margin-top: 10px;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  transition: var(--transition);
}
.application__work-name svg {
  width: 0;
}
.application__work input:checked ~ .application__work-img path {
  fill: var(--red);
}
.application__work input:checked ~ .application__work-name {
  color: var(--red);
  gap: 8px;
}
.application__work input:checked ~ .application__work-name svg {
  width: 14px;
}
.application__form {
  background: #E9E9E9;
  border-radius: 24px;
  height: max-content;
  padding: 52px;
  transition: var(--transition);
}
.application__form:has(.just-validate-error-field) .application__form-placeholder {
  color: var(--red);
}
.application__form-top {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}
.application__form-icon {
  width: 25px;
  height: 25px;
  border-radius: 4px;
  background: var(--red);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application__form-duo {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}
.application__form-placeholder {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}
.application__form-inp {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  height: 62px;
  font-size: 18px;
  line-height: 120%;
  margin-top: 14px;
}
.application__form-inp::placeholder {
  color: #b4b4b4;
}
.application__form-btn {
  margin-top: 32px;
  width: 100%;
  height: 60px;
  font-size: 20px;
  line-height: 100%;
}
.application__form-bot {
  margin-top: 23px;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
}
.application__form-bot input:checked ~ .application__form-check {
  background-color: var(--red);
  border-color: var(--red);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  background-image: url(../images/check.svg)
}
.application__form-check {
  border: 1px solid #b4b4b4;
  border-radius: 3px;
  width: 16px;
  height: 16px;
}
.application__form-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
}
.application__form-text a {
  display: inline;
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

@media (max-width: 1380px) {
  .application-title {
    max-width: 900px;
  }
  .application-wrap {
    margin-top: 42px;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }
  .application__work {
    padding: 32px;
  }
  .application__work-top {
    gap: 14px;
    font-size: 18px;
  }
  .application__work-wrap {
    gap: 30px;
    margin-top: 24px;
  }
  .application__work-radio:hover .application__work-name {
    gap: 6px;
  }
  .application__work-radio:hover .application__work-name svg {
    width: 12px;
  }
  .application__work-img {
    border-radius: 15px;
  }
  .application__work-name {
    margin-top: 14px;
  }
  .application__work input:checked ~ .application__work-name {
    gap: 6px;
  }
  .application__work input:checked ~ .application__work-name svg {
    width: 12px;
  }
  .application__form {
    padding: 32px;
  }
  .application__form-top {
    gap: 14px;
    font-size: 18px;
  }
  .application__form-duo {
    margin-top: 24px;
    gap: 18px;
  }
  .application__form-placeholder {
    font-size: 16px;
  }
  .application__form-inp {
    height: 59px;
    font-size: 16px;
    margin-top: 12px;
  }
  .application__form-btn {
    margin-top: 20px;
    height: 58px;
    font-size: 18px;
  }
  .application__form-bot {
    margin-top: 20px;
  }
}
@media (max-width: 1180px) {
  .application-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .application__work-name {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .application-wrap {
    margin-top: 28px;
    gap: 20px;
  }
  .application__work {
    padding: 26px;
  }
  .application__work-top {
    gap: 12px;
    font-size: 16px;
  }
  .application__work-icon {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
  .application__work-wrap {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 10px;
    row-gap: 18px;
    margin-top: 24px;
  }
  .application__work-img {
    border-radius: 11px;
  }
  .application__work-name {
    margin-top: 12px;
    font-size: 15px;
  }
  .application__form {
    padding: 26px;
  }
  .application__form-top {
    gap: 12px;
    font-size: 16px;
  }
  .application__form-icon {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
}
.blog__card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog__card:hover img {
  transform: scale(1.2) translate(-50%, -50%);
}
.blog__card:hover .blog__card-name {
  color: var(--red);
}
.blog__card-link {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.blog__card-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
}
.blog__card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: var(--transition);
}
.blog__card-name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  transition: var(--transition);
}
.blog__card-descr {
  margin-top: 10px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog__card-bot {
  margin-top: 44px;
  display: flex;
  gap: 18px;
}
.blog__card-post {
  font-size: 16px;
  line-height: 100%;
  color: var(--red);
}
.blog__card-date {
  font-size: 16px;
  line-height: 100%;
  color: #b4b4b4;
}

@media (max-width: 1380px) {
  .blog__card-name {
    margin-top: 18px;
    font-size: 20px;
  }
  .blog__card-bot {
    margin-top: 18px;
  }
}
@media (max-width: 1180px) {
  .blog__card-name {
    margin-top: 16px;
  }
}
.seo-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 96%;
}
.seo-text {
  margin-top: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #8e8c8c;
  display: grid;
  gap: 20px;
}
.seo-text ul {
  display: grid;
  gap: 10px;
}
.seo-text li {
  list-style: disc;
  margin-left: 20px;
}
.seo-text li::marker {
  font-size: 15px;
  color: #8e8c8c;
}

@media (max-width: 680px) {
  .seo-title {
    font-size: 18px;
  }
  .seo-text {
    margin-top: 24px;
    gap: 18px;
  }
  .seo-text ul {
    gap: 8px;
  }
}
.footer {
  background: #f5f5f5;
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.footer-img {
  position: absolute;
  top: 30px;
  left: -250px;
  z-index: 1;
  display: flex;
}
.footer-bg:nth-child(2) {
  transform: translateX(-22%);
}
.footer-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: 3fr 2fr 2fr 3fr 2fr;
  grid-template-areas: "logo about servises contacts soc" "copy about servises contacts soc";
  position: relative;
  z-index: 2;
}
.footer-logo {
  grid-area: logo;
}
.footer__copy {
  grid-area: copy;
}
.footer__copy-top {
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #8e8c8c;
}
.footer__copy-link {
  margin-top: 14px;
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  color: #8e8c8c;
}
.footer__copy-link:hover {
  color: var(--red);
}
.footer__copy-prana {
  margin-top: 14px;
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: #bdbdbd;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.footer-menu-about {
  grid-area: about;
}
.footer-menu-servises {
  grid-area: servises;
}
.footer__list {
  display: grid;
  gap: 16px;
}
.footer__list a:hover {
  color: var(--red);
}
.footer__list-top {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-bottom: 4px;
}
.footer__list-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
}
.footer__contacts {
  grid-area: contacts;
}
.footer__contacts-top {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.footer__contacts-wrap {
  margin-top: 27px;
  display: grid;
  gap: 18px;
}
.footer__contacts-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
a.footer__contacts-item:hover, .mail.footer__contacts-item:hover {
  color: var(--red);
}
.footer__contacts-item svg {
  flex-shrink: 0;
}
.footer__contacts-item.adres {
  align-items: start;
}
.footer__contacts-gray {
  font-weight: 300;
  font-size: 15px;
  line-height: 100%;
  color: #b4b4b4;
  margin-bottom: 6px;
}
.footer__soc {
  grid-area: soc;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.footer__soc-btn {
  width: 187px;
  height: 58px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.footer__soc-bot {
  width: 187px;
}
.footer__soc-name {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.footer__soc-box {
  display: flex;
  margin-top: 18px;
  gap: 12px;
}
.footer__soc-link {
  border-radius: 8px;
  width: 42px;
  height: 42px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__soc-link:hover {
  background: var(--red);
}
.footer__soc-link:hover path {
  fill: #fff;
}

@media (max-width: 1380px) {
  .footer {
    padding: 42px 0;
  }
  .footer-img {
    top: 20px;
  }
  .footer-wrap {
    gap: 30px;
  }
  .footer-logo {
    width: 225px;
    height: 43px;
  }
  .footer__list-top {
    font-size: 18px;
  }
  .footer__list-link {
    font-size: 16px;
  }
  .footer__contacts-top {
    font-size: 18px;
  }
  .footer__contacts-item {
    font-size: 16px;
  }
  .footer__contacts-gray {
    font-size: 14px;
  }
  .footer__soc-btn {
    width: 171px;
    height: 48px;
    font-size: 16px;
  }
  .footer__soc-bot {
    width: 171px;
  }
  .footer__soc-name {
    font-size: 18px;
  }
  .footer__soc-box {
    margin-top: 16px;
  }
}
@media (max-width: 1180px) {
  .footer {
    padding: 32px 0;
  }
  .footer-img {
    top: 68px;
    height: calc(100% - 68px);
  }
  .footer-bg {
    display: none;
  }
  .footer-bg:nth-child(2) {
    display: block;
    transform: translateX(0%);
  }
  .footer-wrap {
    column-gap: 30px;
    row-gap: 32px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "about servises" "contacts soc" "logo copy";
  }
  .footer-logo {
    width: 209px;
    height: 40px;
    margin-top: 10px;
  }
  .footer__copy {
    margin-top: 10px;
  }
  .footer__copy-link {
    margin-top: 12px;
  }
  .footer__copy-prana {
    margin-top: 12px;
  }
  .footer__list {
    gap: 14px;
  }
  .footer__contacts-wrap {
    margin-top: 18px;
    gap: 16px;
  }
  .footer__soc {
    align-items: start;
  }
}
@media (max-width: 680px) {
  .footer-img {
    top: 117px;
    height: calc(100% - 117px);
  }
  .footer-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "contacts" "soc" "logo" "copy";
  }
  .footer-logo {
    width: 207px;
    height: 39px;
    margin-top: 0;
  }
  .footer__copy {
    margin-top: 0;
  }
  .footer-menu-about {
    display: none;
  }
  .footer-menu-servises {
    display: none;
  }
  .footer__soc-name {
    margin-top: 24px;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal.open {
  opacity: 1;
  visibility: visible;
}
.modal.open .modal__form {
  transform: translate(0);
}
.modal-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.modal-close:hover path {
  fill: var(--red);
}
.modal__form {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  width: 680px;
  transition: var(--transition);
  transform: translateY(-50%);
}
.modal__form-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 96%;
}
.modal__form-subtitle {
  margin-top: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}
.modal__form .application__form-inp {
  border: 1px solid var(--gray);
}

@media (max-width: 1380px) {
  .modal__form {
    width: 495px;
  }
}
@media (max-width: 680px) {
  .modal-close {
    top: 26px;
    right: 22px;
  }
  .modal__form {
    padding: 32px;
    width: 354px;
  }
  .modal__form-subtitle {
    margin-top: 12px;
    font-size: 16px;
  }
}
.title {
  font-weight: 500;
  font-size: 52px;
  line-height: 96%;
  color: #fff;
  max-width: 890px;
}

.subtitle {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
}
.breadcrumbs svg {
  flex-shrink: 0;
}
.breadcrumbs-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  flex-shrink: 0;
}
.breadcrumbs-str {
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.projects-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, calc(30% + 30px));
  gap: 40px;
}
.projects-btn {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  width: 276px;
  height: 60px;
  margin: 0 auto;
  margin-top: 52px;
}
@media (max-width: 1380px) {
  .title {
    font-size: 42px;
    max-width: 730px;
  }
  .subtitle {
    font-size: 36px;
  }
  .breadcrumbs {
    margin-bottom: 32px;
  }
  .projects-wrap {
    margin-top: 42px;
    grid-template-columns: repeat(3, calc(30% + 20px));
    gap: 30px;
  }
  .projects-btn {
    margin-top: 42px;
  }
}
@media (max-width: 1180px) {
  .projects-wrap {
    grid-template-columns: repeat(2, calc(50% - 15px));
  }
}
@media (max-width: 680px) {
  .title {
    font-size: 28px;
  }
  .subtitle {
    font-size: 26px;
  }
  .breadcrumbs {
    margin-bottom: 24px;
    gap: 12px;
  }
  .breadcrumbs-link {
    font-size: 13px;
  }
  .breadcrumbs-str {
    font-size: 13px;
  }
  .projects-wrap {
    margin-top: 28px;
    grid-template-columns: 100%;
  }
  .projects-btn {
    font-size: 18px;
    width: 100%;
    height: 58px;
    margin-top: 32px;
  }
}
.banner {
  border-radius: 52px;
  overflow: hidden;
}
.banner-wrap {
  background: #f8f8f8;
  border-radius: 52px;
  padding: 80px;
  position: relative;
}
.banner-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  max-width: 465px;
  position: relative;
  z-index: 2;
}
.banner-text {
  margin-top: 52px;
  max-width: 49%;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  position: relative;
  z-index: 2;
}
.banner-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.banner__icons {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-width: 582px;
  margin-top: 42px;
}
.banner__icons-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.banner__icons-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 60px;
  height: 60px;
  background: var(--red);
  flex-shrink: 0;
}
.banner__icons-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

@media (max-width: 1380px) {
  .banner {
    border-radius: 42px;
    margin-left: 40px;
    margin-right: 40px;
  }
  .banner:has(.banner-with-icons) .banner-img {
    height: calc(100% + 75px);
    transform: translateX(10%);
  }
  .banner .container {
    padding: 0;
  }
  .banner-wrap {
    border-radius: 42px;
    padding: 60px;
  }
  .banner-title {
    font-size: 36px;
  }
  .banner-text {
    margin-top: 42px;
    max-width: 525px;
  }
  .banner-img {
    transform: translateX(25%);
  }
  .banner__icons {
    max-width: 525px;
    margin-top: 32px;
  }
}
@media (max-width: 1180px) {
  .banner {
    border-radius: 32px;
  }
  .banner:has(.banner-with-icons) .banner-img {
    /* height: 487px; */
    transform: translateX(10%);
    margin-top: -80px;
  }
  .banner-wrap {
    border-radius: 32px;
    padding: 42px;
  }
  .banner-text {
    margin-top: 32px;
    max-width: 100%;
  }
  .banner-img {
    transform: translateX(25%);
    position: static;
    margin-top: 32px;
    margin-bottom: -42px;
  }
  .banner__icons {
    max-width: none;
  }
  .banner__icons-item:last-child .banner__icons-text {
    max-width: 275px;
  }
  .banner__icons-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 60px;
    height: 60px;
    background: var(--red);
    flex-shrink: 0;
  }
  .banner__icons-text {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
  }
}
@media (max-width: 680px) {
  .banner {
    margin-left: 18px;
    margin-right: 18px;
  }
  .banner:has(.banner-with-icons) .banner-img {
    height: auto;
    width: calc(100% + 64px);
    transform: translateX(0);
    margin-top: 10px;
  }
  .banner-wrap {
    padding: 32px;
  }
  .banner-title {
    font-size: 26px;
  }
  .banner-text {
    margin-top: 24px;
    font-size: 16px;
  }
  .banner-img {
    transform: translateX(0);
    width: calc(100% + 64px);
    max-width: none;
    margin: 28px -32px -32px -32px;
  }
  .banner__icons {
    gap: 20px;
  }
  .banner__icons-item {
    gap: 16px;
  }
  .banner__icons-icon {
    border-radius: 10px;
    width: 48px;
    height: 48px;
  }
  .banner__icons-icon img {
    width: 32px;
    height: 32px;
  }
  .banner__icons-text {
    font-size: 16px;
  }
}
.calculation {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.calculation-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(98.67deg, #000 -13.82%, rgba(0, 0, 0, 0) 113.81%);
}
.calculation-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.calculation-title {
  position: relative;
  z-index: 3;
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  color: #fff;
  max-width: 1050px;
}
.calculation-subtitle {
  position: relative;
  z-index: 3;
  margin-top: 18px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
}
.calculation-wrap {
  position: relative;
  z-index: 3;
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.calculation-left {
  background: #fff;
  border-radius: 24px;
  padding: 52px;
}
.calculation-num {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}
.calculation-num p {
  border-radius: 4px;
  width: 25px;
  height: 25px;
  background: var(--red);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.calculation__calc {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 24px;
}
.calculation__calc-box {
  display: grid;
  gap: 14px;
}
.calculation__calc-name {
  font-weight: 300;
  font-size: 16px;
  line-height: 120%;
}
.calculation__calc-materials {
  position: relative;
}
.calculation__calc-materials.open .calculation__calc-list {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
}
.calculation__calc-materials.open .calculation__calc-btn svg {
  transform: rotate3d(1, 0, 0, -180deg);
}
.calculation__calc-materials.open .calculation__calc-btn svg path {
  fill: var(--red);
}
.calculation__calc-btn {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 20px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}
.calculation__calc-list {
  position: absolute;
  bottom: -10px;
  transform: translateY(100%);
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  z-index: 10;
  background: #fff;
  box-shadow: 0px 20px 40px -10px rgba(34, 60, 80, 0.25);
  transition: var(--transition);
  opacity: 0;
  max-height: 0;
  visibility: hidden;
}
.calculation__calc-item {
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.calculation__calc-item:last-child {
  padding: 0;
  border: none;
}

.calculation__calc-label {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 20px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #a5a5a5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.calculation__calc-inp {
  width: 65px;
  color: var(--black);
}
.calculation__calc-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.calculation__calc-radio {
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 20px 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  transition: var(--transition);
}
.calculation__calc-radio span {
  transition: var(--transition);
}
.calculation__calc-radio:has(input:checked) {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.calculation__price {
  margin-top: 24px;
  margin-bottom: 32px;
  background: var(--gray);
  border-radius: 10px;
  padding: 20px 24px;
  position: relative;
}
.calculation__price-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}
.calculation__price-count {
  margin-top: 8px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.calculation__price-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  cursor: pointer;
}
.calculation__price-icon:hover path {
  fill: var(--red);
}
.calculation__price-icon:hover .calculation__price-tooltip  {
  opacity: 1;
  visibility: visible;
}
.calculation__price-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  width: 415px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-radius: 18px;
  box-shadow: 0px 12px 20px 0px #0000004D;
  z-index: 10;
}
.calculation__price-tooltip svg {
  display: none;
}
.calculation__price-tooltip.open {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1 !important;
  visibility: visible !important;
  border-radius: 0;
  padding: 0;
  transform: translate(0);
}
.calculation__price-tooltip.open p {
  background: #fff;
  width: 255px;
  border-radius: 24px;
  padding: 32px;
}
.calculation__price-tooltip.open svg {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
}
.calculation .application__form-inp {
  border: 1px solid var(--gray);
}
.calculation-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.calculation__material {
  border-radius: 24px;
  padding: 32px;
  max-width: 392px;
  background: #fff;
}
.calculation__material-text {
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}
.calculation__material-name {
  margin-top: 6px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.calculation__material-img {
  aspect-ratio: 16/9;
  background: var(--gray);
  overflow: hidden;
  border-radius: 14px;
  position: relative;
  margin-top: 20px;
}
.calculation__material-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.calculation__max {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  max-width: 444px;
  display: flex;
  gap: 18px;
}
.calculation__max-icon {
  width: 48px;
  height: 48px;
}
.calculation__max-box {
  display: grid;
  gap: 8px;
}
.calculation__max-black {
  font-weight: 300;
  font-size: 20px;
  line-height: 120%;
}
.calculation__max-green {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #69d71b;
  display: flex;
  align-items: center;
  gap: 8px;
}
.calculation__max-green::after {
  content: "";
  display: block;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background: #69d71b;
  animation: blinking 3s ease-in-out infinite;
}
@keyframes blinking {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 1380px) {
  .calculation {
    padding: 80px 0;
  }
  .calculation-title {
    font-size: 36px;
    max-width: 890px;
  }
  .calculation-subtitle {
    margin-top: 14px;
  }
  .calculation-wrap {
    margin-top: 42px;
    grid-template-columns: 7fr 5fr;
    gap: 30px;
  }
  .calculation-left {
    padding: 42px;
  }
  .calculation__calc {
    grid-template-columns: 2.5fr 1fr 1.5fr;
    gap: 18px;
  }
  .calculation__calc-btn {
    padding: 20px;
  }
  .calculation__calc-label {
    padding: 20px;
    gap: 7px;
  }
  .calculation__calc-inp {
    width: 55px;
  }
  .calculation__price {
    margin-top: 20px;
    margin-bottom: 24px;
    padding: 18px 20px;
  }
  .calculation__price-text {
    font-size: 16px;
  }
  .calculation__price-count {
    font-size: 20px;
  }
  .calculation__price-icon {
    top: 18px;
    right: 20px;
  }
  .calculation__material {
    padding: 24px;
    max-width: 299px;
  }
  .calculation__material-text {
    font-size: 18px;
  }
  .calculation__material-name {
    font-size: 18px;
  }
  .calculation__max {
    padding: 24px;
    max-width: 387px;
  }
}
@media (max-width: 1180px) {
  .calculation__price-icon:hover .calculation__price-tooltip {
    opacity: 0;
    visibility: hidden;
  }
  .calculation__price-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .calculation__price-icon:hover path {
    fill: #b4b4b4;
  }
  .calculation__price-icon.open path {
    fill: var(--red);
  }
  .calculation-wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .calculation-num {
    gap: 16px;
    font-size: 18px;
  }
  .calculation__calc {
    grid-template-columns: 2fr 1fr 1.5fr;
  }
  .calculation-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .calculation__material {
    padding: 20px;
    max-width: none;
    display: flex;
    gap: 18px;
    justify-content: space-between;
  }
  .calculation__material-img {
    margin-top: 0;
    aspect-ratio: 1;
    flex-shrink: 0;
    width: 64px;
    height: max-content;
  }
  .calculation__max {
    padding: 20px;
    max-width: none;
    gap: 20px;
  }
  .calculation__max-icon {
    width: 40px;
    height: 40px;
  }
  .calculation__max-black {
    font-size: 16px;
  }
  .calculation__max-green {
    font-size: 15px;
  }
}
@media (max-width: 680px) {
  .calculation {
    padding: 60px 0;
  }
  .calculation-title {
    font-size: 26px;
  }
  .calculation-wrap {
    margin-top: 32px;
    flex-direction: column;
  }
  .calculation-left {
    padding: 24px;
  }
  .calculation-num {
    gap: 12px;
    font-size: 16px;
  }
  .calculation-num p {
    width: 22px;
    height: 22px;
    font-size: 16px;
  }
  .calculation__calc {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calculation__calc-inp {
    width: calc(100% - 80px);
  }
  .calculation__calc-duo {
    grid-template-columns: repeat(2, 97px);
  }
  .calculation__price {
    padding: 16px;
  }
  .calculation__price-text {
    font-size: 15px;
  }
  .calculation__price-count {
    margin-top: 6px;
    font-size: 18px;
  }
  .calculation__price-icon {
    top: 16px;
    right: 16px;
  }
  .calculation-right {
    display: block;
  }
  .calculation__material {
    display: none;
  }
}
.catalog-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.catalog__card {
  background: #f5f5f5;
  border-radius: 24px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  gap: 92px;
  position: relative;
  overflow: hidden;
}
.catalog__card:hover .catalog__card-icon {
  background: var(--red);
}
.catalog__card:hover .catalog__card-icon path {
  fill: #fff;
}
.catalog__card-name {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.catalog__card-descr {
  margin-top: 16px;
  font-weight: 300;
  font-size: 17px;
  line-height: 140%;
}
.catalog__card-price {
  margin-top: 12px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: var(--red);
}
.catalog__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 40px;
  height: 40px;
  transition: var(--transition);
  border-radius: 8px;
}
.catalog__card-img {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 1380px) {
  .catalog-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 42px;
  }
  .catalog__card-descr {
    max-width: 316px;
  }
}
@media (max-width: 1180px) {
  .catalog__card {
    padding: 32px;
    gap: 115px;
  }
  .catalog__card-name {
    font-size: 20px;
  }
  .catalog__card-descr {
    margin-top: 12px;
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .catalog-wrap {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.blog {
  margin-top: 42px;
}
.blog .breadcrumbs-link, .blog .title {
  color: var(--black);
}
.blog .breadcrumbs-str {
  color: #b4b4b4;
}
.blog-descr {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}
.blog__tabs {
  margin-top: 42px;
  display: flex;
  gap: 24px;
}
.blog__tabs-btn {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px 32px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--red);
}
.blog__tabs-btn.active {
  background: var(--red);
  color: #fff;
  pointer-events: none;
}
.blog-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-more {
  width: 264px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin: 52px auto 0 auto;
}

.sistem {
  margin-top: 42px;
}
.sistem .breadcrumbs-link, .sistem .title {
  color: var(--black);
}
.sistem .breadcrumbs-str {
  color: #b4b4b4;
}
.sistem-text {
  margin-top: 52px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.sistem-text h2, .sistem-text h3, .sistem-text h4, .sistem-text h5, .sistem-text h6 {
  margin-top: 18px;
  margin-bottom: 18px;
}
.sistem-text h2:first-child, .sistem-text h3:first-child, .sistem-text h4:first-child, .sistem-text h5:first-child, .sistem-text h6:first-child {
  margin-top: 0;
}

.thanks-wrap {
  margin-top: 42px;
  position: relative;
  overflow: hidden;
  border-radius: 52px;
  padding: 80px;
}
.thanks-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(98.97deg, #000 -34.88%, rgba(0, 0, 0, 0) 102.85%);
}
.thanks-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.thanks-top {
  position: relative;
  z-index: 3;
}
.thanks-descr {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}
.thanks-link {
  margin-top: 52px;
  width: 248px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.thanks .calculation__max {
  margin-top: 145px;
  position: relative;
  z-index: 3;
}

.error .breadcrumbs-link, .error .title {
  color: var(--black);
}
.error .breadcrumbs-str {
  color: #b4b4b4;
}
.error-wrap {
  margin-top: 42px;
  overflow: hidden;
  border-radius: 52px;
  padding: 80px;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.error-descr {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}
.error-link {
  margin-top: 52px;
  width: 248px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}

@media (max-width: 1380px) {
  .blog-wrap {
    margin-top: 32px;
    gap: 30px;
  }
  .blog-more {
    margin-top: 32px;
  }
  .sistem-text {
    margin-top: 42px;
  }
  .thanks-wrap {
    margin-top: 24px;
    padding: 62px;
  }
  .thanks-descr {
    margin-top: 24px;
    font-size: 18px;
  }
  .thanks-link {
    margin-top: 42px;
    width: 227px;
    height: 58px;
    font-size: 18px;
  }
  .thanks .calculation__max {
    margin-top: 48px;
  }
  .error-wrap {
    margin-top: 24px;
    padding: 62px;
    grid-template-columns: 7fr 5fr;
  }
  .error-descr {
    margin-top: 24px;
    font-size: 18px;
  }
  .error-link {
    margin-top: 42px;
    width: 227px;
    height: 58px;
    font-size: 18px;
  }
  .error .calculation__max {
    margin-top: 48px;
  }
}
@media (max-width: 1180px) {
  .blog {
    margin-top: 32px;
  }
  .blog-descr {
    margin-top: 24px;
  }
  .blog__tabs {
    margin-top: 32px;
  }
  .blog__tabs-btn {
    font-size: 18px;
  }
  .blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .sistem {
    margin-top: 32px;
  }
  .thanks-wrap {
    border-radius: 42px;
    padding: 42px;
  }
  .thanks .calculation__max {
    margin-top: 241px;
  }
  .error-wrap {
    border-radius: 42px;
    padding: 42px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .error-img {
    width: 68%;
    justify-self: end;
    margin-top: -25px;
  }
}
@media (max-width: 680px) {
  .blog {
    margin-top: 24px;
  }
  .blog-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .blog__tabs {
    gap: 14px;
  }
  .blog__tabs-btn {
    padding: 18px 24px;
  }
  .blog-wrap {
    margin-top: 24px;
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .blog-more {
    width: 100%;
    height: 58px;
    font-size: 18px;
  }
  .sistem {
    margin-top: 24px;
  }
  .sistem-text {
    margin-top: 32px;
    font-size: 16px;
  }
  .sistem-text h2, .sistem-text h3, .sistem-text h4, .sistem-text h5, .sistem-text h6 {
    margin-bottom: 16px;
    margin-top: 16px;
  }
  .thanks-wrap {
    border-radius: 32px;
    padding: 26px;
  }
  .thanks-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .thanks-link {
    width: 100%;
  }
  .thanks .calculation__max {
    margin-top: 302px;
  }
  .error-wrap {
    border-radius: 32px;
    padding: 26px;
    gap: 32px;
  }
  .error-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .error-link {
    width: 100%;
  }
  .error-img {
    width: 100%;
    justify-self: center;
    margin-top: 0;
  }
}
.main-promo__slider {
  border-radius: 52px;
}
.main-promo__slider-slide {
  position: relative;
  aspect-ratio: 2.287/1;
  z-index: 1;
  padding: 80px;
}
.main-promo__slider-slide * {
  position: relative;
  z-index: 5;
}
.main-promo__slider-bg {
  background: linear-gradient(130deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.main-promo__slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.main-promo__slider-title {
  font-weight: 500;
  font-size: 62px;
  line-height: 96%;
  color: #fff;
  max-width: 740px;
}
.main-promo__slider-text {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  max-width: 740px;
  margin-top: 32px;
}
.main-promo__slider-bot {
  margin-top: 52px;
  display: flex;
  gap: 24px;
}
.main-promo__slider-btn {
  border-radius: 12px;
  width: 203px;
  height: 60px;
  font-size: 20px;
}
.main-promo__slider-link {
  width: 138px;
  height: 60px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.main-promo__slider-link:hover {
  background: var(--gray);
  color: var(--red);
}
.main-promo__slider-link:active {
  background: var(--red);
  color: #fff;
}
.main-promo__slider-pagination {
  position: absolute;
  left: 80px !important;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-promo__slider-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.main-promo__slider-pagination .swiper-pagination-bullet-active path {
  fill: var(--red);
  fill-opacity: 1;
}
.main-promo__slider-nav {
  position: absolute;
  right: 80px;
  bottom: 80px;
  z-index: 5;
  display: flex;
  gap: 18px;
}
.main-promo__slider-nav button {
  border-radius: 10px;
  background: #fff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-promo__slider-nav button:hover {
  background: var(--red);
}
.main-promo__slider-nav button:hover path {
  fill: #fff;
}
.main-promo__slider-nav button:active {
  background: #bc171f;
}
.main-promo__slider-prev {
  transform: rotate(180deg);
}

@media (max-width: 1380px) {
  :root {
    --swiper-pagination-bottom: 75px;
  }
  .main-promo__slider-slide {
    padding: 60px;
  }
  .main-promo__slider-title {
    font-size: 42px;
  }
  .main-promo__slider-text {
    font-size: 18px;
    margin-top: 24px;
  }
  .main-promo__slider-bot {
    margin-top: 42px;
  }
  .main-promo__slider-btn {
    width: 187px;
    height: 58px;
    font-size: 18px;
  }
  .main-promo__slider-link {
    width: 128px;
    height: 58px;
    font-size: 18px;
  }
  .main-promo__slider-pagination {
    left: 60px !important;
  }
  .main-promo__slider-nav {
    right: 60px;
    bottom: 60px;
  }
}
@media (max-width: 1180px) {
  :root {
    --swiper-pagination-bottom: 57px;
  }
  .main-promo__slider {
    border-radius: 42px;
  }
  .main-promo__slider-slide {
    aspect-ratio: auto;
    padding: 42px;
    height: 660px;
  }
  .main-promo__slider-pagination {
    left: 42px !important;
  }
  .main-promo__slider-nav {
    right: 42px;
    bottom: 42px;
  }
}
@media (max-width: 680px) {
  :root {
    --swiper-pagination-bottom: 39px;
  }
  .main-promo__slider {
    border-radius: 32px;
  }
  .main-promo__slider-slide {
    padding: 26px;
    /* height: 738px; */
    min-height: 80vh;
  }
  .main-promo__slider-title {
    font-size: 28px;
    word-break: break-word;
  }
  .main-promo__slider-text {
    font-size: 17px;
    margin-top: 14px;
  }
  .main-promo__slider-bot {
    gap: 14px;
    display: grid;
  }
  .main-promo__slider-btn {
    width: 100%;
  }
  .main-promo__slider-link {
    width: 100%;
  }
  .main-promo__slider-pagination {
    left: 26px !important;
  }
  .main-promo__slider-nav {
    right: 26px;
    bottom: 26px;
  }
  .main-promo__slider-nav button {
    width: 50px;
    height: 50px;
  }
}
.main-servises-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.main-servises__card {
  position: relative;
  aspect-ratio: 1.488/1;
  background: #f5f5f5;
  border-radius: 24px;
  padding: 38px;
  overflow: hidden;
}
.main-servises__card:hover .main-servises__card-more {
  color: var(--red);
}
.main-servises__card:hover .main-servises__card-icon {
  transform: translateX(4px);
}
.main-servises__card:hover .main-servises__card-bg path {
  fill: var(--red);
}
.main-servises__card:active .main-servises__card-icon {
  background: var(--red);
}
.main-servises__card:active .main-servises__card-icon path {
  fill: #fff;
}
.main-servises__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7;
}
.main-servises__card-title {
  font-size: 22px;
  line-height: 120%;
  position: relative;
  z-index: 5;
}
.main-servises__card-descr {
  margin-top: 12px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  position: relative;
  z-index: 5;
}
.main-servises__card-label {
  margin-top: 24px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  font-size: 16px;
  width: max-content;
  color: var(--red);
  position: relative;
  z-index: 5;
}
.main-servises__card-more {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  left: 38px;
  bottom: 38px;
  z-index: 5;
  transition: var(--transition);
}
.main-servises__card-icon {
  border-radius: 8px;
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.main-servises__card-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
.main-servises__card-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

@media (max-width: 1630px) {
  .main-servises__card {
    aspect-ratio: 1.041/1;
  }
  .main-servises__card-img {
    width: 215px;
  }
  .main-servises__card-bg {
    width: 298px;
  }
}
@media (max-width: 1380px) {
  .main-servises-wrap {
    margin-top: 42px;
    gap: 30px;
  }
  .main-servises__card {
    padding: 32px;
  }
  .main-servises__card-descr {
    font-size: 16px;
  }
  .main-servises__card-label {
    margin-top: 20px;
    font-size: 15px;
  }
  .main-servises__card-more {
    gap: 14px;
    font-size: 16px;
    left: 32px;
    bottom: 32px;
  }
  .main-servises__card-icon {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1240px) {
  .main-servises-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-servises__card {
    aspect-ratio: 1;
  }
  .main-servises__card-title {
    font-size: 20px;
  }
  .main-servises__card-label {
    margin-top: 20px;
    font-size: 15px;
  }
  .main-servises__card-more {
    gap: 14px;
    font-size: 16px;
    left: 32px;
    bottom: 32px;
  }
  .main-servises__card-text {
    display: none;
  }
  .main-servises__card-icon {
    width: 36px;
    height: 36px;
  }
  .main-servises__card-bg {
    width: 298px;
  }
  .main-servises__card-img {
    width: 215px;
  }
}
@media (max-width: 740px) {
  .main-servises-wrap {
    margin-top: 28px;
    gap: 24px;
  }
  .main-servises__card {
    border-radius: 0;
    padding: 0px;
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    aspect-ratio: auto;
    background: transparent;
    gap: 12px;
  }
  .main-servises__card-title {
    font-size: 16px;
  }
  .main-servises__card-descr {
    display: none;
  }
  .main-servises__card-label {
    display: none;
  }
  .main-servises__card-more {
    position: static;
    gap: 12px;
    font-size: 15px;
    margin-top: 10px;
  }
  .main-servises__card-text {
    display: block;
  }
  .main-servises__card-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
    background: var(--gray);
  }
  .main-servises__card-bg {
    width: auto;
    right: 50%;
    transform: translateX(50%);
    max-width: none;
  }
  .main-servises__card-img {
    width: 85%;
    right: -7px;
  }
  .main-servises__card-bot {
    aspect-ratio: 1;
    position: relative;
    background: #f5f5f5;
    border-radius: 20px;
    overflow: hidden;
  }
}
@media (max-width: 520px) {
  .main-servises__card-img {
    width: 154px;
    right: -7px;
  }
  .main-servises__card-bg {
    width: auto;
    height: 125px;
    right: 50%;
    transform: translateX(50%);
    max-width: none;
  }
}
.main-about {
  background: #f5f5f5;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.main-about-title {
  font-weight: 500;
  font-size: 42px;
  max-width: 652px;
  line-height: 100%;
  position: relative;
  z-index: 1;
}
.main-about-text {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-top: 52px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  position: relative;
  z-index: 1;
}
.main-about-bot {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.main-about-icon {
  border-radius: 12px;
  background: var(--red);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-about-bold {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.main-about-gray {
  margin-top: 10px;
  font-weight: 300;
  font-size: 15px;
  line-height: 100%;
  color: #b4b4b4;
}
.main-about-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 1780px) {
  .main-about-img {
    width: 958px;
  }
}
@media (max-width: 1560px) {
  .main-about-text {
    max-width: 484px;
  }
}
@media (max-width: 1380px) {
  .main-about {
    padding: 80px 0;
  }
  .main-about-title {
    font-size: 36px;
    max-width: 890px;
  }
  .main-about-text {
    margin-top: 42px;
  }
  .main-about-img {
    right: -59px;
    max-width: 75%;
  }
}
@media (max-width: 1180px) {
  .main-about {
    padding-bottom: 0;
  }
  .main-about-title {
    max-width: none;
  }
  .main-about-img {
    position: static;
    margin-top: 52px;
    width: 113%;
    margin-left: -99px;
    max-width: none;
  }
}
@media (max-width: 680px) {
  .main-about {
    padding-top: 60px;
  }
  .main-about-title {
    font-size: 26px;
  }
  .main-about-text {
    gap: 17px;
    margin-top: 28px;
    font-size: 17px;
  }
  .main-about-bot {
    margin-top: 28px;
  }
  .main-about-icon {
    border-radius: 10px;
    width: 50px;
    height: 50px;
  }
  .main-about-bold {
    font-size: 17px;
  }
  .main-about-img {
    margin-top: 40px;
    width: 128%;
    margin-left: -74px;
  }
}
.main-projects-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-projects-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  line-height: 100%;
  transition: var(--transition);
  flex-shrink: 0;
}
.main-projects-link:hover {
  color: var(--red);
}
.main-projects-link:hover span {
  transform: translateX(4px);
}
.main-projects-link:active span {
  background: var(--red);
}
.main-projects-link:active span path {
  fill: #fff;
}
.main-projects-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 40px;
  height: 40px;
  transition: var(--transition);
}
.main-projects-link.media {
  display: none;
}
.main-projects-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, calc(30% + 30px));
  gap: 40px;
}

@media (max-width: 1380px) {
  .main-projects-wrap {
    margin-top: 42px;
    gap: 30px;
    grid-template-columns: repeat(3, calc(30% + 20px));
  }
}
@media (max-width: 1180px) {
  .main-projects-wrap {
    grid-template-columns: repeat(2, calc(50% - 15px));
    gap: 30px;
  }
  .main-projects-wrap .project-card:nth-child(3) {
    display: none;
  }
}
@media (max-width: 680px) {
  .main-projects-link {
    display: none;
  }
  .main-projects-link.media {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    width: 100%;
    height: 58px;
  }
  .main-projects-wrap {
    margin-top: 28px;
    grid-template-columns: 100%;
    gap: 64px;
  }
}
.main-blog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-blog-link {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  line-height: 100%;
  flex-shrink: 0;
}
.main-blog-link:hover {
  color: var(--red);
}
.main-blog-link:hover span {
  transform: translateX(4px);
}
.main-blog-link:active span {
  background: var(--red);
}
.main-blog-link:active span path {
  fill: #fff;
}
.main-blog-link span {
  border-radius: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  transition: var(--transition);
}
.main-blog-link.media {
  display: none;
}
.main-blog-text {
  margin-top: 18px;
  font-weight: 300;
  font-size: 18px;
  line-height: 96%;
}
.main-blog-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

@media (max-width: 1380px) {
  .main-blog-text {
    margin-top: 16px;
  }
  .main-blog-wrap {
    margin-top: 42px;
    gap: 30px;
  }
}
@media (max-width: 1180px) {
  .main-blog-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .main-blog-wrap .blog__card:nth-child(3) {
    display: none;
  }
}
@media (max-width: 680px) {
  .main-blog-link {
    display: none;
  }
  .main-blog-link.media {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    width: 100%;
    height: 58px;
  }
  .main-blog-text {
    font-size: 16px;
  }
  .main-blog-wrap {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.project-card__slider-slide {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
}
.project-card__slider-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-card__thumb {
  margin-top: 14px;
}
.project-card__thumb-slide {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 126px;
  height: 71px;
  cursor: pointer;
}
.project-card__thumb-slide::after {
  content: '';
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: var(--transition);
  position: absolute;
  opacity: 0.1;
}
.project-card__thumb-slide:hover::after {
  background: var(--red);
}
.swiper-slide-thumb-active.project-card__thumb-slide::after {
  background: var(--red);
  opacity: 0.3;
}
.project-card__thumb-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.project-card-name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.project-card-descr {
  margin-top: 10px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.project-card__labels {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.project-card__labels-label {
  border: 2px solid var(--gray);
  border-radius: 10px;
  padding: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  position: relative;
}
.project-card__labels-label sup {
  position: absolute;
  top: 5px;
  right: 5px;
}
.project-card-link {
  margin-top: 24px;
  background: var(--gray);
  border-radius: 12px;
  width: 100%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 100%;
  color: var(--red);
}
.project-card-link:hover {
  background: #DEDEDE;
}
.project-card-link:active {
  background: var(--red);
  color: #fff;
}

@media (max-width: 1380px) {
  .project-card {
    gap: 16px;
  }
  .project-card__thumb {
    margin-top: 10px;
  }
  .project-card__thumb-slide {
    border-radius: 8px;
    width: 87px;
    height: 53px;
  }
  .project-card-name {
    margin-top: 18px;
    font-size: 20px;
  }
  .project-card-descr {
    font-size: 16px;
  }
  .project-card__labels-label {
    font-size: 16px;
  }
  .project-card-link {
    margin-top: 20px;
    height: 58px;
    font-size: 18px;
  }
}
@media (max-width: 1180px) {
  .project-card__thumb {
    margin-top: 14px;
  }
  .project-card__thumb-slide {
    width: 103px;
    height: 64px;
  }
}
@media (max-width: 680px) {
  .project-card__thumb-slide {
    width: 111px;
    height: 68px;
  }
  .project-card-name {
    margin-top: 24px;
  }
}
.roof-promo-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 52px;
  min-height: 806px;
  padding: 80px;
}
.roof-promo-blur {
  background: linear-gradient(98.97deg, #000 -34.4%, rgba(0, 0, 0, 0) 102.65%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.roof-promo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.roof-promo-box {
  position: relative;
  z-index: 3;
}
.roof-promo-subtitle {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}
.roof-promo__form {
  margin-top: 100px;
  width: 640px;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
}
.roof-promo__form-title {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  max-width: 450px;
}
.roof-promo__form-inp {
  margin-top: 20px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 20px 24px;
  width: 100%;
  height: 62px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--black);
}
.roof-promo__form-inp::placeholder {
  color: #b4b4b4;
}
.roof-promo__form-btn {
  margin-top: 20px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}

@media (max-width: 1380px) {
  .roof-promo-wrap {
    min-height: 682px;
    padding: 60px;
  }
  .roof-promo-subtitle {
    margin-top: 24px;
    font-size: 18px;
  }
  .roof-promo__form {
    margin-top: 42px;
    width: 440px;
  }
}
@media (max-width: 1180px) {
  .roof-promo-wrap {
    border-radius: 42px;
    min-height: 634px;
    padding: 42px;
  }
  .roof-promo__form {
    margin-top: 32px;
  }
  .roof-promo__form-btn {
    height: 58px;
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .roof-promo-wrap {
    border-radius: 32px;
    min-height: 674px;
    padding: 26px;
  }
  .roof-promo-subtitle {
    margin-top: 14px;
    font-size: 17px;
  }
  .roof-promo__form {
    margin-top: 42px;
    width: 100%;
    padding: 24px;
  }
  .roof-promo__form-title {
    font-size: 16px;
  }
  .roof-promo__form-inp {
    margin-top: 16px;
    height: 59px;
    font-size: 16px;
  }
  .roof-promo__form-btn {
    margin-top: 16px;
    height: 56px;
    font-size: 16px;
  }
}
.roof-about-text {
  margin-top: 52px;
  font-weight: 300;
  font-size: 24px;
  line-height: 140%;
  max-width: 970px;
}
.roof-about__tabs {
  margin-top: 62px;
}
.roof-about__tabs-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 28px;
}
.roof-about__tabs-item {
  border: 1px solid var(--gray);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.roof-about__tabs-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--gray);
}
.roof-about__tabs-black {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
.roof-about__tabs-gray {
  margin-top: 3px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #a5a5a5;
}
.roof-about__tabs-bot {
  display: none;
}
.roof-about-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
}
.roof-about-wrap .roof-about-text {
  margin: 0;
  max-width: 920px;
}
.roof-about__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 16px;
}

@media (max-width: 1380px) {
  .roof-about-text {
    margin-top: 42px;
    font-size: 22px;
    max-width: 100%;
  }
  .roof-about__tabs {
    margin-top: 52px;
  }
  .roof-about__tabs-wrap {
    column-gap: 30px;
  }
  .roof-about__tabs-item {
    padding: 24px;
  }
  .roof-about-wrap {
    margin-top: 42px;
  }
}
@media (max-width: 1180px) {
  .roof-about-text {
    font-size: 20px;
  }
  .roof-about__tabs {
    margin-top: 42px;
  }
  .roof-about__tabs-item {
    gap: 49px;
    flex-direction: column;
    align-items: start;
  }
  .roof-about__tabs-black {
    font-size: 18px;
  }
  .roof-about-wrap {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .roof-about__images {
    grid-template-columns: repeat(2, 230px);
  }
}
@media (max-width: 760px) {
  .roof-about__tabs {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .roof-about__tabs-wrap {
    display: flex;
    gap: 0;
  }
  .roof-about__tabs-item {
    border-radius: 18px;
    gap: 24px;
    width: 270px;
    height: 191px;
  }
  .roof-about__tabs-bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
  }
  .roof-about__tabs-gray {
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #8e8c8c;
  }
  .roof-about__tabs-nav {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .roof-about-wrap {
    margin-top: 32px;
  }
  .roof-about__images {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
  .roof-about-text {
    margin-top: 32px;
    font-size: 18px;
  }
}
.roof-materials-top {
  display: flex;
  justify-content: space-between;
}
.roof-materials__slider {
  padding-left: calc((100% - 1688px) / 2);
  padding-right: calc((100% - 1688px) / 2);
  margin-top: 54px;
}
.roof-materials__slider-box {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #8e8c8c;
  flex-shrink: 0;
}
.roof-materials__slider-box span {
  white-space: nowrap;
}
.roof-materials__slider-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.roof-materials__slider-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 42px;
  height: 42px;
}
.roof-materials__slider-nav button:hover {
  background: var(--red);
}
.roof-materials__slider-nav button:hover path {
  fill: #fff;
}
.roof-materials__slider-nav button:active {
  background: #bc171f;
}
.roof-materials__slider-slide {
  width: 536px;
}
.roof-materials__slider-slide:hover .roof-materials__slider-more {
  color: var(--red);
}
.roof-materials__slider-slide:hover .roof-materials__slider-icon {
  transform: translateX(4px);
}
.roof-materials__slider-slide:active .roof-materials__slider-icon {
  background: var(--red);
}
.roof-materials__slider-slide:active .roof-materials__slider-icon path {
  fill: #fff;
}
.roof-materials__slider-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--gray);
  border-radius: 24px;
}
.roof-materials__slider-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.roof-materials__slider-name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-align: left;
}
.roof-materials__slider-more {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  transition: var(--transition);
}
.roof-materials__slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 40px;
  height: 40px;
  transition: var(--transition);
}

@media (max-width: 1768px) {
  .roof-materials__slider {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1380px) {
  .roof-materials__slider {
    margin-top: 42px;
  }
  .roof-materials__slider-slide {
    width: 380px;
  }
  .roof-materials__slider-name {
    margin-top: 20px;
    font-size: 20px;
  }
  .roof-materials__slider-more {
    margin-top: 12px;
    font-size: 16px;
  }
  .roof-materials__slider-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1180px) {
  .roof-materials-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .roof-materials__slider-box {
    justify-content: space-between;
  }
  .roof-materials__slider-slide {
    width: 330px;
  }
}
@media (max-width: 680px) {
  .roof-materials {
    position: relative;
    padding-bottom: 51px;
  }
  .roof-materials__slider {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 32px;
  }
  .roof-materials__slider-box {
    font-size: 15px;
    position: absolute;
    left: 18px;
    bottom: 0;
    width: calc(100% - 36px);
  }
  .roof-materials__slider-nav button {
    border-radius: 0;
    background: transparent;
    width: max-content;
    height: max-content;
  }
  .roof-materials__slider-nav button:hover {
    background: #fff;
  }
  .roof-materials__slider-nav button:hover path {
    fill: var(--red);
  }
  .roof-materials__slider-slide {
    width: 354px;
  }
  .roof-materials__slider-name {
    margin-top: 24px;
  }
  .roof-materials__slider-more {
    margin-top: 10px;
    font-size: 15px;
  }
  .roof-materials__slider-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
  }
  .roof-materials__slider-icon svg {
    width: 14px;
    height: 14px;
  }
}
.step {
  padding: 100px 0;
  background: #f5f5f5;
}
.step-wrap {
  display: grid;
  grid-template-columns: 1fr 824px;
  gap: 40px;
  margin-top: 52px;
}
.step__nums {
  margin: 0;
  max-width: 680px;
}
.step__nums-wrap {
  display: grid;
  gap: 24px;
  transform: translate(0) !important;
  height: max-content;
}
.step__nums-arrow {
  display: none;
}
.step__nums-item {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  max-height: 94px;
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.step__nums-item.swiper-slide-thumb-active {
  background: #e9e9e9;
  max-height: 250px !important;
}
.step__nums-item.swiper-slide-thumb-active .step__nums-box {
  align-items: start;
}
.step__nums-item.swiper-slide-thumb-active .step__nums-icon {
  background: var(--red);
  color: #fff;
}
.step__nums-item.swiper-slide-thumb-active .step__nums-descr {
  margin-top: 14px;
  max-height: 50px;
}
.step__nums-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.step__nums-img {
  display: none;
}
.step__nums-icon {
  border-radius: 6px;
  width: 30px;
  height: 30px;
  background: var(--gray);
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.step__nums-black {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.step__nums-descr {
  max-height: 0;
  transition: var(--transition);
  overflow: hidden;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.step__nums-btn {
  width: 187px;
  height: 54px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  flex-shrink: 0;
}
.step__photo {
  max-width: 824px;
  margin: 0;
  border-radius: 52px;
  position: relative;
}
.step__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step__photo-nav {
  position: absolute;
  top: 50%;
  left: 42px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 84px);
}
.step__photo-nav button {
  border-radius: 10px;
  width: 54px;
  height: 54px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__photo-nav button:hover {
  background: var(--red);
}
.step__photo-nav button:hover path {
  fill: #fff;
}
.step__photo-nav button:active {
  background: #bc171f;
}

@media (max-width: 1480px) {
  .step {
    padding: 80px 0;
  }
  .step-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 42px;
  }
  .step__nums-item {
    padding: 32px 24px;
  }
  .step__photo {
    border-radius: 42px;
    aspect-ratio: 1.11/1;
  }
  .step__photo-nav {
    left: 24px;
    width: calc(100% - 48px);
  }
}
@media (max-width: 1180px) {
  .step-wrap {
    grid-template-columns: 1fr 54px;
  }
  .step__nums {
    max-width: 568px;
  }
  .step__nums-item {
    flex-direction: column;
  }
  .step__nums-item.swiper-slide-active {
    max-height: 1000px !important;
    background: #e9e9e9;
  }
  .step__nums-item.swiper-slide-active .step__nums-box {
    align-items: start;
  }
  .step__nums-item.swiper-slide-active .step__nums-icon {
    background: var(--red);
    color: #fff;
  }
  .step__nums-item.swiper-slide-active .step__nums-descr {
    margin-top: 14px;
    max-height: 50px;
  }
  .step__nums-item.swiper-slide-active .step__nums-img {
    margin-top: 24px;
    opacity: 1;
  }
  .step__nums-item.open {
    max-height: 1000px !important;
    background: #e9e9e9;
  }
  .step__nums-item.open .step__nums-box {
    align-items: start;
  }
  .step__nums-item.open .step__nums-icon {
    background: var(--red);
    color: #fff;
  }
  .step__nums-item.open .step__nums-descr {
    margin-top: 14px;
    max-height: 50px;
  }
  .step__nums-item.open .step__nums-img {
    margin-top: 24px;
    opacity: 1;
  }
  .step__nums-item:first-child .step__nums-box {
    transform: translateY(-10px);
  }
  .step__nums-img {
    display: block;
    aspect-ratio: 1.11/1;
    transition: var(--transition);
    opacity: 0;
    border-radius: 28px;
  }
  .step__photo {
    border-radius: 0;
    aspect-ratio: auto;
    height: max-content;
    position: sticky;
    top: 40px;
  }
  .step__photo-wrap {
    display: none;
  }
  .step__photo-nav {
    position: static;
    left: auto;
    top: 40px;
    width: max-content;
    flex-direction: column;
    transform: translate(0);
    gap: 24px;
  }
  .step__photo-prev {
    transform: rotate(90deg);
  }
  .step__photo-next {
    transform: rotate(90deg);
  }
}
@media (max-width: 680px) {
  .step {
    padding: 60px 0;
  }
  .step-wrap {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
  .step__nums {
    max-width: 100%;
  }
  .step__nums-wrap {
    gap: 14px;
  }
  .step__nums-arrow {
    display: block;
    position: absolute;
    top: 29px;
    right: 32px;
  }
  .step__nums-item {
    padding: 24px;
    max-height: 78px;
  }
  .step__nums-item.open .step__nums-arrow {
    transform: rotate3d(1, 0, 0, -180deg);
  }
  .step__nums-item.open .step__nums-arrow path {
    fill-opacity: 1;
  }
  .step__nums-item.open .step__nums-img {
    margin-top: 24px;
    opacity: 1;
  }
  .step__nums-item:first-child {
    max-height: 150px;
  }
  .step__nums-item:first-child .step__nums-box {
    transform: translateY(0);
  }
  .step__nums-box {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 12px;
    row-gap: 20px;
  }
  .step__nums-black {
    font-size: 18px;
    width: calc(100% - 32px);
  }
  .step__nums-descr {
    width: calc(100% - 32px);
  }
  .step__nums-btn {
    width: 266px;
    height: 52px;
    font-size: 16px;
  }
  .step__nums-img {
    aspect-ratio: 1;
  }
  .step__photo {
    display: none;
  }
}
.option-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.option__item {
  display: grid;
}
.option__item:hover .option__item-bot {
  color: var(--red);
}
.option__item:hover .option__item-icon {
  transform: translateX(4px);
}
.option__item:active .option__item-icon {
  background: var(--red);
}
.option__item:active .option__item-icon path {
  fill: #fff;
}
.option__item-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 24px;
  position: relative;
}
.option__item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.option__item-name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  text-align: left;
}
.option__item-descr {
  margin-top: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  text-align: left;
}
.option__item-bot {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  transition: var(--transition);
}
.option__item-icon {
  border-radius: 10px;
  background: var(--gray);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

@media (max-width: 1380px) {
  .option-wrap {
    margin-top: 42px;
    gap: 30px;
  }
  .option__item-name {
    margin-top: 20px;
    font-size: 20px;
  }
  .option__item-descr {
    margin-top: 10px;
  }
  .option__item-bot {
    margin-top: 12px;
    font-size: 16px;
  }
  .option__item-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1180px) {
  .option__item-descr {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .option-wrap {
    margin-top: 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.reconstruction-wrap {
  margin-top: 52px;
}
.reconstruction__btns {
  display: none;
}
.reconstruction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.reconstruction__card {
  background: var(--gray);
  border-radius: 52px;
  padding: 52px;
}
.reconstruction__card-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 120%;
}
.reconstruction__card-list {
  margin-top: 42px;
  display: grid;
  gap: 24px;
}
.reconstruction__card-item {
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
}
.reconstruction__card-item:last-child {
  padding: 0 !important;
  border: none !important;
}
.reconstruction__card-item.open {
  cursor: default;
}
.reconstruction__card-item.open .reconstruction__card-top {
  color: var(--red);
}
.reconstruction__card-item.open svg {
  transform: rotate3d(1, 0, 0, -180deg);
}
.reconstruction__card-item.open path {
  fill-opacity: 1;
}
.reconstruction__card-item.open .reconstruction__card-descr {
  opacity: 1;
  max-height: 250px;
  margin-top: 12px;
}
.reconstruction__card-top {
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  gap: 32px;
}
.reconstruction__card-top span {
  transition: var(--transition);
}
.reconstruction__card-top svg {
  flex-shrink: 0;
}
.reconstruction__card-descr {
  font-weight: 300;
  font-size: 17px;
  line-height: 140%;
  transition: var(--transition);
  max-height: 0px;
  opacity: 0;
  width: calc(100% - 36px);
}
.reconstruction__tabs {
  margin-top: 42px;
  display: flex;
  gap: 24px;
}
.reconstruction__tabs-btn {
  background: var(--gray);
  border-radius: 12px;
  padding: 20px 32px;
  width: max-content;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--red);
}
.reconstruction__tabs-btn.active {
  background: var(--red);
  color: #fff;
}
.reconstruction__work {
  margin-top: 32px;
  display: none;
}
.reconstruction__work.active {
  display: block;
}

@media (max-width: 1380px) {
  .reconstruction-wrap {
    margin-top: 42px;
  }
  .reconstruction-grid {
    gap: 30px;
  }
  .reconstruction__card {
    border-radius: 42px;
    padding: 42px;
  }
  .reconstruction__tabs-btn {
    font-size: 18px;
  }
  .reconstruction__work {
    margin-top: 24px;
  }
}
@media (max-width: 1180px) {
  .reconstruction-wrap {
    background: var(--gray);
    border-radius: 42px;
    padding: 42px;
  }
  .reconstruction__btns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .reconstruction__btns-btn {
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: var(--red);
  }
  .reconstruction__btns-btn.active {
    background: var(--red);
    color: #fff;
  }
  .reconstruction-grid {
    display: block;
  }
  .reconstruction__card {
    border-radius: 0;
    padding: 0;
    display: none;
  }
  .reconstruction__card.active {
    display: block;
  }
  .reconstruction__card-title {
    display: none;
  }
  .reconstruction__card-list {
    margin-top: 32px;
  }
  .reconstruction__tabs {
    margin-top: 32px;
  }
  .reconstruction__tabs-btn {
    padding: 18px 32px;
  }
  .reconstruction__work {
    margin-top: 32px;
  }
}
@media (max-width: 680px) {
  .reconstruction-wrap {
    margin-top: 32px;
    border-radius: 32px;
    padding: 26px;
  }
  .reconstruction__btns {
    gap: 18px;
  }
  .reconstruction__btns-btn {
    height: 52px;
    font-size: 16px;
  }
  .reconstruction__card-list {
    gap: 20px;
  }
  .reconstruction__card-item {
    padding-bottom: 20px;
  }
  .reconstruction__card-top {
    font-size: 18px;
  }
  .reconstruction__card-descr {
    font-size: 16px;
  }
  .reconstruction__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .reconstruction__tabs-btn {
    width: 100%;
  }
  .reconstruction__work {
    margin-top: 24px;
  }
}
.work__form {
  margin-top: 52px;
  position: relative;
  z-index: 5;
  background: #fff;
  border-radius: 24px;
  padding: 52px;
  max-width: 680px;
}
.work__form .application__form-duo {
  margin: 0;
}
.work__var {
  position: relative;
}
.work__var.open .work__var-list {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  overflow-y: auto;
}
.work__var.open .work__var-btn svg {
  transform: rotate3d(1, 0, 0, -180deg);
}
.work__var.open .work__var-btn svg path {
  fill: var(--red);
}
.work__var:has(.just-validate-error-field) .work__var-btn {
  border-color: var(--red);
}
.work__var-btn {
  margin-top: 14px;
  border: 1px solid var(--gray);
  border-radius: 10px;
  padding: 20px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #b4b4b4;
}
.work__var-list {
  position: absolute;
  bottom: -10px;
  transform: translateY(100%);
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  gap: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  z-index: 10;
  background: #fff;
  box-shadow: 0px 20px 40px -10px rgba(34, 60, 80, 0.25);
  transition: var(--transition);
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
}
.work__var-item {
  cursor: pointer;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 12px;
}
.work__var-item:last-child {
  padding: 0;
  border: none;
}

@media (max-width: 1380px) {
  .work__form {
    margin-top: 42px;
    padding: 42px;
    max-width: 484px;
  }
  .work__var-btn {
    padding: 20px;
  }
}
@media (max-width: 1180px) {
  .work__form {
    padding: 32px;
    max-width: 100%;
  }
}
@media (max-width: 680px) {
  .work__form {
    margin-top: 32px;
    padding: 26px;
  }
}
.other-step {
  overflow: hidden;
  position: relative;
  padding: 100px 0;
  height: 100vh;
}
.other-step .container {
  height: 100%;
}
.other-step-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(38.63deg, #000 -8.66%, rgba(0, 0, 0, 0) 108.43%);
}
.other-step-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.other-step-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.other-step-title {
  font-weight: 500;
  font-size: 42px;
  line-height: 100%;
  color: #fff;
  position: relative;
  z-index: 3;
}
.other-step__slider {
  /* margin-top: 363px; */
  position: relative;
  z-index: 3;
  /* padding-left: calc((100% - 1688px) / 2);
  padding-right: calc((100% - 1688px) / 2); */
}
.other-step__slider-wrap {
  display: flex;
  gap: 40px;
}
.other-step__slider-card {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  width: 412px;
  height: auto;
  flex-shrink: 0;
}
.other-step__slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
  color: var(--red);
}
.other-step__slider-title {
  margin-top: 42px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.other-step__slider-text {
  margin-top: 14px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}

/* @media (max-width: 1768px) {
  .other-step__slider {
    padding-left: 40px;
    padding-right: 40px;
  }
} */
@media (max-width: 1380px) {
  .other-step {
    padding: 80px 0;
  }
  .other-step-title {
    font-size: 36px;
  }
  .other-step__slider {
    /* margin-top: 187px; */
  }
  .other-step__slider-wrap {
    gap: 30px;
  }
  .other-step__slider-card {
    padding: 32px;
    width: 380px;
  }
}
@media (max-width: 1180px) {
  .other-step__slider {
    /* margin-top: 295px; */
  }
  .other-step__slider-card {
    width: 380px;
  }
  .other-step__slider-title {
    margin-top: 32px;
  }
}
@media (max-width: 680px) {
  .other-step {
    padding: 60px 0;
  }
  .other-step-title {
    font-size: 26px;
  }
  .other-step__slider {
    /* margin-top: 218px; */
    /* padding-left: 18px;
    padding-right: 18px; */
  }
  .other-step__slider-wrap {
    gap: 24px;
  }
  .other-step__slider-card {
    padding: 26px;
    width: 300px;
  }
  .other-step__slider-title {
    font-size: 18px;
  }
  .other-step__slider-text {
    font-size: 16px;
  }
}
.about-promo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: -116px;
  padding-top: 136px;
}
.about-promo-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(105.98deg, #000 -32.72%, rgba(0, 0, 0, 0) 152.12%);
}
.about-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.about-promo .container {
  position: relative;
  z-index: 3;
}
.about-promo-descr {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  max-width: 608px;
}
.about-promo-btn {
  width: 211px;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-top: 42px;
}

@media (max-width: 1380px) {
  .about-promo {
    margin-top: -92px;
    padding-top: 122px;
  }
  .about-promo-descr {
    margin-top: 24px;
    font-size: 18px;
    max-width: 611px;
  }
}
@media (max-width: 1180px) {
  .about-promo {
    margin-top: -100px;
    padding-top: 112px;
  }
  .about-promo-btn {
    width: 194px;
    height: 58px;
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .about-promo {
    margin-top: -87px;
    padding-top: 87px;
  }
  .about-promo-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .about-promo-btn {
    width: 177px;
    height: 56px;
    font-size: 16px;
    margin-top: 32px;
  }
}
.about-company .roof-about__tabs {
  margin-top: 0;
}

.personal-descr {
  margin-top: 18px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
}
.personal-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.personal__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--gray);
}
.personal__card-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.personal__card-name {
  margin-top: 18px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.personal__card-post {
  margin-top: 8px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}

@media (max-width: 1380px) {
  .personal-wrap {
    gap: 30px;
  }
}
@media (max-width: 1180px) {
  .personal-wrap {
    margin-top: 42px;
    grid-template-columns: repeat(2, 1fr);
  }
  .personal__card-name {
    margin-top: 20px;
    font-size: 20px;
  }
  .personal__card-post {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .personal-descr {
    margin-top: 14px;
    font-size: 16px;
  }
  .personal-wrap {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
  .personal__card-name {
    margin-top: 16px;
  }
}
.reviews-top {
  display: flex;
  justify-content: space-between;
}
.reviews__slider {
  padding-left: calc((100% - 1688px) / 2);
  padding-right: calc((100% - 1688px) / 2);
  margin-top: 52px;
}
.reviews__slider-box {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #8e8c8c;
  flex-shrink: 0;
}
.reviews__slider-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviews__slider-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 42px;
  height: 42px;
}
.reviews__slider-more {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  position: relative;
  z-index: 3;
  transition: var(--transition);
}
.reviews__slider-nav button:hover {
  background: var(--red);
}
.reviews__slider-nav button:hover path {
  fill: #fff;
}
.reviews__slider-nav button:active {
  background: #bc171f;
}
.reviews__slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  width: 40px;
  height: 40px;
  transition: var(--transition);
}
.reviews__slider-slide {
  position: relative;
  aspect-ratio: 1/1.375;
  overflow: hidden;
  border-radius: 24px;
  background: var(--gray);
  padding: 28px;
  display: flex;
  align-items: end;
}
.reviews__slider-slide:hover .reviews__slider-more {
  color: var(--red);
}
.reviews__slider-slide:hover .reviews__slider-icon {
  transform: translateX(4px);
}
.reviews__slider-slide:active .reviews__slider-icon {
  background: var(--red);
}
.reviews__slider-slide:active .reviews__slider-icon path {
  fill: #fff;
}
.reviews__slider-blur {
  position: absolute;
  background: linear-gradient(360deg, #000 -11.35%, rgba(0, 0, 0, 0) 46.04%);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.reviews__slider-img {
  position: absolute;
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border-radius: 10px;
}
.reviews__slider-video {
  position: absolute;
  object-fit: cover;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 1768px) {
  .reviews__slider {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1380px) {
  .reviews__slider {
    margin-top: 42px;
  }
  .reviews__slider-more {
    margin-top: 12px;
    font-size: 16px;
  }
  .reviews__slider-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 1180px) {
  .reviews-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .reviews__slider-box {
    justify-content: space-between;
  }
  .reviews__slider-slide {
    padding: 32px;
  }
}
@media (max-width: 680px) {
  .reviews {
    position: relative;
    padding-bottom: 51px;
  }
  .reviews__slider {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 32px;
  }
  .reviews__slider-slide {
    border-radius: 18px;
    padding: 20px;
    justify-content: right;
  }
  .reviews__slider-box {
    font-size: 15px;
    position: absolute;
    left: 18px;
    bottom: 0;
    width: calc(100% - 36px);
  }
  .reviews__slider-nav button {
    border-radius: 0;
    background: transparent;
    width: max-content;
    height: max-content;
  }
  .reviews__slider-nav button:hover {
    background: #fff;
  }
  .reviews__slider-nav button:hover path {
    fill: var(--red);
  }
  .reviews__slider-more {
    margin-top: 10px;
  }
  .reviews__slider-more span {
    display: none;
  }
  .reviews__slider-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
  }
  .reviews__slider-icon svg {
    width: 14px;
    height: 14px;
  }
}
.sert-top {
  display: flex;
  justify-content: space-between;
}
.sert__slider {
  padding-left: calc((100% - 1688px) / 2);
  padding-right: calc((100% - 1688px) / 2);
  margin-top: 52px;
}
.sert__slider-box {
  display: flex;
  align-items: center;
  gap: 32px;
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #8e8c8c;
  flex-shrink: 0;
}
.sert__slider-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sert__slider-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 42px;
  height: 42px;
}
.sert__slider-nav button:hover {
  background: var(--red);
}
.sert__slider-nav button:hover path {
  fill: #fff;
}
.sert__slider-nav button:active {
  background: #bc171f;
}
.sert__slider-more {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  transition: var(--transition);
}
.sert__slider-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #fff;
  width: 40px;
  height: 40px;
}
.sert__slider-slide {
  border-radius: 24px;
  padding: 32px;
  background: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  text-align: left;
  height: auto;
}
.sert__slider-slide:hover .sert__slider-more {
  color: var(--red);
}
.sert__slider-slide:hover .sert__slider-icon {
  transform: translateX(4px);
}
.sert__slider-slide:active .reviews__slider-icon {
  background: var(--red);
}
.sert__slider-slide:active .reviews__slider-icon path {
  fill: #fff;
}
.sert__slider-name {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}

@media (max-width: 1768px) {
  .sert__slider {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1380px) {
  .sert__slider {
    margin-top: 42px;
  }
  .sert__slider-more {
    font-size: 16px;
  }
  .sert__slider-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
  .sert__slider-name {
    font-size: 20px;
  }
}
@media (max-width: 1180px) {
  .sert-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .sert__slider-box {
    justify-content: space-between;
  }
  .sert__slider-slide {
    padding: 24px;
  }
  .sert__slider-name {
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .sert {
    position: relative;
    padding-bottom: 51px;
  }
  .sert__slider {
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 32px;
  }
  .sert__slider-slide {
    padding: 20px;
  }
  .sert__slider-box {
    font-size: 15px;
    position: absolute;
    left: 18px;
    bottom: 0;
    width: calc(100% - 36px);
  }
  .sert__slider-nav button {
    border-radius: 0;
    background: transparent;
    width: max-content;
    height: max-content;
  }
  .sert__slider-nav button:hover {
    background: #fff;
  }
  .sert__slider-nav button:hover path {
    fill: var(--red);
  }
  .sert__slider-more {
    margin-top: 10px;
    font-size: 16px;
  }
  .sert__slider-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
  }
  .sert__slider-icon svg {
    width: 14px;
    height: 14px;
  }
}
.projects {
  margin-top: 42px;
}
.projects .breadcrumbs-link, .projects .title {
  color: var(--black);
}
.projects .breadcrumbs-str {
  color: #b4b4b4;
}
.projects-descr {
  margin-top: 32px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}
.projects__filter {
  margin-top: 42px;
  border-radius: 24px;
  padding: 32px;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.projects__filter-mobile {
  display: none;
}
.projects__filter-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.projects__filter-name {
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
}
.projects__filter-select {
  position: relative;
}
.projects__filter-select.open .projects__filter-list {
  opacity: 1;
  visibility: visible;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.15);
  padding: 24px;
}
.projects__filter-select.open .projects__filter-static svg {
  transform: rotate3d(1, 0, 0, -180deg);
}
.projects__filter-select.open .projects__filter-static svg path {
  fill: var(--red);
}
.projects__filter-static {
  background: #fff;
  border-radius: 10px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  /* color: #b4b4b4; */
  cursor: pointer;
  width: 100%;
  gap: 12px;
}
.projects__filter-list {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  max-height: 0px;
  overflow: hidden;
  visibility: hidden;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  display: grid;
  gap: 18px;
  align-items: center;
  transition: var(--transition);
  z-index: 10;
  width: 100%;
  background: #fff;
  padding: 0;
  border-radius: 10px;
}
.projects__filter-var {
  cursor: pointer;
  transition: var(--transition);
  padding-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
}
.projects__filter-var:last-child {
  padding: 0;
  border: none;
}
.projects__filter-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.projects__filter-label {
  border-radius: 10px;
  padding: 20px 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: #a5a5a5;
}
.projects__filter-inp {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--black);
  width: 100%;
}
.projects__filter-inp::placeholder {
  color: #b4b4b4;
}
.projects__filter-btn {
  height: 62px;
  align-self: end;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.projects-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, calc(30% + 30px));
  gap: 40px;
}

@media (max-width: 1380px) {
  .projects__filter {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "projectType projectMaterial" "projectSquare projectBtn";
    column-gap: 30px;
    row-gap: 16px;
  }
  .projects__filter-btn {
    grid-area: projectBtn;
  }
  .projects__filter .square {
    grid-area: projectSquare;
  }
  .projects__filter .material {
    grid-area: projectMaterial;
  }
  .projects__filter .type {
    gap: projectType;
  }
  .projects-wrap {
    gap: 30px;
    grid-template-columns: repeat(3, calc(30% + 17px));
  }
}
@media (max-width: 1180px) {
  .projects {
    margin-top: 32px;
  }
  .projects-descr {
    margin-top: 24px;
  }
  .projects__filter {
    padding: 24px;
  }
  .projects-wrap {
    margin-top: 42px;
    grid-template-columns: repeat(2, calc(50% - 15px));
  }
}
@media (max-width: 680px) {
  .projects {
    margin-top: 24px;
  }
  .projects-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .projects-top {
    position: relative;
  }
  .projects-top.open .projects__filter {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(50%);
  }
  .projects-top.open .projects__filter-mobile {
    background: var(--red);
    color: #fff;
  }
  .projects__filter {
    margin-top: 0;
    grid-template-columns: 1fr;
    grid-template-areas: "projectType" "projectSquare" "projectMaterial" "projectBtn";
    gap: 18px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    z-index: 10;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    width: 100%;
    background: #fff;
  }
  .projects__filter-item {
    gap: 12px;
  }
  .projects__filter-name {
    font-size: 16px;
  }
  .projects__filter-static {
    font-size: 16px;
    border: 1px solid #d9d9d9;
  }
  .projects__filter-list {
    font-size: 16px;
    gap: 16px;
    border: 1px solid #d9d9d9;
  }
  .projects__filter-item.material .projects__filter-list {
    transform: translateX(-50%) translateY(-100%);
    bottom: auto;
    top: -8px;
  }
  .projects__filter-label {
    font-size: 16px;
    border: 1px solid #d9d9d9;
  }
  .projects__filter-inp {
    font-size: 16px;
  }
  .projects__filter-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    width: 100%;
    height: 62px;
    background: var(--gray);
    color: var(--red);
    border-radius: 12px;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
  }
  .projects-wrap {
    grid-template-columns: 100%;
    gap: 64px;
  }
}
.project-promo {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  margin-top: -116px;
  padding-top: 136px;
  padding-bottom: 100px;
}
.project-promo-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(105.98deg, #000 -32.18%, rgba(0, 0, 0, 0) 149.43%);
  backdrop-filter: blur(24px);
}
.project-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
}
.project-promo-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.project-promo-descr {
  margin-top: 42px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}
.project-promo__tabs {
  margin-top: 56px;
  display: grid;
  gap: 8px;
}
.project-promo__tabs-item {
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 300;
  font-size: 18px;
  width: max-content;
  line-height: 140%;
}
.project-promo__tabs-value {
  font-weight: 500;
  color: var(--red);
}
.project-promo-img {
  border-radius: 24px;
  box-shadow: 0 4px 120px 0 rgba(255, 255, 255, 0.4);
  width: 100%;
  object-fit: contain;
  height: max-content;
}

@media (max-width: 1380px) {
  .project-promo {
    margin-top: -92px;
    padding-top: 122px;
    margin-bottom: 80px;
  }
  .project-promo-wrap {
    gap: 30px;
  }
  .project-promo-descr {
    margin-top: 24px;
    font-size: 18px;
  }
  .project-promo__tabs {
    margin-top: 52px;
  }
  .project-promo__tabs-item {
    font-size: 16px;
  }
}
@media (max-width: 1180px) {
  .project-promo {
    margin-top: -100px;
    padding-top: 112px;
  }
  .project-promo-wrap {
    gap: 52px;
    grid-template-columns: 1fr;
  }
  .project-promo__tabs {
    margin-top: 42px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 680px) {
  .project-promo {
    margin-top: -87px;
    padding-top: 87px;
    padding-bottom: 60px;
  }
  .project-promo-wrap {
    gap: 42px;
  }
  .project-promo-descr {
    margin-top: 14px;
    font-size: 17px;
  }
  .project-promo__tabs {
    margin-top: 32px;
  }
}
.project-about-more {
  display: flex;
  align-items: center;
  margin-top: 16px;
  gap: 16px;
  font-weight: 300;
  font-size: 18px;
  line-height: 100%;
  transition: var(--transition);
}
.project-about-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gray);
  width: 40px;
  height: 40px;
  transition: var(--transition);
}
.project-about-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.project-about-text {
  max-width: 968px;
}
.project-about-text .subtitle {
  margin-top: 62px;
}
.project-about-text .subtitle:first-child {
  margin: 0;
}
.project-about-p {
  margin-top: 42px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
}
.project-about-list {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}
.project-about-li {
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  list-style: disc;
  margin-left: 20px;
  padding-left: 4px;
}
.project-about-li::marker {
  color: var(--red);
  content: "—";
}
.project-about__material-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}
.project-about__material-img {
  margin-top: 32px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray);
  aspect-ratio: 16 / 9;
  position: relative;
}
.project-about__material-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.project-about__material-name {
  margin-top: 24px;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
}
.project-about__material-wrap {
  cursor: pointer;
}
.project-about__material-wrap:hover .project-about-more {
  color: var(--red);
}
.project-about__material-wrap:hover .project-about-icon {
  transform: translateX(4px);
}

@media (max-width: 1380px) {
  .project-about-more {
    margin-top: 12px;
    font-size: 16px;
  }
  .project-about-icon {
    border-radius: 8px;
    width: 36px;
    height: 36px;
  }
  .project-about-wrap {
    gap: 30px;
  }
  .project-about__material-title {
    font-size: 22px;
  }
  .project-about__material-img {
    margin-top: 24px;
  }
  .project-about__material-name {
    margin-top: 20px;
    font-size: 20px;
  }
}
@media (max-width: 1180px) {
  .project-about-wrap {
    gap: 42px;
    grid-template-columns: 1fr;
  }
  .project-about-text .subtitle {
    margin-top: 42px;
  }
  .project-about-p {
    margin-top: 32px;
  }
  .project-about-list {
    margin-top: 24px;
    gap: 20px;
  }
  .project-about__material-wrap {
    position: relative;
    margin-top: 24px;
    background: var(--gray);
    border-radius: 24px;
    padding: 24px;
  }
  .project-about__material-img {
    margin-top: 0;
    border-radius: 9px;
    width: 140px;
    height: 79px;
    position: absolute;
    top: 24px;
    right: 24px;
    background: #fff;
  }
  .project-about__material-name {
    margin-top: 0;
  }
}
@media (max-width: 680px) {
  .project-about-more {
    margin-top: 10px;
    font-size: 16px;
  }
  .project-about-icon {
    border-radius: 6px;
    width: 30px;
    height: 30px;
  }
  .project-about-icon svg {
    width: 14px;
    height: 14px;
  }
  .project-about-wrap {
    gap: 32px;
  }
  .project-about-text .subtitle {
    margin-top: 32px;
  }
  .project-about-p {
    margin-top: 24px;
    font-size: 18px;
  }
  .project-about-list {
    gap: 18px;
  }
  .project-about-li {
    font-size: 18px;
    margin-left: 18px;
  }
  .project-about__material-wrap {
    margin-top: 24px;
    border-radius: 0;
    padding: 0;
    background: transparent;
  }
  .project-about__material-img {
    border-radius: 24px;
    width: 100%;
    height: auto;
    position: relative;
    background: var(--gray);
    top: 0;
    right: 0;
  }
  .project-about__material-name {
    margin-top: 24px;
  }
}
.project-foto-wrap {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.project-foto-img {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.project-foto-img:hover img {
  transform: scale(1.2) translate(-50%, -50%);
}
.project-foto-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.project-result {
  margin-top: 62px;
}
.project-result-text {
  margin-top: 42px;
  font-weight: 300;
  font-size: 20px;
  line-height: 140%;
  max-width: 968px;
}

@media (max-width: 1380px) {
  .project-foto-wrap {
    margin-top: 60px;
    gap: 30px;
  }
  .project-result {
    margin-top: 60px;
  }
}
@media (max-width: 1180px) {
  .project-foto-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}
@media (max-width: 680px) {
  .project-foto-wrap {
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .project-foto-img {
    border-radius: 18px;
  }
  .project-result {
    margin-top: 52px;
  }
  .project-result-text {
    margin-top: 24px;
    font-size: 18px;
  }
}
.article {
  margin-top: 42px;
}
.article .breadcrumbs-link, .article .title {
  color: var(--black);
}
.article .breadcrumbs-str {
  color: #b4b4b4;
}
.article-date {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: #b4b4b4;
}
.article-wrap {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.article-text {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  max-width: 968px;
}
.article-main {
  margin-top: 52px;
}
.article-main * {
  margin-bottom: 24px;
}
.article-main *:last-child {
  margin-bottom: 0 !important;
}
.article-main h2, .article-main h3, .article-main h4, .article-main h5, .article-main h6 {
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  margin-bottom: 42px;
}
.article-main img {
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 52px;
}
.article-main .wp-block-video {
  width: 100%;
  object-fit: contain;
  border-radius: 24px;
  margin-bottom: 52px;
  overflow: hidden;
}
.article-main ul {
  display: grid;
  gap: 18px;
}
.article-main li {
  list-style: disc;
  margin-left: 20px;
  padding-left: 4px;
  margin-bottom: 0;
}
.article-main li::marker {
  color: var(--red);
  content: "—";
}
.article__contents {
  height: max-content;
  position: sticky;
  top: 40px;
}
.article__contents-wrap {
  background: var(--gray);
  border-radius: 24px;
  padding: 32px;
}
.article__contents-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
}
.article__contents-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.article__contents-list li {
  list-style: disc;
  margin-left: 20px;
  padding-left: 4px;
  margin-bottom: 0;
}
.article__contents-list li::marker {
  color: var(--red);
  content: "—";
}
.article__contents-link {
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
.article__contents-link:hover {
  color: var(--red);
}
.article__share {
  position: relative;
  z-index: 4;
}
.article__share.open .article__share-list {
  opacity: 1;
  visibility: visible;
  padding: 18px;
  max-height: 250px;
}
.article__share-btn {
  width: 100%;
  height: 60px;
  gap: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  margin-top: 24px;
}
.article__share-list {
  position: absolute;
  left: 0;
  bottom: -8px;
  transform: translateY(100%);
  background: #fff;
  box-shadow: 0px 0px 50px 0px rgba(34, 60, 80, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  border-radius: 10px;
}
.article__share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--gray);
  border-radius: 8px;
}

@media (max-width: 1380px) {
  .article-wrap {
    gap: 30px;
  }
}
@media (max-width: 1180px) {
  .article {
    margin-top: 32px;
  }
  .article-wrap {
    margin-top: 32px;
    display: flex;
    flex-direction: column-reverse;
    gap: 42px;
  }
  .article__contents {
    position: static;
  }
  .article-main {
    margin-top: 42px;
  }
}
@media (max-width: 680px) {
  .article {
    margin-top: 24px;
  }
  .article-date {
    margin-top: 18px;
    font-size: 18px;
  }
  .article-wrap {
    gap: 32px;
  }
  .article-main {
    margin-top: 32px;
  }
  .article-main h2, .article-main h3, .article-main h4, .article-main h5, .article-main h6 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .article-main img {
    margin-bottom: 32px;
  }
  .article__contents-wrap {
    padding: 24px;
  }
  .article__contents-title {
    font-size: 18px;
  }
  .article__contents-list {
    margin-top: 14px;
    gap: 12px;
  }
  .article__contents-link {
    font-size: 16px;
  }
  .article__share-btn {
    height: 56px;
    font-size: 16px;
    margin-top: 18px;
  }
}
.contact {
  margin-top: 42px;
}
.contact .breadcrumbs-link, .contact .title {
  color: var(--black);
}
.contact .breadcrumbs-str {
  color: #b4b4b4;
}
.contact-wrap {
  margin-top: 52px;
  padding: 100px 0;
  position: relative;
  pointer-events: none;
}
.contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: all;
}
.contact-info {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.contact__list {
  background: #fff;
  border-radius: 24px;
  padding: 38px;
  width: 392px;
  pointer-events: all;
}
.contact__list-contacts {
  display: grid;
  gap: 20px;
}
.contact__list-soc {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
.contact__list-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--gray);
}
.contact__list-link:hover {
  background: var(--red);
}
.contact__list-link:hover path {
  fill: #fff;
}
.contact__list-download {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}
.contact__list-btn {
  margin-top: 32px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
.contact-qr {
  border-radius: 24px;
  width: 144px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  pointer-events: all;
}

@media (max-width: 1380px) {
  .contact-wrap {
    margin-top: 42px;
    padding: 80px 0;
  }
}
@media (max-width: 1180px) {
  .contact {
    margin-top: 32px;
  }
  .contact-wrap {
    padding: 60px 0;
  }
  .contact-info {
    flex-direction: column;
    gap: 390px;
  }
  .contact__list {
    padding: 32px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .contact__list-download {
    margin-top: 25px;
    font-size: 16px;
  }
  .contact__list-btn {
    margin-top: 25px;
    height: 58px;
    font-size: 18px;
  }
}
@media (max-width: 680px) {
  .contact {
    margin-top: 24px;
  }
  .contact .container {
    margin: 0;
  }
  .contact-wrap {
    margin-top: 32px;
    padding: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
  }
  .contact-map {
    position: relative;
    border-radius: 24px;
    margin: 0 18px;
    height: 426px;
    width: auto;
  }
  .contact-info {
    gap: 0;
  }
  .contact__list {
    border: 1px solid var(--gray);
    grid-template-columns: 1fr;
  }
  .contact__list-contacts {
    gap: 16px;
  }
  .contact__list-download {
    margin-top: 32px;
  }
  .contact__list-btn {
    margin-top: 32px;
    height: 52px;
    font-size: 16px;
  }
  .contact-qr {
    display: none;
  }
}


.modal-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-img.open {
  opacity: 1;
  visibility: visible;
}
.modal-img-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.modal-img-close:hover path {
  fill: var(--red);
}
.modal-img-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

@media (max-width: 680px) {
  .modal-img-close {
    top: 26px;
    right: 22px;
  }
}

.modal-media {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-media.open {
  opacity: 1;
  visibility: visible;
}
.modal-media-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.modal-media-close:hover path {
  fill: var(--red);
}
.modal-media-video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

@media (max-width: 680px) {
  .modal-media-close {
    top: 26px;
    right: 22px;
  }
}

/* Спиннер поверх записей */
.projects-loader {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  border-radius: 12px;
}

.projects-loader.active {
  display: flex;
}

.projects-wrap {
  position: relative;
}

.loader-spinner {
  text-align: center;
}

.loader-spinner-inner {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-spinner p {
  font-size: 16px;
  margin: 0;
}


.modal-descr {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-descr.open {
  opacity: 1;
  visibility: visible;
}
.modal-descr-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.modal-close:hover path {
  fill: var(--red);
}
.modal-descr-container {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  width: 680px;
  max-width: calc(100% - 36px);
  min-width: 354px;
  max-height: 85vh;
  overflow-y: auto;
}
.modal-descr-content {
  display: grid;
  gap: 20px;
}
#modalMaterialDescription {
  margin-top: 20px;
  display: grid;
  gap: 20px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
}
#modalMaterialDescription strong {
  font-weight: 600;
}
#modalMaterialDescription li {
  list-style: disc;
  margin-left: 20px;
  padding-left: 4px;
}
#modalMaterialDescription li::marker {
  color: var(--red);
  content: "—";
}
.modal-descr-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 96%;
}
.modal-descr-img {
  border-radius: 24px;
  width: 100%;
  object-fit: contain;
}
.modal-descr-btn {
  margin-top: 32px;
  width: 100%;
  height: 60px;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
}
@media (max-width: 680px) {
  .modal-descr-close {
    top: 26px;
    right: 22px;
  }
  .modal-descr-container {
    padding: 32px;
  }
  #modalMaterialDescription {
    font-size: 16px;
  }
  .modal-descr-title {
    font-size: 20px;
  }
  .modal-descr-img {
    border-radius: 18px;
  }
  .modal-descr-btn {
    height: 56px;
    font-size: 16px;
  }
}

.modal-gall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-gall.open {
  opacity: 1;
  visibility: visible;
}
.modal-gall-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.modal-gall-close:hover path {
  fill: var(--red);
}
.modal-gall-image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.modal-gall-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  width: 90%;
}
.modal-gall-nav button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  pointer-events: all;
}
.modal-gall-nav button:hover {
  background: var(--red);
}
.modal-gall-nav button:hover path {
  fill: #fff;
}
.modal-gall-nav button:active {
  background: #BC171F;
}
@media (max-width: 680px) {
  .modal-gall-close {
    top: 26px;
    right: 22px;
  }
  .modal-gall-nav {
    top: 90%;
  }
}

.cookies {
  position: fixed;
  z-index: 99999;
  bottom: 32px;
  left: 32px;
  transform: translateX(-200%);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 118px;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  width: 710px;
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  transition: var(--transition);
}
.cookies.open {
  transform: translate(0);
  box-shadow: 0px 4px 16px 0px rgba(34, 60, 80, 0.15);
}
.cookies-text a {
  text-decoration: underline;
  display: inline;
}
.cookies-btn {
  width: 118px;
  height: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
}

@media (max-width: 680px) {
  .cookies {
    padding: 20px;
    border-radius: 18px;
    width: 310px;
    font-size: 15px;
    grid-template-columns: 1fr;
  }
  .cookies-btn {
    width: 100%;
    height: 48px;
    font-size: 16px;
  }
}


.catalog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.catalog-modal.open {
  opacity: 1;
  visibility: visible;
}
.catalog-modal-close {
  position: absolute;
  top: 36px;
  right: 32px;
}
.catalog-modal-close:hover path {
  fill: var(--red);
}
.catalog-modal-container {
  background: #fff;
  border-radius: 42px;
  padding: 62px;
  width: 1206px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 100px);
  height: max-content;
  overflow-y: auto;
}
.catalog-modal-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 96%;
}
.catalog-modal-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 42px;
  margin-top: 20px;
}
.catalog-modal__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.catalog-modal__item-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
}
.catalog-modal__item-name {
  margin-top: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}
.catalog-modal__item-list {
  margin-top: 10px;
  display: grid;
  gap: 4px;
}
.catalog-modal__item-li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 300;
  font-size: 15px;
  line-height: 120%;
}
.catalog-modal__item-gray {
  color: #8e8c8c;
}
.catalog-modal__item-price {
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}
.catalog-modal__item-btn {
  margin-top: auto;
  width: 100%;
  height: 58px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
}

@media (max-width: 1380px) {
  .catalog-modal-container {
    padding: 42px;
  }
  .catalog-modal-wrap {
    row-gap: 30px;
  }
}
@media (max-width: 1180px) {
  .catalog-modal-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .catalog-modal__item-img {
    border-radius: 18px;
  }
  .catalog-modal__item-name {
    font-size: 16px;
  }
  .catalog-modal__item-price {
    font-size: 16px;
  }
  .catalog-modal__item-btn {
    height: 52px;
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .catalog-modal-close {
    top: 20px;
    right: 22px;
  }
    .catalog-modal-container {
    border-radius: 24px;
    padding: 24px;
    max-width: calc(100vw - 18px);
    /* max-height: calc(100vh - 100px); */
  }
  .catalog-modal-title {
    font-size: 20px;
  }
  .catalog-modal-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .catalog-modal__item-name {
    margin-top: 10px;
    font-size: 14px;
  }
  .catalog-modal__item-list {
    margin-top: 7px;
  }
  .catalog-modal__item-li {
    font-size: 12px;
  }
  .catalog-modal__item-price {
    margin-top: 7px;
    margin-bottom: 10px;
  }
  .catalog-modal__item-btn {
    height: 42px;
    font-size: 14px;
  }
}