/*
Theme Name: Сайт Инженерных изысканий
Theme URI: https://wordpress.org/
Author: ООО "ЭНДПОИНТ"
Author URI: https://end-point.ru
Description: Сайт Инженерных изысканий
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 8.1
Version: 1.0
*/

* {
  padding: 0;
  margin: 0;
  border: 0;
  font-family: Montserrat, sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:active,
:focus,
a:active,
a:focus {
  outline: 0;
}

aside,
footer,
header,
nav {
  display: block;
}

body,
html {
  height: 100%;
  width: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

button,
input,
textarea {
  font-family: inherit;
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

input,
input:after,
input:before {
  -webkit-user-select: initial;
  -moz-user-select: initial;
  -ms-user-select: initial;
  user-select: initial;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: 0 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:hover,
a:visited {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

:-webkit-any(article, aside, nav, section) h1 {
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-margin-after: 0;
  margin-block-end: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

address {
  font-style: normal;
}

a:hover {
  color: var(--green);
}

:root {
  --black: #3a3a3a;
  --black-50: #3a3a3a80;
  --black-25: #3a3a3a41;
  --white: #ffffff;
  --green: #39a400;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  -webkit-transition: none;
  transition: none;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}

.title_h2 {
  border: 1px solid var(--white);
  color: var(--white);
  max-width: 422px;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 65px;
  border-radius: 5px;
}

.title_green {
  border-color: var(--green);
  color: var(--black);
}

.title_black {
  border-color: var(--black);
  color: var(--black);
}

@media (max-width: 480px) {
  .title_h2 {
    font-size: 20px;
  }
}

.header {
  border-bottom: 1px solid var(--green);
  background: var(--black);
  width: 100%;
  z-index: 100;
  top: 0;
}

.header_main {
  position: fixed;
  background-color: rgba(58, 58, 58, 0.25);
  -webkit-backdrop-filter: blur(2.4px);
  backdrop-filter: blur(2.4px);
  border-bottom: 1px solid var(--white);
}

.header__container {
  width: 100%;
  padding: 21px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo-text {
  font-size: 36px;
  font-weight: 400;
  color: var(--white);
}

.header__contacts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.header__contacts-item-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__contacts-item-link:hover {
  color: var(--green);
}

.menu-burger {
  display: none;
  cursor: pointer;
  width: 40px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-burger::after,
.menu-burger::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--white);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-burger::after {
  top: 100%;
}

.menu-burger__psevdo {
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: var(--white);
  top: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-burger.active .menu-burger__psevdo {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.menu-burger.active::before {
  top: 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-burger.active::after {
  top: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.menu__item-link,
.menu__list>li>a {
  height: 100%;
  width: 100%;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu__item-link.active,
.menu__item-link:hover,
.menu__list>li>a.active,
.menu__list>li>a:hover {
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 15px;
  padding: 8px 20px;
}

.menu__contacts {
  display: none;
}

@media (max-width: 980px) {
  .header__contacts-item-link {
    font-size: 18px;
  }
}

@media (max-width: 840px) {
  .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1000;
  }

  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--black);
    height: 100vh;
    min-width: 100vw;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .menu.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .menu::before {
    content: "";
    position: absolute;
    width: 100vw;
    height: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.25);
  }

  .menu__list {
    padding-left: 15px;
    padding-top: 50px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1000;
  }

  .menu__item-link.active,
  .menu__item-link:hover,
  .menu__list>li>a.active,
  .menu__list>li>a:hover {
    border: none;
    padding: 0 0 0 10px;
    border-radius: 0;
    border-left: 1px solid var(--green);
  }

  .menu__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 15px;
    padding-bottom: 50px;
    -ms-flex-item-align: start;
    align-self: start;
    z-index: 1000;
  }

  .menu__contacts-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
  }

  .menu__contacts-item-link {
    color: var(--white);
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-weight: 500;
  }

  .menu__contacts-item-link:hover {
    color: var(--green);
  }

  .header__contacts-list {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (max-width: 580px) {
  .header__contacts {
    display: none;
  }
}

.first-screen {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.first-screen__container {
  padding-top: 93px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.first-screen__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.first-screen__left {
  max-width: 800px;
}

.first-screen__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}

.first-screen__description {
  font-size: 24px;
  font-weight: 400;
  margin-top: 13px;
  color: var(--white);
  line-height: 140%;
}

.first-screen__right .b24-form {
  max-width: 450px;
}

.first-screen__down {
  margin-bottom: 70px;
}

.first-screen__bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.first-screen__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.first-screen__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.first-screen__btn-block {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  row-gap: 10px;
}

.first-screen__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black);
  background: var(--white);
  padding: 15px 80px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 50px;
}

.first-screen__btn:hover {
  background: 0 0;
  border: 1px solid var(--white);
  color: var(--white);
}

.first-screen__btn-policy {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

@media (max-width: 1080px) {
  .first-screen__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 40px;
  }

  .first-screen__btn-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .first-screen__right {
    width: 100%;
    max-width: 602px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .first-screen__form,
  .first-screen__right .b24-form {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .first-screen__title {
    font-size: 32px;
  }

  .first-screen__description {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .first-screen__title {
    font-size: 24px;
  }

  .first-screen__description {
    font-size: 18px;
  }
}

.cta-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 350px;
  width: 100%;
}

.cta-form__link {
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
}

.cta-form__input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 300;
  color: var(--white);
  gap: 5px;
  font-size: 16px;
}

.cta-form__input {
  color: var(--white);
  padding: 15px;
  background: 0 0;
  border: 1px solid var(--white);
  border-radius: 5px;
  font-size: 16px;
}

.cta-form__input::-webkit-input-placeholder {
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
}

.cta-form__input::-moz-placeholder {
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
}

.cta-form__input:-ms-input-placeholder {
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
}

.cta-form__input::-ms-input-placeholder {
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
}

.cta-form__input::placeholder {
  color: var(--white);
  opacity: 0.5;
  font-size: 16px;
}

.cta-form__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  row-gap: 10px;
}

.cta-form__btn-policy {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
}

.cta-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  padding: 15px 80px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 50px;
}

.cta-form__btn:hover {
  background: 0 0;
  border: 1px solid var(--white);
  color: var(--white);
}

.benefit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 120px;
}

.benefit-top__container.benefit__container {
  margin-top: 10px;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  padding: 0;
}



.benefit__title {
  margin-bottom: 50px;
}

.benefit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 20px;
}

.benefit-top__list.benefit__list {
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  gap: 15px;
}

.benefit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 15px;
  max-width: 310px;
}

.benefit-top .benefit__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 5px;
  max-width: 200px;
  min-height: 70px;
  padding: 10px;
  background: var(--black-50);
  backdrop-filter: blur(10px);
}

.benefit__item-description {
  font-size: 18px;
  color: var(--black);
  line-height: 120%;
  width: 100%;
}

.benefit-top .benefit__item-description {
  color: var(--white);
}

.benefit__icon {
  max-height: 60px;
  max-width: 60px;
  width: 100%;
}

.benefit-top .benefit__icon {
  max-height: 30px;
  max-width: 30px;
}

@media (max-width: 960px) {
  .benefit__list {
    gap: 20px;
  }
}

.projects {
  background: var(--white);
  padding: 80px 0 35px;
}

.projects_page {
  background: 0 0;
  margin-top: 60px;
  padding: 0;
}

.projects_page .projects__list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.projects_page .projects__title {
  color: var(--black);
  border-color: var(--black);
}

.projects__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.projects__title {
  color: var(--black);
  border-color: var(--green);
  margin-bottom: 75px;
}

.projects__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.projects__item {
  max-width: 400px;
  max-height: 300px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.projects__item-link {
  width: 100%;
  height: 100%;
  position: relative;
}

.projects__item-link::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.projects__item-link-visible {
  height: 300px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.projects__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.projects__item-link-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  bottom: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.projects__item-link:hover .projects__item-link-hover {
  visibility: visible;
  opacity: 1;
}

.projects__item-link:hover .projects__item-link-hover::after {
  visibility: visible;
  opacity: 1;
}

.projects__item-link:hover:before {
  visibility: visible;
  opacity: 0.25;
}

.projects__description {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  z-index: 10;
}

.projects__more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--white);
  margin-top: 50px;
}

.staff__item {
  border-radius: 10px;
}



.staff.projects {
  background: var(--black);
  padding: 80px 0;
}

.staff__title {
  color: var(--white);
  border-color: var(--white);
}

.staff__item .projects__item-link-hover {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  visibility: visible;
  opacity: 1;
}

.staff__item .projects__item-link-hover:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 110%;
  background: var(--black-50);
  backdrop-filter: blur(10px);
  padding: 15px;
  z-index: -10px;
  opacity: 1;

}

.staff__item .projects__item-link::before {
  visibility: visible;
  opacity: 0.2;
}

.staff__item .projects__hover-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  z-index: 10;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.staff__item .projects__description {
  font-size: 16px;
  font-weight: 300;
  z-index: 10;
}

@media (max-width: 780px) {
  .projects__item-link::before {
    visibility: visible;
    opacity: 0.25;
  }

  .projects__item-link-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }

  .projects__item-link-hover {
    visibility: visible;
    opacity: 1;
  }

  .projects__description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .projects__item {
    max-width: none;
    max-height: none;
    width: 100%;
  }

  .projects__img {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

.services {
  margin-top: 140px;
}

.services__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services__title {
  margin-bottom: 60px;
}

.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 41px;
  width: 100%;
}

.services__item {
  max-width: 386px;
  max-height: 450px;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: 5px;
  height: 100vh;
  width: 100vh;
}

.services__item-link {
  width: 100%;
  height: 100%;
  position: relative;
}

.services__item-link::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: visible;
  opacity: 0.25;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services__item-link-title {
  max-width: 200px;
  font-size: 18px;
  color: var(--white);
  font-weight: 500;
  position: absolute;
  padding: 15px;
}



.services__item-link-title_hidden {
  position: relative;
  display: block;
  visibility: hidden;
  padding: 0;
  margin-bottom: 10px;
}

.services__item-link-visible {
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding: 15px;
  z-index: 10;
}

.services__item-price {
  font-size: 20px;
  color: var(--white);
  ;
}

.services__item-link-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  bottom: 0;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  padding: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
}

.services__item-link:hover .services__item-link-hover {
  visibility: visible;
  opacity: 1;
}

.services__item-link:hover:before {
  visibility: visible;
  opacity: 0.5;
}

.services__description {
  display: inline-block;
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  color: var(--white);
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
}

.services__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
}

.services__more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
  color: var(--white);
  margin-top: 50px;
}

.contacts {
  background: var(--black);
  padding-top: 50px;
  height: 80vh;
  margin-top: 120px;
}

.contacts__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contacts__title {
  max-width: 300px;
}

.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.contacts__item-link {
  color: var(--white);
  font-size: 24px;
  font-weight: 500;
}

.contacts__time {
  font-size: 16px;
  font-weight: 500;
  margin-top: 15px;
  color: var(--white);
  max-width: 140px;
  line-height: 120%;
}

.contacts__right .b24-form {
  max-width: 560px;
}

.contacts__icon {
  max-width: 40px;
  max-height: 40px;
}

.contacts-form {
  max-width: 560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.contacts-form__input-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 300;
  color: var(--white);
  gap: 5px;
  font-size: 16px;
}

.contacts-form__input {
  height: 64px;
  width: 100%;
  color: var(--white);
  padding: 15px;
  background: 0 0;
  border: 1px solid var(--white);
  border-radius: 5px;
  font-size: 16px;
}

.contacts-form__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.contacts-form__btn-policy {
  display: inline-block;
  color: var(--white);
  font-size: 14px;
  font-weight: 300;
  line-height: 110%;
  max-width: 257px;
}

.contacts-form__link {
  color: var(--green);
  font-size: 14px;
  font-weight: 300;
}

.contacts-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  padding: 21px 62px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid var(--white);
}

.contacts-form__btn:hover {
  background: rgba(0, 0, 0, 0);
  color: var(--white);
}

@media (max-width: 980px) {
  .contacts {
    height: 100%;
    padding-bottom: 30px;
  }

  .contacts__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .contacts__main {
    margin-top: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 600px) {

  .contacts__main,
  .contacts__right {
    width: 100%;
  }

  .contacts__time {
    max-width: none;
  }

  .contacts-form {
    width: 100%;
    max-width: none;
  }

  .contacts-form__btn-block {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 5px;
  }

  .contacts-form__btn-policy {
    width: 100%;
    max-width: none;
  }
}

.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 95px;
  background: var(--black);
  padding: 80px 0;
}

.garants {
  background: var(--black);
  padding: 80px 0;
}

.steps__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.steps__title {
  margin-bottom: 80px;
  color: var(--white);
}

.garants .steps__title {
  color: var(--white);
}

.steps__left {
  max-width: 540px;
}

.garants .steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: normal;
  flex-direction: column;
}

.steps__item:nth-child(2) {
  margin-left: 80px;
}

.steps__item:nth-child(3) {
  margin-left: 160px;
}

.steps__item:nth-child(4) {
  margin-left: 240px;
}



.steps__item {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 120%;
  height: 60px;
  width: 300px;
  border: 1px solid var(--white);
  color: var(--white);
  border-radius: 5px;
}

.garants .steps__item {
  width: 500px;
  margin-left: 0;
  margin-bottom: 10px;
  border: 1px solid var(--white);
  color: var(--white);
}

.steps__item.active,
.steps__item:hover {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
}

.steps__right {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.steps__right-list {
  min-height: 240px;
}

.steps__right-item {
  visibility: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  background: transparent;
  color: var(--white);
}

.garants .steps__right-item {
  background: transparent;
  color: var(--white);
}

.steps__right-item.active {
  visibility: visible;
  display: block;
  opacity: 1;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}

.steps__right-title {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 140%;
}

.steps__description {
  margin-top: 15px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

@media (max-width: 1030px) {
  .steps__container {
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .steps__right {
    max-width: 540px;
  }
}

@media (max-width: 980px) {
  .steps__item {
    width: 250px;
    font-size: 16px;
    line-height: 110%;
  }

  .steps__right {
    max-width: 490px;
  }
}

@media (max-width: 580px) {
  .steps__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }

  .steps__item:nth-child(2) {
    margin-left: 37.037037037px;
  }

  .steps__item:nth-child(3) {
    margin-left: 74.0740740741px;
  }

  .steps__item:nth-child(4) {
    margin-left: 111.1111111111px;
  }
}

@media (max-width: 400px) {
  .steps__item:nth-child(2) {
    margin-left: 32.5925925926px;
  }

  .steps__item:nth-child(3) {
    margin-left: 65.1851851852px;
  }

  .steps__item:nth-child(4) {
    margin-left: 97.7777777778px;
  }
}

.maps__title {
  margin: 0 auto 60px;
}

.maps__map {
  width: 100%;
  min-height: 400px;
  height: 30vw;
}

.maps__map iframe {
  width: 100%;
  height: 100%;
}

.breadcrumbs {
  margin-top: 20px;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  font-size: 16px;
  color: var(--black);
  font-weight: 500;
  max-width: 400px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumbs__item:not(:last-child):after {
  content: "/";
  margin: 0 5px;
}

.breadcrumbs__item.active {
  opacity: 0.5;
}

.project-info__container {
  margin-top: 60px;
}

.project-info__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}

.project-info__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-grow: 1;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}

.project-info__main {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 80px;
}

.project-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.project-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  color: var(--black);
  max-width: 400px;
  flex-wrap: wrap;

}

.project-info__item-title {
  font-weight: 500;
  text-wrap: nowrap;
}

.project-info__item-text {
  width: 100%;
}

@media (max-width: 780px) {
  .project-info__title {
    font-size: 24px;
  }
}

@media (max-width: 375px) {
  .project-info__title {
    font-size: 20px;
  }

  .project-info__img,
  .project-info__main {
    margin-top: 30px;
  }

  .project-info__item {
    font-size: 16px;
  }
}

.footer {
  background: var(--black);
  border-top: 1px solid var(--white);
  color: var(--white);
  padding: 25px 0;
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__logo-text {
  font-size: 32px;
  font-weight: 400;
}

.footer__rights {
  font-size: 16px;
}

.footer__rights-text {
  font-weight: 500;
}

.footer__made {
  color: var(--white);
}

.footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 13px;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__contact-link {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.footer__policy {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 960px) {
  .footer__contact-link {
    color: var(--white);
    font-size: 18px;
    font-weight: 500;
  }

  .footer__policy {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
  }

  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 25px;
  }

  .footer__left {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__right {
    gap: 25px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .footer__contacts {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/*# sourceMappingURL=../sourcemaps/style.min.css.map */