@import "normalize.min.css";

@font-face {
  font-family: "Muller";
  src:
    url("../fonts/Muller-Regular.woff2") format("woff2"),
    url("../fonts/Muller-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  src:
    url("../fonts/Muller-Medium.woff2") format("woff2"),
    url("../fonts/Muller-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Muller";
  src:
    url("../fonts/Muller-Bold.woff2") format("woff2"),
    url("../fonts/Muller-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src:
    url("../fonts/Unbounded-Regular.woff2") format("woff2"),
    url("../fonts/Unbounded-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src:
    url("../fonts/Unbounded-Medium.woff2") format("woff2"),
    url("../fonts/Unbounded-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src:
    url("../fonts/Unbounded-SemiBold.woff2") format("woff2"),
    url("../fonts/Unbounded-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src:
    url("../fonts/Unbounded-Bold.woff2") format("woff2"),
    url("../fonts/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-Muller: "Muller", sans-serif;
  --font-Unbounded: "Unbounded", sans-serif;
  --black-font: #252525;
  --white: #fff;
  --dark-blue: #1f0a43;
  --light-gray: #f5f7fb;
  --gray: #d9d9d9;
  --orange: #f17e01;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.4;
}
[data-href] {
  cursor: pointer;
}
body {
  font-size: 18px;
  font-family: var(--font-Muller);
  color: var(--black-font);
  line-height: 1.4;
  background-color: var(--white);
}
body.no-scroll {
  overflow-y: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }
}
h1,
h2,
.h2 {
  font-family: var(--font-Unbounded);
  font-weight: 500;
  text-transform: uppercase;
}
h1 {
  font-size: 46px;
}
h2,
.h2 {
  font-size: 36px;
  margin: 30px 0;
}
h3 {
  font-size: 20px;
}
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 40px;
  }
  h2,
  .h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 1140px) {
  h1 {
    font-size: 36px;
  }
  h2,
  .h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 992px) {
  h1 {
    font-size: 32px;
  }
  h2,
  .h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  h2,
  .h2 {
    font-size: 24px;
    margin: 25px 0;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 22px;
  }
  h2,
  .h2 {
    font-size: 20px;
    margin: 20px 0;
    line-height: 1.2em;
  }
  h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 380px) {
  h1 {
    font-size: 20px;
  }
  h2,
  .h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 17px;
  }
}
.container {
  width: 100%;
  max-width: 1440px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.fancybox-container {
  z-index: 100;
}
.fancybox-close-small {
  color: var(--black-font);
}
.uppercase {
  text-transform: uppercase;
}
.btn {
  border: none;
  cursor: pointer;
  text-align: center;
}
.gdpr {
  position: fixed;
  top: auto;
  bottom: 0;
  height: auto;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  box-shadow: 0px 3px 38px 0px rgba(99, 99, 99, 0.38);
  padding: 15px 0;
  font-weight: 600;
  z-index: 1000;
}
.gdpr--white {
  background-color: rgba(255, 255, 255, 0.9);
  color: #090f1f;
  border-top: 3px solid #191919;
}
.gdpr .container {
  display: grid;
  grid-template-columns: 1fr 244px;
  grid-column-gap: 80px;
  align-items: center;
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
}
.gdpr .container:before,
.gdpr .container:after {
  display: none;
}
.gdpr p,
.gdpr small {
  margin: 0;
  padding: 0;
  color: inherit;
  font-size: 14px;
  line-height: 1.3;
}
.gdpr .container > small {
  display: none;
}
.gdpr a {
  text-decoration: underline;
  color: #005dc2;
}
.gdpr a:hover {
  text-decoration: none;
}
.btn_close {
  grid-row: 1/3;
  grid-column: 2/3;
  display: block;
  margin: 0;
  padding: 20px;
  font-size: 14px;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  border: none;
  background-color: #fff;
  cursor: pointer;
  font-weight: 600;
}
.gdpr--white .btn_close {
  background-color: #000000;
  color: #fff;
}
.btn_close:hover {
  color: #000;
}
.gdpr--white .btn_close:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .gdpr .container {
    grid-template-columns: 1fr 200px;
    grid-column-gap: 40px;
  }
}
@media screen and (max-width: 680px) {
  .gdpr {
    padding: 20px 0 15px;
  }
  .gdpr .container {
    grid-template-columns: 1fr 175px;
    grid-column-gap: 35px;
  }
  .gdpr p {
    grid-column: 1/-1;
    margin-bottom: 10px;
    font-size: 13px;
  }
  .gdpr p small {
    display: none;
  }
  .gdpr .container > small {
    display: block;
    font-size: 12px;
    font-weight: normal;
  }
  .btn_close {
    grid-row: 2/3;
    grid-column: 2/3;
    font-size: 13px;
  }
}
@media screen and (max-width: 400px) {
  .gdpr .container {
    grid-template-columns: 1fr 145px;
    grid-column-gap: 20px;
  }
  .btn_close {
    padding: 15px 10px;
  }
}
.o-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-Unbounded);
  background-color: var(--orange);
  color: var(--white);
  font-weight: 500;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  min-height: 60px;
  text-transform: uppercase;
}
.o-btn--sm {
  font-size: 16px;
  min-height: 50px;
}
@media screen and (max-width: 768px) {
  .o-btn {
    min-height: 48px;
  }
  .o-btn--sm {
    min-height: 42px;
  }
}
@media screen and (max-width: 480px) {
  .o-btn {
    font-size: 14px;
  }
}
.contact-elem {
  position: relative;
  display: block;
  padding-left: 38px;
  line-height: 1.1em;
}
.contact-elem::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 26px;
  top: -2px;
  left: 0;
}
.contact-elem--tel {
  white-space: nowrap;
}
header .contact-elem::before,
footer .contact-elem::before {
  filter: invert(52%) sepia(26%) saturate(6494%) hue-rotate(9deg)
    brightness(105%) contrast(99%);
}
.contact-elem--adr::before {
  background: url("/static/img/adr.svg") center center / 75% no-repeat;
}
.contact-elem--mail::before {
  height: 25px;
  background: url("/static/img/mail.svg") center center / 100% no-repeat;
}
.contact-elem--tel::before {
  background: url("/static/img/tel.svg") center center / 95% no-repeat;
}
.contact-elem .contact-elem--none {
  padding-left: 0;
}
@media screen and (max-width: 600px) {
  .contact-elem {
    padding-left: 30px;
  }
  .contact-elem::before {
    width: 20px;
    height: 22px;
    top: 0px;
  }
}
.menu-toggle {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: none;
  align-items: center;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 auto;
  border: none;
  background: transparent;
}
.menu-toggle > span {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 5px;
  background: var(--white);
  color: var(--white);
}
.menu-toggle > span::before,
.menu-toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  left: 0;
}
.menu-toggle > span::before {
  top: -14px;
  transition: top 0.3s;
}
.menu-toggle > span::after {
  bottom: -14px;
  transition: bottom 0.3s;
}
.menu-toggle.is-active > span {
  background: transparent !important;
}
.menu-toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
.menu-toggle.is-active > span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
@media screen and (max-width: 890px) {
  .menu-toggle {
    display: flex;
  }
}
@media screen and (max-width: 400px) {
  .menu-toggle {
    width: 40px;
    height: 40px;
  }
  .menu-toggle > span {
    height: 4px;
  }
  .menu-toggle > span::before {
    top: -12px;
  }
  .menu-toggle > span::after {
    bottom: -12px;
  }
}
@media screen and (max-width: 380px) {
  .menu-toggle {
    width: 30px;
  }
  .menu-toggle > span {
    height: 3px;
  }
  .menu-toggle > span::before {
    top: -12px;
  }
  .menu-toggle > span::after {
    bottom: -12px;
  }
}
.logo img {
  display: block;
}
.phones-row {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.phones-row .messenger {
  flex-shrink: 0;
}
.phones-row img {
  display: block;
}
@media screen and (max-width: 480px) {
  .phones-row {
    column-gap: 5px;
  }
}
/* header */
header {
  background-color: var(--white);
}
.header {
  display: grid;
  grid-template-columns: auto auto 1fr 57px;
  align-items: center;
  column-gap: 80px;
  row-gap: 5px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.header_phones {
  margin-left: auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1em;
}
.header_contacts {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  row-gap: 5px;
}
.header_vk {
  flex-shrink: 0;
}
.header_vk img {
  display: block;
}
.header_menu {
  background-color: var(--dark-blue);
  color: var(--white);
}
header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
}
@media screen and (min-width: 891px) {
  header .menu {
    display: flex !important;
  }
}
header .menu > li > a {
  display: block;
  padding: 12px 0;
}

@media screen and (max-width: 1480px) {
  .header {
    grid-template-columns: auto 1fr auto 57px;
    column-gap: 50px;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    column-gap: 30px;
  }
  .header_phones {
    font-size: 28px;
  }
  .header_contacts {
    flex-direction: column;
    align-items: flex-end;
  }
  .header_phones .messenger {
    max-width: 35px;
  }
  header .menu {
    font-size: 17px;
  }
}
@media screen and (max-width: 992px) {
  .header {
    grid-template-columns: auto 1fr auto;
  }
  .header .logo {
    grid-row: 1/3;
  }
  .header_vk {
    grid-row: 1/3;
    grid-column: 3/4;
  }
  header .menu {
    font-size: 16px;
    column-gap: 5px;
  }
}
@media screen and (max-width: 890px) {
  .header_menu {
    padding: 5px 0;
  }
  header .menu {
    display: none;
    padding: 10px 0 20px;
    font-size: 18px;
  }
  header .menu > li > a {
    padding: 6px 0;
  }
}
@media screen and (max-width: 768px) {
  .header {
    column-gap: 20px;
  }
  .header_phones {
    grid-column: 2/-1;
  }
  .header_vk {
    grid-row: 2/3;
    max-width: 45px;
  }
}
@media screen and (max-width: 600px) {
  .header {
    grid-template-columns: 130px 1fr auto;
    column-gap: 10px;
  }
  .header_phones {
    font-size: 24px;
  }
  .header_phones .messenger {
    max-width: 30px;
  }
}
@media screen and (max-width: 480px) {
  .header {
    grid-template-columns: 1fr auto;
    padding-left: 10px;
    padding-right: 10px;
    column-gap: 10px;
    row-gap: 8px;
    max-width: 340px;
    padding-bottom: 15px;
  }
  .header .logo {
    grid-column: 1/-1;
    grid-row: initial;
  }
  .header .logo img {
    margin: 0 auto;
  }
  .header_phones {
    grid-column: 1 / -1;
    margin: 0 auto;
  }
  .header_contacts {
    align-items: flex-start;
  }
  .header_vk {
    grid-column: initial;
    grid-row: initial;
  }
  .header .contact-elem br {
    display: none;
  }
  header .menu {
    font-size: 16px;
  }
}
@media screen and (max-width: 380px) {
  .header_phones {
    font-size: 20px;
  }
  .header_phones .messenger {
    max-width: 24px;
  }
  .header_contacts {
    font-size: 15px;
  }
}
/* end header */

/* footer */
footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 35px 0;
  font-size: 16px;
  font-weight: 500;
}
.footer {
  display: grid;
  grid-template-columns: 24% 1fr 26% auto;
  column-gap: 20px;
  margin-bottom: 25px;
}
footer .contact-elem::before {
  width: 20px;
  height: 22px;
}
footer .menu {
  column-count: 2;
  line-height: 1.1em;
  column-gap: 10px;
}
footer .menu > li {
  margin-bottom: 10px;
  break-inside: avoid-column;
}
footer .menu > li > a {
  display: block;
  padding: 5px 0;
}
footer .menu > li > ul {
  display: none;
}
.footer_contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
  padding-top: 5px;
}
.footer_copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
.footer_politic {
  text-decoration: underline;
}
.footer_politic:hover {
  text-decoration: none;
}
.footer_holder {
  position: relative;
  display: block;
  padding-left: 35px;
}
.footer_holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: url("/static/img/copy.svg") center center / 100% no-repeat;
}
@media screen and (max-width: 1080px) {
  .footer {
    grid-template-columns: auto 1fr auto auto;
  }
  .footer_contacts {
    row-gap: 15px;
  }
}
@media screen and (max-width: 890px) {
  footer .menu {
    column-count: initial;
  }
  footer .menu > li {
    margin-bottom: 0px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 20px 0;
  }
  .footer {
    grid-template-columns: auto 1fr auto;
    margin-bottom: 15px;
  }
  .footer_contacts {
    margin-left: auto;
  }
  .footer_vk {
    max-width: 45px;
  }
  .footer_menu {
    display: none;
  }
  .footer_copy {
    font-size: 14px;
  }
  .footer_holder {
    padding-left: 25px;
  }
  .footer_holder::before {
    top: -2px;
  }
}
@media screen and (max-width: 600px) {
  .footer {
    grid-template-columns: 130px 1fr auto;
    column-gap: 10px;
  }
  .footer_contacts {
    row-gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  footer .container {
    max-width: 360px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer {
    grid-template-columns: 1fr auto;
  }
  .footer .logo {
    grid-column: 1/-1;
  }
  .footer .logo img {
    margin: 0 auto;
  }
  .footer_contacts {
    margin: 0 auto;
  }
}
@media screen and (max-width: 380px) {
  .footer_contacts {
    font-size: 15px;
  }
}
/* end footer */
.mainpage {
  padding-top: 55px;
  padding-bottom: 60px;
}
.mainpage p {
  line-height: 1.5em;
  margin-bottom: 30px;
  font-weight: 500;
}
.mainpage_intro {
  margin-bottom: 125px;
}
.mainpage_intro__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  column-gap: 20px;
  row-gap: 15px;
  margin-bottom: 40px;
}
.mainpage_intro__row h1 {
  margin: 0;
}
.mainpage_intro__blocks {
  display: flex;
  column-gap: 20px;
}
.mainpage_intro__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 128px;
  padding: 10px 110px 10px 25px;
  background-color: var(--light-gray);
  border-radius: 5px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right 14px center;
  line-height: 1.3em;
}
.mainpage_intro__block b {
  display: block;
  text-transform: uppercase;
}
.mainpage_intro__block--key {
  background-image: url("/static/img/work-keys.png");
}
.mainpage_intro__block--time {
  padding-right: 150px;
  background-image: url("/static/img/work-time.png");
}
.mainpage_intro__img {
  margin-bottom: 50px;
}
.mainpage_intro__img img {
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 1280px) {
  .mainpage_intro__block--time {
    padding-right: 140px;
  }
}
@media screen and (max-width: 1140px) {
  .mainpage_intro__block {
    padding: 10px 90px 10px 15px;
    background-position: right 8px center;
  }
  .mainpage_intro__block--time {
    padding-right: 125px;
  }
  .mainpage_intro {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage {
    padding-top: 35px;
    padding-bottom: 40px;
  }
  .mainpage_intro__row {
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }
  .mainpage_intro__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_intro {
    margin-bottom: 50px;
  }
  .mainpage p {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px) {
  .mainpage_intro__blocks {
    font-size: 18px;
    flex-direction: column;
    row-gap: 20px;
  }
  .mainpage_intro__blocks br {
    display: none;
  }
}
.mainpage_building {
  margin-bottom: 130px;
}
.mainpage_building__block {
  display: grid;
  grid-template-columns: 58% 37%;
  justify-content: space-between;
  row-gap: 25px;
  background-color: var(--light-gray);
  padding: 60px;
  margin-bottom: 30px;
  border-radius: 15px;
}
.mainpage_building__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mainpage_building__block-sub {
  font-family: var(--font-Unbounded);
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.mainpage_building__img img {
  display: block;
  border-radius: 15px;
}
.mainpage_building__block .o-btn {
  width: 100%;
  max-width: 330px;
  margin: auto auto 0 0;
}
.mainpage_building__list {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  row-gap: 20px;
  justify-content: space-between;
}
.mainpage_building__elem {
  position: relative;
  display: flex;
}
.mainpage_building__elem-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 40px 40px 40px 60px;
  color: var(--white);
}
.mainpage_building__elem-name {
  display: block;
  font-family: var(--font-Unbounded);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.mainpage_building__elem .o-btn {
  width: 100%;
  max-width: 295px;
  visibility: hidden;
  height: 0px;
  min-height: initial;
  padding: 0;
  opacity: 0;
}
.mainpage_building__elem:hover .o-btn {
  visibility: visible;
  height: auto;
  min-height: 60px;
  padding: 10px;
  opacity: 1;
  transition:
    opacity 0.2s,
    min-height 0.2s;
}
.mainpage_tehnology {
  padding: 55px 30px 35px;
  background-color: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 30px;
}
.mainpage_tehnology p {
  padding: 0 30px;
  margin-bottom: 20px;
}
.mainpage_tehnology__list {
  display: grid;
  grid-template-columns: repeat(5, 19.5%);
  justify-content: space-between;
  row-gap: 50px;
  padding: 40px 0 0;
  margin: 0 0 80px;
}
.mainpage_tehnology__elem {
  position: relative;
  padding-top: 180px;
  text-align: center;
  line-height: 1.15em;
}
.mainpage_tehnology__elem::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 211px;
  height: 160px;
  max-width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.mainpage_tehnology__elem--1::before {
  background-image: url("/static/img/m_tehnology_01.png");
}
.mainpage_tehnology__elem--2::before {
  background-image: url("/static/img/m_tehnology_02.png");
}
.mainpage_tehnology__elem--3::before {
  background-image: url("/static/img/m_tehnology_03.png");
}
.mainpage_tehnology__elem--4::before {
  background-image: url("/static/img/m_tehnology_04.png");
}
.mainpage_tehnology__elem--5::before {
  background-image: url("/static/img/m_tehnology_05.png");
}
.mainpage_tehnology__elem--6::before {
  background-image: url("/static/img/m_tehnology_06.png");
}
.mainpage_tehnology__elem--7::before {
  background-image: url("/static/img/m_tehnology_07.png");
}
.mainpage_tehnology__elem--8::before {
  background-image: url("/static/img/m_tehnology_08.png");
}
.mainpage_tehnology__elem--9::before {
  background-image: url("/static/img/m_tehnology_09.png");
}
.mainpage_tehnology__elem--10::before {
  background-image: url("/static/img/m_tehnology_10.png");
}
.mainpage_tehnology__elem b {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  font-size: 0.88em;
}
.mainpage_secret {
  padding: 55px 60px 30px;
  background-color: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .mainpage_building__block {
    padding: 45px 30px;
  }
  .mainpage_tehnology {
    padding: 45px 30px 30px;
  }
  .mainpage_tehnology__list {
    row-gap: 30px;
    padding: 20px 0 0;
    margin: 0 0 60px;
  }
  .mainpage_tehnology p {
    padding: 0;
  }
  .mainpage_secret {
    padding: 45px 30px 20px;
  }
  .mainpage_building__elem-text {
    padding: 30px 20px 30px 30px;
  }
  .mainpage_building {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 1140px) {
  .mainpage_tehnology__list {
    grid-template-columns: repeat(4, 24%);
  }
  .mainpage_building__elem-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .mainpage_building__block {
    padding: 30px 15px;
    grid-template-columns: 58% 40%;
  }
  .mainpage_building__block-sub {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .mainpage_tehnology {
    padding: 30px 15px 20px;
  }
  .mainpage_tehnology__list {
    margin: 0 0 40px;
  }
  .mainpage_secret {
    padding: 30px 15px 15px;
  }
  .mainpage_building__elem .o-btn {
    max-width: 220px;
  }
  .mainpage_building__elem:hover .o-btn {
    min-height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .mainpage_building__block,
  .mainpage_building__list {
    grid-template-columns: 100%;
  }
  .mainpage_building__img {
    order: -1;
  }
  .mainpage_building__img img {
    margin: 0 auto;
  }
  .mainpage_tehnology__list {
    grid-template-columns: repeat(3, 31.5%);
    row-gap: 20px;
    padding-top: 0;
    margin-bottom: 30px;
  }
  .mainpage_building {
    margin-bottom: 60px;
  }
  .mainpage_building__block .o-btn {
    max-width: 240px;
  }
  .mainpage_building .mainpage_building__elem .o-btn {
    height: auto;
    min-height: 48px;
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .mainpage_tehnology__list {
    grid-template-columns: repeat(2, 48.5%);
  }
  .mainpage_building__elem-text {
    padding: 10px 15px 15px 20px;
  }
}
@media screen and (max-width: 480px) {
  .mainpage_building__block-sub {
    font-size: 18px;
  }
  .mainpage_building__elem-name {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .mainpage_building .mainpage_building__elem .o-btn {
    min-height: 42px;
    max-width: 200px;
  }
}
@media screen and (max-width: 380px) {
  .mainpage_tehnology__list {
    grid-template-columns: 100%;
  }
}
.mainpage_catalog {
  margin-bottom: 30px;
}
.cat_list {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  padding-top: 10px;
  margin-bottom: 20px;
  row-gap: 40px;
}
.cat_list__link {
  display: flex;
  flex-direction: column;
}
.cat_list img {
  display: block;
  border-radius: 10px;
  margin-bottom: 25px;
}
.cat_list__name {
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2px;
}
.cat_list__more {
  position: relative;
  color: var(--orange);
  align-self: flex-start;
  font-weight: 500;
  padding: 3px 32px 3px 0;
  border-bottom: 1px solid transparent;
  line-height: 1.2em;
  transition: 0.2s;
}
.cat_list__more::before {
  content: "";
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
  width: 24px;
  height: 15px;
  background: url("/static/img/arr-right.svg") center center / 100% no-repeat;
  filter: invert(52%) sepia(26%) saturate(6494%) hue-rotate(9deg)
    brightness(105%) contrast(99%);
}
.cat_list__item:hover .cat_list__more {
  border-color: currentColor;
}
@media screen and (max-width: 1140px) {
  .cat_list img {
    margin-bottom: 15px;
  }
  .cat_list__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .cat_list {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .cat_list img {
    margin-bottom: 10px;
  }
  .cat_list__name {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .cat_list {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
}
.mainpage .request-block {
  margin-bottom: 90px;
}
.request-block {
  position: relative;
  padding-top: 125px;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.request-block::before {
  content: "";
  position: absolute;
  right: 1.5%;
  top: 0;
  width: 43%;
  max-width: 600px;
  height: 100%;
  background: url("/static/img/request-block.png") center bottom / 100% auto
    no-repeat;
}
.request-block_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: var(--light-gray);
  min-height: 325px;
  padding: 30px 45% 30px 60px;
  border-radius: 15px;
}
.request-block_sub {
  margin: 0 0 15px;
  line-height: 1.23em;
}
.request-block .o-btn {
  padding: 10px 30px;
}
@media screen and (max-width: 1280px) {
  .request-block {
    padding-top: 70px;
  }
  .request-block_inner {
    padding: 20px 45% 20px 30px;
  }
}
@media screen and (max-width: 1140px) {
  .request-block::before {
    width: 48%;
    right: 1%;
  }
}
@media screen and (max-width: 992px) {
  .request-block {
    padding-top: 40px;
  }
  .request-block_inner {
    padding-right: 49%;
  }
  .request-block .o-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 600px) {
  .request-block_inner {
    min-height: initial;
    padding: 30px 15px 49vw 20px;
  }
  .request-block {
    padding-top: 0;
  }
  .mainpage .request-block {
    margin-bottom: 40px;
  }
  .request-block::before {
    width: 100%;
    height: 51vw;
    background-position: right bottom;
    background-size: 70% auto;
    top: auto;
    bottom: 0;
  }
}
.mainpage .stages {
  margin-bottom: 130px;
}
.stages {
  margin-bottom: 80px;
}
.stages_tabs {
  display: flex;
  column-gap: 14px;
  row-gap: 14px;
  flex-wrap: wrap;
  padding-top: 5px;
  margin-bottom: 40px;
}
.stages_tab {
  background: transparent;
  border: 2px solid var(--gray);
  border-radius: 5px;
  padding: 14px 18px;
  font-family: var(--font-Unbounded);
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}
.stages_tab:hover,
.stages_tab.active {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.stages_block {
  display: none;
}
.stages_block.active {
  display: block;
}
.stages_elem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 250px;
  padding: 30px 20px 30px 275px;
  background-color: var(--light-gray);
  border-radius: 15px;
}
.stages_elem::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  width: 250px;
  height: 100%;
}
.stages_elem--project::before {
  background: url("/static/img/stages-project.png") center center / 56% auto
    no-repeat;
}
.stages_elem--base::before {
  background: url("/static/img/stages-base.png") center center / 90% auto
    no-repeat;
}
.stages_elem--wall::before {
  background: url("/static/img/stages-wall.png") center center / 90% auto
    no-repeat;
}
.stages_elem--roof::before {
  background: url("/static/img/stages-roof.png") center center / 90% auto
    no-repeat;
}
.stages_elem--facade::before {
  background: url("/static/img/stages-facade.png") center center / 90% auto
    no-repeat;
}
.stages_elem--engineer::before {
  background: url("/static/img/stages-engineer.png") center center / 75% auto
    no-repeat;
}
.stages_elem__sub {
  font-family: var(--font-Unbounded);
  font-weight: 500;
  margin-bottom: 30px;
}
.stages_elem p {
  margin-bottom: 0;
}
.stages_elem p + p {
  margin-top: 15px;
}
@media screen and (max-width: 1140px) {
  .stages_elem {
    padding: 20px 20px 20px 240px;
  }
  .stages_elem::before {
    width: 220px;
  }
  .stages_elem__sub {
    margin-bottom: 20px;
  }
  .mainpage .stages {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 992px) {
  .stages_tabs {
    margin-bottom: 30px;
    column-gap: 10px;
    row-gap: 10px;
  }
  .stages_tab {
    padding: 12px 15px;
  }
}
@media screen and (max-width: 768px) {
  .stages_elem {
    padding: 15px 10px 15px 200px;
  }
  .stages_elem::before {
    width: 190px;
    left: 5px;
  }
  .stages_elem__sub {
    margin-bottom: 15px;
  }
  .mainpage .stages {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 600px) {
  .stages_elem {
    padding-left: 150px;
  }
  .stages_elem::before {
    width: 140px;
  }
}
@media screen and (max-width: 480px) {
  .stages_tab {
    width: 100%;
  }
  .stages_elem {
    padding: 150px 10px 15px 20px;
  }
  .stages_elem::before {
    width: 100%;
    height: 140px;
    left: 0;
    background-size: auto 80%;
  }
}
.slider-btn-prev,
.slider-btn-next {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border: 2px solid var(--orange);
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
  transition: 0.2s;
}
.slider-btn-prev::before,
.slider-btn-next::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25%;
  filter: invert(50%) sepia(80%) saturate(1795%) hue-rotate(3deg)
    brightness(98%) contrast(99%);
}
.slider-btn-prev::before {
  background-image: url("/static/img/arrow-left.svg");
}
.slider-btn-next::before {
  background-image: url("/static/img/arrow-right.svg");
}
.slider-btn-prev:hover,
.slider-btn-next:hover {
  background: var(--orange);
}
.slider-btn-prev:hover::before,
.slider-btn-next:hover::before {
  filter: invert(100%) sepia(0%) saturate(7480%) hue-rotate(192deg)
    brightness(110%) contrast(105%);
}

.works-gallery {
  margin-bottom: 60px;
}
.works-gallery_header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 10px;
  margin: 0 0 30px;
}
.works-gallery_sub {
  margin: 0;
}
.works-gallery_btns {
  display: flex;
  column-gap: 10px;
}
.works-slider {
  position: relative;
  overflow: hidden;
}
.works-slider img {
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .slider-btn-prev,
  .slider-btn-next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .works-gallery {
    margin-bottom: 40px;
  }
  .works-gallery_header {
    flex-direction: column;
  }
}
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 16px;
  padding: 20px 0;
}
.breadcrumbs > li {
  display: flex;
  align-items: center;
}
.breadcrumbs > li::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: url("/static/img/breads.svg") center center / 100% no-repeat;
}
.breadcrumbs > li:last-child:after {
  display: none;
}
.breadcrumbs > li span {
  color: var(--orange);
}
@media screen and (max-width: 480px) {
  .breadcrumbs {
    padding: 15px 0;
  }
}
.maincatalog {
  padding-top: 15px;
  padding-bottom: 100px;
}
.maincatalog_tabs {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  padding-top: 5px;
  margin-bottom: 30px;
}
.maincatalog_tab {
  background: transparent;
  border: 2px solid var(--gray);
  border-radius: 5px;
  padding: 14px 18px;
  font-family: var(--font-Unbounded);
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
}
.maincatalog_tab:hover,
.maincatalog_tab.active {
  background-color: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
@media screen and (max-width: 992px) {
  .maincatalog {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .maincatalog_tabs {
    margin-bottom: 20px;
  }
  .maincatalog_tab {
    padding: 12px 15px;
  }
}
@media screen and (max-width: 480px) {
  .maincatalog_tab {
    width: 100%;
  }
}
.catalog {
  padding-top: 15px;
  padding-bottom: 50px;
}
.catalog_grid {
  display: grid;
  grid-template-columns: 210px 1fr;
  column-gap: 28px;
  row-gap: 25px;
}
.catalog_rubrics {
  background-color: var(--light-gray);
  border-radius: 15px;
}
.catalog_menu {
  font-size: 14px;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  padding: 0 30px 0 20px;
}
.catalog_menu + .catalog_menu {
  margin-top: 20px;
}
.catalog_menu li {
  border-bottom: 1px solid var(--gray);
  padding: 4px 0;
}
.catalog_menu .catalog_menu__toggle {
  border: none;
}
.catalog_menu li:last-child {
  border: none;
}
.catalog_menu li a {
  display: block;
  padding: 8px 0;
  transition: 0.1s;
}
.catalog_menu li.active > a,
.catalog_menu li a:hover {
  color: var(--orange);
}
.catalog_toggle {
  position: relative;
  display: block;
  width: auto;
  border: none;
  text-align: left;
  background: transparent;
  padding: 0 25px 0 0;
  text-transform: uppercase;
  cursor: pointer;
}
.catalog_toggle::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--orange);
}
.catalog_toggle.active::before {
  transform: rotate(180deg);
}
.catalog_menu.catalog_menu--square {
  padding-bottom: 20px;
}
.catalog_menu--square ul {
  display: none;
}
.catalog_menu--square ul li:last-child a {
  padding-bottom: 0;
}
.catalog_list {
  display: grid;
  grid-template-columns: repeat(3, 31.5%);
  justify-content: space-between;
  row-gap: 80px;
  margin-bottom: 80px;
}
.catalog_list__item {
  display: flex;
  flex-direction: column;
}
.catalog_list__link {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.catalog_list__pic {
  position: relative;
  display: block;
  max-width: 370px;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.catalog_list__pic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
  border-radius: 15px;
  transition: opacity 0.2s;
  opacity: 0;
  z-index: 1;
}
.catalog_list__pic img {
  display: block;
  border-radius: 15px;
  transition: transform 0.2s;
  transform-origin: center bottom;
}
.catalog_list__item:hover .catalog_list__pic::before {
  opacity: 1;
}
.catalog_list__item:hover .catalog_list__pic img {
  transform: scale(1.05);
}
.catalog_list__name {
  display: block;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--gray);
  transition: 0.2s;
}
.catalog_list__item:hover .catalog_list__name {
  border-color: var(--orange);
}
.catalog_list__specs {
  display: grid;
  grid-template-columns: 41% 56%;
  justify-content: space-between;
  row-gap: 5px;
  margin-bottom: 25px;
}
.catalog_list__spec {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  font-weight: 500;
  padding-left: 45px;
}
.catalog_list__spec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
}
.catalog_list__spec--square::before {
  background: url("/static/img/spec-square.svg") center center / 85% no-repeat;
}
.catalog_list__spec--base::before {
  background: url("/static/img/spec-base.svg") center center / 95% no-repeat;
}
.catalog_list_btns {
  display: grid;
  grid-template-columns: 41% 56%;
  justify-content: space-between;
  row-gap: 10px;
  font-size: 16px;
}
.catalog_list_more,
.catalog_list_request {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  width: 100%;
  min-height: 50px;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2em;
}
.catalog_list_more {
  background-color: var(--dark-blue);
}
.catalog_list_request {
  background-color: var(--orange);
}
@media screen and (max-width: 1280px) {
  .catalog_list {
    row-gap: 60px;
    margin-bottom: 60px;
  }
  .catalog_list__name {
    font-size: 20px;
  }
  .catalog_list__specs,
  .catalog_list_btns {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 1140px) {
  .catalog_list_btns {
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .catalog {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .catalog_list__specs {
    margin-bottom: 15px;
  }
  .catalog_list {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 40px;
  }
}
@media screen and (max-width: 860px) {
  .catalog_grid {
    grid-template-columns: 190px 1fr;
    column-gap: 20px;
  }
  .catalog_menu {
    padding: 0 15px 0 20px;
  }
  .catalog_toggle {
    padding-right: 20px;
  }
  .catalog_list__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .catalog_grid {
    grid-template-columns: 100%;
  }
  .catalog_menu {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .catalog_list__name {
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .catalog_list_btns {
    grid-template-columns: 100%;
  }
  .catalog_list_more,
  .catalog_list_request {
    min-height: 40px;
  }
}
@media screen and (max-width: 480px) {
  .catalog_list__spec {
    min-height: 32px;
    font-size: 14px;
    padding-left: 36px;
  }
  .catalog_list__spec::before {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 420px) {
  .catalog_list {
    grid-template-columns: 100%;
    row-gap: 30px;
    margin-bottom: 40px;
  }
}
.item {
  padding-top: 15px;
  padding-bottom: 60px;
}
.item_grid {
  display: grid;
  grid-template-columns: calc(100% - 390px) 360px;
  justify-content: space-between;
  row-gap: 30px;
  padding-top: 30px;
  margin-bottom: 60px;
}
.item_display {
  width: 100%;
  max-width: 1019px;
}
.item-gallery {
  padding-top: 10px;
  padding-bottom: 18px;
}
.item-gallery img,
.item_display__single img {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}
.item-thumbs {
  overflow: hidden;
  width: 100%;
}
.item-thumbs_wrap {
  position: relative;
  padding: 0 65px;
}
.item-thumbs .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.item_display .swiper-item-prev,
.item_display .swiper-item-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.item_display .swiper-item-prev {
  left: 0px;
}
.item_display .swiper-item-next {
  right: 0px;
}
.item-thumbs img {
  display: block;
  margin: 0 auto;
}

.item_title {
  margin: 0 0 20px;
}
.item_info__block {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 25px 10px 25px 30px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-Unbounded);
}
.item_contacts__sub {
  line-height: 1.1em;
  margin-bottom: 20px;
}
.item_contacts__sub b {
  display: block;
  font-weight: 500;
}
.item_contacts__sub span {
  font-size: 0.8em;
  font-family: var(--font-Muller);
}
.item_contacts .phones-row {
  font-size: 1.2em;
  color: var(--orange);
  font-family: var(--font-Muller);
  font-weight: 700;
}
.item_specs {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 20px 10px 15px 20px;
  margin-bottom: 15px;
  font-size: 16px;
}
.item_specs__sub {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
}
.item_specs__grid {
  display: grid;
  grid-template-columns: 38% 58%;
  justify-content: space-between;
  row-gap: 20px;
  font-size: 14px;
}
.item_spec {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 38px;
  font-weight: 500;
  padding-left: 45px;
  line-height: 1.1em;
}
.item_spec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
}
.item_spec--square::before {
  background: url("/static/img/spec-square.svg") center center / 90% no-repeat;
}
.item_spec--floor::before {
  background: url("/static/img/spec-floor.svg") center center / 80% no-repeat;
}
.item_spec--dimension::before {
  background: url("/static/img/spec-base.svg") center center / 100% no-repeat;
}
.item_spec--bedrooms::before {
  background: url("/static/img/spec-bedrooms.svg") center center / 95% no-repeat;
}
.item_spec b {
  display: block;
  font-weight: 700;
  margin-bottom: 5px;
}
@media screen and (max-width: 1280px) {
  .item_grid {
    padding-top: 10px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .item_grid {
    grid-template-columns: calc(100% - 320px) 300px;
  }
  .item_info__block {
    padding: 20px 10px 20px 20px;
    font-size: 18px;
  }
  .item_contacts .phones-row img {
    width: 28px;
  }
  .item_specs__grid {
    display: grid;
    grid-template-columns: 46% 50%;
  }
  .item_contacts__sub {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .item_grid {
    grid-template-columns: 100%;
    padding-top: 0;
  }
  .item_info__blocks {
    display: grid;
    grid-template-columns: 56% 42%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 600px) {
  .item_info__blocks {
    grid-template-columns: 100%;
  }
  .item-thumbs_wrap {
    padding: 0 45px;
  }
  .item_display .swiper-item-prev {
    left: -5px;
  }
  .item_display .swiper-item-next {
    right: -5px;
  }
  .item-thumbs .swiper-slide {
    border-radius: 5px;
  }
}
.proposition img {
  display: block;
}
.item_description {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 85px;
}
.item_description h2 {
  margin-bottom: 25px;
}
.item .proposition {
  padding: 40px 0;
}
@media screen and (max-width: 1280px) {
  .item_description {
    margin-bottom: 60px;
  }
  .item .proposition {
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  .item_description {
    padding-top: 0px;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .item .proposition {
    padding: 10px 0;
  }
}

.services {
  padding-top: 15px;
  padding-bottom: 80px;
}
.services_list {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  padding-top: 35px;
  margin-bottom: 40px;
  row-gap: 70px;
}
.services_list__item {
  display: flex;
  flex-direction: column;
  max-width: 450px;
}
.services_list__link {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.services_list__pic {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.1s;
  margin-bottom: 10px;
}
/* .services_list__pic::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8) 100%);
} */
.services_list__item:hover .services_list__pic {
  box-shadow: 0px 1px 10px 4px rgba(17, 24, 54, 0.2);
}
.services_list__pic img {
  display: block;
  border-radius: 15px;
}
.services_list__name {
  position: absolute;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--font-Unbounded);
  color: var(--white);
  left: 0;
  bottom: 0;
  width: 100%;
  text-transform: uppercase;
  padding: 0 10px 25px 30px;
  line-height: 1.2em;
}
.services_list .services_list__text {
  background-color: var(--light-gray);
  padding: 20px 20px 20px 25px;
  border-radius: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  flex: 1;
  line-height: 1.5em;
}
.services_list__item:hover .services_list__text {
  box-shadow: 0px 1px 1px 0px rgba(17, 24, 54, 0.2);
  transition: 0.1s;
}
.services_list__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-Unbounded);
  color: var(--white);
  font-weight: 500;
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  min-height: 50px;
  font-size: 16px;
  max-width: 210px;
  transition: 0.1s;
}
.services_list__item:hover .services_list__btn {
  background-color: var(--orange);
  color: var(--white);
}
@media screen and (max-width: 1280px) {
  .services_list__name {
    font-size: 22px;
    padding: 0 10px 20px 20px;
  }
  .services_list .services_list__text {
    padding: 20px 15px 15px 20px;
  }
}
@media screen and (max-width: 992px) {
  .services {
    padding-top: 10px;
    padding-bottom: 60px;
  }
  .services_list {
    grid-template-columns: repeat(2, 48.5%);
    row-gap: 40px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .services_list__name {
    font-size: 20px;
    padding: 0 5px 10px 15px;
  }
  .services_list .services_list__text {
    padding: 15px 10px 15px 15px;
  }
}
@media screen and (max-width: 680px) {
  .services_list__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .services_list {
    grid-template-columns: 100%;
  }
  .services_list__item {
    margin: 0 auto;
  }
  .services_list__btn {
    min-height: 46px;
    font-size: 15px;
    max-width: 200px;
  }
}
.form_entry {
  display: block;
  width: 100%;
  border: 2px solid var(--gray);
  border-radius: 5px;
  color: #1e1e1e;
  padding: 14px 10px 14px 18px;
}
.agreement {
  position: relative;
  display: block;
  font-size: 12px;
  line-height: 1.2em;
  letter-spacing: 0.06em;
  cursor: pointer;
}
.agreement + .agreement {
  margin-top: 8px;
}
.agreement input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.agreement span {
  position: relative;
  display: block;
  padding-left: 24px;
}
.agreement span::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  border: 1px solid var(--gray);
}
.agreement span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  background: var(--orange);
  opacity: 0;
}
.agreement input:checked + span::after {
  opacity: 1;
}
.agreement a {
  text-decoration: underline;
}
.agreement a:hover {
  text-decoration: none;
}
.popup {
  display: none;
  padding: 50px 60px;
  border-radius: 15px;
  font-family: var(--font-Muller);
  font-size: 14px;
}
.popup .fancybox-close-small {
  color: var(--orange);
  padding: 0;
  right: 15px;
  top: 15px;
}
@media screen and (max-width: 1280px) {
  .popup {
    padding: 35px 40px;
  }
  .popup .fancybox-close-small {
    right: 5px;
    top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .popup {
    padding: 35px 20px 25px;
  }
  .popup .fancybox-close-small {
    right: 0px;
    top: 0px;
  }
}
@media screen and (max-width: 600px) {
  .form_entry {
    padding: 12px 10px 12px 15px;
  }
}
@media screen and (max-width: 480px) {
  .popup {
    padding: 35px 15px 20px;
  }
  .popup .fancybox-close-small {
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
  }
}
.request-popup {
  width: 96vw;
  max-width: 815px;
}
.request-popup .h2 {
  margin: 0 0 30px;
  text-align: center;
}
.request-form_entries {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 10px;
  margin-bottom: 20px;
}
.request-form_entries textarea {
  grid-column: 2/3;
  grid-row: 1/3;
  min-height: 100px;
  resize: none;
}
.request-form_controls {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 20px;
}
.request-form_btn {
  width: 100%;
  max-width: 275px;
}
@media screen and (max-width: 1280px) {
  .request-popup .h2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .request-form_btn {
    max-width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .request-popup .h2 {
    margin-bottom: 15px;
  }
  .request-form_entries {
    grid-template-columns: 100%;
  }
  .request-form_entries textarea {
    grid-column: initial;
    grid-row: initial;
    min-height: 80px;
  }
  .request-form_controls {
    flex-direction: column;
    row-gap: 10px;
  }
  .request-form_btn {
    margin: 0 auto;
  }
}

.calc-popup {
  width: 96vw;
  max-width: 1170px;
  font-size: 16px;
}
.calc-popup .h2 {
  margin: 0 0 30px;
  line-height: 1.2em;
}
.calc-popup_sub {
  font-size: 18px;
  font-weight: 500;
}
.calc-form_content {
  padding-top: 10px;
}
.calc-form_grid {
  display: grid;
  grid-template-columns: repeat(4, 24%);
  justify-content: space-between;
  row-gap: 25px;
  margin-bottom: 15px;
}
.calc-form_checks__sub {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.calc-form_check {
  position: relative;
  display: block;
  cursor: pointer;
  line-height: 1.2em;
  margin-bottom: 5px;
}
.calc-form_check input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.calc-form_check span {
  position: relative;
  display: block;
  padding-left: 24px;
}
.calc-form_check span::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  border: 1px solid var(--gray);
}
.calc-form_check span::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  background: var(--orange);
  opacity: 0;
}
.calc-form_check input:checked + span::after {
  opacity: 1;
}
.calc-form_entries {
  display: grid;
  grid-template-columns: repeat(2, 49.5%);
  justify-content: space-between;
  row-gap: 25px;
  margin-bottom: 55px;
}
.calc-form_entries__row {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 15px;
}
.calc-form_entry {
  display: flex;
  flex-direction: column;
}
.calc-form_entry span {
  display: block;
  flex: 1;
  font-weight: 500;
  margin-bottom: 5px;
}
.calc-form_agreements {
  align-self: flex-end;
  padding-bottom: 5px;
}
.calc-form_btn {
  width: 100%;
  max-width: 275px;
}
.ui-front {
  position: relative;
  width: 100%;
  z-index: unset;
}
.ui-front .ui-selectmenu-button.ui-button {
  width: 100%;
  font-family: var(--font-Muller) !important;
  border: 2px solid var(--gray) !important;
  border-radius: 5px !important;
  color: #1e1e1e !important;
  padding: 14px 10px 14px 18px !important;
  margin: 0 !important;
  background-color: transparent !important;
}
.ui-front .ui-selectmenu-menu {
  top: calc(100% + 5px) !important;
  border-radius: 5px !important;
  background-color: var(--white) !important;
  z-index: 10 !important;
}
.ui-front .ui-widget.ui-widget-content {
  border-radius: 10px !important;
  border: 2px solid var(--gray) !important;
  overflow: hidden;
}
.ui-front .ui-state-active,
.ui-front .ui-widget-content .ui-state-active {
  background-color: var(--orange) !important;
  border: none !important;
  margin: 0 !important;
}
.ui-front .ui-menu .ui-menu-item-wrapper {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 5px 10px 5px 15px;
  line-height: 1.1em;
}
.ui-front .ui-widget-content .ui-state-disabled {
  display: none !important;
}
.ui-front .ui-button .ui-icon {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--orange);
  background: none !important;
  margin: 0 !important;
  width: 16px !important;
  height: 8px !important;
  top: 4px;
}
.ui-front .ui-button.ui-selectmenu-button-open .ui-icon {
  transform: scale(1, -1);
}
@supports (-webkit-touch-callout: none) {
  .calc-popup {
    height: -webkit-fill-available;
  }
}
@media screen and (max-width: 1280px) {
  .calc-popup .h2 {
    margin-bottom: 15px;
  }
  .calc-form_content {
    padding-top: 0;
  }
  .calc-form_entries {
    row-gap: 15px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 890px) {
  .calc-form_grid {
    row-gap: 15px;
  }
  .calc-form_grid .ui-front {
    grid-column: span 2;
  }
  .calc-popup_sub {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .calc-popup {
    font-size: 14px;
  }
  .calc-form_grid {
    grid-template-columns: repeat(2, 49.5%);
    row-gap: 10px;
    margin-bottom: 10px;
  }
  .calc-form_grid .ui-front {
    grid-column: initial;
  }
  .calc-form_entries {
    row-gap: 10px;
    margin-bottom: 10px;
  }
  .calc-form_entries__row {
    grid-column: 1/-1;
  }
  .calc-form_agreements {
    grid-column: 1/-1;
    padding-bottom: 0;
  }
  .calc-form_checks {
    display: grid;
    grid-template-columns: repeat(2, 49%);
    justify-content: space-between;
  }
  .calc-form_checks__sub {
    grid-column: 1 / -1;
  }
  .calc-popup_sub {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .calc-popup .h2 {
    margin-bottom: 10px;
  }
  .calc-popup .form_entry {
    padding: 10px;
  }
  .ui-front .ui-selectmenu-button.ui-button {
    padding: 10px !important;
  }
  .ui-front .ui-menu .ui-menu-item-wrapper {
    min-height: 36px;
    padding: 5px 10px;
  }
  .calc-form_check {
    margin-bottom: 2px;
  }
  .calc-form_entry span {
    line-height: 1.2em;
    margin-bottom: 2px;
  }
  .calc-form_checks {
    grid-template-columns: 100%;
  }
  .calc-form_checks__sub {
    grid-column: initial;
  }
  .calc-form_btn {
    max-width: 220px;
  }
}
@media screen and (max-width: 480px) {
  .calc-popup {
    padding-top: 15px;
  }
  .calc-popup .h2 {
    padding-right: 20px;
  }
  .calc-popup_sub {
    display: none;
  }
  .calc-popup .form_entry {
    padding: 8px;
  }
  .ui-front .ui-selectmenu-button.ui-button {
    padding: 8px !important;
  }
  .ui-front .ui-menu .ui-menu-item-wrapper {
    min-height: 34px;
    padding: 5px 8px;
  }
}

.prices {
  padding-top: 15px;
  padding-bottom: 80px;
}
.prices_homes {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 40px;
  margin-bottom: 40px;
}
.prices_homes__item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.prices_homes__img {
  position: relative;
  display: block;
  max-width: 450px;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: 0.1s;
}
.prices_homes__img::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 50%;
  border-radius: 15px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}
.prices_homes__item:hover .prices_homes__img {
  box-shadow: 0px 1px 20px 4px rgba(17, 24, 54, 0.1);
}
.prices_homes__img img {
  display: block;
  border-radius: 15px;
}
.prices_homes__desc {
  background-color: var(--light-gray);
  padding: 25px 15px 20px 25px;
  border-radius: 15px;
  flex: 1;
  margin-bottom: 10px;
  font-weight: 500;
  transition: 0.1s;
}
.prices_homes__item:hover .prices_homes__desc {
  box-shadow: 0px 1px 1px 0px rgba(17, 24, 54, 0.2);
}
.prices_homes__name {
  display: block;
  font-family: var(--font-Unbounded);
  font-size: 24px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prices_homes__price {
  position: relative;
  display: block;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  padding-bottom: 18px;
  margin-bottom: 30px;
}
.prices_homes__price::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  height: 2px;
  background-color: var(--orange);
}
.prices_homes__sub {
  font-family: var(--font-Unbounded);
  font-size: 14px;
  display: block;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.prices_homes__desc ul li {
  margin-bottom: 10px;
}
.prices_homes__desc ul li::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}
.prices_homes__more {
  display: inline-block;
  font-family: var(--font-Unbounded);
  font-size: 16px;
  font-weight: 500;
  margin-right: auto;
  border: 2px solid var(--orange);
  color: var(--orange);
  transition: 0.1s;
  padding: 12px 28px;
  border-radius: 5px;
}
.prices_homes__item:hover .prices_homes__more {
  color: var(--white);
  background-color: var(--orange);
}
@media screen and (max-width: 1280px) {
  .prices {
    padding-bottom: 60px;
  }
  .prices_homes__name {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .prices_homes {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 768px) {
  .prices_homes__desc {
    padding: 20px 10px 15px 20px;
  }
  .prices_homes__name {
    font-size: 20px;
  }
  .prices_homes__price {
    padding-bottom: 14px;
    margin-bottom: 20px;
  }
  .prices_homes__sub {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .prices_homes__more {
    font-size: 14px;
    padding: 10px 15px;
  }
}
@media screen and (max-width: 600px) {
  .prices_homes {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 480px) {
  .prices {
    padding-top: 0;
    margin-bottom: 40px;
  }
  .prices_homes__name {
    font-size: 18px;
  }
}
.contacts {
  padding-top: 15px;
  padding-bottom: 80px;
}
.contacts_grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  column-gap: 20px;
  row-gap: 30px;
  margin-bottom: 45px;
}
.contacts_text {
  font-weight: 500;
  font-size: 18px;
}
.contacts_map {
  border: 2px solid var(--gray);
  border-radius: 15px;
  overflow: hidden;
}
.contacts_map iframe {
  display: block;
  width: 100%;
}
.contacts .contact-elem {
  padding-left: 45px;
  margin-bottom: 40px;
  line-height: 1.3em;
}
.contacts .contact-elem::before {
  width: 26px;
  height: 28px;
  filter: invert(52%) sepia(26%) saturate(6494%) hue-rotate(9deg)
    brightness(105%) contrast(99%);
}
.contacts_vk {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media screen and (max-width: 1280px) {
  .contacts_grid {
    grid-template-columns: 320px 1fr;
  }
}
@media screen and (max-width: 992px) {
  .contacts {
    padding-top: 0px;
    padding-bottom: 60px;
  }
  .contacts_grid {
    grid-template-columns: 300px 1fr;
    margin-bottom: 30px;
  }
  .contacts .contact-elem {
    padding-left: 38px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contacts_grid {
    grid-template-columns: 100%;
  }
  .contacts .contact-elem {
    margin-bottom: 20px;
  }
  .contacts_vk {
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
  }
  .contacts_vk img {
    width: 48px;
  }
}
@media screen and (max-width: 480px) {
  .contacts_text {
    font-size: 16px;
  }
}
.service-slide {
  display: flex;
  width: 100%;
  max-width: 1920px;
  min-height: 800px;
  padding: 15px 0 120px;
  margin: 0 auto;
  color: var(--white);
}
.service-slide_content {
  display: flex;
  flex-direction: column;
}
.service-slide .breadcrumbs > li::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%)
    hue-rotate(322deg) brightness(110%) contrast(101%);
}
.service-slide_inner {
  text-align: center;
  background-color: rgb(37, 37, 37, 0.9);
  width: 100%;
  max-width: 1100px;
  margin: auto;
  border-radius: 15px;
  padding: 45px 30px 65px;
}
.service-slide_title {
  text-align: center;
  line-height: 1.5em;
  margin: 0 0 20px;
}
.service-slide_inner p {
  font-weight: 500;
  line-height: 1.45em;
}
.service-slide .o-btn {
  max-width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .service-slide {
    min-height: 680px;
    padding: 15px 0 80px;
  }
}
@media screen and (max-width: 1140px) {
  .service-slide .o-btn {
    max-width: 280px;
    font-size: 16px;
    min-height: 54px;
  }
  .service-slide_inner {
    padding: 30px 20px 45px;
  }
}
@media screen and (max-width: 992px) {
  .service-slide {
    min-height: 540px;
    padding: 0 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .service-slide {
    min-height: 500px;
  }
  .service-slide_inner {
    padding: 25px 15px 30px;
  }
  .service-slide_title {
    margin-bottom: 15px;
  }
  .service-slide .o-btn {
    max-width: 220px;
    font-size: 14px;
    min-height: 48px;
  }
}
.roof_slide {
  background: url("/static/img/roof_slide.jpg") center top / cover no-repeat;
}
.roof_slide__inner p {
  max-width: 730px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1140px) {
  .roof_slide__inner {
    max-width: 860px;
  }
}
@media screen and (max-width: 992px) {
  .roof_slide__inner p {
    margin-bottom: 20px;
  }
}
.roof_page {
  padding-top: 75px;
  padding-bottom: 90px;
}
.roof_types {
  padding-top: 75px;
  padding-bottom: 50px;
}
.roof_types__list {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 55px;
}
.roof_types__elem {
  display: flex;
  flex-wrap: wrap;
  border-radius: 15px;
  background-color: var(--light-gray);
  overflow: hidden;
  font-weight: 500;
  line-height: 1.35;
}
.roof_types__pic {
  width: 48%;
  max-width: 329px;
}
.roof_types__pic img {
  display: block;
  border-radius: 15px 0 0 15px;
}
.roof_types__text {
  width: 52%;
  padding: 25px 15px 10px 25px;
}
.roof_types__name {
  display: block;
  border-bottom: 2px solid var(--orange);
  font-family: var(--font-Unbounded);
  font-size: 22px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5em;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.roof_types__notice {
  font-family: var(--font-Unbounded);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .roof_types__text {
    padding: 20px 15px 10px 20px;
  }
  .roof_types__name {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1280px) {
  .roof_page {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .roof_types {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .roof_types__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (max-width: 1140px) {
  .roof_types__desc {
    font-size: 16px;
  }
  .roof_types__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .roof_page {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .roof_types {
    padding-top: 20px;
  }
  .roof_types__list {
    grid-template-columns: 100%;
    margin-bottom: 35px;
  }
  .roof_types__desc {
    font-size: 18px;
  }
  .roof_types__name {
    font-size: 20px;
  }
  .roof_types h2 br {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .roof_types__desc {
    font-size: 16px;
  }
  .roof_types__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .roof_types__pic {
    width: 100%;
    max-width: initial;
  }
  .roof_types__pic img {
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
  }
  .roof_types__text {
    width: 100%;
  }
  .roof_types__name br {
    display: none;
  }
}
.consult-block {
  background-color: #f27e01;
  color: var(--white);
  text-align: center;
  border-radius: 15px;
  padding: 35px 30px 45px;
  margin-bottom: 40px;
}
.consult-block_title {
  margin: 0 0 20px;
  line-height: 1.55;
}
.consult-block_contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 5px;
  font-size: 22px;
  margin-bottom: 25px;
}
.consult-block .phones-row {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.consult-block .o-btn {
  background-color: var(--white);
  color: var(--orange);
  max-width: 290px;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .consult-block {
    padding: 25px 20px 35px;
    margin-bottom: 30px;
  }
  .consult-block .o-btn {
    max-width: 280px;
    font-size: 16px;
    min-height: 54px;
  }
}
@media screen and (max-width: 768px) {
  .consult-block .phones-row {
    font-size: 24px;
  }
  .consult-block .phones-row img {
    width: 32px;
  }
}
@media screen and (max-width: 480px) {
  .consult-block {
    padding: 20px 15px 30px;
    margin-bottom: 20px;
  }
  .consult-block .o-btn {
    max-width: 220px;
    font-size: 14px;
    min-height: 48px;
  }
  .consult-block .phones-row {
    font-size: 22px;
  }
  .consult-block .phones-row img {
    width: 28px;
  }
}
@media screen and (max-width: 380px) {
  .consult-block {
    padding: 20px 10px 30px;
  }
  .consult-block .phones-row {
    font-size: 20px;
  }
  .consult-block .phones-row img {
    width: 26px;
  }
}
.roof_services {
  padding-top: 60px;
}
.roof_services .services_list {
  padding-top: 0;
}
.roof_services .services_list__name {
  line-height: 1.3em;
}
@media screen and (max-width: 1280px) {
  .roof_services {
    padding-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .roof_services {
    padding-top: 20px;
  }
}

.foundation_slide {
  background: url("/static/img/foundation_slide.jpg") center top / cover
    no-repeat;
  padding-bottom: 70px;
}
.foundation_slide .service-slide_content {
  max-width: 1610px;
}
.foundation_slide .breadcrumbs {
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
}
.foundation_slide .service-slide_title {
  margin-bottom: 40px;
}
.foundation_slide__inner {
  max-width: 100%;
}
@media screen and (max-width: 992px) {
  .foundation_slide {
    padding-bottom: 40px;
  }
  .foundation_slide .service-slide_title {
    margin-bottom: 20px;
  }
}
.foundation_page {
  padding-top: 75px;
  padding-bottom: 65px;
  font-weight: 500;
}
.foundation_tech {
  display: grid;
  grid-template-columns: 59% 39%;
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 110px;
  margin-bottom: 80px;
}
.foundation_tech.foundation_tech--strip {
  align-items: center;
  padding-top: 65px;
  margin-bottom: 60px;
}
.foundation_tech h2 {
  margin: 0 0 25px;
}
.foundation_tech p {
  max-width: 700px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 25px;
}
.foundation_tech img {
  display: block;
}
.foundation_tech--strip .foundation_tech__text {
  max-width: 700px;
}
@media screen and (max-width: 1280px) {
  .foundation_page {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .foundation_tech {
    padding-top: 80px;
    margin-bottom: 50px;
  }
  .foundation_tech.foundation_tech--strip {
    padding-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .foundation_page {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .foundation_tech {
    grid-template-columns: 56% 42%;
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .foundation_tech h2,
  .foundation_tech p {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .foundation_tech {
    grid-template-columns: 100%;
  }
  .foundation_tech img {
    margin: 0 auto;
  }
  .foundation_tech.foundation_tech--strip {
    padding-top: 25px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 480px) {
  .foundation_tech {
    padding-top: 20px;
  }
}
.foundation_subtitle {
  font-family: var(--font-Unbounded);
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 35px;
  font-weight: 500;
}
.foundation_preffs {
  font-weight: 500;
  padding-bottom: 25px;
  margin-bottom: 90px;
}
.foundation_preffs .foundation_subtitle {
  max-width: 1100px;
}
.foundation_preffs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 55px;
}
.foundation_preff {
  position: relative;
  background-color: var(--light-gray);
  padding: 22px 20px 25px 180px;
  border-radius: 15px;
  min-height: 140px;
}
.foundation_preff::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 15px;
  width: 145px;
  height: 145px;
  background-size: 100%;
}
.foundation_preff--1 {
  width: 57.5%;
}
.foundation_preff--2 {
  width: 40.5%;
}
.foundation_preff--3 {
  width: 54.5%;
}
.foundation_preff--4 {
  width: 43%;
}
.foundation_preff--1::before {
  background-image: url("/static/img/foundation_preff_01.png");
}
.foundation_preff--2::before {
  background-image: url("/static/img/foundation_preff_02.png");
}
.foundation_preff--3::before {
  background-image: url("/static/img/foundation_preff_03.png");
}
.foundation_preff--4::before {
  background-image: url("/static/img/foundation_preff_04.png");
}

.foundation_preffs__name {
  position: relative;
  font-family: var(--font-Unbounded);
  padding-bottom: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.foundation_preffs__name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  max-width: 330px;
  border-bottom: 2px solid var(--orange);
}
.foundation_preff p {
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (max-width: 1140px) {
  .foundation_preff {
    padding-left: 145px;
  }
  .foundation_preff::before {
    left: 5px;
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 1280px) {
  .foundation_preffs {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 992px) {
  .foundation_preffs {
    margin-bottom: 40px;
  }
  .foundation_subtitle {
    font-size: 20px;
  }
  .foundation_preffs__list {
    row-gap: 20px;
    margin-bottom: 30px;
  }
  .foundation_preff--1,
  .foundation_preff--2 {
    width: 100%;
  }
  .foundation_preffs__name {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .foundation_preffs {
    padding-bottom: 0;
  }
  .foundation_subtitle {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .foundation_preff--3,
  .foundation_preff--4 {
    width: 100%;
  }
  .foundation_preff::before {
    top: 5px;
  }
}
@media screen and (max-width: 600px) {
  .foundation_preff {
    padding: 15px 10px 20px 110px;
  }
  .foundation_preff::before {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 480px) {
  .foundation_subtitle {
    font-size: 16px;
  }
  .foundation_preff {
    padding-left: 20px;
    min-height: initial;
  }
  .foundation_preff::before {
    width: 75px;
    height: 75px;
  }
  .foundation_preffs__name {
    display: flex;
    align-items: center;
    min-height: 60px;
    margin-left: 70px;
  }
}
@media screen and (max-width: 380px) {
  .foundation_preffs__name {
    font-size: 15px;
  }
}
.foundation_advants {
  margin-bottom: 70px;
}
.foundation_advants__list {
  display: grid;
  grid-template-columns: 27% 37% 32%;
  justify-content: space-between;
  row-gap: 20px;
  margin-bottom: 20px;
}
.foundation_advants__elem {
  background-color: var(--light-gray);
  padding: 30px 25px 10px 35px;
  border-radius: 15px;
  font-weight: 500;
}
.foundation_advants__name {
  position: relative;
  display: block;
  font-family: var(--font-Unbounded);
  line-height: 1.6em;
  text-transform: uppercase;
  padding: 0 0 20px 84px;
  margin-bottom: 20px;
  min-height: 80px;
}
.foundation_advants__name::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 85px;
  line-height: 1em;
  font-family: var(--font-Unbounded);
  color: var(--orange);
  font-weight: 500;
}
.foundation_advants__name::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  height: 2px;
  background-color: var(--orange);
}
@media screen and (max-width: 1280px) {
  .foundation_advants__list {
    grid-template-columns: 30% 32% 34%;
  }
  .foundation_advants__elem {
    padding: 20px 15px 10px 20px;
  }
  .foundation_advants__name {
    font-size: 17px;
    padding: 0px 0 15px 75px;
    margin-bottom: 15px;
    min-height: 70px;
  }
  .foundation_advants__name::before {
    font-size: 75px;
  }
}
@media screen and (max-width: 992px) {
  .foundation_advants__list {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 768px) {
  .foundation_advants {
    margin-bottom: 40px;
  }
  .foundation_advants__name {
    font-size: 16px;
    padding-left: 60px;
    min-height: 65px;
  }
  .foundation_advants__name::before {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  .foundation_advants__list {
    grid-template-columns: 100%;
  }
  .foundation_advants__name {
    display: flex;
    align-items: center;
  }
  .foundation_advants__name br {
    display: none;
  }
}
.foundation_apply {
  margin-bottom: 65px;
}
.foundation_apply__list {
  display: grid;
  grid-template-columns: repeat(4, 23.5%);
  justify-content: space-between;
  row-gap: 20px;
}
.foundation_apply__elem {
  display: flex;
  flex-direction: column;
  background-color: var(--light-gray);
  border-radius: 15px;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  overflow: hidden;
}
.foundation_apply__desc {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 25px 30px 25px;
}
.foundation_apply__elem img {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}
.foundation_apply_name {
  display: block;
  font-family: var(--font-Unbounded);
  margin-bottom: 25px;
}
.foundation_apply__elem .o-btn {
  text-transform: none;
  min-height: 50px;
}
.foundation_contacts {
  display: flex;
  align-items: baseline;
  column-gap: 15px;
  row-gap: 5px;
  flex-wrap: wrap;
  font-family: var(--font-Unbounded);
  font-weight: 500;
  padding-top: 15px;
  margin-bottom: 140px;
}
.foundation_contacts .mobile-tel {
  font-size: 36px;
  color: var(--orange);
  line-height: 1.2em;
}
@media screen and (max-width: 1480px) {
  .foundation_contacts {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 1280px) {
  .foundation_contacts {
    margin-bottom: 80px;
  }
  .foundation_contacts .mobile-tel {
    font-size: 32px;
  }
  .foundation_apply__desc {
    padding: 15px 20px 25px 20px;
  }
}
@media screen and (max-width: 992px) {
  .foundation_contacts {
    justify-content: center;
    text-align: center;
  }
  .foundation_apply {
    margin-bottom: 40px;
  }
  .foundation_apply__list {
    grid-template-columns: repeat(3, 31.5%);
  }
}
@media screen and (max-width: 768px) {
  .foundation_contacts .mobile-tel {
    font-size: 28px;
  }
  .foundation_apply__list {
    grid-template-columns: repeat(2, 48.5%);
  }
}
@media screen and (max-width: 600px) {
  .foundation_contacts .mobile-tel {
    font-size: 24px;
  }
  .foundation_contacts .phones-row img {
    width: 32px;
  }
}
@media screen and (max-width: 480px) {
  .foundation_contacts .mobile-tel {
    font-size: 20px;
  }
  .foundation_contacts .phones-row img {
    width: 28px;
  }
  .foundation_apply__list {
    grid-template-columns: 100%;
  }
  .foundation_apply__elem .o-btn {
    min-height: 44px;
  }
}
.fasade_slide {
  background: url("/static/img/fasade_slide.jpg") center top / cover no-repeat;
  padding-bottom: 65px;
}
.fasade_slide .service-slide_title {
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .fasade_slide {
    padding-bottom: 40px;
  }
}
.fasade_page {
  font-weight: 500;
  padding: 75px 0 85px;
}
.fasade_materials {
  padding-top: 50px;
  margin-bottom: 80px;
}
.fasade_materials__list {
  display: grid;
  grid-template-columns: repeat(4, 23.5%);
  justify-content: space-between;
  row-gap: 25px;
}
.fasade_materials__list li {
  display: flex;
  flex-direction: column;
  background-color: var(--light-gray);
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 15px;
}
.fasade_materials__list li img {
  display: block;
  border-radius: 15px;
  margin-bottom: 12px;
}
.fasade_materials__list li span {
  display: flex;
  font-family: var(--font-Unbounded);
  align-items: center;
  flex: 1;
  min-height: 40px;
  padding: 0 15px 0 25px;
}
.fasade_blocks {
  margin-bottom: 125px;
}
.fasade_block {
  background-color: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 30px;
  padding: 50px 60px 60px 60px;
}
.fasade_block__header {
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: flex-start;
  column-gap: 30px;
  row-gap: 20px;
  margin-bottom: 35px;
}
.fasade_block__sub {
  position: relative;
  font-family: var(--font-Unbounded);
  text-transform: uppercase;
  font-size: 22px;
  padding-bottom: 15px;
}
.fasade_block__sub::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 280px;
  height: 2px;
  background-color: var(--orange);
}
.fasade_block__text {
  line-height: 1.5;
}
.fasade_block__text p {
  line-height: inherit;
  margin-bottom: 10px;
}
.fasade_block__photos {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}
.fasade_block__photos img {
  display: block;
  border-radius: 15px;
}
@media screen and (max-width: 1280px) {
  .fasade_page {
    padding: 60px 0 75px;
  }
  .fasade_materials {
    padding-top: 40px;
    margin-bottom: 70px;
  }
  .fasade_materials__list {
    grid-template-columns: repeat(4, 24%);
  }
  .fasade_blocks {
    margin-bottom: 100px;
  }
  .fasade_block {
    padding: 35px 30px 40px 30px;
  }
}
@media screen and (max-width: 1140px) {
  .fasade_materials__list li span {
    font-size: 16px;
    padding: 0 10px 0 15px;
  }
}
@media screen and (max-width: 992px) {
  .fasade_page {
    padding: 40px 0 60px;
  }
  .fasade_materials {
    padding-top: 20px;
  }
  .fasade_materials__list {
    grid-template-columns: repeat(3, 31.5%);
  }
  .fasade_blocks {
    margin-bottom: 60px;
  }
  .fasade_block {
    padding: 25px 20px 30px 20px;
  }
  .fasade_block__header {
    grid-template-columns: 260px 1fr;
    margin-bottom: 25px;
  }
  .fasade_block__sub {
    font-size: 20px;
  }
  .fasade_block__photos {
    column-gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .fasade_materials__list {
    grid-template-columns: repeat(2, 48.5%);
  }
  .fasade_block__header {
    grid-template-columns: 100%;
    margin-bottom: 20px;
  }
  .fasade_block__photos {
    grid-template-columns: repeat(2, 49%);
  }
}
@media screen and (max-width: 480px) {
  .fasade_materials {
    padding-top: 10px;
    margin-bottom: 50px;
  }
  .fasade_materials__list {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
  .fasade_block {
    padding: 30px 15px 30px 15px;
  }
  .fasade_block__sub {
    font-size: 18px;
  }
  .fasade_block__photos {
    grid-template-columns: 100%;
  }
}
.politic-page {
  padding-top: 40px;
  padding-bottom: 60px;
}
.politic-page h1 {
  font-size: 24px;
  text-align: center;
}
.politic-page ul {
  padding: 0 0 0 40px;
  margin: 20px 0;
}
.politic-page li {
  list-style: disc;
}
.politic-page li p {
  padding: 0;
  margin: 0 0 5px;
}
.politic-page table p {
  padding: 0;
}
.politic-page table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.politic-page table th,
.politic-page table td {
  padding: 5px;
  border: 1px solid currentColor;
}
@media screen and (max-width: 768px) {
  .politic-page h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .politic-page h1 {
    font-size: 18px;
  }
}
.page-404 {
  padding: 15px 0;
}
.page-404_content {
  padding: 30px 0 90px;
  text-align: center;
  font-weight: 500;
}
.page-404 h1 {
  line-height: 1.5em;
  margin-bottom: 20px;
}
.page-404_sub {
  text-align: center;
  margin-bottom: 50px;
}
.page-404_contacts {
  width: 100%;
  max-width: 1040px;
  border-top: 2px solid var(--orange);
  padding-top: 40px;
  margin: 0 auto;
  font-size: 22px;
}
.page-404_contacts a {
  color: var(--orange);
}
.page-404_contacts .phones-row {
  font-size: 28px;
  display: inline-flex;
  font-weight: 700;
  line-height: 1.1em;
  margin-right: 5px;
}
@media screen and (max-width: 1140px) {
  .page-404_contacts {
    font-size: 20px;
  }
  .page-404_contacts .phones-row {
    font-size: 24px;
  }
  .page-404_contacts .phones-row img {
    width: 30px;
  }
}
@media screen and (max-width: 992px) {
  .page-404_content {
    padding: 20px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .page-404 {
    padding: 0;
  }
  .page-404_sub {
    margin-bottom: 30px;
  }
  page-404_contacts .phones-row {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .page-404_content {
    padding: 10px 0 40px;
  }
  .page-404 h1 {
    margin-bottom: 15px;
    line-height: 1.4em;
  }
  .page-404_contacts {
    font-size: 18px;
    padding-top: 20px;
  }
  .page-404_contacts .phones-row {
    font-size: 20px;
  }
  .page-404_contacts .phones-row img {
    width: 24px;
  }
}
