*,
*::before,
*::after {
  box-sizing: inherit;
}
*, html, body {
    margin: 0;
    padding: 0;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
html,
body {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: #2E2E2E;
}
.container {
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}
a {
    text-decoration: none;
}
a span {
    position: relative;
}
a span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    left: 50%;
    bottom: -3px;
    background: #000;
    transition: .3s;
}
a:hover span::after {
    width: 100%;
    left: 0;
}
h2 {
    color: #2E2E2E;
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
}
h2 > strong {color: #BEA05B;font-weight: 600;}
img {
    max-width: 100%;
    max-height: 100%;
    border-style: none;
}
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #BEA05B;
}
::-webkit-scrollbar-thumb {
  background: #2E2E2E;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.mobile-type {
    display: block;
}
.desktop-type {
    display: none;
}

/* buttons */
.btn {
    padding: 1.2rem 2.4rem;
    border: 1px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border-radius: 0;
}
.btn-primary {
    background: #BEA05B;
    color: #FDFDFD;
}
.btn-primary:hover {
    color: #BEA05B;
    border-color: #BEA05B;
    background: transparent;
}
.btn-secondary {
    background: #FDFDFD;
    color: #2E2E2E;
}
.btn-secondary:hover {
    color: #FDFDFD;
    border-color: #FDFDFD;
    background: transparent;
}
.btn-primary-border {
    color: #BEA05B;
    border-color: #BEA05B;
    background: transparent;
}
.btn-primary-border:hover {
    background: #BEA05B;
    color: #FDFDFD;
}

/* header */
.header {
    padding: 1.3rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1;
}

.header__information {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header__information-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
}
.header__information-phone {
    display: none;
    align-items: center;
    gap: .85rem;
}
.header__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.header__phone-value {
    color: #FBFBFB;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}
.header__phone-value span::after {
    background: #BEA05B;
}
.header__phone-value:hover {
    color: #BEA05B;
}
.header__worktime {
    font-size: .85rem;
    color: rgba(253, 253, 253, .6);
}
.header__logo-text {
    color: rgba(253, 253, 253, .6);
    font-size: .85rem;
    display: none;
}
.header__logo-text:after {
    content: unset;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.header__logo img {
    max-width: 15rem;
}
.header__menu {
    display: none;
    margin-top: 1.3rem;
    padding: 1.15rem 0;
    border-top: 1px solid rgba(253, 253, 253, .1);
    border-bottom: 1px solid rgba(253, 253, 253, .1);
}
.header__main-menu {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.header__main-menu-link {
    color: #FDFDFD;
    font-size: 1.15rem;
    font-weight: 600;
}
.header__main-menu-link span::after {
    background: #BEA05B;
}
.header__main-menu-link:hover {
    color: #BEA05B;
}

/* footer */
.footer__container {
    display: flex;
    flex-direction: column-reverse;
}
.footer__information, .footer__form {
    display: flex;
    flex: 0 0 50%;
}
.footer__information {
    background-color: rgba(190, 160, 91, .1);
    gap: 5.2rem;
    flex-direction: column;
}
.footer__form {
    background-color: #2E2E2E;
    flex-direction: column;
}
.footer__form.col--right,
.footer__information.col--left {
    padding: 25px;
}
.footer__information-main {
    flex-direction: column;
    justify-content: space-between;
    display: none;
}
.footer__form-body {
    margin-top: 2.2rem;
}
.footer__logo {
    display: inline-block;
    margin-bottom: 2.14rem;
}
.footer__information-main-bottom {
    margin-top: 2.14rem;
}
.footer__form-heading {
    font-size: 2.5rem;
    font-size: 2rem;
    color: #FDFDFD;
    font-weight: 600;
    margin-bottom: .7rem;
}
.footer__form-text {
    color: #FDFDFD;
    max-width: 35rem;
    font-size: 1.15rem;
}
.footer__form-text strong {
    font-weight: 600;
}
.footer__information-secondary-item + .footer__information-secondary-item {
    margin-top: 2.15rem;
}
.footer__information-secondary-item-label {
    font-size: .85rem;
    color: rgba(46, 46, 46, .4);
    margin-bottom: .4rem;
}
.footer__information-secondary-item-value {
    color: #2E2E2E;
    font-size: 1.4rem;
    font-weight: 600;
}
.footer__socials-heading {
    color: rgba(46, 46, 46, .4);
    margin-bottom: .78rem;
    font-size: .85rem;
}
.footer__copyright {
    margin-top: 3rem;
    color: #2E2E2E;
    font-size: .85rem;
}
.footer__policy {
    margin-bottom: .7rem;
    display: block;
    color: #2E2E2E;
    text-decoration: underline;
}
.footer__policy:hover {
    color: #BEA05B;
}

/* main */
.main {
    position: relative;
    padding-top: 10rem;
}
.main__content {
    position: relative;
    padding: 1.5rem 0;
}
.main__background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.main__background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(29, 29, 29, .6);
}
.main__background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.main__content-text {
    padding-bottom: 6.5rem;
}
.main__heading {
    font-size: 2.3rem;
    color: #FDFDFD;
    margin-bottom: .78rem;
    font-weight: 600;
}
.main__heading strong {
    color: #BEA05B;
    font-weight: 600;
}
.main__heading-type {
    color: rgba(253, 253, 253, .8);
    font-size: 1.14rem;
    margin-bottom: .3rem;
}
.main__project-info {
    margin: 4.6rem 0;
    padding: 1.7rem 0;
    border-top: 1px solid rgba(253, 253, 253, .4);
    border-bottom: 1px solid rgba(253, 253, 253, .4);
    display: flex;
}
.main__project-info-item {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
}
.main__project-info-item img {
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 1.6rem;
    width: 2rem;
}
.main__project-label {
    color: rgba(253, 253, 253, .8);
    font-size: 1.14rem;
}
.main__project-price {
    color: #FDFDFD;
    font-size: 2.8rem;
}
.main__buttons-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 2rem;
}
.main__buttons-group .main__btn-consult {
    width: 100%;
}
.main__next-project > a {
    display: flex;
    align-items: center;
    gap: 1.07rem;
    color: #BEA05B;
    font-size: 1.42rem;
    font-weight: 600;
}
.main__next-project img {
    width: 4.5rem;
}
.main__text {
    color: #FDFDFD;
    max-width: 50rem;
    font-size: 1.1rem;
    margin-bottom: 3.2rem;
}
.main__btn-consult {
    font-size: 1.4rem;
}
.header__information .main__btn-consult {
    display: none;
}
.main__advantages {
    padding: 1.7rem 0;
    border-top: 1px solid rgba(253, 253, 253, .4);
    border-bottom: 1px solid rgba(253, 253, 253, .4);
    display: none;
}

.main__advantages-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main__advantage {
    max-width: 16rem;
}
.main__advantage-icon {
    margin-bottom: 1.2rem;
    height: 1.8rem;
}
.main__advantage-text {
    color: #FDFDFD;
    font-size: 1.14rem;
}

/* grid */
.grid {
    padding: 7rem 0;
}
.grid__list {
    margin-top: 5.4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
}
.grid__item {
    flex: 0 0 100%;
    color: #2E2E2E;
    background-color: rgba(190, 160, 91, .1);
}
.grid__item-heading {
    font-weight: 600;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(190, 160, 91, .4);
    padding: 1.4rem 1.4rem .57rem 1.4rem;
}
.grid__item-text {
    font-size: 1.14rem;
    padding: .57rem 1.4rem 1.4rem;
}

/* image */
.image {
    position: relative;
}
.image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(63.76deg, #1D1D1D 3.49%, rgba(29, 29, 29, 0) 77.32%);
    opacity: 0.7;
}
.image img {
    max-height: 40rem;
    min-height: 20rem;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

/* text-form */
.text-form {

}
.text-form__container {
    display: flex;
    flex-direction: column;
}
.text-form__list {
    display: flex;
    flex-wrap: wrap;
}
.text-form__information {
    flex: 0 0 50%;
    color: #FDFDFD;
    background-color: #BEA05B;
}
.text-form__information-heading {
    font-size: 2rem;
    font-weight: 600;
}
.text-form__information-text {
    margin-top: 2.5rem;
    font-size: 1.14rem;
}
.text-form__form {
    flex: 0 0 50%;
    background-color: #2E2E2E;
}
.text-form__information.col--left {
    padding: 3.1rem 25px;
}
.text-form__form.col--right {
    padding: 3.1rem 25px;
}

/* advantages */
.advantages {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 8.5rem;
    background-position-x: center;
}
.advantages__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 7rem;
    gap: 2.2rem;
    padding-bottom: 5rem;
}
.advantages__item {
    padding: 2.5rem 2.14rem;
    background: rgba(190, 160, 91, .9);
    color: #FDFDFD;
    max-width: 34rem;
    width: 100%;
    min-height: 12rem;
    position: relative;
}
.advantages__item-circle {
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}
.advantages__item-circle:before {
    content: '';
    position: absolute;
    background-color: #FDFDFD;
    border: 2px solid #BEA05B;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
}
.advantages__item-circle img {
    width: 100%;
    height: 100%;
}
.advantages__item:nth-child(even) .advantages__item-circle {
    right: 0;
    transform: translate(50%, -50%);
}
.advantages__item:nth-child(odd) .advantages__item-circle {
    left: 0;
    transform: translate(-50%, -50%);
}
.advantages__item-heading {
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.advantages__item-text {
    font-size: 1.14rem;
}

/* block-about */
.block-about {
    background-color: #2E2E2E;
    padding: 7.7rem 0;
    position: relative;
}
.block-about__container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.block-about__text {
    font-size: 2rem;
    font-weight: 600;
    color: #FDFDFD;
    max-width: 40rem;
}
.block-about__text strong {
    color: #BEA05B;
    font-weight: 600;
}
.block-about__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: .28rem;
    flex: 0 0 50%;
    margin-top: 3.2rem;
}
.block-about__item {
    position: relative;
    background-color: #FDFDFD;
    padding: 3rem 1.78rem;
    color: #2E2E2E;
}
.block-about__item-icon {
    margin-bottom: 1.64rem;
    position: relative;
}
.block-about__item-heading {
    font-weight: 600;
    font-size: 1.42rem;
    margin-bottom: 1rem;
    position: relative;
}
.block-about__item-text {
    font-size: 1.14rem;
    position: relative;
}
.block-about__item-text ul {
    margin-left: 1em;
}
.block-about__item:nth-child(2n):before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(190, 160, 91, .1);
}
.block-about__block-for-you {
    position: relative;
    border: 1px solid #BEA05B;
    background: rgba(190, 160, 91, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.64rem;
    padding: 4.28rem 0;
    margin: 4rem 25px 0 25px;
}
.block-about__block-for-you-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FDFDFD;
    font-weight: 600;
}
.block-about__block-for-you-image {
    max-height: 12rem;
}
.block-about__block-for-you-year {
    font-size: 4.28rem;
}
.block-about__block-for-you-text {
    font-size: 1.42rem;
}


/* catalog-projects */
.catalog-projects {
    margin: 7.5rem 0;
}
.catalog-projects__text {
    margin-top: 1.14rem;
    font-size: 1.14rem;
}
.catalog-projects__list {
    margin-top: 4.28rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.14rem;
}
.catalog-projects__item {
    background-color: rgba(190, 160, 91, .1);
}
.catalog-projects__body {
    padding: 2.28rem 1.85rem 1.28rem 1.85rem;
}
.catalog-projects__heading {
    color: #2E2E2E;
    font-size: 1.42rem;
    font-weight: 600;
    margin-bottom: 1.57rem;
}
.catalog-projects__characteristics {
    display: flex;
    justify-content: space-between;
}
.catalog-projects__characteristic-label {
    color: rgba(46, 46, 46, .4);
    font-size: .85rem;
    margin-bottom: .36rem;
}
.catalog-projects__characteristic-value {
    color: #2E2E2E;
    font-size: 1.42rem;
}
.catalog-projects__image {
    height: 20rem;
}
.catalog-projects__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.catalog-projects__more {
    display: block;
    font-size: 1.42rem;
    margin-top: 3.57rem;
}


/* background-form */
.background-form {
    margin-bottom: 10rem;
}
.background-form__container {
    display: flex;
    flex-direction: column;
}
.background-form__background {
    background-color: #2E2E2E;
    flex: 0 0 40%;
    display: flex;
    align-items: flex-end;
    position: relative;
    min-height: 15rem;
    margin: 0 -25px;
}
.background-form__background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .2);
    opacity: 0.7;
    z-index: 1;
}
.background-form__background img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    z-index: 0;
}
.background-form__address {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FDFDFD;
    font-size: 1.42rem;
    font-weight: 600;
    padding: 1.42rem 0;
    border-top: 1px solid rgba(253, 253, 253, .4);
    border-bottom: 1px solid rgba(253, 253, 253, .4);
    margin-bottom: 6.4rem;
    flex: 1;
    position: relative;
}
.background-form__address svg {
    margin-right: 1.14rem;
}
.background-form__form-container {
    background-color: #2E2E2E;
    flex: 1;
    padding: 3.6rem 2.7rem 3.07rem 2.7rem;
    margin: 0 -25px;
}
.background-form__form-heading {
    color: #FDFDFD;
    font-weight: 600;
    font-size: 2rem;
}
.background-form__form-heading strong {
    color: #BEA05B;
    font-weight: 600;
}
.background-form__form-text {
    margin-top: 1.42rem;
    font-size: 1.42rem;
    color: #FDFDFD;
}
.background-form__form-body {
    margin-top: 4.5rem;
}

/* cost */
.cost {
    margin: 10rem 0;
}
.cost__text {
    font-size: 1.14rem;
    margin-top: 1.14rem;
}
.cost__list {
    margin-top: 3rem;
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    gap: 2.14rem;
}
.cost__col {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.cost__item {
    flex: 1;
    position: relative;
    min-height: 20rem;
    background-size: cover;
    overflow: hidden;
    cursor: pointer;
}
.cost__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .7);
    opacity: 0.7;
}
.cost__item:hover .cost__item-body {
    justify-content: flex-start;
}
.cost__item:hover .cost__tags {
    opacity: 0;
}
.cost__item:hover .cost__item-text {
    bottom: 0;
    position: relative;
}
.cost__item-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: absolute;
    padding: 1.07rem 1.07rem 2.14rem 1.07rem;
    width: 100%;
    height: 100%;
}
.cost__item-heading {
    color: #FDFDFD;
    font-weight: 600;
    font-size: 1.42rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid #BEA05B;
    position: relative;
    transition: .3s;
}
.cost__item-text {
    margin-top: .7rem;
    font-size: 1.14rem;
    color: #FDFDFD;
    bottom: -115%;
    position: absolute;
    transition: .3s;
    max-height: 100%;
    overflow-y: auto;
}
.cost__tags {
    position: absolute;
    top: .7rem;
    right: .7rem;
    display: flex;
    flex-direction: column;
    gap: .35rem;
    transition: opacity .2s;
}
.cost__tag {
    color: #FDFDFD;
    font-weight: 600;
    font-size: .85rem;
    background: rgba(190, 160, 91, 0.4);
    padding: .64rem .5rem;
    display: inline-block;
}


/* slider-tabs */
.slider-tabs {
    margin: 10rem 0;
}
.slider-tabs__text {
    margin-top: 1.14rem;
    font-size: 1.14rem;
}
.slider-tabs__container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.slider-tabs__slider-thumb {
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    border: solid #BEA05B;
    border-width: 1px 0 0 1px;
}
.slider-tabs__slide-thumb {
    cursor: pointer;
    color: #2E2E2E;
    font-weight: 600;
    font-size: 1.14rem;
    display: flex;
    align-items: center;
    flex: 1 1 100%;
}
.slider-tabs__slide-thumb span {
    display: block;
    padding: 1.14rem 1.57rem;
    flex: 1;
    border: solid #BEA05B;
    border-width: 0 1px 1px 0;
}
.slider-tabs__slide-thumb.swiper-slide-thumb-active {
    background: rgba(190, 160, 91, 0.1);
}
.slider-tabs__slider {
    margin-top: 1.78rem;
    width: 100%;
    height: 100%;
}
.slider-tabs__slide-inner {
    display: flex;
    flex-direction: column;
}

.slider-tabs__slide-image {
    position: relative;
    height: 20rem;
}
.slider-tabs__slide-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .2);
}
.slider-tabs__slide-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.slider-tabs__slide-body {
    background: rgba(190, 160, 91, 0.1);
    padding: 0.85rem 2.07rem 2.07rem;
    height: 35rem;
}
.slider-tabs__slide-body-inner {
    max-height: 35rem;
    overflow-y: auto;
}
.slider-tabs__slide-text {
    font-size: 1.14rem;
    line-height: 20px;
}
.slider-tabs__slide-text ul {
    margin-left: 1em;
}
.slider-tabs__slide-phase {
    margin-bottom: 1.2rem;
    color: #BEA05B;
    font-size: .85rem;
}
.slider-tabs__slide-heading {
    color: #2E2E2E;
    font-weight: 600;
    font-size: 1.42rem;
}
.slider-tabs__buttons {
    display: none;
}
.slider-tabs__button-next, .slider-tabs__button-prev {
    width: 5.5rem;
    height: 5.5rem;
    cursor: pointer;
}
.slider-tabs__button-next.swiper-button-disabled, .slider-tabs__button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: not-allowed;
    pointer-events: auto;
}

/* slider-characteristics */
.slider-characteristics {
    margin: 8.5rem 0;
    overflow: hidden;
    max-width: 100%;
}
.slider-characteristics__text {
    margin-top: 1.14rem;
    font-size: 1.14rem;
}
.slider-characteristics__slider {
    position: relative;
    margin-top: 5rem;
    margin-left: 25px;
    margin-right: 25px;
}
.slider-characteristics__slide {
    height: auto;
    background: rgba(190, 160, 91, 0.1);
}
.slider-characteristics__slide.swiper-slide-prev, .slider-characteristics__slide.swiper-slide-next {
    position: relative;
}
.slider-characteristics__slide.swiper-slide-prev:before, .slider-characteristics__slide.swiper-slide-next:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .6);
}
.slider-characteristics__slide-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.slider-characteristics__slide-body {
    padding: 1.28rem 1.5rem;
    font-size: 1.14rem;
}
.slider-characteristics__slide-characteristics {
    margin-top: 1.07rem;
    display: flex;
    gap: 2.5rem;
}
.slider-characteristics__characteristic-label {
    color: rgba(46, 46, 46, .4);
    font-size: .85rem;
    margin-bottom: .36rem;
}
.slider-characteristics__characteristic-value {
    color: #2E2E2E;
    font-size: 1.14rem;
}
.slider-characteristics__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.14rem;
    gap: 2.14rem;
    flex-direction: row-reverse;
}
.slider-characteristics__button-next, .slider-characteristics__button-prev {
    width: 5.5rem;
    height: 5.5rem;
    cursor: pointer;
    z-index: 1;
}


/* layout */
.layout {
    margin: 8.5rem 0;
}
.layout__heading {
    text-align: left;
}
.layout__header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.layout__peculiarities {
    flex: 0 0 calc(50% - 1rem);
}
.layout__peculiarities-heading {
    color: rgba(29, 29, 29, .4);
    font-size: 1.14rem;
    margin-bottom: 1.28rem;
}
.layout__peculiarities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}
.layout__peculiarity {
    background: rgba(190, 160, 91, .1);
    padding: .4rem .57rem .5rem .57rem;
}
.layout__text {
    font-size: 1.14rem;
    margin-top: 1rem;
}
.layout__images {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 2.85rem;
}
.layout__image-text {
    font-size: 1.42rem;
    margin-top: 1.42rem;
    font-weight: 600;
}
.layout__image-figure {
    height: 24rem;
    border: 1px solid #BEA05B;
}
.layout__image-figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

/* project-info */
.project-info {
    margin: 7.8rem 0;
}
.project-info__container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.project-info__images {
    flex: 0 0 calc(50% - 1rem);
}
.project-info__information {
    flex: 0 0 calc(50% - 1rem);
}
.project-info__information-heading {
    font-weight: 600;
    font-size: 2rem;
}
.project-info__characteristics {
    margin-top: 3.2rem;
}
.project-info__characteristic {
    font-size: 1.14rem;
    border-bottom: 1px solid rgba(190, 160, 91, .4);
    padding: .7rem .3rem;
}
.project-info__characteristic strong {
    font-weight: 600;
    margin-right: .7rem;
}
.project-info__characteristic-price {
    color: #BEA05B;
    display: inline-flex;
    align-items: center;
}
.project-info__characteristic-price-hint {
    font-size: .7rem;
    color: rgba(29, 29, 29, .4);
    margin-left: .35rem;
}
.project-info__prompt {
    display: flex;
    justify-content: flex-end;
}
.project-info__prompt-info {
    background-color: #BEA05B;
    color: #FDFDFD;
    display: flex;
    align-items: center;
    font-weight: 600;
    padding: 1.35rem 2rem;
    margin-top: 3rem;
    margin-left: 25px;
    gap: 2.1rem;
    font-size: 1.14rem;
    width: 100%;
}
.project-info__main-image {
    height: 25rem;
    display: block;
}
.project-info__main-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.project-info__images-thumbnails {
    margin-top: .57rem;
    display: flex;
    flex-wrap: wrap;
    gap: .57rem;
}
.project-info__images-thumbnail {
    display: block;
    flex: 0 0 calc(50% - 0.285rem);
    height: 12rem;
}
.project-info__images-thumbnail img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

a.vbox-next span:after {
    content: unset;
}

/* form */
.form__label {
    font-size: 1.14rem;
    color: rgba(253, 253, 253, .4);
    display: block;
}
.form__body {
    display: flex;
    gap: 2.2rem;
    flex-direction: column;
}
.form__body-item {
    flex: 0 0 calc(50% - 1rem);
}
.form__policy {
    font-size: .85rem;
    color: rgba(253, 253, 253, .5);
    display: block; 
    flex: 0 0 calc(50% - 1rem);
}
.form__policy span {
    cursor: pointer;
    text-decoration: underline;
}
.form__policy span:hover {
    color: #BEA05B;
}
.form__input {
    width: 100%;
    font-size: 1.14rem;
    border: none;
    border-bottom: 1px solid rgba(253, 253, 253, .4);
    border-radius: 0;
    background: transparent;
    padding: .5rem 0;
    outline: none;
    color: #BEA05B;
    font-weight: 600;
}
.form__textarea {
    width: 100%;
    font-size: 1.14rem;
    color: #BEA05B;
    font-weight: 600;
    background-color: transparent;
    border-color: rgba(253, 253, 253, .4);
    margin-top: .5rem;
}
.form__btn {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.2rem;
    margin-top: 1.7rem;
}
.form__btn .wpcf7-spinner {display: none;}
.form__btn input[type="submit"] {
    cursor: pointer;
    padding: 1.2rem 2.4rem;
    border: 1px solid transparent;
    font-size: 1.42rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    background: #BEA05B;
    color: #FDFDFD;
    width: 100%;
}
.form__btn > p {
    width: 100%;
}
.form__btn input[type="submit"]:hover {
    color: #BEA05B;
    border-color: #BEA05B;
    background: transparent;
}
.form__inline .form__btn input[type="submit"],
.form__inline .form__btn > p {
    width: 100%;
}
.form__inline .form__btn {
    flex-direction: column-reverse;
    align-items: flex-start;
}
.form__inline .form__policy {
    flex: 1;
}
.form__inline .form__body {
    flex-direction: column;
    gap: 2.8rem;
}
.form__inline .form__body-item {
    flex: 1;
}

/* form-contacts */
.form-contacts {
    padding: 6rem 0 2.85rem 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.form-contacts:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .7);
}
.form-contacts__container {
    position: relative;
}
.form-contacts__heading {
    color: #FDFDFD;
}
.form-contacts__body {
    display: flex;
    gap: 5.2rem;
    margin-top: 3.9rem;
    flex-direction: column;
}
.form-contacts__text {
    color: #FDFDFD;
    font-size: 1.42rem;
}
.form-contacts__form, .form-contacts__contacts {
    margin-top: 2.6rem;
}
.form-contacts__socials-list {
    display: flex;
    margin-top: 2.6rem;
}
.form-contacts__container > .form-contacts__socials-list {
    display: none;
}
.form-contacts__contacts-item + .form-contacts__contacts-item {
    margin-top: 1.5rem;
}
.form-contacts__contacts-item-label {
    font-size: 1.14rem;
    color: rgba(253, 253, 253, .7);
    margin-bottom: .7rem;
}
.form-contacts__contacts-item-value {
    color: #FDFDFD;
    font-size: 1.42rem;
    font-weight: 600;
}
.form-contacts__contacts-item-value span:after {
    background: #FDFDFD;
}

/* venobox-item */
.venobox-item {
    position: relative;
}
.venobox-item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-image: url(../img/scale.svg);
    z-index: 1;
    width: 40px;
    height: 42px;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity .2s;
}
.venobox-item:hover:before {
    opacity: 1;
}

/* socials-list */
.socials-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .4rem;
}
.social-btn {
    width: 4rem;
    height: 4rem;
    border: 1px solid #BEA05B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-btn:hover {
    opacity: .6;
}


/* modal */
.modal_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background-color: rgba(0, 0, 0, .85);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal_wrap.active {
    opacity: 1;
    visibility: visible;
}
.modal_form {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    position: absolute;
    max-width: 70%;
    background: #2E2E2E;
    color: #FDFDFD;
    max-height: 100%;
    overflow: auto;
}
.modal_form_body {
    margin-top: 2rem;
    padding: 2.4rem 2.8rem 2.8rem 2.8rem;
}
.modal_form.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    position: relative;
}
.modal_close {
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 100;
    line-height: 1;
}
.modal_close:hover {
    opacity: .5;
}
.modal_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(253, 253, 253, .1);
    padding: 2.4rem 2.8rem 2.8rem 2.8rem;
}
.wpcf7-response-output {
    color: #FDFDFD;
}
.modal_callback {
    width: 100%;
    max-width: 28rem;
}
.modal_policy {
    width: 100%;
    max-width: 60rem;
}
.modal_policy {
    font-weight: 400;
    font-size: 1rem;
}
.modal_policy h3 {
    font-weight: 600;
    font-size: 1.42rem;
    margin-bottom: 2.9rem;
}
.modal_consult {
    width: 100%;
    max-width: 35rem;
}
.modal-consult__body {
    display: flex;
    flex-direction: column;
    gap: 5.2rem;
}
.modal-consult__contacts-inner, .modal-consult__form-inner {
    flex: 0 0 calc(50% - 2.6rem);
}
.modal-consult__text {
    color: #FDFDFD;
    font-size: 1.14rem;
}
.modal-consult__form, .modal-consult__contacts {
    margin-top: 2.9rem;
}
.modal-consult__contacts-item + .modal-consult__contacts-item {
    margin-top: 1.5rem;
}
.modal-consult__contacts-item-label {
    font-size: 1.14rem;
    color: rgba(253, 253, 253, .7);
    margin-bottom: .7rem;
}
.modal-consult__contacts-item-value {
    color: #FDFDFD;
    font-size: 1.42rem;
    font-weight: 600;
}
.modal-consult__contacts-item-value span:after {
    background: #FDFDFD;
}
.cf7_mailsent {
    padding: 2.4rem 2.8rem 2.8rem 2.8rem;
    text-align: center;
    font-size: 1.14rem;
}


.col--left {
    padding-left: calc((100% - 1320px + 50px) / 2);
}
.col--right {
    padding-right: calc((100% - 1320px + 50px) / 2);
}

.burger {
    width: 45px;
    height: 45px;
    display: block;
    background-image: url(../img/burger.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: .3s;
    cursor: pointer;
}

.mobile_menu {
    display: flex;
    justify-content: end;
    width: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    transition: .3s;
}
.mobile_menu::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 29, 29, .7);
    position: absolute;
    height: 100vh;
}
.mobile_menu_wrap {
    position: relative;
    overflow-y: auto;
    height: 100%;
    min-height: 100vh;
    padding: 2.14rem;
    background: #1D1D1D;
    max-width: 28rem;
    width: 100%;
}
.mobile_menu_head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile_menu_body {
    margin: 1.7rem -2.14rem;
    padding: 1.7rem 2.14rem;
    border-top: 1px solid rgba(253, 253, 253, .1);
    border-bottom: 1px solid rgba(253, 253, 253, .1);
}
.mobile_menu.open {
    right: 0;
}
.menu_close {
    transition: .3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    line-height: 2rem;
    font-weight: 100;
    color: #FDFDFD;
}

.mobile_menu .header__information-phone {
    display: flex;
}
.mobile_menu .main__btn-consult {
    display: inline-block;
    margin-top: 2rem;
}

@media(min-width: 580px) {
    .layout__images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 720px) {
    h2 {
        font-size: 2.85rem;
        text-align: center;
    }
    .header__information-phone {
        display: flex;
    }
    .main__project-info {
        max-width: 50%;
    }
    .main__buttons-group {
        flex-direction: row;
    }
    .main__buttons-group .main__btn-consult {
        width: auto;
    }
    .main {
        padding-top: 17rem;
    }
    .project-info__container {
        flex-direction: row;
    }
    .project-info__prompt-info {
        flex: 0 0 calc(50% - 1rem);
        margin-top: 5rem;
        margin-left: 0;
        font-size: 1.42rem;
    }
    .project-info__information-heading {
        font-size: 2.85rem;
    }
    .form-contacts__body {
        flex-direction: row;
    }
    .form-contacts__contacts-inner, .form-contacts__form-inner {
        flex: 0 0 calc(50% - 2.6rem);
    }
    .form-contacts__form, .form-contacts__contacts {
        margin-top: 4.6rem;
    }
    .form-contacts__contacts-inner .form-contacts__socials-list {
        display: none;
    }
    .form-contacts__container > .form-contacts__socials-list {
        display: flex;
        justify-content: center;
    }
    .cost__text, .slider-tabs__text, .catalog-projects__text, .slider-characteristics__text {
        font-size: 1.4rem;
        text-align: center;
    }
    .cost__list {
        margin-top: 3rem;
        grid-template-columns: repeat(2, 1fr);
    }
    .cost__item {
        min-height: 14rem;
    }
    .cost__list .cost__col:nth-child(3n+3) {
        grid-column: 1 / 3;
        flex-direction: row;
    }
    .catalog-projects__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-tabs__slide-image, .slider-tabs__slide-body {
        flex: 0 1 50%;
    }
    .slider-tabs__slide-image {
        height: auto;
    }
    .slider-tabs__slide-body {
        height: auto;
    }
    .slider-tabs__slide-body-inner {
        max-height: 100%;
    }
    .slider-tabs__slide-inner {
        height: 35rem;
        flex-direction: row;
    }
    .footer__container {
        flex-direction: row;
    }
    .slider-tabs__buttons {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2.14rem;
        gap: 2.14rem;
        flex-direction: row-reverse;
    }
    .modal_consult {
        width: 100%;
        max-width: 80%;
    }
    .modal-consult__body  {
        flex-direction: row;
    }
    .main__advantages {
        display: flex;
    }
    .main__heading {
        font-size: 3.2rem;
    }
    .block-about__text, .background-form__form-heading, .text-form__information-heading {
        font-size: 2.85rem;
    }
    .block-about__list {
        grid-template-columns: repeat(2, 1fr);
    }
    .block-about__item:nth-child(3n) {
        order: 1;
    }
    .background-form__form-container {
        padding: 6.6rem 4.7rem 4.07rem 4.7rem;
    }
    .text-form__information-text {
        font-size: 1.4rem;
    }
}

@media(min-width: 800px) {
    .slider-tabs__slide-thumb {
        flex: 1 1 50%;
    }
    .slider-characteristics__slider {
        margin-left: 0;
        margin-right: 0;
    }
}

@media(min-width: 850px) {
    .text-form__container {
        flex-direction: row;
    }
}

@media(min-width: 1100px) {
    .burger {
        display: none;
    }
    .header__information .main__btn-consult {
        display: block;
    }
    .header__menu {
        display: block;
    }
    .header__logo-text {
        display: inline-block;
    }
    .header__main-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
    }
    .header__main-menu-link {
        font-weight: 400;
    }
    .project-info__images-thumbnail {
        flex: 0 0 20%;
        height: 6rem;
    }
    .layout__header {
        align-items: flex-end;
        flex-direction: row;
    }
    .layout__text {
        font-size: 1.42rem;
        flex: 0 0 calc(50% - 1rem);
        margin-top: 0;
    }
    .cost__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .cost__list .cost__col:nth-child(3n+3) {
        grid-column: 3;
        flex-direction: column;
    }
    .catalog-projects__list {
        grid-template-columns: repeat(3, 1fr);
    }
    .slider-tabs__slide-thumb {
        flex: 1 1 33.33%;
    }
    .footer__form-heading {
        font-size: 2.5rem;
    }
    .form__body {
        flex-direction: row;
    }
    .form__btn {
        align-items: flex-end;
        flex-direction: row;
    }
    .footer__information-main {
        display: flex;
    }
    .footer__information {
        flex-direction: row;
    }
    .footer__information-secondary .footer__logo,
    .footer__information-secondary .footer__information-main-bottom {
        display: none;
    }
    .footer__information.col--left {
        padding: 2.6rem;
    }
    .footer__form.col--right {
        padding: 2.6rem;
    }
    .text-form__information.col--left {
        padding: 2.6rem;
    }
    .text-form__form.col--right {
        padding: 2.6rem;
    }
    .modal_consult {
        width: 100%;
        max-width: 60rem;
    }
    .grid__item {
        flex: 0 0 calc(50% - 1.1rem);
    }
    .advantages__list {
        gap: 0;
        padding-bottom: 0;
    }
    .advantages__item:nth-child(1) {
        transform: translate(calc(50% + 1.3rem), 0);
    }
    .advantages__item:nth-child(2) {
        transform: translate(calc(-50% - 1.3rem), -30%);
    }
    .advantages__item:nth-child(3) {
        transform: translate(calc(50% + 1.3rem), -70%);
    }
    .advantages__item:nth-child(4) {
        transform: translate(calc(-50% - 1.3rem), -95%);
    }
    .block-about__container, .background-form__container {
        flex-direction: row;
    }
    .background-form__form-container, .background-form__background {
        margin: 0;
    }
    .block-about__list {
        margin-top: 0;
    }
    .block-about__block-for-you {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 35%;
        max-width: 40rem;
        margin: 0;
        border-left: none;
        border-bottom: none;
    }
}

@media(min-width: 1360px) {
    .slider-tabs__button-next, .slider-tabs__button-prev {
        position: absolute;
        top: 50%;
        margin-top: 0;
    }
   .slider-tabs__button-next {
        right: -2.3rem;
        transform: translate(100%, -50%);
    }
    .slider-tabs__button-prev {
        left: -2.3rem;
        transform: translate(-100%, -50%);
    }
    .footer__information.col--left, .text-form__information.col--left {
        padding-left: calc((100% - 1320px + 50px) / 2);
    }
    .footer__form.col--right, .text-form__form.col--right {
        padding-right: calc((100% - 1320px + 50px) / 2);
    }
    .slider-characteristics__buttons {
        margin-top: 0;
    }
    .slider-characteristics__button-next, .slider-characteristics__button-prev {
        position: absolute;
        top: 50%;
    }
    .slider-characteristics__slider {
        margin: 0 calc(100% - 1320px - 30%);
        margin-top: 5rem;
    }
    .slider-characteristics__button-next {
        right: calc((100% - 160px) / 3 + 2.5rem);
        transform: translate(50%, -50%);
    }
    .slider-characteristics__button-prev {
        left: calc((100% - 160px) / 3 + 2.5rem);
        transform: translate(-50%, -50%);
    }
}
