@charset "UTF-8";

/*Обнуление*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body._active {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
input,
button,
textarea {
  font-family: inherit;
}

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

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

a {
  cursor: pointer;
}

strong {
  font-weight: 700;
}

h1,
h2,
h3,
h4 {
  font-weight: 400;
  margin: 0;
  line-height: 100%;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

.ibg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

button {
  background: transparent;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

/*--------------------*/


body {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #FFF;
}

body._lock {
  overflow: hidden;
}

button {
  font-size: 20px;
}

a {
  display: block;
  color: #5F5B5B;
  line-height: normal;
}

.wrapper {
  overflow: hidden;
}

.main-title {
  font-size: 96px;
  font-weight: 600;
  color: #5F5B5B;
}

.button {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 30px;
  background-color: #00e70000;
  border: 2px solid #E7A300;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #E7A300;
  font-weight: 600;
}

.button:hover {
  background-color: #E7A300;
  box-shadow: 0 0 40px 40px #E7A300 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #5F5B5B;
}

.button_second {
  background-color: #fff;
}

.button_second._active {
  background-color: #00E700;
}


.label {
  font-size: 24px;
  font-weight: 300;
  line-height: 133%;
}

.section__top {
  margin-bottom: 65px;
}

.page {
  padding: 80px 0px 0 0;
}

.page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
}

.page__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}

.page__content {

}

.dropdown__content {
  position: relative;
}

.dropdown__button {
  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;
  padding: 14px 30px;
  font-size: 20px;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  line-height: 160%;
}

.dropdown__button:after {
  content: "";
  display: block;
  background-image: url(../img/icons/drop-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 15px;
  height: 10px;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.dropdown__button._active:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown__list {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  width: 100%;
  border-radius: 8px;
  border: 2px solid rgba(237, 130, 130, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background-color: #fff;
}

.dropdown__list._active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.dropdown__list-item {
  font-size: 20px;
  padding: 14px 30px;
  cursor: pointer;
}

.dropdown__input-hidden {
  display: none;
}

._has-padding {
  padding: 0px 24px;
}

.title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  font-size: 40px;
  font-weight: 700;
  color: #5F5B5B;
  padding-bottom: 40px;
}

.label {
  font-size: 24px;
  color: #00E700;
}

.section {
  padding: 100px 0px;
}

.checkbox input {
  display: none;
}

.checkbox input:checked ~ label:after {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.checkbox label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  cursor: pointer;
  font-size: 20px;
}

.checkbox label:after,
.checkbox label:before {
  content: "";
  display: block;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  border-radius: 1px;
}

.checkbox label:before {
  border: 1px solid #ED8282;
}

.checkbox label:after {
  top: 0;
  left: 0;
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  background-color: #ED8282;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

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

.section-bg {
  background-color: #30323A;
  padding: 24px 0;
  margin: 18px 12px;
  border-radius: 5px;
  color: #fff;
}
.blog__container {
    padding: 0 24px;
}
.black {
  color: #30323A;
}

.modal {
  min-height: 100vh;
  padding: 100px 36px;
}

.header {
  padding: 36px 0;
  border-bottom: 10px solid #E7A300;
}

.header__container {
  padding: 0px 20px;
}

.header__body {
  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;
  position: relative;
  z-index: 11;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.header__link {
  font-size: 16px;
  line-height: 17px;
  border: 2px solid #5F5B5B;
  padding: 12px 36px;
  font-weight: 600;
  line-height: normal;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}
.header__link:hover {
  background-color: #5F5B5B;
  color: #FFF;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.header__menu-button {
  display: block;
  cursor: pointer;
  width: 40px;
  height: 36px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40px;
  flex: 0 0 40px;
  position: relative;
}

.header__menu-button span,
.header__menu-button:before,
.header__menu-button:after {
  height: 3px;
  width: 100%;
  left: 0;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  border-radius: 5px;
  background-color: #5F5B5B;
}

.header__menu-button:after,
.header__menu-button:before {
  content: "";
}

.header__menu-button:before {
  top: 0;
}

.header__menu-button:after {
  bottom: 0;
  width: 85%;
}

.header__menu-button span {
  top: 50%;
  width: 60%;
  -webkit-transform: scale(1) translate(0px, -50%);
      -ms-transform: scale(1) translate(0px, -50%);
          transform: scale(1) translate(0px, -50%);
}

.header__menu-button._active span {
  -webkit-transform: scale(0) translate(0px, -50%);
      -ms-transform: scale(0) translate(0px, -50%);
          transform: scale(0) translate(0px, -50%);
  background-color: #292B32;
}

.header__menu-button._active:before {
  top: 50%;
  -webkit-transform: rotate(-45deg) translate(0px, -50%);
      -ms-transform: rotate(-45deg) translate(0px, -50%);
          transform: rotate(-45deg) translate(0px, -50%);
}

.header__menu-button._active:after {
  bottom: 50%;
  width: 100%;
  -webkit-transform: rotate(45deg) translate(0px, 50%);
      -ms-transform: rotate(45deg) translate(0px, 50%);
          transform: rotate(45deg) translate(0px, 50%);
}



.menu nav {
  margin: 0 auto;
  padding: 0px 36px;
  max-width: 1440px;
}

.menu._active {
  left: 0;
}

.menu__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: 24px;
  margin-bottom: 24px;
}

.menu__link {
  line-height: 120%;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  color: #30323A;
}

.menu__link:hover {
  color: #00E700;
}


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

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 24px;
}


.popup {
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 20;
  background: rgba(48, 50, 58, 0.75);
}

.popup.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.popup__body {
  min-height: 100%;
  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;
  padding: 40px 16px;
}

.popup__content {
  background-color: rgba(51, 51, 51, 0.90);
  max-width: 940px;
  padding: 80px 24px;
  position: relative;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  align-items: center;
}
.modal__title {
  color: #E7A300;
  font-size: 50px;
  font-weight: 700;
  line-height: 68px;
  padding-bottom: 30px;
  text-align: center;
}
.form__contact {
  display: flex;
  column-gap: 20px;
  justify-content: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
.close-popup {
  position: absolute;
  width: 31px;
  height: 31px;
  top: 12px;
  right: 12px;
  right: 60px;
  top: 60px;
  cursor: pointer;
}
.form-input input, .form-input textarea {
  width: 425px;
}
.modal__body.form-input {
  max-width: 425px;
}
.modal__body.form-input {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin: auto;
}
.form-input input, .form-input textarea {
  text-align: center;
  color: #5F5B5B;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
  padding: 20px 0;
}
.form-input textarea{
  height: 124px;
}
.form-input .wpcf7-submit {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
  background: #E7A300;
  cursor: pointer;
  border: 2px solid #E7A300;
}
.modal__text {
  color: #FFF;
  text-align: center;
  font-size: 21px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  max-width: 441px;
  margin: auto;
  padding-bottom: 40px;
}
.wpcf7-submit:hover {
  background-color: #e7a30000;
  box-shadow: 0 0 40px 40px #e7a30000 inset;
  transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
  color: #e7a300;
  border: 2px solid #E7A300;
}
.form-success{
  display: none;
}
.sent .form-success{
  display: block;
}
.sent .form-info{
  display: none;
}
@media (max-width: 1024px) {
  .page {
    padding: 50px 0px 0 0px;
  }

  .page_one {
    padding: 50px 0px 36px 0px;
  }

    .subtitle {
        font-size: 34px;
    }
  .section {
    padding: 80px 0px;
  }

}

@media (max-width: 992px) {

  .section-bg {
    padding: 16px 0;
  }

  .header {
    padding: 24px 0px;
  }

  .header__container {
    padding: 0px 24px;
  }

  .header__items {
    gap: 16px;
  }

  .header__content {
    gap: 16px;
  }

}

@media (max-width: 767px) {
  .menu {
    padding: 120px 0px 30px 0px;
  }

  .menu nav {
    padding: 0px 12px;
  }

  .menu__list {
    margin-bottom: 20px;
    gap: 20px;
  }

  .item {
    padding: 12px;
  }
    .subtitle {
        font-size: 30px;
      padding-bottom: 30px;
    }
  .section {
    padding: 40px 0px;
  }
  .modal__title {
    font-size: 26px;
    line-height: normal;
    padding-bottom: 20px;
  }
  .popup__content {
    padding: 40px 24px;
  }
  .close-popup {
    width: 20px;
    height: 20px;
    right: 20px;
    top: 20px;
  }
  .form-input input, .form-input textarea {
    width: 100%;
    padding: 10px 0;
  }
  .modal__text {
    font-size: 18px;
    line-height: normal;
    padding-bottom: 40px;
  }

  .form-info {
    padding-top: 20px;
  }
  .modal__body.form-input {
    row-gap: 20px;
  }
}

@media (max-width: 600px) {
  .header__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header__icon {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }


  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 12px;
  }

}

@media (max-width: 492px) {

  .item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }

}
.input-text {
  padding: 12px 12px 12px 0;
  display: block;
  width: 100%;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border-bottom: 2px solid #464954;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 500;
  color: #000;
  font-size: 18px;
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 500;
  column-gap: 45px;
  position: relative;
}
.header__menu a:hover {
  color: #E7A300;
}
.header__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 24px;
  font-size: 21px;
  font-weight: 600;
  padding: 8px 26px;
}
.header__button:hover{
  color: #5F5B5B;
}
.header__button:hover svg path{
  fill: #5F5B5B;
}
.header__logo img {
  width: 300px;
}
.header__menu a {
  font-size: 15px;
  font-weight: 600;
}
div.header__button {
  padding: 0;
}
.header__button--href{
  font-size: 15px;
    line-height: 15px;
    color: #e7a300;
    font-weight: 600;
    height: 41px;
    border-radius: 20px;
    border: 2px solid #e7a300;
}
@media (max-width: 1680px) {
  .header__menu {
    column-gap: 38px;
  }
}
@media (max-width: 1740px) {
  .header__menu {
    column-gap: 28px;
  }
}
@media (max-width: 1506px) {
  .header__logo img {
    width: 200px;
  }
}
@media (max-width: 1445px) {
  .header__button {
    font-size: 20px;
  }
}
@media (max-width: 1385px) {
  .header__link {
    padding: 15px 15px;
  }
  .header__button {
    padding: 15px 15px;
  }
  .header__menu a {
    font-size: 15px;
    font-weight: 600;
  }
}
  .header__nav {
    display: none;
  }
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    background-color: #fff;
    width: 100%;
    height: 100%;
    z-index: 10;
    overflow: auto;
    padding: 150px 0 30px 0;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
  }
  .menu._active nav.header__nav {
    display: block;
  }
  .header__logo {
    z-index: 11;
  }
  .header__content {
    z-index: 11;
  }
  .header__menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 20px;
  }
  .menu._active nav.header__nav {
    display: block;
    margin-left: 0;
    min-width: 402px;
  }
  .header__menu a {
    font-size: 15px;
    font-weight: 600;
  }

@media (max-width: 992px) {
.header__link--calc{
  display: none;
}
  .menu {
    padding: 120px 0 30px 0;
  }
}
@media (max-width: 800px) {
  .header__link {
    padding: 10px 10px;
    font-size: 18px;
  }
  .header__button {
    padding: 10px 10px;
    font-size: 18px;
    column-gap: 15px;
  }
  .header__button svg {
    max-width: 21px;
    height: auto;
  }

}
@media (max-width: 680px) {

  .header__items {
    position: fixed;
    left: 92px;
    top: auto;
    bottom: 50px;
  }
  .header__link--calc{
  display: none;
}
   .header__items {
  display: none;
      -webkit-transition: all 0.4s ease 0s;
    transition: left 400ms ease-in-out, left 400ms ease-in-out;
    left: -100%;
  }
  .header__content._active .header__items {
  display: flex;
    width: calc(100% - 24px);
    left: 92px;
    animation: show-opacity1 0.6s ease-in-out forwards;
  }
  @keyframes show-opacity1 {

  0% {
    left: -100%;
  }

  100% {
    left: 92px;
  }

}
  .header__logo img {
    width: 150px;
  }
  .menu._active nav.header__nav {
        margin-left: 0;
        border-top: 5px solid #E7A300;
        width: 100%;
        padding-top: 20px;
        padding-left: 0;
        min-width: calc(100% - 40px);
  }
  .menu {
    padding: 93px 0 30px 0;
  }
  .header {
    border-bottom: 5px solid #E7A300;
  }
  .header__button {
    flex-direction: column;
    width: 215px;
    row-gap: 20px;
    text-align: center;
  }
  a.header__button.button {
    flex-direction: row;
    justify-content: center;
  }
  .header__link {
    padding: 10px 10px;
    font-size: 18px;
    width: 215px;
  }
  .header__button, .header__link{
    font-size: 16px;
  }

  .header__body._active {
    flex-direction: column;
    align-items: baseline;
}
.menu {
    position: inherit;
    padding-top: 20px;
}
.header__menu-button {
    position: absolute;
    top: 0;
    right: 0;
}
.header__content._active {
    width: 100%;
    margin-top: auto;
}
.header__content._active .header__items {
    width: 100%;
}
.header__button, .header__link {
    width: 100%;
}
._active .wrapper {
    overflow-y: scroll;
}
.header__content._active .header__items{
  position: inherit;
}
._active .header {
    min-height: 100vh;
}
._active .header__container {
    height: 100%;
    min-height: 100vh;
}
.header__body._active {
    min-height: calc(100vh - 40px);
}
.menu-item.active .sub-menu-wrap-0>.sub-menu {
    padding: 20px 25px;
}
}


.banner__row {
  display: flex;
  align-items: center;
  position: relative;
}
.banner__item:last-child {
  max-width: 1290px;
}
.banner__title {
  font-size: 68px;
  line-height: 68px;
  font-weight: 700;
  padding-bottom: 71px;
  max-width: 376px;
  color: #FFF;
}
.banner-votor_img {
    display: block;
    margin-left: auto;
}
.banner__item--firstchild {
  background: #5F5B5B;
  width: 100%;
}
.banner {
  background: #5F5B5B;
}
.banner__container.container {
  max-width: 100%;
  margin-left: calc((100% - 1680px)/2);
  padding-right: 0;
  padding-left: 0px;
}
.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  border: 2px solid #E7A300;
  border-radius: 0;
  background: #ff000000;
  opacity: 1;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active{
  background-color: #E7A300;
}
.banner__info .banner__pagination.swiper-pagination-bullets {
  position: absolute;
  bottom: 120px;
}
.block{
  display: block;
}
.banner-votor--new .banner-votor_img {
    margin-left: calc(-100% / 2);
}
@media (max-width: 1760px) {
  .container{
    padding: 0px 40px;
    max-width: 100%;
  }
  .banner__container.container {

    margin-left: 0;
    padding-left: 40px;
  }

}
@media (max-width: 1800px) {

  .banner__item:last-child {
    max-width: 1290px;
    width: 70%;
  }
  .banner-votor--new .banner-votor_img{
    margin-right: 60px;
            margin-left: auto;
  }
}
@media (max-width: 1680px) {
  .banner__container.container {
    margin-left: 0;
    padding-left: 40px;
  }
}
@media (max-width: 1600px) {
  .banner__item:last-child {
    width: 60%;
  }
  .banner__item--firstchild{
    width: 40%;
  }
  .banner__slide img {
    max-width: 100%;
  }
  .banner-votor--new .banner-votor_img{
    margin-right: 60px;
  }
  .banner__info .banner__pagination.swiper-pagination-bullets {
    position: inherit;
    bottom: 120px;
    margin-top: 71px;
  }
}
@media (max-width: 1360px) {
  .banner__title {
    font-size: 60px;
    line-height: normal;
  }
}
@media (max-width: 1150px) {

  .banner__title {
    font-size: 50px;
    line-height: normal;
    padding-bottom: 40px;
    padding-right: 20px;
  }
  .banner__info .banner__pagination.swiper-pagination-bullets{
    margin-top:40px;
  }
}
@media (max-width: 1024px) {
  .banner__item:last-child {
    width: 55%;
  }

  .banner__item--firstchild{
    width: 45%;
  }
  .button {
    padding: 10px 10px;
  }
  .banner__title {
    font-size: 34px;
    padding-bottom: 20px;
  }
  .banner__info .banner__pagination.swiper-pagination-bullets {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .banner__row {
    flex-direction: column;
  }
  .banner__item:last-child {
    width: 100%;
    order: 1;
  }

  .banner__item--firstchild{
    width: 100%;
  }
  .banner__container.container {
    padding-left: 0;
  }
  .banner__item--firstchild {
    order: 2;
    padding: 40px 20px;
    position: relative;
  }
  .banner__title {
    font-size: 28px;
    padding-bottom: 0;
    padding-right: 0;
  }
  .banner__info {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }
  .banner__info .banner__pagination.swiper-pagination-bullets{
    padding-top: 0;
    position: absolute;
    top: -50px;
    z-index: 1;
    display: flex;
    left: 40px;
  }
  .container {
    padding: 0px 20px;
  }
}
#about {
  background: #5F5B5B;
  padding: 100px 0;
}
.about__item:first-child {
  width: 40%;
}
.about__item:last-child {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 42px;
  max-width: 994px;
}
.about__row {
  display: flex;
  column-gap: 26px;
}
.about__img {
  max-width: 115px;
}
.about__advantages {
  width: 33%;
}
.about_info {
  color: #5f5b5b;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  padding-top: 20px;
}
.about__title {
  color: #E7A300;
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 40px;
}
.about_text {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  max-width: 559px;
  padding-bottom: 20px;
}
.about_a {
    padding-top: 51px;
}
@media (max-width: 1024px) {
    .about__row {
        flex-direction: column;
        row-gap: 26px;
    }
    .about__item:first-child, .about__item:last-child {
        width: 100%;
    }
    .about_text {
        max-width: 100%;
    }
    .about__title {
        font-size: 34px;
        padding-bottom: 40px;
    }
    #about {
        padding: 80px 0;
    }
    .about__advantages {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 767px) {
    #about {
        padding: 40px 0;
    }
    .about__title {
        font-size: 30px;
        padding-bottom: 30px;
    }
    .about_text {
        font-size: 16px;
    }
    .about__advantages {
        width: 50%;
      align-items: flex-start;
    }
    .about_info {
        font-size: 16px;
        line-height: 16px;
    }
    .button {

        width: 100%;
    }
}
.stocks__img img, img.stocks__img {
  max-width: 100%;
  height: auto;
}
.stocks__info {
  background: #5F5B5B;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.stocks__name {
  font-size: 21px;
  font-weight: 700;
  padding: 30px 0px 29px 35px;
}
.stocks__name--orange {
  color: #E7A300;
  text-transform: capitalize;
}
.stocks__href {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stocks__href a {
  display: flex;
}
.stocks__href:hover {
  background: #E7A300;
}
.stocks__href:hover svg path{
  fill:#fff;
}
.stocks__href svg {
  transition: .2s;
}
.stocks__href:hover svg {
  transform: translateX(5px);
  transition: .2s;
}
@media (max-width: 1024px) {
  .stocks__name {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0px 15px 15px;
  }
  .stocks__href svg {
    max-width: 25px;
  }
  .stocks__name {
    font-size: 18px;
    padding: 15px 0px 15px 15px;
    display: flex;
    flex-direction: column;
  }
  .stocks__href {
    width: auto;
    height: auto;
    padding-right: 18px;
    background: #E7A300;
    padding-left: 19px;
  }
  .stocks__href svg path{
    fill:#fff;
  }
}
@media (max-width: 767px) {
  .stocks__name {
    font-size: 16px;
  }
}
#typesgates {
  background: #E7A300;
}
.typesgates__show {
  display: none;
  z-index: 2;
}
.typesgates__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 26px;
  position: relative;
}
.typesgates__img {
  max-width: 100%;
  margin-bottom: 30px;
}
.typesgates_info {
  color: #5F5B5B;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
.typesgates__blocks {
  opacity: 0.7;
  background: #ffffff;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.typesgates__blocks:hover {
  opacity: 1;
}

#typesgates {
  padding-bottom: 0;
}

.specification_name {
  color: #E7A300;
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-left: 20px;
  min-height: 75px;
  padding-right: 20px;
}
.specification_text {
  color: #5F5B5B;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 17px;
  padding-top: 25px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.specification_text  ul, .about-vorots_text ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 20px;
}
.specification_text  li, .about-vorots_text li{
  list-style: square;
}
.specification_text li::marker, .about-vorots_text li::marker {
    color: #E7A300;
}
.typesgates__specifications {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  column-gap: 26px;
}
.typesgates__specification {
  display: flex;
  flex-direction: column;
  height: auto;
}
.typesgates__specification{
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.typesgates__specification--flex{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.typesgates__specifications:before {
  content: '';
  position: absolute;
  width: calc(100% - 40px);
  border-bottom: 1px solid #E7A300;
  top: 135px;
  left: 20px;
}
.typesgates__specification:before {
  content: '';
  border-right: 1px solid #E7A300;
  height: 100%;
  position: absolute;
  right: -13px;
}
.typesgates__specification:last-child:before {
  display: none;
}
.typesgates__href-a {
  max-width: 231px;
}
.typesgates__href {
  padding: 80px 20px 0;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  column-gap: 26px;
}
.typesgates__href-button{
  font-size: 18px;
  max-width: 231px;
  justify-content: center;
  padding: 15px 26px;
}
.typesgates__href-a {
  max-width: 231px;
  border: 2px solid #5F5B5B;
  color: #5F5B5B;
}
.typesgates__href-a:hover {
  background-color: #5F5B5B;
  color: #fff;
  box-shadow: 0 0 40px 40px #5F5B5B inset;
}
.typesgates__slider .typesgates__slide-slider-button-prev:after, .typesgates__slider .typesgates__slide-slider-button-next:after{
  content: '';
  background: url("../img/prev.svg");
  height: 17px;
  width: 38px;

}
.typesgates__slider .typesgates__slide-slider-button-prev, .typesgates__slider .typesgates__slide-slider-button-next{
  width: 38px;
  margin: 0;
  top: 100px;

}
.typesgates__slider .typesgates__slide-slider-button-prev:after{
  transform: rotate(180deg);
}
@media (min-width: 1440px) {
  .typesgates__slider  .typesgates__slide-slider-button-prev,.typesgates__slider .typesgates__slide-slider-button-next{
    display: none;
  }

}
@media (max-width: 1700px) {
  .specification_name {
    font-size: 20px;
  }
  .specification_name {
    min-height: 66px;
  }
  .typesgates__specifications:before {
    top: 126px;
  }
}
@media (max-width: 1540px) {
  .specification_name {
    font-size: 18px;
    min-height: 62px;
  }
  .typesgates__specifications:before {
    top: 122px;
  }
}
@media (min-width: 1440px) {
  .typesgates__item.swiper-slide {
    position: initial;
  }
  .typesgates__slider.swiper.swiper-container {
    overflow: visible;
    z-index: 2;
  }
  .typesgates__item.swiper-slide, .swiper-backface-hidden .typesgates__item.swiper-slide {
    position: initial;
    transform: none;
  }
  .typesgates__row{
    column-gap:0;
  }
  .typesgates__blocks:hover .typesgates__show {
     display: block;
     position: absolute;
     left: 0;
     width: 100%;
     background: #fefcfe;
     padding: 60px 40px;
    top: 100%;
   }

}
.typesgates__img--mobile{
  display: none;
}
.typesgates__show--mobile-show{
    display:none;
  }
@media (max-width: 1439px) {
  .typesgates__row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .typesgates__show {
    display: block;
  }
  .typesgates__specifications {
    grid-template-columns: 1fr;
  }
  .typesgates__specifications:before{
    display: none;
  }
  .typesgates__blocks {
    opacity: 1;
    background: #fefcfe;
	height:100%;
  }
  .specification_name {
    min-height: auto;
    margin: auto;
    justify-content: center;
    width: min-content;
  }
  .specification_text, .typesgates__show--mobile-none {
    display: none;
  }
  .typesgates__show--mobile-show{
    display:flex;
    padding-top: 0;
  }
  .typesgates__specification {
    border-bottom: 1px solid #E7A300;
    padding: 20px;
  }
  .typesgates__specification:first-child {
    padding-top: 0;

  }
  .typesgates__specification:last-child {
    border-bottom: none;
    padding-bottom: 0;

  }
  .typesgates__href {
    grid-template-columns: 1fr;
    row-gap: 26px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .typesgates__specifications {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .typesgates__specification:before{
    display: none;
  }
  .typesgates__href-a, .typesgates__href-button {
    max-width: 100%;
  }
  .typesgates__row {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
  }
  .typesgates__img {
    margin-top: 30px;
  }
  .typesgates_info {
    padding-bottom: 30px;
  }
  .typesgates__specification-show .specification_text {
    display: block;
    padding: 10px 0 0;
    text-align: center;
  }
  .typesgates__img--mobile{
  display: block;
}
.typesgates__img--desctop{
  display: none;
}
}
@media (max-width: 1024px) {
  .typesgates__row {
    grid-template-columns: 1fr 1fr;
    column-gap: 0;
  }

}
@media (max-width: 767px) {
  .typesgates__row {
    grid-template-columns: 1fr;
  }
  .typesgates_info {
    font-size: 23px;
    padding-bottom: 20px;
	padding: 0 5px;
  }
  .specification_name {
    font-size: 18px;
  }
  .typesgates__specification {
    padding: 10px;
  }
  .typesgates__specification:first-child {
    padding-bottom: 10px;
    padding-top: 0;
  }
  .typesgates__specification:last-child {
    padding-bottom: 0;
    padding-top: 10px;
  }
  .typesgates__href {
    grid-template-columns: 1fr;
    row-gap: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .typesgates__img {
    margin-top: 30px;
    margin: 20px 0;
  }
  
}
#reviews {
  background: #dad8d8;
}

.reviews__row .reviews__item {
    height: auto;
    align-content: center;
    background: #fff;
}
.reviews__info img {
    max-width: 100%;
}
.reviews__text {
  color: #5F5B5B;
  font-size: 23px;
  font-weight: 500;
  line-height: 23px;
  padding: 16px 0;
}
.reviews__author {
  color: #5F5B5B;
  font-size: 23px;
  font-weight: 700;
  line-height: 23px;
}
.reviews__pagination {
  margin-top: 31px;
}
@media (max-width: 1024px) {
  .reviews__text, .reviews__author {
    font-size: 18px;
    line-height: normal;
  }
}
@media (max-width: 767px) {

}
.our_projects{
 padding-top: 0;
}
.our_projects__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 17px 15px;
  grid-auto-rows: 1fr;
}
.our_projects__item:first-child {
  grid-column: 1/3;
  grid-row: 1/3;
  align-self:auto;
}
.active .our_projects__item:first-child{
    grid-column: 1;
    grid-row: 1;
    align-self: auto;
}
.our_projects__img {
  max-width: 100%;
}
.our_projects__item {
  position: relative;
  align-self: auto;
  display: flex;
}
.our_projects_info {
  position: absolute;
  color: #FFF;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  text-decoration-line: underline;
  bottom: 26px;
  left: 26px;
  cursor: pointer;
}
.our_projects__item:before {
  content: '';
  background: linear-gradient(3deg, #5F5B5B 34.14%, rgba(95, 91, 91, 0.00) 67.1%);
  opacity: 0.8;
  background-blend-mode: multiply;
  mix-blend-mode: multiply;
  position: absolute;
  width: 100%;
  height: 225px;
  bottom: 0px;
}
.our_projects-all {
  color: #5F5B5B;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  text-decoration-line: underline;
  padding-top: 50px;
  cursor: pointer;
}
.our_projects-all:hover, .our_projects_info:hover{
  text-decoration-line: none;
}
.our_projects__item:nth-child(n+7) {
  display: none;
}
.our_projects__item.our_projects__item-show{
  display: block;
  transition: .2s;
}
@media (max-width: 1024px) {
  .our_projects_info {
    font-size: 18px;
    bottom: 20px;
    left: 20px;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .our_projects__row {
    grid-template-columns: 1fr;
    grid-gap: 17px 15px;
  }
  .our_projects__item:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .our_projects-all {
    padding-top: 30px;
  }
}


#map {
  width: 100%;
  height: 100%;
  padding:0;
}
.info-block__item--map{
  max-width: 1290px;
    width: 100%;height: 100%;
    display: flex;
}
@media (max-width: 1200px) {
    #map {
        height: 600px;
        overflow: hidden;
    }
}
@media (max-width: 1024px) {
  #map {
    height: 400px;
  }
}
@media (max-width: 767px) {
    #map {
        background: url(../img/map.jpg);
      background-size: cover;
      aspect-ratio: 1/1;
      height: auto;
    }
  #map ymaps {
    display: none;
  }
}
.info-block.container {
  max-width: 100%;
  margin-left: calc((100% - 1680px)/2);
  padding-right: 0;
  padding-left: 40px;
}
#info-block {
  background: #5F5B5B;
}
.info-block__row {
  display: flex;
  align-items: center;
  position: relative;
}
.info-block__row {
  align-items: center;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.calculator__item {
  max-width: 1290px;
  width: 100%;
  background: #E7A300;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 60px;
}
.contact__title {
  color: #fff;
}
.contact_info {
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.contact__item {
  display: flex;
  column-gap: 25px;
  align-items: center;
  padding-bottom: 20px;
}
.contact__item--email{
  border-bottom: 1px solid #E7A300;
  margin-bottom: 20px;
  max-width: calc(100% - 70px);
}
.contacts__item {
  padding: 60px 0;
}
.calculator_title {
  color: #5F5B5B;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  max-width: 500px;
  padding-bottom: 40px;
}
.calculator__img {
  position: absolute;
  bottom: 0;
  right: calc((100vw - 1680px)/2);
}
.contact__item:last-child {
  padding-bottom: 0;
}
.contact_info-button--mobile {
    display: none;
}
@media (max-width: 1680px) {
    .info-block.container {
        margin-left: 0;
        padding-left: 40px;
    }
    .contacts__item {
        padding-right: 15px;
    }
    .calculator__img {
        right: calc((100vw - 1580px)/2);
    }
}
@media (max-width: 1500px) {
    .contact__title{
        font-size: 34px;
    }
    .contact_info {
        font-size: 20px;
    }
    .calculator_title {
        font-size: 30px;
    }
    .calculator__img {
        right: 0px;
    }
}
@media (max-width: 1439px) {
    .calculator__item .typesgates__href-a.button {
        max-width: 231px;
    }
}
@media (max-width: 1360px) {
    .calculator_title {
        width: calc(50% - 60px);
    }
}
@media (max-width: 1200px) {
    .contacts__item {
        order: 2;
        padding: 100px 40px;
    }
    .info-block__row {
        grid-template-columns: 1fr;
    }
    .info-block.container {
        padding-left: 0;
    }
    .calculator__item {
        padding: 100px 40px;
        position: relative;
    }
    .calculator__img {
        max-height: 130%;
    }
}
@media (max-width: 1024px) {
    .calculator__item, .contacts__item {
        padding: 80px 40px;
    }
    .contact_info {
        font-size: 18px;
    }
    .contact__item--email {
    max-width: 100%;
}
}
@media (max-width: 767px) {
    .contact_info {
        font-size: 16px;
    }
    .contact__title {
        font-size: 30px;
    }
    .calculator__item, .contacts__item {
        padding: 40px 20px;
        row-gap: 20px;
    }
    .calculator__img {
        position: inherit;
        max-width: 100%;

    }
    .calculator_title {
        width: 100%;
        padding: 0;
    }
    .calculator__item .typesgates__href-a {
        max-width: 100%;
    }
  #info-block {
    margin-top: 0;
  }
.contact_info-button--mobile {
        display: flex;
    }
        .contact_info-button--desk {
        display: none;
    }
}
.footer___row {
    display: flex;
    justify-content: space-between;
}
.footer__logo img {
    width: 300px;
    max-width: 300px;
}
.footer__copyright {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    flex-direction: column;
    row-gap: 27px;
}
.footer___menu {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    row-gap: 27px;
    column-gap: 165px;
}
.footer__menu a {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}
.copyright__text{
    text-decoration-line: underline;

}
.footer__menu a:hover, .copyright__text:hover:last-child  {
    text-decoration-line: none;
}
.copyright__text a {
    display: inline;
}
.footer__main {
    padding: 55px 0;
    background: #D9D9D9;
}
@media (max-width: 1360px) {
    .footer___menu {
        column-gap: 55px;
    }
}
@media (max-width: 1024px) {
    .footer___row {
        flex-direction: column;
        row-gap: 40px;
    }
    .footer___menu {
        column-gap: normal;
    }
}
@media (max-width: 767px) {
    .footer___menu {
        grid-template-columns: 1fr;
    }
  .footer__main {
    padding: 40px 0;
  }
}

.our_project_mini__slider.swiper-slide-thumb-active, .our_project_mini__slider.swiper-slide-active{
  border: 2px solid #E7A300;
}
.our_project__modal {
  position: fixed;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
  overflow-y: auto;
  opacity: 0;
  text-align: left;
  /*height: var(--app-height);*/
}
.our_project__modal.active{
  animation: show-opacity 0.4s ease-in-out forwards;
  display: flex;
}
.our_project__row {
  background-color: white;
  width: 100%;
  max-width: 100%;
  padding: 40px;
  border-radius: 20px;
  position: relative;
}
.our_project_mini__slider {
  display: flex;
  flex-direction: column;
  margin-right: 32px;
  height: 583px;
}
.our_project__slider {
  width: 100%;
}
.our_project__sleder {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.our_project_mini__slide img {
  max-width: 100%;
  display: block;

}
.our_project__slide img {
  max-width: 100%;
}
.our_project_mini__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.our_project_mini__slide {
  //height: auto!important;
}
.our_project_mini__slide{
  border: 2px solid #ffffff00;
  padding: 10px;
}
.our_project_mini__slide.swiper-slide-thumb-active{
  border: 2px solid #E7A300;
  padding: 10px;
}
.our_project__slider {
  flex-basis: 1025px;
  margin: 0!important;

}
.our_project__item {
  background: #ECECEC;
  padding: 40px;
}
#our_project__slide-slider-button-prev:after{
  background: url("../img/our-projects-new/prev.svg");
  width: 36px;
  height: 36px;
  content: '';

}
#our_project__slide-slider-button-next:after{
  background: url("../img/our-projects-new/prev.svg");
  transform: rotate(180deg);
  width: 36px;
  height: 36px;
  content: '';

}
#our_project__slide-slider-button-prev,
#our_project__slide-slider-button-next{
  width: 36px;
  height: 36px;
}
.our_project_mini__slider-all {
  flex-basis: 256px;
  margin: auto;
  position: relative;
  height: 100%;
}

#our_project__slide-slider-button-prev {
  position: absolute;
  top: -46px;
  left: calc(50% - 18px);
}
#our_project__slide-slider-button-next {
  position: absolute;
  bottom: -68px;
  top: auto;
  left: calc(50% - 18px);
}
.our_project__info {
  padding-top: 40px;
}
.our_project__title {
  color: #5F5B5B;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 40px;
}
.our_project__name {
  color: #5F5B5B;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 20px;
}
.project-info__row {
  display: flex;
  justify-content: space-between;
}
.our_project__list li {
  list-style: square;
  color: #5F5B5B;
  font-size: 21px;
  font-weight: 500;
  line-height: 21px;
}
.our_project__list li::marker{
  color: #E7A300;
}
.our_project__list {
  padding-left: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-bottom: 60px;
}
 .our_project__list ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.project-info__hrefs {
  display: flex;
  justify-content: space-between;
}
.project-info__item {
  flex-basis: 30%;
}
.project-info__href-button {
  font-size: 18px;
}
.project-info__hrefs .project-info__item:first-child {
  display: flex;
  justify-content: space-between;
  margin: auto 0;
}
.project-info__plan {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 21px;
  text-decoration: underline;
}
.our_project__modal-close {
  position: absolute;
  right: 40px;
  cursor: pointer;
}
.our_project__modal-close:hover path {
    fill: #5F5B5B;
    transition: fill 300ms ease-in-out, fill 300ms ease-in-out;
}
#our_project__slide-slider-button-prev:hover:after, #our_project__slide-slider-button-next:hover:after{
  opacity: 0.5;
}
@keyframes show-opacity {

  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}

@media (max-width: 1500px) and (min-width: 1025px) {
    .our_project__sleder {
        position: relative;
    }
    .our_project__slider {
        flex-basis: 80%;
    }
    .our_project_mini__slider-all {
        flex-basis: 20%;
        position: initial;
    }
    #our_project__slide-slider-button-prev {
        top: 23px;
        right: calc(10% - 18px);
        left: auto;
    }
    #our_project__slide-slider-button-next {
        bottom: 0;
        top: auto;
        left: auto;
        right: calc(10% - 18px);
    }
    .our_project_mini__slide img {
        margin: auto;
    }
    .our_project_mini__slide.swiper-slide{
        display: flex;
    }
  .project-info__hrefs .project-info__item:first-child {
    flex-basis: 420px;
  }
}
@media (max-width: 1285px) and (min-width: 1025px) {
    .our_project_mini__slider {
        height: 470px;
    }
    .our_project_mini__slide img {
        margin: 0;
    }
}
@media (max-width: 1024px) {
  .our_project__sleder {
    flex-direction: column;
  }
  .our_project__slider {
    flex-basis: auto;
  }
  .our_project_mini__slider {
    display: flex;
    flex-direction: column;
    margin-right: 32px;
    height: auto;
  }
  .our_project_mini__slider-all {
    flex-basis: auto;
    margin: auto;
    position: relative;
    height: 100%;
    width: 100%;
    margin-top: 20px;
  }
  #our_project__slide-slider-button-prev {
    top: var(--swiper-navigation-top-offset,50%);
    left: -25px;
  }
  #our_project__slide-slider-button-next{
    top: var(--swiper-navigation-top-offset,50%);
      right: -25px;
    left: auto;
  }
  #our_project__slide-slider-button-next:after {
    transform: rotate(90deg);
    width: 26px;
    height: 26px;
    background-size: contain;
  }
  #our_project__slide-slider-button-prev:after{
    transform: rotate(-90deg);
    width: 26px;
    height: 26px;
    background-size: contain;

  }
  .our_project__title {
    font-size: 30px;
    padding-bottom: 20px;
  }
  .our_project__name {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .our_project__list li{
    font-size: 18px;
  }
  .project-info__row {
    flex-direction: column;
  }
    .our_project__list {
        padding-bottom: 30px;
    }
    .project-info__item {
        flex-basis: auto;
    }
    .project-info__hrefs .project-info__item:first-child {
        column-gap: 20px;
    }
    .project-info__plan {
        font-size: 18px;
    }
}
@media (max-width: 767px) {

  .our_project_mini__slider.swiper{
    display: none;
  }
  .our_project__title {
    font-size: 22px;
    padding-bottom: 20px;
  }
  .our_project__item {
    background: #ECECEC;
    padding: 0;
  }
  .our_project__name {
    font-size: 18px;
    color: #E7A300;
  }
  .our_project__list li{
    font-size: 16px;
  }
    .our_project__row {
        padding: 30px;
      background-color: #ececec;
    }
    .our_project__modal-close svg {
        width: 20px;
        height: 20px;
    }
    .our_project__modal-close {
        right: 30px;
        top: 35px;
    }
    .our_project__sleder {
        position: relative;
    }
    .our_project_mini__slider-all {
        position: absolute;
        top: calc(50% - 18px);
        height: 36px;
        margin-top: 0;
    }
    #our_project__slide-slider-button-prev {
        left: -5px;
    }
    #our_project__slide-slider-button-next {
        right: -5px;
    }
    .our_project__info {
        padding-top: 20px;
    }
    .our_project__list {
        padding-bottom: 30px;
    }
    .project-info__hrefs {
        flex-direction: column;
        row-gap: 20px;
    }
    .project-info__hrefs .project-info__item:first-child {
        flex-direction: column;
        row-gap: 20px;
    }
  .our_project__modal-close svg path {
    fill: #fff;
  }
}
.akcii__item {
  display: flex;
  column-gap: 80px;
}
.akcii__item>div {
  width: 50%;
}
.akcii__title {
  color: #5F5B5B;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.akcii__title span {
  color: #E7A300;
  display: block;
}
.akcii__text {
  color: #5F5B5B;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.akcii__text ul {
  display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 25px;
}

.akcii__text ul li{
list-style: square;
    color: #5F5B5B;
    font-size: 21px;
    font-weight: 500;
    line-height: 21px;
}
.akcii__text ul li::marker {
    color: #E7A300;
}
.akcii__text td {
    font-size: 14px;
    padding: 5px;
}
.akcii__img img {
  width: 100%;
  height: auto;
}
.akcii__row {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.akcii__item:not(:last-child) {
  display: flex;
  column-gap: 80px;
  border-bottom: 8px solid #D9D9D9;
  padding-bottom: 80px;
}
.akcii__item:nth-child(2n){
  flex-direction: row-reverse;
}
.breadcrumb_href {
  display: flex;
  column-gap: 17px;
  padding-bottom: 40px;
  color: #5F5B5B;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  align-items: center;
}
.breadcrumb_href:hover svg {
  transform: translateX(-5px);
  transition: .2s;
}
@media (max-width: 1024px) {
  .akcii__title{
    font-size: 34px;
  }
  .akcii__item:not(:last-child) {
    column-gap: 40px;
  }
  .akcii__text{
    font-size: 18px;
  }
}
@media (max-width: 900px) {
  .akcii__item, .akcii__item:nth-child(2n) {
    flex-direction: column;
    row-gap: 40px;
  }
  .akcii__item:not(:last-child) {
    padding-bottom: 40px;
    border-bottom: 4px solid #D9D9D9;
  }
  .akcii__item>div {
    width: 100%;
  }
  .akcii__row {
    row-gap: 40px;
  }
  .breadcrumb_href{
    font-size: 16px;
  }
  .breadcrumb_href svg {
    width: 30px;
  }
}
@media (max-width: 767px) {
  .akcii__title{
    font-size: 26px;
  }
  .akcii__text{
    font-size: 16px;
    padding: 20px 0;
  }
  .akcii__item, .akcii__item:nth-child(2n) {
    row-gap: 20px;
  }
  .akcii__item:not(:last-child) {
    padding-bottom: 40px;
  }
}
.banner-votor {
  background: #D9D9D9;
}
.banner-votor .banner__item--firstchild {
   background: #5f5b5b00;
  width: auto;
 }
.banner-votor .banner__title {
  color: #5F5B5B;
}
.banner-votor .banner__row {
  justify-content: space-between;
}
.banner-votor {
  padding: 55px 0;
}
@media (max-width: 767px) {
  .banner-votor {
    padding: 40px 0;
  }
  .banner-votor .banner__item--firstchild {
    width: 100%;
    padding-bottom: 0;
  }
  .breadcrumb {
    padding-left: 20px;
  }
}
.about-vorots-animate-none{
  padding-bottom: 0;
}
.about-vorots__row {
  display: flex;
  column-gap: 80px;
}
.about-vorots__title {
  color: #E7A300;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.about-vorots_text {
  color: #5F5B5B;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 23px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-top: 20px;
}
.about-vorots__item {
  width: 50%;
}
.about-vorots__img {
  max-width: 100%;
}
.about-vorots__info:nth-child(2) {
  padding-top: 50px;
}

@media (max-width: 1024px) {
  .about-vorots__title{
    font-size: 34px;
    line-height: normal;
  }
  .about-vorots_text{
    font-size: 18px;
    line-height: normal;
  }
  .about-vorots__row {
    flex-direction: column;
    row-gap: 30px;
  }
  .about-vorots__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-vorots__title{
    font-size: 26px;
  }
  .about-vorots_text{
    font-size: 16px;
  }
  .about-vorots__info:nth-child(2) {
    padding-top: 30px;
  }
}
.our_projects__item.our_projects__item--vorots {
  grid-column: auto;
  grid-row: auto;
}
.construction-mobile{
  display: none;
}
.construction_img {
  max-width: 100%;
}
.container-fluid {

    margin: auto;
}
.construction {
  padding: 100px 0px 0;
  position: relative;

}
.construction_block_text, .pngtree {
  position: absolute;
}
#reveal1 {
  -webkit-transform: scaleX(.7);
  -ms-transform: scaleX(.7);
  transform: scaleX(.7);
  background: #5F5B5B;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transition: .5s;
}
#reveal1.visible {
  translate: none;
  rotate: none;
  scale: none;
  transform: translate(0px, 0px);
  transition: .5s;
}
.about-vorot-225 .construction {
  padding-bottom: 100px;
}

.construction_b_img {
  max-width: 100%;
      display: block;
    margin: auto;
}
.construction_block-225 .construction_b_img {
    display: block;
    margin: auto;
}
.construction_block-220 .construction_b_img {
    max-width: 1000px;
    margin: auto;
    display: block;
}
.pngtree{
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  opacity: 0;
}
.construction_block-1 .pngtree {
  position: absolute;
  left: 35%;
  top: 43%;
}
.construction_block-220.construction_block-1 .pngtree{
  top: 13%;
}

.construction_block-225.construction_block-1 .pngtree {
    left: 50%;
    top: auto;
    bottom: 4%;
}
.construction_block-2 .pngtree {
  position: absolute;
  right: 38%;
  top: 33%;
}

.construction_block-220.construction_block-2 .pngtree {
    right: 39%;
    top: auto;
    bottom: 17%;
}
.construction_block-225.construction_block-2 .pngtree {
    top: 33%;
    right: 37%;
}
.construction_block-3 .pngtree {
  position: absolute;
  left: 34%;
  top: 30%;
}
.construction_block-220.construction_block-3 .pngtree {
    position: absolute;
    left: 31%;
    top: auto;
    bottom: 25%;
}
.construction_block-225.construction_block-3 .pngtree {
    position: absolute;
    left: 37%;
    top: 9%;
}
.construction_block-4 .pngtree {
  position: absolute;
  right: 39%;
  top: 35%;
}
.construction_block-220.construction_block-4 .pngtree {
    right: 49%;
    top: auto;
    bottom: 22%;
}
.construction_block-225.construction_block-4 .pngtree {
    position: absolute;
    right: 39%;
    top: 7%;
}
.construction_block_text {
  left: 5%;
  max-width: 420px;
  top: 40%;
}
.construction_block-220 .construction_block_text {
    top: 28%;
    left: 0%;
}
.construction_block-225 .construction_block_text {
    left: 7%;
    max-width: 420px;
    top: 40%;
}

.construction_block-2 .construction_block_text {
  left: auto;
  right: 5%;
  top: 35%;

}
.construction_block-220.construction_block-2 .construction_block_text {
    right: -2%;
    top: 25%;
}
.construction_block-225.construction_block-2 .construction_block_text {
    right: 7%;
    left: auto;
}
.construction_block-4 .construction_block_text {
  top: 35%;
  left: auto;
  right: 5%;
}
.construction_block-220.construction_block-4 .construction_block_text {
    right: -2%;
}
.construction_block-title {
  color: #E7A300;
  font-size: 31px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding-bottom: 15px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transition-delay: 250ms;
  transition-delay: 250ms;
  opacity: 0;
}
.construction_block-info {
  color: #FFF;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  -webkit-transition-delay: 500ms;
  transition-delay: 500ms;
  opacity: 0;
}

.construction_block {
  opacity: 0!important;
}
.construction_block.swiper-slide-active {
  opacity: 1!important;
}
.construction_block.swiper-slide-active .construction_block-title, .construction_block.swiper-slide-active .construction_block-info, .construction_block.swiper-slide-active .pngtree{
  opacity: 1;
}
.construction-buttons{
  display: none;
}
@media (max-width: 1670px) {
.construction_block-220.construction_block-2 .construction_block_text, .construction_block-220.construction_block-4 .construction_block_text{
      max-width: 364px;
}
.construction_block-220.construction_block-1 .construction_block_text, .construction_block-220.construction_block-3 .construction_block_text{
      left: 4%;
}
}
@media (max-width: 1500px) {
  .construction_block-title{
    font-size: 30px;
    line-height: 31px;
  }
  .construction_block-info{
    font-size: 20px;
    line-height: 21px;
  }
  .construction_block_text{
    max-width: 350px;
  }
  .construction_block-225 .construction_block_text {
    max-width: 350px;
}
.construction_block-220 .construction_b_img {
    max-width: 800px;
    padding-bottom: 30px;
}
.construction_block-220 .construction_block-title {
    font-size: 26px;
    line-height: 27px;
}
.construction_block-220 .construction_block-info {
    font-size: 18px;
    line-height: 19px;
}
.construction_block-220.construction_block-4 .construction_block_text {
    right: 2%;
    max-width: 310px;
    top: 30%;
}
.construction_block-220.construction_block-4 .pngtree {

    bottom: 27%;
}
.construction_block-220.construction_block-3 .pngtree {
    left: 30%;
    bottom: 30%;
}
.construction_block-220.construction_block-1 .construction_block_text{
  left: 3%;
}
.construction_block-220.construction_block-2 .pngtree {
    right: 38%;
    top: auto;
    bottom: 22%;
}
.construction_block-220 .construction_block_text {
    max-width: 312px;
}
.construction_block-225.construction_block-2 .pngtree {
    right: 33%;
}
.construction_block-225.construction_block-2 .construction_block_text {
    right: 4%;
}
.construction_block-225.construction_block-3 .pngtree {
    left: 33%;
    top: 9%;
}
.construction_block-225.construction_block-4 .pngtree {
    right: 34%;
}
}
@media (max-width: 1260px) {
.construction_block-220 .construction_b_img {
    max-width: 600px;
}
.construction_block-220 .construction_block_text {
    top: 16%;
}
.construction_block-225.construction_block-1 .construction_block_text,
.construction_block-225.construction_block-3 .construction_block_text {
    max-width: 325px;
    left: 5%;
}
.construction_block-225.construction_block-2 .construction_block_text{
      max-width: 282px;
}
.construction_block-225.construction_block-4 .construction_block_text{
      max-width: 295px;
}
}
@media (max-width: 1024px) {
  .construction_block-info {
    font-size: 18px;
  }
  .construction_block-title {
    font-size: 24px;
  }
  .construction_block_text{
    max-width: 256px;
    left: 5%;
    top: 10%;
  }
  .pngtree {
    max-width: 30px;
  }
  .construction_block-2 .construction_block_text {
    left: auto;
    right: 2%;
    top: 29%;
    max-width: 228px;
  }
  .construction_block-3 .construction_block_text {
    max-width: 236px;
    left: 3%;
    top: 16%;
  }
.construction_block-220.construction_block-4 .construction_block_text {
    right: 2%;
    max-width: 256px;
    top: 43%;
}
.construction_block-220 .construction_block-title {
    font-size: 20px;
    line-height: 21px;
}
.construction_block-220 .construction_block-info {
    font-size: 16px;
    line-height: 17px;
}
.construction_block-220 .construction_b_img {
    padding-bottom: 100px;
}
.construction_block-220.construction_block-1 .construction_block_text {
    left: 5%;
    top: 56%;
}
.construction_block-220.construction_block-1 .pngtree {
    top: 10%;
    left: 34%;
}
.construction_block-220.construction_block-2 .pngtree {
    right: 38%;
    bottom: 41%;
}
.construction_block-220.construction_block-2 .construction_block_text {
    right: 6%;
    top: 54%;
    max-width: 260px;
}
.construction_block-220.construction_block-3 .pngtree {
    left: 30%;
    bottom: 45%;
}
.construction_block-3 .construction_block_text {
    max-width: 251px;
    left: 5%;
    top: 57%;
}
.construction_block-220.construction_block-4 .pngtree {
    bottom: 44%;
}
.construction_block-220.construction_block-4 .construction_block_text {
    right: 15%;
    max-width: 256px;
    top: 60%;
}
.construction_block-225 .construction_b_img {
    display: block;
    margin: auto;
    max-width: 370px;
}
.construction_block-225.construction_block-1 .construction_block_text, .construction_block-225.construction_block-3 .construction_block_text {
    max-width: 256px;
    left: 5%;
}
.construction_block-225.construction_block-2 .construction_block_text {
    max-width: 282px;
}
.construction_block-225.construction_block-2 .pngtree {
    right: 34%;
}
.construction_block-225.construction_block-3 .pngtree {
    left: 34%;
    top: 9%;
}
.construction_block-225.construction_block-4 .construction_block_text {
    max-width: 270px;
}
.construction_block-225.construction_block-4 .pngtree {
    right: 35%;
}
}
  @media (max-width: 900px) {
    .construction_block-220.construction_block-2 .construction_block_text {
    right: 19%;
    top: 54%;
    max-width: 260px;
}
.construction_block-220.construction_block-2 .pngtree {
    right: 35%;
    top: auto;
    bottom: 41%;
}
.construction_block-220.construction_block-3 .pngtree {
    left: 23%;
    bottom: 45%;
}
.construction_block-225 .construction_b_img {
    max-width: 320px;
}
.construction_block-225.construction_block-1 .construction_block_text {
    max-width: 241px;
    left: 5%;
    top: 46%;
}
 .construction_block-225.construction_block-3 .construction_block_text {
    max-width: 236px;
    left: 4%;
    top: 17%;
}
.construction_block-225.construction_block-2 .construction_block_text {
    max-width: 207px;
}
.construction_block-225.construction_block-2 .pngtree {
    right: 32%;
}
.construction_block-225.construction_block-4 .construction_block_text {
    max-width: 207px;
    right: 4%;
}
  }
  @media (max-width: 767px) {
    .construction_block-info {
      font-size: 16px;
      line-height: 17px;
    }
    .construction_block-title {
      font-size: 20px;
      line-height: 21px;
    }
    .construction_wrap_desktop {
      /*display: none;*/
    }
    .construction-mobile {
      display: none;
    }
   .construction_block  .construction_block_text {
      position: relative;
      max-width: 100%;
      left: 0;
    }
     .pngtree {
      display: none;
    }
    .container-fluid {
      padding: 0;
    }
    .construction{
      padding: 40px 0;
    }
    .construction_block-title .block{
      display: inline;
    }
    .construction-buttons .construction-button-prev:after, .construction-buttons .construction-button-next:after {
      content: '';
      background: url(../img/slide-vorot/prev.svg);
      height: 17px;
      width: 38px;
    }
    .construction-buttons .construction-button-prev:after {
      transform: rotate(180deg);
    }
    .construction-buttons .construction-button-prev, .construction-buttons .construction-button-next {
      width: 38px;
      margin: 0;
      top: var(--swiper-navigation-top-offset,35%);
    }
    .construction-buttons .construction-button-prev{
      left: var(--swiper-navigation-sides-offset,20px);
    }
    .construction-buttons .construction-button-next{
      right: var(--swiper-navigation-sides-offset,20px);
    }
    .construction_block-title{
      padding-bottom: 10px;
      max-width: 330px;
    }
    #reveal1{
      background: #606060;
      transform: translate(0px, 0px);
    }
    .container-fluid .construction_block_text{
      padding: 0 20px;
    }
    .construction-buttons{
      display: block;
    }
    .construction_block-220 .construction_b_img {
    padding-bottom: 0;
    max-width: 100%;
}
  .construction_block-220.construction_block-1 .construction_block_text,
  .construction_block-220.construction_block-2 .construction_block_text,
  .construction_block-220.construction_block-3 .construction_block_text,
  .construction_block-220.construction_block-4 .construction_block_text {
      left: 0;    
      max-width: 100%;
    }
    .about-vorot-220 .section.construction {
      padding-top: 0;
}
.about-vorot-220 .construction-buttons .construction-button-prev, .about-vorot-220 .construction-buttons .construction-button-next {
    width: 38px;
    margin: 0;
    top: var(--swiper-navigation-top-offset,50%);
}
.about-vorot-225 .construction {
    padding-bottom: 40px;
}
.construction_block-225 .construction_b_img {
    max-width: 100%;
}
 .construction_block-225.construction_block-1 .construction_block_text,
  .construction_block-225.construction_block-2 .construction_block_text,
  .construction_block-225.construction_block-3 .construction_block_text,
  .construction_block-225.construction_block-4 .construction_block_text {
      left: 0;    
      max-width: 100%;
    }
}
.wpcf7 form.invalid .wpcf7-response-output{
  display: none;
}

.construction-mobile{
  display: block;
  background: #606060;
}
.construction_wrap_desktop{
  display: none;
}
@media (min-width: 767px) {

.construction_block_wrap{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.construction_block_wrap {
    height: 100vh;
}
.construction_block__wrapper .construction_block {
    display: flex;
    align-items: center;
    width: 100vw;
    padding: 50px;
    justify-content: center;
  }
  .construction_block__wrapper .construction_block {
    opacity: 1!important;
}


.construction-animate-1 .construction_img, .construction-animate-2 .construction_img, .construction-animate-3 .construction_img, .construction-animate-4 .construction_img, .construction_b_img {
    opacity: 0;
}
.construction-animate-1 .construction_block-1 .construction_b_img, 
.construction-animate-1 .construction_block-1 .construction_block-title,  
.construction-animate-1 .construction_block-1 .construction_block-info, 
.construction-animate-1 .construction_block-1 .pngtree,
.construction-animate-2 .construction_block-2 .construction_b_img, 
.construction-animate-2 .construction_block-2 .construction_block-title, 
.construction-animate-2 .construction_block-2 .construction_block-info, 
.construction-animate-2 .construction_block-2 .pngtree,
.construction-animate-3 .construction_block-3 .construction_b_img, 
.construction-animate-3 .construction_block-3 .construction_block-title, 
.construction-animate-3 .construction_block-3 .construction_block-info, 
.construction-animate-3 .construction_block-3 .pngtree,
.construction-animate-4 .construction_block-4 .construction_b_img, 
.construction-animate-4 .construction_block-4 .construction_block-title,  
.construction-animate-4 .construction_block-4 .construction_block-info,
.construction-animate-4 .construction_block-4 .pngtree {
    opacity: 1;
}


   .construction_block__wrapper .construction_block.construction_block-1, 
   .construction_block__wrapper .construction_block.construction_block-2, 
   .construction_block__wrapper .construction_block.construction_block-3, 
   .construction_block__wrapper .construction_block.construction_block-4 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.construction-animate-1:before, .construction-animate-2:before, .construction-animate-3:before, .construction-animate-4:before {
    content: "";
    background: #5F5B5B;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
 .container-fluid {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x)*.5);
    padding-left: calc(var(--bs-gutter-x)*.5);
    margin-right: auto;
    margin-left: auto;
}
.container-fluid {
    --bs-gutter-x: 60px;
}
.construction_img {
    max-width: calc(100% - 100px);
    height: auto;
    margin: auto;
}
.construction_img-220{
max-width: 1000px;
}
.construction_block__wrapper {
    height: 100vh;
    display: flex;
}
.construction_block-slide-cont{
  position: relative;
      width: 100%;
}
.construction-mobile{
  display: none;
}
.construction_wrap_desktop{
  display: block;
}
/*.construction {
    z-index: 2;
}
.about-vorots--fixed{
  position: fixed;
  top: 700px;
    background: #fff;
    z-index: 1;
    width: 100%;
}

.about-vorot-225 .about-vorots--fixed{
  top: 800px;
}*/
}
/* изменение блока тип ворот  */
.specification_img--vorot {
    max-width: 100%;
}
.typesgates__specifications-new{
      display: flex;
    column-gap: 26px;
    justify-content: center;
}
.specification_name--vorot {
    color: #5F5B5B;
    font-size: 23px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    padding-bottom: 30px;
}
.typesgates__specifications-new .typesgates__specification--flex {
    justify-content: space-between;
    align-items: center;
        display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.typesgates__href--new {
    padding: 50px 20px 0;
    display: flex;
    justify-content: center;
}
.typesgates__breadcrumb{
  display: none;
}
.typesgates__slider--new .typesgates__row {
    column-gap: 26px;
}
@media (max-width: 1439px) {
.typesgates__show__new {
    display: none;
}
.typesgates__slider--new .typesgates__row{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
    .typesgates__specification {
        border-bottom: 0;
        padding: 0;
    }
}
@media (min-width: 1025px) {
    .typesgates__blocks:hover .typesgates__show {
        display: block;
        position: absolute;
        left: 0;
        width: 100%;
        background: #fefcfe;
        padding: 60px 40px;
        top: 100%;
    }
    .typesgates__specification:before {
    content: '';
    border-right: 1px solid #E7A300;
    height: 100%;
    position: absolute;
    right: -13px;
    display: block;
}
.typesgates__specification:last-child:before {
display: none;
}
}
@media (max-width: 1024px) {
      .typesgates__specification {
        border-bottom: 1px solid #E7A300;
        padding: 20px;
    }
.typesgates__show__new{
  display: none;
}
.typesgates__slider--new .typesgates__item {
    max-width: calc(50% - 13px);
}
.typesgates__slider--new .typesgates__row {
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 40px;
}
.typesgates__slider--new .typesgates_info {
        font-size: 17px;
        padding-bottom: 20px;
    }
.specification_name--vorot{
  font-size: 16px;
  padding-bottom: 0;
  line-height: 16px;
}
 .typesgates__blocks-show .typesgates__show.typesgates__show__new {
    display: block;
}

.typesgates__specifications-new {
    flex-wrap: wrap;
    gap: 26px;
}
.typesgates__specification {
    width: calc(50% - 13px);
}
.typesgates__slider--new--active .typesgates_info, .typesgates__slider--new--active .typesgates__img{
  display: none;
}
.typesgates__slider--new--active  .typesgates__blocks {
  background: #fdfdfd00;
}
.typesgates__slider--new--active  .typesgates__specification{
  background: #fefcfe;
  aspect-ratio: 1 / 1;
  padding-top: 0;
}
.typesgates__slider--new--active.typesgates__slider--new .typesgates__item {
    max-width: 100%;
}
.typesgates__slider--new .typesgates__href-button {
    display: none;
}
.typesgates__specifications-new .typesgates__specification--flex {
    padding-top: 20px;
    padding-bottom: 10px;
}
.typesgates__href--new {
    padding: 30px 0 0;
}
.typesgates__breadcrumb--active{
  display: block;
  padding-left: 0;
}
.typesgates__slider--new--active .typesgates__item {
    display: none;
}
.typesgates__slider--new--active .typesgates__blocks-show {
    display: block;
}
.typesgates__blocks.typesgates__blocks--v.typesgates__blocks--item {
    aspect-ratio: auto;
}
}
@media (max-width: 767px) {
.specification_name--vorot--markizy{
      padding-bottom: 5px;
}
}

@media (max-width: 400px) {
	
	.typesgates__slider--new .typesgates_info {
        font-size: 13px;
    }
	 .typesgates__slider--new   .specification_name--vorot {
        font-size: 13px;
        line-height: 1;
    }
	.typesgates__slider--new  .typesgates__specification--flex>a {
    display: flex;
    flex-direction: column;
	gap:10px;
}
.typesgates__blocks{
	height: 100%;
}
}
.banner-achii.banner-achii img {
    width: 100%;
    max-width: 100%;
}
.banner-achii--botton{
  padding-top: 0;
}
/* выпадающее меню*/
 .sub-menu {
    display: none;
}
.menu-item-has-children{
  position: relative;
}
.sub-menus.sub-menu-wrap-0 {
    position: absolute;
    height: 100%;
    min-height: 300px;
    width: 100%;
}
.sub-menu-wrap-0>.sub-menu.active { 
    max-width: 100%;
    animation-duration: 800ms;
    min-width: 330px; 
    flex-direction: column;  
    padding: 20px 20px;
    gap: 20px;
    display: grid;
}

  .sub-menu-wrap-0 .menu-item-has-children span {
    content: '';
    position: absolute;
    right: 0;
    background: url(../img/str.svg);
    width: 11px;
    height: 19px;
    cursor: pointer;
    top: 0;
    transition: .2s;
}
.sub-menu-wrap-0 .menu-item-has-children span.active{
      transform: rotate(90deg);
}
.sub-menu-wrap-0 .menu-item-has-children.active .sub-menu-wrap-1 .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 10px 0;
}

.sub-menu-wrap-0 .menu-item-has-children .sub-menu-wrap-1 .sub-menu  a{
  font-size: 15px;
line-height: normal;
font-weight: 500;
}

 .menu-item-9 span {
    content: '';
    position: absolute;
    right: 0;
    background: url(../img/str.svg);
    width: 11px;
    height: 19px;
    cursor: pointer;
    top: 0;
    transition: .2s;
}
.menu-item-9 span.active{
      transform: rotate(90deg);
}
.menu-item-has-children {
    position: relative;
    width: 100%;
}
.sub-menus.sub-menu-wrap-0 {
    position: relative;
    min-height: auto;
}
.menu-item.active .sub-menu-wrap-0>.sub-menu {
    background: #ffffff;
    position: relative;
    top: 0;
    padding: 20px 50px;
    display: grid;
}
.menu-item.active .sub-menu-wrap-0>.sub-menu::after{
display: none;
}

/*.menu-item-has-children>.sub-menu {
        width: 100%;
    background-color: #ffffff;
    position: absolute;
    max-width: 100%;
    animation-duration: 800ms;
    min-width: 190px;
    top: 22px;
    flex-direction: column;
    left: 0;
    padding: 20px 10px;
    gap: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    border-radius: 10px;
}
.menu-item-has-children:hover>.sub-menu {
    display: flex;
}
.menu-item-has-children:hover>.sub-menu a{
  //color: #ffffff;
}
.sub-menu .menu-item-has-children>.sub-menu {
    position: relative;
    display: flex;
    padding-left: 20px;
    top: 0;
    padding: 10px 20px 0;
    box-shadow:none;
}*/

.bannerlang{
	background-size:cover;
	position:relative;
	background-position: center;
}
.bannerlang--promyshlennye{
	background-image:url('../img/promo/banner1.webp');
}
.bannerlang--panoramnye{
	background-image:url('../img/promo/banner2.png');
}
.bannerlang--rolletnye{
	background-image:url('../img/promo/banner3.jpg');
}
.bannerlang--promyshlennye{
	background-image:url('../img/promo/banner4.png');
}
.bannerlang--shlagbaumy{
	background-image:url('../img/promo/banner5.png');
}
.bannerlang--peregruzochnaya{
	background-image:url('../img/promo/banner6.png');
}
.bannerlang--skorostnye{
	background-image:url('../img/promo/banner7.png');
}
.bannerlang--protivopozharnye{
	background-image:url('../img/promo/banner8.jpg');
}
.bannerlang:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2c363d;
    opacity: .5;
}
.bannerlang__container {
    position: relative;
}
.bannerlang__title{
	color:#ffffff;
	font-size: 68px;
}
.bannerlang__text {
    max-width: 800px;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}
.serii__tow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 36px 36px;
}
.serii__img {
    width: 100%;
}
.serii__name {
    color: #5F5B5B;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
	padding: 20px 0 10px;
}
.serii__intro {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.serii__tow--promyshlennye .serii__img{
	 aspect-ratio: 1;
    object-fit: contain;
    max-width: 400px;
}
.serii__tow--promyshlennye {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.serii__tow--promyshlennye .serii__name {
    font-size: 20px;
}
.serii__tow--promyshlennye .serii__intro {
    font-size: 16px;
}
.series__img img {
    width: 100%;
}
.series-b-info {
    position: relative;
}
.series__content {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}
.series__container {
    padding: 0 160px;
    margin: 0 auto;
    width: 100%;
}
.series__content-inner {
    background-color: #fff;
    padding: 80px 80px 55px;
}
.series__row {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
	align-items: center;
}
.series__title p {
    color: #5F5B5B;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}
.fact__name {
    color: #5F5B5B;
    font-weight: 700;
    font-size: 64px;
	    padding-bottom: 10px;

}
.fact__text {
    color: #5F5B5B;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
	max-width: 300px;
    line-height: normal;
}
.series__item {
    width: 50%;
}
.header__menu--promo{
	    column-gap: 26px;
    position: relative;
    flex-wrap: wrap;
    justify-content: left;
    row-gap: 13px;
}
.header__menu-pr {

    max-width: 900px;
}
.header__menu-pr .menu-item:before {
    content: '';
    background: #E7A300;
    list-style: square;
    width: 6px;
    height: 6px;
    position: absolute;
    right: -18px;
    top: calc(50% - 3px);
}

.header__menu-pr .menu-item:last-child:before {
  display: none;
}
.header__menu-pr .menu-item {
  position: relative;
}
@media only screen and (max-width: 1680px) {
  .header__menu-pr {
    max-width: 810px;
}
.header__menu--promo {
    column-gap: 24px;
    position: relative;
    flex-wrap: wrap;
    justify-content: left;
    row-gap: 13px;
}
.header__menu a {
    font-size: 15px;
    font-weight: 600;
}


.header__menu-pr .menu-item:before {
    right: -15px;
}
}
@media only screen and (max-width: 1440px) {
	.header__menu-pr {
    max-width: 746px;
}
    .header__menu a {
        font-size: 15px;
    }
     .header__menu-pr .menu-item:nth-child(4):before {
  display: none;
}
}
@media only screen and (max-width: 1300px) {
    .series__content {
        position: static;
    }
	.series__container {
    padding: 0;
}
.series__content-inner {
    background-color: #fff;
    padding: 30px 0 0;
}
    
}
@media (max-width: 1262px) {
	.header__menu-pr {
        max-width: 100%;
    }
  .header__menu-pr .menu-item::before {
  display: none;
}
}
@media (max-width: 1024px) {
	.bannerlang__title {
    font-size: 50px;
    line-height: normal;
}
.serii__tow {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}
.serii__title {
    padding-bottom: 0;
}
.serii__item:first-child{
	    grid-column: 1 / 3;
}
.serii__tow--promyshlennye .serii__item:first-child{
	    grid-column: auto;
}
.subtitle--panoramnye{
	padding-bottom:40px;
}
}
@media (max-width: 767px) {
	.bannerlang__title {
    font-size: 28px;
    padding-bottom: 20px;
}
.bannerlang__text {
    font-size: 16px;
}
.serii__tow {
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.serii__item:first-child {
        grid-column: auto;
    }
.subtitle--panoramnye{
	padding-bottom:30px;
}
.series__row {
    flex-direction: column;
    gap: 20px;
}
.series__item {
    width: 100%;
}
.series__title p {
    font-size: 18px;
    line-height: 130%;
}
.fact__name {
    font-size: 50px;
}
.fact__text {
    font-size: 16px;
}
}

.wrapper--lang .animated{
  visibility: hidden;
}

.scroll-strelka {
    display: none;
    width: 45px;
    height: 45px;
    transform: rotate(-90deg);
    bottom: 40px;
    position: fixed;
    z-index: 111;
    right: 20px;
    background: #e7a300;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
.scroll-strelka svg{
      max-width: 100%;
    margin-top: 4px;
}

.serii__info {
    color: #5F5B5B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.serii__naimen {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding:0px 0 10px;
}
.serii__parametr {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.serii__tow--parametrs{
  border-top: 1px solid #ecf1f7;
  margin-top: 40px;
}
.serii__tow--parametrs .serii__tow{
   border-bottom: 1px solid #ecf1f7;
   padding: 20px 0;
}
.serii--proplus{
      padding-top:0px;
}
.serii__icon {
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin-right: 20px;
    color: #fff;
    background: -webkit-linear-gradient(45deg, #4184d4, #5fdcb7);
    background: -o-linear-gradient(45deg, #4184d4 0, #5fdcb7 100%);
    background: linear-gradient(45deg, #4184d4, #5fdcb7);
    border-radius: 3px;
}
.serii__item:first-child .serii__icon{
background: -webkit-linear-gradient(45deg, #a6d441, #b5dc5f);
    background: -o-linear-gradient(45deg, #a6d441 0, #b5dc5f 100%);
    background: linear-gradient(45deg, #a6d441, #b5dc5f);
}
.serii__item:nth-child(2) .serii__icon{
      background: -webkit-linear-gradient(45deg, #d44141, #dc7d5f);
    background: -o-linear-gradient(45deg, #d44141 0, #dc7d5f 100%);
    background: linear-gradient(45deg, #d44141, #dc7d5f);
}
.serii__icon img{
    display: inline-block;
    max-width: 100%;
    max-height: 100%;
    overflow: visible;
}
.serii--proplus .serii__name {
    font-size: 20px;
}
.serii--proplus .serii__intro {
    font-size: 16px;
}
.parametrs__name {
    color: #5F5B5B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 8px;
}
.parametrs__name span{
  font-weight: 700;
}
.parametrs__info {
    color: #5F5B5B;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 0.8;
}
.serii__info--parametrs {
    margin-left: 23px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    position: relative;
}
.parametrs__icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    color: #40a629;
}
.parametrs__icon svg{
  width: 14px;
}
.serii__intro--parametrs{
  flex: 1 0 0;
}
.serii__info--parametrsall {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    gap: 20px;
}
.serii__tow--panoramnye--pan .serii__intro {
    height: 42px;
    max-height: 42px;
}

@media (max-width: 1024px) {
.serii__tow--panoramnye--pan .serii__intro {
    height: auto;
    max-height: none;
}
}
@media (max-width: 767px) {

}

.advantages__main, .advantages__tow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 36px 36px;
}
.advantages__p {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.advantages__text {
    color: #5F5B5B;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.advantages__subtitle {
    padding: 20px 0 10px;
    color: #5F5B5B;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 0 10px;
}
.advantages_img {
    width: 100%;
}
.advantages__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 36px 36px;
}
.advantages__cart {
    display: flex;
    flex-direction: column;
  padding: 30px;
}
.cart__img {
    max-width: 70px;
    align-self: center;
}
.cart__subtitle {
    padding: 20px 0 10px;
    color: #5F5B5B;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 20px 0 10px;
}
.cart__text {
    color: #5F5B5B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.advantages__item:last-child {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.advantages__list{

    flex: 1 0 0;
}
.advantages__cart:first-child{
    border: 2px solid #4184d4;
    -webkit-border-image: -webkit-linear-gradient(45deg, #4184d4, #5fdcb7);
    -o-border-image: -o-linear-gradient(45deg, #4184d4 0, #5fdcb7 100%);
    border-image: linear-gradient(45deg, #4184d4, #5fdcb7);
    border-image-slice: 1;
}
.advantages__cart:last-child{
    border: 2px solid #ff5282;
    -webkit-border-image: -webkit-linear-gradient(45deg, #f9934a, #ff5282);
    -o-border-image: -o-linear-gradient(45deg, #f9934a 0, #ff5282 100%);
    border-image: linear-gradient(45deg, #f9934a, #ff5282);
    border-image-slice: 1;
}
.advantages__cart2 .advantages__subtitle{
  padding-top: 0;
}
.advantages {
    padding-bottom: 0;
}
.diversity .subtitle{
  padding-bottom: 0;
}
@media (max-width: 1024px) {
.advantages__main {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding-bottom: 30px;
}
.advantages__title {
  padding-bottom: 0;
}
.advantages__tow {
    grid-template-columns: 1fr;
    grid-gap: 20px;
}
.advantages__item:last-child {

    gap: 20px;
}
.advantages__list {
    grid-gap: 20px;
}
}
@media (max-width: 767px) {
.advantages__list {
    grid-template-columns: 1fr;
}
.advantages__subtitle, .cart__subtitle {
    font-size: 24px;
}
}
.cooperation__img img{
  -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: 0.6;
    max-height: 50px;
    max-width: 100%;
    display: block;
    margin: auto;
}
.cooperation__img img:hover{
  -webkit-filter: none;
    filter: none;
    opacity: 1;
}
.cooperation__row {
    align-items: end;
}
.cooperation__img img.grani {
    max-height: 80px;
}
.cooperation__item {

    max-width: 100%;
}
.cooperation__item{
//width: auto !important;
}
.cooperation__row {
  justify-content: space-between;
}
.our_projects__list {
    font-size: 23px;
    line-height: 1;
    color: #5f5b5b;
    padding: 10px;
    cursor: pointer;    
    border: 1px solid #ffffff;
}
.our_projects__list:hover, .our_projects__list.active {
    font-weight: 500;
    border-radius: 20px;
    border: 1px solid #e7a300;
}
.our_projects__lists {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-bottom: 40px;
}
.about-vorots-dopblock {
    padding-top: 0;
}

/* новые правки */

.banner-votor--new .banner__title{
  max-width: 600px;
}
.about-vorot-756 .banner__title {
    max-width: 630px;
}
.banner__title span{
  display: block;
}
 .banner__price {
    font-size: 44px;
}
.banner__title  .banner__price {
    display: block;
}
.banner-votor_img {
    display: block;
    margin-left: auto;
}
.banner-votor--new .banner-votor_img {
    max-height: 500px;
    margin-left: calc(-100% / 2);
}
.about-vorot-738 .banner-votor--new .banner-votor_img, .about-vorot-756 .banner-votor--new .banner-votor_img, .about-vorot-758 .banner-votor--new .banner-votor_img, 
  .about-vorot-762 .banner-votor--new .banner-votor_img, .about-vorot-2042 .banner-votor--new .banner-votor_img, .about-vorot-744 .banner-votor--new .banner-votor_img, 
  .about-vorot-754 .banner-votor--new .banner-votor_img, .about-vorot-752 .banner-votor--new .banner-votor_img       {
    margin-left: calc(-30% / 2);
}
.about-vorot-2091 .banner-votor--new .banner-votor_img{
  margin-left: auto;
  margin-right: 60px;
      max-height: 410px;
}
.about-vorot-744 .banner-votor--new .banner-votor_img {
    max-width: 85%;
    margin-left: calc(-10% / 2);
}
@media (max-width: 1800px) {

 
  .banner-votor--new .banner-votor_img, .about-vorot-738 .banner-votor--new .banner-votor_img, .about-vorot-756 .banner-votor--new .banner-votor_img, .about-vorot-758 .banner-votor--new .banner-votor_img, 
  .about-vorot-762 .banner-votor--new .banner-votor_img, .about-vorot-2042 .banner-votor--new .banner-votor_img, 
  .about-vorot-754 .banner-votor--new .banner-votor_img, .about-vorot-752 .banner-votor--new .banner-votor_img   {
    margin-right: 160px;
            margin-left: auto;
  }
  .about-vorot-744 .banner-votor--new .banner-votor_img {
    margin-right: 60px;
    margin-left: auto;
    max-width: 60%;
  }
}
@media (max-width: 1150px) {
    .banner__price {
        font-size: 42px;
    }
}
@media (max-width: 1024px) {
    .banner__price {
        font-size: 28px;
    }
}
@media (max-width: 767px) {
    .banner__price {
        font-size: 24px;
    }
    .banner-votor--new .banner-votor_img, .about-vorot-738 .banner-votor--new .banner-votor_img, .about-vorot-756 .banner-votor--new .banner-votor_img, .about-vorot-758 .banner-votor--new .banner-votor_img, 
  .about-vorot-762 .banner-votor--new .banner-votor_img, .about-vorot-2042 .banner-votor--new .banner-votor_img, .about-vorot-2091 .banner-votor--new .banner-votor_img, 
  .about-vorot-744 .banner-votor--new .banner-votor_img, .about-vorot-754 .banner-votor--new .banner-votor_img, .about-vorot-752 .banner-votor--new .banner-votor_img    {
    max-width: calc(100% - 40px);
    margin: auto;
}
}


.advantages-gate__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.advantages-gate__img {
    max-width: 70px;
}
.advantages-gate__title {
    color: #E7A300;
    font-weight: 700;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 20px;
}
.advantages-gate__info {
    color: #5F5B5B;
}
.advantages-gate__item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.advantages-gate__info {
    color: #5F5B5B;
    text-align: center;
    max-width: 303px;
}
@media (max-width: 767px) {
.advantages-gate__row {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
}
.advantages-gate__title {
    font-size: 16px;
}
.advantages-gate__info {
    font-size: 16px;
}
}

.types-reloading-vestibules__img {
    max-width: 100%;
    width: auto;
    min-height: 350px;
}

.types-reloading-vestibules__title {
    color: #E7A300;
  
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 30px;
}

.types-reloading-vestibules__item {
    display: flex;
    gap: 100px;
}

.types-reloading-vestibules__info {
    color: #5F5B5B;
    padding-bottom: 30px;
    line-height: 1.2;
    font-size: 24px;
}
.button--black{
  background-color: #5F5B5B;
    color: #FFF;
    border: 2px solid #5F5B5B;
}
.button--black:hover {
    background-color: #5f5b5b00;
    color: #5F5B5B;
    box-shadow: 0 0 40px 40px #5f5b5b00 inset;
}
.subtitle-h2{
  font-size: 32px;
    font-weight: 700;
    color: #5F5B5B;
    padding-bottom: 40px;
}
.types-reloading-vestibules__row {
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.types-reloading-vestibules__item:nth-child(2n) .types-reloading-vestibules__img {
    order: 2;
}
.types-reloading-vestibules__item-2 {
    margin-left: auto;
}
.types-reloading-vestibules__informations {
    height: fit-content;
    max-width: 800px;
}
.types-exterior-decoration__item .types-reloading-vestibules__img {
    max-width: 400px;
    object-fit: contain;
    min-height: auto;
}
.types-exterior-decoration__item:last-child {
    margin-left: auto;
}

/*** 2 в колонку 

.types-reloading-vestibules__row {
    display: flex;
    gap: 60px;
    justify-content: center;
}
.types-reloading-vestibules__item {
    display: flex;
    gap: 30px;
    flex-direction: column;
    max-width: 468px;
}*/
@media (max-width: 767px) {
.advantages-gate__row {
    grid-template-columns: 1fr;
    gap: 30px 20px;
}
.types-reloading-vestibules__title {
    font-size: 20px;
}
.types-reloading-vestibules__info {
    font-size: 16px;
}
.subtitle-h2 {
        font-size: 24px;
    }
    .types-reloading-vestibules__item {
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr;
}
.types-reloading-vestibules__img {
    max-width: 100%;
    width: 100%;
    max-height: 100% !important;
}
.types-reloading-vestibules__row {
    gap: 30px;
}
.types-reloading-vestibules__item:nth-child(2n) .types-reloading-vestibules__img {
    order: 0;
    margin-left: auto;
}
}


.tovar__img {
    max-width: 100%;
    width: 100%;
}
.tovar__row {
    display: flex;
    flex-direction: column;

}
.tovar__item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    border-top: 2px solid #E7A300;
    padding-top: 60px;
    margin-top: 60px;
}
.tovar__item:first-child {
    padding-top: 0;
    margin-top: 0;
    border: 0;
}
.tovar__title {
    font-size: 32px;
    font-weight: 700;
    color: #5F5B5B;
    padding-bottom: 40px;
    max-width: 1000px;
}
.tovar__name {
    font-weight: 700;
    color: #5F5B5B;
    font-size: 20px;
}
.tovar__lists {
    color: #5F5B5B;
    padding-top: 20px;
}
.tovar__lists li {
    list-style: "+";
        padding-left: 5px;
}
.tovar__lists li::marker {
    color: #E7A300;
}
.tovar__lists ul {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-left: 10px;
}
.tovar__infos {
    display: flex;
    gap: 20px;
        margin-bottom: auto;
}
.tovar__price {
    color: #5F5B5B;
    font-size: 24px;
    padding-top: 40px;
    padding-bottom: 20px;
    font-weight: 600;
}
.tovar__buttons {
    display: flex;
    gap: 20px;
}
.tovar__block {
    display: flex;
    flex-direction: column;
}
.tovar__more {
    color: #5F5B5B;
    font-size: 20px;
    font-weight: 700;
    line-height: 18px;
    text-decoration-line: underline;
    padding-top: 50px;
    cursor: pointer;
    margin: auto;
    display: block;
    text-transform: uppercase;
}
@media (max-width: 1200px) {

.tovar__infos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.tovar__info {
    max-width: 100%;
}
}
@media (max-width: 767px) {
.tovar__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    margin-top: 40px;
}
.tovar__title {
    font-size: 24px;
    padding-bottom: 20px;
}
.tovar__price {
    font-size: 20px;
    padding-top: 30px;
}
.tovar__buttons {
    flex-direction: column;
}
}
.popup-about--new .modal__title {
    font-size: 32px;
    padding-bottom: 10px;
}
.modal__text--tovar , .modal__text--tovar-2{
    line-height: 1.2;
}
.popup-about--new label {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popup-about--new .popup__content {
    padding: 40px 24px;
}
.modal__text.modal__text--tovars {
    padding-bottom: 0;
    font-weight: 500;
}
.popup-about--new .acceptance label {
    flex-direction: row;
    align-items: baseline;
}
.acceptance .wpcf7-list-item {
    display: block;
    margin: 0;
}
.acceptance input[type="checkbox"] {
    width: 20px;
}
.acceptance span.wpcf7-list-item-label {
    font-size: 12px;
}
@media (max-width: 767px) {
.popup-about--new .modal__title {
    font-size: 24px;
}
}
.popular-block__img {
    width: 100%;
}
.popular-block__title {
    color: #E7A300;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
}
.popular-block__title span{
    display: block;
    padding-top: 10px;
}
.popular-block__info p {
    color: #5F5B5B;
    font-size: 16px;
}
.popular-block__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popular-block__info span{
  font-weight: 700;
}
.popular-block__price {
    color: #5F5B5B;
    font-size: 24px;
    font-weight: 600;
    justify-content: space-between;
}
.popular-block__prices {
    display: flex;
    gap: 20px;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: auto;
}
.popular-block__button .button--black {
    padding: 10px 30px;
}
.mounting-type__button-next:before{
  content: '';
  background: url('../img/next-tip.png');
  width: 25px;
    height: 25px;
    background-size: contain;
    background-position-x: 1px;
}
.mounting-type__button-prev:before{
  content: '';
  background: url('../img/prev-tip.png');
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position-x: -1px;
}
.mounting-type__button-next.swiper-button-next, .mounting-type__button-prev.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #D9D9D9;
}
.mounting-type__body {
    position: relative;
}
.mounting-type__button-prev.swiper-button-prev{
  left: -20px;
}
.mounting-type__button-next.swiper-button-next{
  right: -20px;
}
@media (max-width: 1024px) {
.popular-block__prices {
    flex-direction: column;
}
}
@media (max-width: 767px) {
.popular-block__price {
    font-size: 20px;
}
}
.what-form-choose__image {
    max-width: 100%;
    max-height: 360px;
    margin-left: auto;
    display: block;
}
.what-form-choose__row {
    display: grid;
    row-gap: 80px;
    grid-template-columns: 1fr 1fr;
        align-items: end;
}
.what-form-choose__title {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    color: #E7A300;
    padding-bottom: 30px;
}
.what-form-choose__text {
    color: #5F5B5B;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.what-form-choose__item .modal__body.form-input {
    color: #5F5B5B;
        margin: 0;
    margin-top: 20px;
        gap: 0;
}
.what-form-choose__item .form-input input {
  border: 1px solid #5F5B5B;
    max-width: 300px;
    margin-top: 20px;
    text-align: left;
    padding: 20px;
}
.what-form-choose__item  .wpcf7-submit.wpcf7-form-control {
    background: #5F5B5B;
    border-color: #5F5B5B;
    color: #ffffff;
    max-width: fit-content;
    padding: 10px 20px;
}
.what-form-choose__item  .form-success {
    padding-top: 20px;
}
.what-form-choose__item  .modal__text {
    color: #5F5B5B;
}
@media (max-width: 767px) {
.what-form-choose__row {
    grid-template-columns: 1fr;
    gap: 40px;
}
.what-form-choose__title {
    font-size: 26px;
    padding-bottom: 20px;
}

}

.dopolnitelnaya-options__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.dopolnitelnaya-options__row-fr3{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}
.dopolnitelnaya-options__row-fr3 .dopolnitelnaya-options__item {
    width: 28%;
}
.dopolnitelnaya-options__img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 340px;
}
.dopolnitelnaya-options__title {
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 19px;
    color: #E7A300;
}
.dopolnitelnaya-options__text {
    color: #5F5B5B;
    font-size: 16px;
    height: auto;
}
.dopolnitelnaya-options__h2{
  font-size: 32px;
    font-weight: 700;
    color: #5F5B5B;
    padding-bottom: 40px;
}
.dopolnitelnaya-options__price {
    color: #5F5B5B;
    font-size: 24px;
    padding-top: 20px;
    margin-top: auto;
}
.dopolnitelnaya-options__item {
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
.dopolnitelnaya-options__row-fr3 {
    gap: 40px;
}
.dopolnitelnaya-options__row-fr3 .dopolnitelnaya-options__item {
    width: calc(50% - 20px);
}
}
@media (max-width: 767px) {
.dopolnitelnaya-options__h2 {
    font-size: 24px;
}
.dopolnitelnaya-options__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.dopolnitelnaya-options__row.dopolnitelnaya-options__row-fr3 {
    display: flex;
}
.dopolnitelnaya-options__row-fr3 .dopolnitelnaya-options__item {
    width: 100%;
}
}

.questions.section {
    background: #D9D9D9;
    padding: 60px 0;
}
.questions__imgs {
    max-width: 100%;
        max-height: 286px;
    margin: auto;    
}

.questions__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
}
.questions__title {
    font-size: 54px;
    font-weight: 700;
    color: #5F5B5B;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.questions__soc {
    display: flex;
    max-width: 250px;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 20px;
}
.questions__soc--telega {
    background: #0088CC;
    margin-bottom: 20px;
}
.questions__soc--wa {
    background: #25d366;
}
.questions__soc img {
    max-width: 24px;
}
@media (max-width: 767px) {
.questions__row {
    grid-template-columns: 1fr;
    gap: 40px;
}
.questions__title {
    font-size: 32px;
    padding-bottom: 30px;
}
.questions.section {
    padding: 40px 0;
}
}
.padding-top-none{
  padding-top: 0;
}
.padding-top{
  padding-top: 100px;
}
@media (max-width: 1024px) {
    .padding-top {
        padding-top: 80px;
    }
}
@media (max-width: 767px) {
    .padding-top {
        padding-top: 40px;
    }
}

.series-high-speed__item {
    display: grid;
    gap: 40px;
    width: calc(50% - 40px);
    grid-template-columns: 1fr 1fr;
}

.series-high-speed__row {
    display: flex;
    flex-wrap: wrap;
    gap: 120px 60px;
    position: relative;
}
.series-high-speed__row:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    top: 50%;
    background: #E7A300;
}
.series-high-speed__item .types-reloading-vestibules__info{
  padding-bottom: 0;
}
@media (max-width: 1024px) {
.series-high-speed__item {

    width: calc(100% - 40px);
}
.series-high-speed__row {
    gap: 60px 60px;
}
.series-high-speed__row:before{
  display: none;
}
.series-high-speed__item:nth-child(3) {
    padding-top: 60px;
    border-top: 2px solid #E7A300;
}
}
@media (max-width: 767px) {
.series-high-speed__item {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}
    .series-high-speed__row {
        gap: 30px 0;
        flex-direction: column;
    }
        .series-high-speed__item:nth-child(3) {
        padding-top: 30px;
    }
}
.zamer__img{
  max-height: 430px;
  margin: auto;
      display: block;
}
/* construction для всех */
.construction__informations {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
}
.construction {
    position: relative;
}
    .construction_img--new {
        max-width: calc(100% - 50px);
        height: auto;
        margin: 0 auto;
        //max-height: 80dvh;
        padding: 50px;
    }
   .construction_b_img {
    max-width: 100%;
    display: block;
    margin: auto;
    margin: 0 auto;
        height: auto;
    max-height: 100%;
}
.construction_block__wrapper--new .construction_block-slide-cont {
    position: relative;
    width: 100%;
    //padding-top: 50px;
    height: 100%;
}
.construction_block_wrap .construction_block__wrapper .construction_block{
      //height: 85dvh;
}
.construction_block-title {
    color: #E7A300;
    font-size: 28px;
    line-height: 1;
  }
      .construction_block__wrapper--new {
        height: 80vh;
        display: flex;
            position: relative;
    }
  @media (max-width: 1024px) {
.construction_block-title {
    font-size: 24px;
}
}
@media (max-width: 767px){
.construction_block-title {
    font-size: 20px;
    line-height: 21px;
}
}

/* construction для всех */


/* construction Скоростные ворота */

.construction_block_text.construction_block_text-skotost-1 {
    top: 16%;
    left: 47px;
    max-width: 249px;
}
.construction_block_text.construction_block_text-skotost-1 img.pngtree {
    left: auto;
    right: -87%;
    top: -13%;
}
.construction_block_text.construction_block_text-skotost-2 {
        left: auto;
    right: 3%;
    top: 50%;
    max-width: 292px;
}
.construction_block_text.construction_block_text-skotost-2 img.pngtree {
        left: -55%;
    top: -1%;
}
.construction_block_text.construction_block_text-skotost-3 {
    top: auto;
    bottom: 3%;
    left: -6%;
    max-width: 434px;
}
.construction_block_text.construction_block_text-skotost-3 img.pngtree {
    right: -31%;
    left: auto;
    top: 0;
}

.construction_block_text.construction_block_text-skotost-4 {
        top: 41px;
    right: -11%;
}
.construction_block_text.construction_block_text-skotost-4 img.pngtree {
    left: -30%;
    top: 0;
}
.construction_block_text.construction_block_text-skotost-5 {
    left: 0%;
    top: 50%;
}
.construction_block_text.construction_block_text-skotost-5 img.pngtree {
    right: -25%;
    top: -18%;
}
.construction_block-slide-cont {
    max-width: 1200px;
}
.construction_block_text.construction_block_text-skotost-6{
    top: 41px;
    left: -8%;
}
.construction_block_text.construction_block_text-skotost-6 .pngtree {
    right: -35%;
    left: auto;
    top: -14%;
}
.construction_block_text.construction_block_text-skotost-7{
  left: auto;
    right: 3%;
    top: 50%;
    max-width: 292px;
}
.construction_block_text.construction_block_text-skotost-7 .pngtree{
  left: -55%;
    top: -1%;
}
.construction_block_text.construction_block_text-skotost-8 {
        top: 41px;
    right: -11%;
}
.construction_block_text.construction_block_text-skotost-8 img.pngtree {
    left: -30%;
    top: 0;
}

.construction_block_text.construction_block_text-skotost-9 {
    left: 0%;
    top: 50%;
}
.construction_block_text.construction_block_text-skotost-9 img.pngtree {
    right: -25%;
    top: -18%;
}
@media (max-width: 1700px) {
.construction_block_text.construction_block_text-skotost-3 {
    bottom: 11%;
}
}
@media (max-width: 1700px) {
.construction_block_text.construction_block_text-skotost-4 {
    right: -3%;
}
.construction_block_text.construction_block_text-skotost-8 {
    right: -3%;
}
}
@media (max-width: 1200px) {
.construction_block_text.construction_block_text-skotost-1 {
    left: -1%;
}
.construction_block_text.construction_block_text-skotost-2 {
    right: -10%;
}
.construction_block_text.construction_block_text-skotost-3 {
    left: -3%;
}
}

@media (max-width: 1024px) {
  .construction_block_text.construction_block_text-skotost-4 {
    right: -3%;
    top: -5%;
}
.construction_block_text.construction_block_text-skotost-4 img.pngtree {
    left: -30%;
    top: 97%;
}
.construction_block_text.construction_block_text-skotost-5 {
    left: -6%;
    top: 48%;
    max-width: 197px;
}
.construction_block_text.construction_block_text-skotost-6 {
    top: -3%;
    left: -8%;
}
.construction_block_text.construction_block_text-skotost-6 .pngtree {

    top: 61%;
}

.construction_block_text.construction_block_text-skotost-7 {
    left: auto;
    right: -8%;
    top: 50%;
    max-width: 133px;
}
.construction_block_text.construction_block_text-skotost-7 .pngtree {
    left: -82%;
    top: 18%;
}
  .construction_block_text.construction_block_text-skotost-8 {
    right: -3%;
    top: -5%;
}
.construction_block_text.construction_block_text-skotost-8 img.pngtree {
    left: -30%;
    top: 97%;
}

.construction_block_text.construction_block_text-skotost-9 {
    left: -6%;
    top: 48%;
    max-width: 197px;
}
}
@media (max-width: 900px) {

.construction_block-title {
    font-size: 20px;
}
.construction_block_text.construction_block_text-skotost-1 {
    max-width: 173px;
        left: -8%;
}
.construction_block_text.construction_block_text-skotost-2 {
    max-width: 189px;
}
.construction_block_text.construction_block_text-skotost-3 {
    max-width: 162px;
}
}
/* construction Скоростные ворота */


.types-equalization-platforms__img {
    width: 100%;
}
.types-equalization-platforms__title {
    color: #E7A300;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
}
.types-equalization-platforms__title span{
    display: block;
}
.types-equalization-platforms__info p {
    color: #5F5B5B;
    font-size: 16px;
}
.types-equalization-platforms__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.types-equalization-platforms__info span{
  font-weight: 700;
}
.types-equalization-platforms__prices {
    display: flex;
    gap: 20px;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 20px;
    margin-top: auto;
}
.types-equalization-platforms__button .button--black {
    padding: 10px 30px;
}
.types-equalization-platforms__harakteristic{
      color: #5F5B5B;
    font-size: 16px;
    height: auto;
}

.types-equalization-platforms__wrapper{
    align-items: stretch;
}
.types-equalization-platforms__item.swiper-slide{
  height: auto;
      display: flex;
    flex-direction: column;
}

.types-mounting__img{
    width: 100%;
}
.types-mounting__title {
    color: #E7A300;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 18px;
}
.types-mounting__text {
    color: #5F5B5B;
    font-size: 16px;
    height: auto;
}
.types-mounting__item.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.popular-block__wrapper {
    align-items: stretch;
}
.popular-block__wrapper .popular-block__item{
    height: auto;
    display: flex;
    flex-direction: column;
}
.popular-block__wrapper {
    align-items: stretch;
}

.filling-options__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.filling-options_name{
  color: #E7A300;
    font-weight: 700;
    padding-bottom: 10px;
    font-size: 24px;
}
.filling-options__img{
  width: 100%;
}
.filling-options__button{
    margin-top: 30px;
}
.filling-options_name{
  padding-top: 40px;
}
@media (max-width: 1024px) {
.filling-options_name {
    padding-top: 20px;
        font-size: 22px;
}
.filling-options__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
}

@media (max-width: 767px) {
.filling-options__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.filling-options_name{
      font-size: 20px;
}
.filling-options__button {
    margin-top: 20px;
}
}


.construction_block_text-otkatnye-1 {
    left: auto;
    right: -22%;
}
.construction_block_text-otkatnye-1 .pngtree {
    left: -59px;
    top: -78px;
}

.construction_block-2 .construction_block_text-otkatnye-2 {
    left: 0;
    top: auto;
    bottom: 6%;
}
.construction_block_text-otkatnye-2 .pngtree {
    top: -39px;
    right: 52px;
}

.construction_block-3 .construction_block_text-otkatnye-3 {
    left: -6%;
    top: 0;

}
.construction_block_text-otkatnye-3 .pngtree {
    top: 246px;
    right: -52px;
    left: auto;
}

.construction_block-4 .construction_block_text-otkatnye-4{
    top: 79%;
    left: auto;
    right: 5%;
}
.construction_block_text-otkatnye-4 .pngtree {
   right: 0;
    top: -122px;
    left: -65px;
}

@media (max-width: 1500px) {
.construction_block_text-otkatnye-1 {
    left: auto;
    right: 0;
    top: -28%;
}
.construction_block_text-otkatnye-1 .pngtree {
    left: 137px;
    top: auto;
    bottom: -86px;
}

}

.filling-options-podvesnye__row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}
.filling-options-podvesnye__item.swiper-slide {
    display: flex;
    flex-direction: column;
    height: auto;
}
.filling-options-podvesnye_name {
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 19px;
    color: #E7A300;
}
.filling-options-podvesnye_text {
    color: #5F5B5B;
    font-size: 16px;
    height: auto;
}
.filling-options-podvesnye__button {
    margin-top: auto;
    padding-top: 30px;
}

.types-mounting__wrapper {
    align-items: stretch;
}

.construction_img-758, .construction_block-758 .construction_b_img{
  max-width: 800px;
}



.construction_block-1 .construction_block_text-otkatnye-podvesnye-1 {
    left: 5%;
    max-width: 420px;
    top: -13%;
}
.construction_block_text-otkatnye-podvesnye-1 img.pngtree {
    top: auto;
    bottom: -74px;
    left: auto;
    right: 47px;
}

.construction_block-2 .construction_block_text-otkatnye-podvesnye-2 {
    left: auto;
    right: -6%;
    top: 35%;
    max-width: 307px;
}

.construction_block_text-otkatnye-podvesnye-2 img.pngtree {
    left: -116px;
    top: 0;
}
.construction_block-3 .construction_block_text-otkatnye-podvesnye-3 {
    left: auto;
    right: -14%;
    top: 19%;
}
.construction_block_text-otkatnye-podvesnye-3 img.pngtree {
    left: -78px;
    top: -30px;
}
.construction_block-4 .construction_block_text-otkatnye-podvesnye-4 {
    left: 2%;
    max-width: 315px;
    top: 55%;
}

.construction_block_text-otkatnye-podvesnye-4 img.pngtree {
    top: -30px;
    left: auto;
    right: -88px;
}

@media (max-width: 1500px) {
.construction_block-3 .construction_block_text-otkatnye-podvesnye-3 {
    left: auto;
    right: -6%;
    top: 19%;
}
}
@media (min-width: 1850px) {
.construction_block_wrap-ee{
  margin-top: -100px;
}
}
.construction_block-1 .construction_block_text-otkatnye-vorotnye-1 {
    max-width: 353px;
    top: 14%;
    left: -3%;
}
.construction_block_text-otkatnye-vorotnye-1 img.pngtree {
    right: -38px;
    left: auto;
    top: -41px;
}
.construction_block-2 .construction_block_text-otkatnye-vorotnye-2 {
    max-width: 309px;
    right: -2%;
    top: 1%;
}
.construction_block_text-otkatnye-vorotnye-2 img.pngtree {
    left: -77px;
    top: 100px;
}
.construction_block-3 .construction_block_text-otkatnye-vorotnye-3 {
    max-width: 318px;
    left: -2%;
    top: 50%;
}
.construction_block_text-otkatnye-vorotnye-3 img.pngtree {
    right: -100px;
    left: auto;
    top: 0px;
}
.construction_block-4 .construction_block_text-otkatnye-vorotnye-4 {
    max-width: 358px;
    right: -7%;
    top: 55%;
}
.construction_block_text-otkatnye-vorotnye-4 img.pngtree {
    left: -63px;
    top: -50px;
}


.mounting-type {
  padding-top: 0;
}
.mounting-type__name{
    color: #E7A300;
    max-width: 250px;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 18px;
}
.mounting-type__info {
    color: #5F5B5B;
    font-size: 16px;
}
.mounting-type__img {
    width: 100%;
}
.mounting-type__wrapper {
    justify-content: space-between;
}
.mounting-type__title {
    font-size: 32px;
    font-weight: 700;
    color: #5F5B5B;
    padding-bottom: 40px;
}
.mounting-type__button-next:before{
  content: '';
  background: url('../img/next-tip.png');
  width: 25px;
    height: 25px;
    background-size: contain;
    background-position-x: 1px;
}
.mounting-type__button-prev:before{
  content: '';
  background: url('../img/prev-tip.png');
  width: 25px;
  height: 25px;
  background-size: contain;
  background-position-x: -1px;
}
.mounting-type__button-next.swiper-button-next, .mounting-type__button-prev.swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #D9D9D9;
}
.mounting-type__body {
    position: relative;
}
.mounting-type__button-prev.swiper-button-prev{
  left: -20px;
}
.mounting-type__button-next.swiper-button-next{
  right: -20px;
}

.construction_block-1 .construction_block_text-rulonnye-1 {
    max-width: 341px;
    left: 2%;
}
.construction_block_text-rulonnye-1 img.pngtree {
    right: -50%;
    left: auto;
    bottom: -110px;
    top: auto;
}
.construction_block-2 .construction_block_text-rulonnye-2 {
    max-width: 338px;
    right: 0;
}
.construction_block_text-rulonnye-2 img.pngtree {
    left: -150px;
}
.construction_block-3 .construction_block_text-rulonnye-3 {
    left: 2%;
}
.construction_block_text-rulonnye-3 img.pngtree {
    right: -100px;
    left: auto;
    top: -157px;
}
.construction_block-4 .construction_block_text-rulonnye-4 {
    max-width: 325px;
    right: 2%;
}
.construction_block_text-rulonnye-4 img.pngtree {
    top: -135px;
    left: -200px;
}

.ttypes-profiles__img {
    width: 100%;
}
.types-profiles__row {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}
.types-profiles__item {
    max-width: 47%;
}
.types-profiles__title {
    color: #E7A300;
    font-weight: 700;
    font-size: 24px;
    padding-top: 30px;
}
@media (max-width: 767px) {
.types-profiles__row {
    gap: 30px;
    flex-direction: column;
}
.types-profiles__item {
    max-width: 100%;
}
.types-profiles__title {
    font-size: 20px;
    line-height: 1.3;
}
}


.construction_block-1  .construction_block_text-alyuminievie-dveri-1 {
    max-width: 324px;
    left: 1%;
    top: 13%;
}

.construction_block_text-alyuminievie-dveri-1 .pngtree {
    left: auto;
    right: -100px;
    top: 18px;
}
.construction_block-2 .construction_block_text-alyuminievie-dveri-2 {
    max-width: 317px;
    top: 10%;
}
.construction_block_text-alyuminievie-dveri-2 .pngtree {
    left: -122px;
}

.construction_block-3 .construction_block_text-alyuminievie-dveri-3 {
    max-width: 346px;
    left: -2%;
    top: auto;
    bottom: 16%;
}
.construction_block_text-alyuminievie-dveri-3 img.pngtree {
    left: auto;
    right: -70px;
    top: auto;
    bottom: -50px;
}
.construction_block-4 .construction_block_text-alyuminievie-dveri-4 {
    max-width: 340px;
    top: auto;
    bottom: 13%;
    right: 3%;
}
.construction_block_text-alyuminievie-dveri-4 img.pngtree {
    left: -100px;
    top: 20px;
}

@media (max-width: 1300px) {
.construction_block-1 .construction_block_text-alyuminievie-dveri-1 {
    left: -1%;
}
.construction_block-2 .construction_block_text-alyuminievie-dveri-2 {
    right: 3%;
}
.construction_block-3 .construction_block_text-alyuminievie-dveri-3 {

    left: -4%;
}
.construction_block-4 .construction_block_text-alyuminievie-dveri-4 {
    right: 1%;
}
}


.construction_block-1 .construction_block_text-protivopozharnoe-otkatnye-1 {
    left: -4%;
    max-width: 350px;
    top: 30%;
}
.construction_block_text-protivopozharnoe-otkatnye-1 img.pngtree {
    left: auto;
    right: -170px;
    top: 0;
}
.construction_block-2 .construction_block_text-protivopozharnoe-otkatnye-2 {
    max-width: 350px;
    right: 1%;
    top: 45%;
}
.construction_block_text-protivopozharnoe-otkatnye-2 img.pngtree {
    left: -130px;
    top: 100px;
}
.construction_block-3 .construction_block_text-protivopozharnoe-otkatnye-3 {
    left: auto;
    right: 0%;
    max-width: 350px;
    top: 20%;
}
.construction_block_text-protivopozharnoe-otkatnye-3 img.pngtree {
    top: -66px;
    left: -100px;
}
.construction_block-4 .construction_block_text-protivopozharnoe-otkatnye-4 {
    max-width: 342px;
    left: -4%;
}
.construction_block_text-protivopozharnoe-otkatnye-4 img.pngtree {
    left: auto;
    right: -327px;
    top: 80px;
}

@media (max-width: 1500px) {

.about-vorot-1972 .banner-votor_img{
  margin-right: 60px;
}
}


.construction_block-1 .construction_block_text-protivopozharnoe-raspashnye-1 {
    left: -4%;
    max-width: 350px;
    top: 30%;
}
.construction_block_text-protivopozharnoe-raspashnye-1 img.pngtree {
    left: auto;
    right: -170px;
    top: 0;
}
.construction_block-2 .construction_block_text-protivopozharnoe-raspashnye-2 {
    max-width: 343px;
    left: -4%;
}
.construction_block_text-protivopozharnoe-raspashnye-2 img.pngtree {
     left: auto;
    right: -200px;
    top: 80px;
}
.construction_block-3 .construction_block_text-protivopozharnoe-raspashnye-3 {
    left: auto;
    right: -2%;
    max-width: 350px;
    top: 20%;
}
.construction_block_text-protivopozharnoe-raspashnye-3 img.pngtree {
        top: 2px;
    left: -72px;
}
.construction_block-4 .construction_block_text-protivopozharnoe-raspashnye-4 {
    max-width: 350px;
    right: -1%;
    top: 45%;
    left: auto;
}
.construction_block_text-protivopozharnoe-raspashnye-4 img.pngtree {
    left: -130px;
    top: 100px;
}

.construction_block_text-protivopozharnoe-sekcionnye-1 .pngtree {
    left: auto;
    right: -200px;
}
.construction_block-2 .construction_block_text-protivopozharnoe-sekcionnye-2 {
    max-width: 325px;
    right: -6%;
}
.construction_block_text-protivopozharnoe-sekcionnye-2 img.pngtree {
    left: -83px;
}
.construction_block-3 .construction_block_text-protivopozharnoe-sekcionnye-3 {
    max-width: 341px;
    left: auto;
    right: -5%;
    top: 29%;
}
.construction_block_text-protivopozharnoe-sekcionnye-3 img.pngtree {
    left: -100px;
    top: -11px;
}
.construction_block-4 .construction_block_text-protivopozharnoe-sekcionnye-4 {
    max-width: 315px;
    left: 8%;
    top: 50%;
}
.construction_block_text-protivopozharnoe-sekcionnye-4 img.pngtree {
    right: -164px;
}

.construction_block-1 .construction_block_text-protivopozharnoe-stalnie-1 {
    max-width: 330px;
    top: 20%;
}
.construction_block_text-protivopozharnoe-stalnie-1 img.pngtree {
    left: auto;
    right: -180px;
    top: 20px;
}
.construction_block-2 .construction_block_text-protivopozharnoe-stalnie-2 {
    max-width: 304px;
    top: 52%;
    left: 8%;
}
.construction_block_text-protivopozharnoe-stalnie-2 img.pngtree {
    right: -150px;
}
.construction_block-3 .construction_block_text-protivopozharnoe-stalnie-3 {
    max-width: 340px;
    left: auto;
    right: 5%;
    top: 20%;
}
.construction_block_text-protivopozharnoe-stalnie-3 img.pngtree {
    left: -71px;
}
.construction_block-4 .construction_block_text-protivopozharnoe-stalnie-4 {
    max-width: 308px;
    top: 50%;
    right: 6%;
}
.construction_block_text-protivopozharnoe-stalnie-4 img.pngtree {
    left: -200px;
    top: -17px;
}

.types-mounting-shtory__title {
    color: #E7A300;
    font-weight: 700;
    padding-top: 20px;
    font-size: 30px;
}
.types-mounting-shtory__img{
  max-width: 100%;
}
.types-mounting-shtory__row {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
}
.types-mounting-shtory__text {
    color: #5F5B5B;
    padding-top: 10px;
    line-height: 1.2;
    font-size: 24px;
}
.types-mounting-shtory__item {
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .types-mounting-shtory__row {
        gap: 60px 60px;
    }
}
@media (max-width: 767px) {
    .types-mounting-shtory__title {
        font-size: 20px;
    }
        .types-mounting-shtory__row {
        gap: 30px 0;
        grid-template-columns: 1fr;
    }
    .types-mounting-shtory__text {
        font-size: 16px;
    }
}


.dopolnitelnaya-options-shtory__title {
    color: #E7A300;
    font-weight: 700;
    padding-top: 20px;
    font-size: 30px;
}
.dopolnitelnaya-options-shtory__img{
  max-width: 100%;
}
.dopolnitelnaya-options-shtory__row {
    display: grid;
    gap: 100px;
    grid-template-columns: 1fr 1fr;
}
.dopolnitelnaya-options-shtory__text {
    color: #5F5B5B;
    padding-top: 10px;
    line-height: 1.2;
    font-size: 24px;
}
.dopolnitelnaya-options-shtory__item {
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .dopolnitelnaya-options-shtory__row {
        gap: 60px 60px;
    }
}
@media (max-width: 767px) {
    .dopolnitelnaya-options-shtory__title {
        font-size: 20px;
    }
        .dopolnitelnaya-options-shtory__row {
        gap: 30px 0;
        grid-template-columns: 1fr;
    }
    .dopolnitelnaya-options-shtory__text {
        font-size: 16px;
    }
}

.construction_block-1 .construction_block_text-protivopozharnoe-shtory-1 {
    max-width: 333px;
    left: -3%;
    top: 60%;
}
.construction_block_text-protivopozharnoe-shtory-1 .pngtree {
    left: auto;
    right: -150px;
}
.construction_block-2 .construction_block_text-protivopozharnoe-shtory-2 {
    left: -2%;
    max-width: 320px;
    top: 10%;
}
.construction_block_text-protivopozharnoe-shtory-2 .pngtree {
    left: auto;
    right: -150px;
    top: -50px;
}
.construction_block-3 .construction_block_text-protivopozharnoe-shtory-3 {
    max-width: 289px;
    left: auto;
    right: 0;
    top: 5%;
}
.construction_block_text-protivopozharnoe-shtory-3 .pngtree {
    left: -150px;
    top: 30px;
}
.construction_block-4 .construction_block_text-protivopozharnoe-shtory-4 {
    max-width: 261px;
    right: 2%;
    top: 45%;
}
.construction_block_text-protivopozharnoe-shtory-4 img.pngtree {
    left: -78px;
}
#info-block.info-block-kal {
background: #e8a301;
min-height: 400px;
margin-top: 200px;
}
.info-block-kal .info-block__row {
display: block;
}
@media (max-width: 1024px) {
#info-block.info-block-kal {
margin-top: 120px;
}
}
@media (max-width: 767px) {
#info-block.info-block-kal {
margin-top: 50px;
}
}

.construction_block-1 .construction_block_text-panoramnye-sekcionnye-1{
    max-width: 361px;
}
.construction_block_text-panoramnye-sekcionnye-1 img.pngtree {
    left: auto;
    right: -76px;
    top: 50px;
}
.construction_block-2 .construction_block_text-panoramnye-sekcionnye-2 {
    max-width: 295px;
    right: -4%;
}
.construction_block_text-panoramnye-sekcionnye-2 img.pngtree {
    left: -190px;
    top: 36px;
}
.construction_block-3 .construction_block_text-panoramnye-sekcionnye-3 {
    max-width: 350px;
    top: 55%;
}
.construction_block_text-panoramnye-sekcionnye-3 img.pngtree {
    left: auto;
    right: -86px;
}

.construction_block-4 .construction_block_text-panoramnye-sekcionnye-4 {
    max-width: 286px;
    right: -4%;
}
.construction_block_text-panoramnye-sekcionnye-4 img.pngtree {
    left: -135px;
    top: -13px;
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%;
}
.wp-block-table {
    overflow-x: auto;
}
.wp-block-column {
    flex-grow: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}
.wp-block-table td, .wp-block-table th {
    border: 1px solid;
}
@media (min-width: 782px) {
    .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis] {
        flex-grow: 0;
    }
}

.construction_img-752 {
    max-width: 1200px;
}

.construction_block-1 .construction_block_text-promyshlennye-sekcionnye-1{
  max-width: 300px;
  left: 1%;
}

 .construction_block_text-promyshlennye-sekcionnye-1 img.pngtree {
    left: auto;
    right: -76px;
    top: 50px;
}
.construction_block-2  .construction_block_text-promyshlennye-sekcionnye-2{
   max-width: 295px;
    right: 0%;
}
.construction_block_text-promyshlennye-sekcionnye-2 img.pngtree {
    left: -190px;
    top: 36px;
}

.construction_block-3  .construction_block_text-promyshlennye-sekcionnye-3{
    max-width: 322px;
    top: 25%;
    left: 2%;
}
.construction_block_text-promyshlennye-sekcionnye-3 img.pngtree {
     left: auto;
    right: -86px;
}
.construction_block-4  .construction_block_text-promyshlennye-sekcionnye-4{
    max-width: 319px;
    right: -2%;
}
.construction_block_text-promyshlennye-sekcionnye-4 img.pngtree {
     left: -135px;
    top: -13px;
}


