.hero {
    background-size: cover;
    background-position: center;
    min-height: 720px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.hero h1 .line,
.hero p .line {
    display: block;
}

/*
.hero::before {
content: '';
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.4);
}
*/
.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin-bottom: 28px;
    font-weight: 500;
    font-size: 48px;
    color: #fbfbfb;
}

.hero p {
    margin-bottom: 48px;
    font-weight: 400;
    color: #fbfbfb;
}

.hero-btn {
    font-family: inherit;
    font-size: inherit;
    background: #fbfbfb;
    border: 1px solid #000;
    padding: 19px 62px;
    width: 340px;
    height: 63px;
    font-weight: 600;
    color: #1f1f1f;
    text-align: center;
}

.hero-btn:hover {
    background: #1f1f1f;
    color: #fff;
    font-weight: 700;
    border: 1px solid #fff;
}

@media (max-width: 768px) {
    .hero {
        background-position: center 20%;
    }

    .hero h1 .line,
    .hero p .line {
        display: inline;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 28px;
    }

    .hero p {
        margin-bottom: 48px;
    }
}

@media (max-width: 500px) {
    .hero {
        background-position: center 30%;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .hero p {
        margin-bottom: 40px;
    }

    .hero-btn {
        width: 100%;
    }
}

@media (max-width: 355px) {

    .hero-btn,
    .hero p {
        font-size: 14px;
    }
}

/** brands  **/
.brands {
    margin-top: 160px;
    background: #fff;
}

.brands-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
    flex-wrap: wrap;
}

.brands-left {
    flex: 1 1 40%;
    display: flex;
}

.brands-left-inner {
    display: flex;
    flex-direction: column;
    padding-top:50px;
}

.brand__title-h2 {
    margin: 110px 0 50px 0;
}

.brands-left h2 {
    font-weight: 500;
    font-size: 40px;
    color: #1f1f1f;
    margin-bottom: 40px;
}

.brands-left p {
    font-weight: 400;
    color: #1f1f1f;
    margin-bottom: 40px;
}

.brands-btn {
    font-family: inherit;
    font-size: inherit;
    background: #1f1f1f;
    padding: 19px 60px;
    width: 350px;
    height: 63px;
    color: #fbfbfb;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
    box-sizing: border-box;
}

.brands-btn:hover {
    border: 1px solid #1f1f1f;
    background-color: #fff;
    color: #1f1f1f;
}

.brands-right {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.brand-item .brand-title {
    font-weight: 700;
    color: #d74307;
    margin-bottom: 10px;
}

.brand-item p {
    color: #1f1f1f;
}

.brands-btn--mobile {
    display: none;
}

@media (max-width: 768px) {
    .brands {
        margin-top: 140px;
    }

    .brands-wrapper {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: auto;
        column-gap: 24px;
    }

    .brands-left {
        grid-column: 1 / -1;
        padding: 0 15px;
    }

    .brands-left h2 {
        font-size: 40px;
        margin-bottom: 32px;
    }

    .brands-left p {
        margin-bottom: 40px;
    }

    .brands-right {
        grid-column: 5 / -1;
        padding: 0 15px;
    }

    .brand-item {
        margin: 0 0 25px 0;
    }

    .brands-btn--desktop {
        display: none;
        width: 100%;
        padding: 19px 40px;
    }

    .brands-btn--mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        grid-column: 5 / -1;
        width: 100%;
        max-width: 350px;
        padding: 18px 32px;
        margin: 40px 0 0 auto;
        font-weight: 600;
        background: #1f1f1f;
        color: #fff;
        border: none;
        cursor: pointer;
        transition: background 0.3s, color 0.3s, border 0.3s;
    }

    .brands-btn--mobile:hover {
        background: #fff;
        color: #1f1f1f;
        border: 1px solid #1f1f1f;
    }
}

@media (max-width: 460px) {
    .brands {
        margin-top: 120px;
    }

    .brands-wrapper {
        display: block !important;
    }

    .brands-left,
    .brands-right,
    .brands-btn--mobile {
        grid-column: 1 / -1;
    }

    .brands-left,
    .brands-right {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .brands-btn--mobile {
        display: block;
        width: 100%;
        max-width: none;
        margin: 32px auto 0;
        padding: 14px;
    }

    .brands-left h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .brands-left p {
        margin-bottom: 40px;
    }

    .brand-item .brand-title {
        margin-bottom: 8px;
    }

    .brand-item {
        margin: 0 0 25px 0;
        border-bottom: 1px solid #d9d9d9;
        padding-bottom: 30px;
    }
    .brand-item .brand__img{
        overflow: hidden;
    }
    .brand-item .brand__img img{
        max-width: 133%;
    }
}

.aluminum {
    margin-top: 160px;
}

.aluminum__title {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 40px;
    color: #1f1f1f;
    max-width: 570px;
}

.aluminum__texts {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
}

.aluminum__text {
    flex: 1;
}

.aluminum__grid {
    display: none;
    cursor: grab;
}

.aluminum__slider .aluminum__grid:first-child {
    display: grid;
    grid-template-columns: 570px auto;
    column-gap: 60px;
    row-gap: 20px;
}

.aluminum__grid:not(.is-hidden) {
    display: grid;
    grid-template-columns: 570px auto;
    column-gap: 60px;
    row-gap: 20px;
}

.aluminum__column--left {
    display: grid;
    grid-template-rows: 289px 289px;
    row-gap: 20px;
}

.aluminum__grid-right {
    display: grid;
    grid-template-columns: 275px 275px;
    grid-template-rows: 289px 289px;
    gap: 20px;
}

.aluminum__item--span {
    grid-column: 1 / -1;
}

.aluminum__item {
    position: relative;
    background: #e0e0e0;
    border-radius: 4px;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 24px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.aluminum__label {
    margin: 0 0 12px;
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

.aluminum__desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease;
}

.aluminum__item:hover .aluminum__desc {
    opacity: 1;
    max-height: 200px;
}

.aluminum__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.aluminum__dot.active {
    border-radius: 100px;
    width: 34px;
    height: 10px;
    background: #d74307;
}

.aluminum__pagination>* {
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    display: block;
    transition: width 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.aluminum__pagination svg {
    width: 10px !important;
    height: 10px !important;
}

.aluminum__pagination .active {
    width: 34px !important;
    height: 10px !important;
    border-radius: 100px;
    background: #d74307;
}

.aluminum__pagination svg.active circle {
    fill: #d74307;
}

.aluminum__pagination svg:not(.active) circle {
    fill: #d9d9d9;
}

.aluminum__slider {
    position: relative;
    overflow: hidden;
}

.aluminum__grid.is-hidden {
    display: none !important;
}

 .aluminum-tablet {
     display: none;
 }

@media (min-width: 451px) and (max-width: 1200px) {
    .aluminum {
        margin-top: 140px;
    }

    .aluminum-tablet {
        display: block;
        margin-top: 140px;
    }

    .aluminum,
    .aluminum-mobile {
        display: none !important;
    }

    .aluminum-tablet__title {
        margin-bottom: 24px;
        color: #1f1f1f;
        font-weight: 500;
        font-size: 40px;
    }

    .aluminum-tablet__texts {
        display: flex;
        gap: 32px;
        margin-bottom: 48px;
    }

    .aluminum-tablet__text {
        flex: 1;
    }

    .aluminum-tablet__slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 8px;
    }

    .aluminum-tablet__slider::-webkit-scrollbar {
        display: none;
    }

    .aluminum-tablet__slide {
        flex: 0 0 100%;
        scroll-snap-align: start;
    }

    .aluminum-tablet__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 260px);
        gap: 20px;
    }

    .aluminum-tablet__item {
        position: relative;
        background: #e0e0e0;
        border-radius: 4px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 260px;
    }

    .aluminum-tablet__label {
        margin-bottom: 12px;
        font-weight: 700;
        font-size: 24px;
        color: #000;
    }

    .aluminum-tablet__desc {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.35s ease, max-height 0.35s ease;
    }

    .aluminum-tablet__item:hover .aluminum-tablet__desc {
        opacity: 1;
        max-height: 200px;
    }

    .aluminum-tablet__pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .aluminum-tablet__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d9d9d9;
        transition: width 0.3s ease, background 0.3s ease;
    }

    .aluminum-tablet__dot.active {
        width: 34px;
        border-radius: 100px;
        background: #d74307;
    }
}

@media (min-width: 451px) and (max-width: 768px) {
    .aluminum {
        margin-top: 120px;
    }

    .aluminum-tablet__title {
        margin-bottom: 20px;
        font-size: 32px;
    }

    .aluminum-tablet__texts {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
    }

    .aluminum-tablet__text {
        font-size: 15px;
    }

    .aluminum-tablet__slider {
        gap: 16px;
        padding-bottom: 6px;
    }

    .aluminum-tablet__grid {
        grid-template-rows: repeat(2, 200px);
        gap: 16px;
    }

    .aluminum-tablet__item {
        padding: 20px;
        height: 200px;
    }

    .aluminum-tablet__label {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .aluminum-tablet__desc {
        font-size: 14px;
        line-height: 1.3;
    }

    .aluminum-tablet__pagination {
        gap: 6px;
        margin-top: 10px;
    }

    .aluminum-tablet__dot {
        width: 8px;
        height: 8px;
    }

    .aluminum-tablet__dot.active {
        width: 24px;
    }
}

@media (max-width: 450px) {
    .aluminum-mobile {
        margin-top: 120px;
    }

    .aluminum-mobile {
        padding: 0 20px;
    }

    .aluminum-mobile__title {
        font-weight: 700;
        font-size: 24px;
        color: #1f1f1f;
        margin-bottom: 24px;
    }

    .aluminum-mobile__lead {
        margin-bottom: 28px;
    }

    .aluminum-mobile__slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 8px;
        color: #fff;
    }

    .aluminum-mobile__slider::-webkit-scrollbar {
        display: none;
    }

    .aluminum-mobile__slide {
        flex: 0 0 340px;
        height: 280px;
        background: #e0e0e0;
        border-radius: 4px;
        padding: 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        scroll-snap-align: start;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .aluminum-mobile__label {
        margin-bottom: 12px;
        font-weight: 600;
    }

    .aluminum-mobile__desc {
        max-width: 360px;
    }

    .aluminum-mobile__pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .aluminum-mobile__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #d9d9d9;
        transition: width .3s ease, background .3s ease;
    }

    .aluminum-mobile__dot.active {
        width: 34px;
        border-radius: 100px;
        background: #d74307;
    }
}

@media (min-width:451px) {
    .aluminum-mobile {
        display: none;
    }
}

@media (max-width:450px) {
    .aluminum {
        display: none;
    }
}

.fasade-production-top-block {
    width: 600px;
    margin-bottom: 50px;
}

.production__top.fasade {
    background-image: url('/images/production-fasade.jpg');
}
.production__top {
    background-image: url('/images/production.jpg');
    background-size: cover;
    background-position: center;
    background-color: transparent;
}


@media (min-width: 451px) and (max-width: 900px) {
    .production__top {
        background-image: url('/images/production_tablet.jpg');
    }
}

@media (max-width: 450px) {
    .production__top {
        background-image: url('/images/production_mobile.jpg');
    }

    .fasade-production-top-block {
        width: 100%;
        margin-bottom: 20px;
    }
}

.contacts__map {
    margin-left: calc(-50vw + 50%);
    width: calc(50vw + 50%);
}

.production {
    margin-top: 160px;
}

.production__layout {
    position: relative;
}

.production__title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
}

.production__top,
.production__bottom {

    width: 100%;
}

.production__top {
    position: relative;
    height: 460px;
}

.production__bottom {
    position: relative;
    height: 580px;
    margin-top: -170px;
}

.fasade.production__bottom::before {

    background-image: url('/images/fasade-production-bottom.jpg');
}
.production__bottom::before {
    content: '';
    position: absolute;
    top: 100px;
    bottom: 0;
    left: 200px;
    right: calc((100% - 100vw) / 2);
    z-index: 2;
    background-color: transparent;
    background-image: url('/images/production_bottom.jpg');
    background-size: cover;
    background-position: center;
}

.production__card {
    position: relative;
    z-index: 1;
    background: none;
    color: #fff;
    display: flex;
    gap: 70px;
    padding: 70px 60px;
    margin-top: -20px;
    box-sizing: border-box;
    height: 511px;
}

.production__card::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: calc((100% - 100vw)/2);
    background: #d74307;
    z-index: -1;
}

.production__card-left {
    font-weight: 400;
    font-size: 18px;
    max-width: 500px;
    width: 500px;
}

.production__card-right {
    flex: 1;
}

.production__card-right h3 {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 24px;
}

.production__card-right ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.production__card-right li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.production__mobile {
    display: none;
}

.production__mobile-block {
    background: #d74307;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.production__mobile-block h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.production__mobile-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.production__mobile-block li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.production__mobile-bottom {
    height: 200px;
    margin: 0 0;
}

.production__mobile-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: calc((100% - 100vw)/2);

    z-index: -1;
}

.production__mobile-bottom {
    position: relative;
}

@media   (max-width: 768px) {
    .production {
        margin-top: 40px;
    }
    .production__title {
    font-size: 24px;
    }
}
@media (min-width: 450px) and (max-width: 900px) {
    .production__title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 40px;
    }

    .production__card {
        display: none !important;
    }

    .production__mobile {
        display: block;
    }

    .production__bottom {
        display: block;
        height: 240px;
        margin-top: 0;
        background: none;
        position: relative;
    }

    .production__bottom::before {
        content: '';
        position: absolute;
        top: 120px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
    }

    .production__mobile-block {
        background: #d74307;
        color: #fff;
        padding: 20px;
        margin-bottom: 20px;
        box-sizing: border-box;
        font-size: 16px;
    }

    .production__mobile-block h3 {
        margin-bottom: 12px;
        font-size: 20px;
    }

    .production__mobile-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .production__mobile-block li {
        padding: 6px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        font-size: 14px;
    }

    .production__mobile-bottom {
        height: 200px;
        margin: 0 0 20px;
        position: relative;
    }

    .production__mobile-bottom::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #d7d7d7;
        z-index: -1;
    }
}

.services {
    margin-top: 160px;
}

.services__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 40px;
    color: #1f1f1f;
}

.services__grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.services__item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services__item.reverse {
    flex-direction: row-reverse;
    margin-top: -150px;
}

.services__img {
    width: 570px;
    height: 600px;
    background: #d9d9d9;
    flex-shrink: 0;
}

.services__text {
    flex: 1;
}

.services__text h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    color: #1f1f1f;
}

.services__text p {
    width: 400px;
}

@media (max-width:1200px) and (min-width:451px) {

    .services__img {
        width: 470px;
        height: 500px;
        flex-shrink: 0;
    }

    .services__grid {
        gap: 48px;
    }

    .services__item,
    .services__item.reverse {
        margin-top: 0;
        gap: 48px;
    }
}

@media (max-width:768px) and (min-width:451px) {

    .services__img {
        width: 350px;
        height: 400px;
        flex-shrink: 0;
    }

    .services__grid {
        gap: 20px;
    }

    .services__item,
    .services__item.reverse {
        margin-top: 0;
        gap: 20px;
    }

    .services__title {
        font-size: 32px;
    }

    .services__text h3 {
        font-size: 20px;
    }

    .services__text p {
        width: auto;
    }

}

@media (max-width: 450px) {
    .services {
        margin-top: 120px;
    }

    .services__title {
        font-weight: 700;
        font-size: 24px;
        color: #1f1f1f;
        margin-bottom: 24px;
    }

    .services__grid {
        gap: 32px;
    }

    .services__item,
    .services__item.reverse {
        flex-direction: column;
        gap: 16px;
        margin-top: 0;
    }

    .services__img {
        width: 100%;
        height: 340px;
    }

    .services__text h3 {
        font-weight: 600;
        color: #1f1f1f;
        margin-bottom: 10px;
    }

    .services__text p {
        width: 100%;
        color: #1f1f1f;
        margin-bottom: 60px;
    }
}

.works {
    margin-top: 160px;
}

.works__title {
    font-weight: 500;
    font-size: 40px;
    color: #000;
    margin-bottom: 40px;
}

.works__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
}

.works__card {
    display: flex;
    flex-direction: column;
}

.works__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-bottom: 16px;
}

.works__caption {
    font-weight: 700;
    color: #282828;
}

.works__city {
    font-weight: 400;
    color: #282828;
}

@media (max-width:768px) {
    .works {
        margin-top: 140px;
    }

    .works__title {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .works__grid {
        gap: 40px;
    }

}

@media (max-width:450px) {
    .works {
        margin-top: 120px;
    }

    .works__title {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 24px;
    }

    .works__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .works__img {
        aspect-ratio: 4 / 3;
        margin-bottom: 16px;
    }

    .works__caption {
        font-weight: 700;
        color: #282828;
    }

    .works__city {
        font-weight: 400;
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial {
    margin-top: 160px;
    cursor: grab;
}

.testimonial__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.testimonial__h2 {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 40px;
    color: #000;
}

.testimonial__name {
    margin-bottom: 16px;
    font-weight: 700;
    font-size: 24px;
    color: #282828;
}

.testimonial__stars {
    display: flex;
    gap: 6px;
}

.testimonial__right {
    max-width: 600px;
    color: #282828;
}

.testimonial__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 120px;
}

.testimonial__dot.active {
    border-radius: 100px;
    width: 34px;
    height: 10px;
    background: #d74307;
}

.testimonial__pagination>* {
    cursor: pointer;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    display: block;
    transition: width 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.testimonial__pagination svg {
    width: 10px !important;
    height: 10px !important;
}

.testimonial__pagination .active {
    width: 34px !important;
    height: 10px !important;
    border-radius: 100px;
    background: #d74307;
}

.testimonial__pagination svg.active circle {
    fill: #d74307;
}

.testimonial__pagination svg:not(.active) circle {
    fill: #d9d9d9;
}

@media (max-width: 768px) {
    .testimonial {
        margin-top: 140px;
    }

    .testimonial__h2 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .testimonial__wrapper {
        gap: 40px;
    }

    .testimonial__left {
        flex: 0 0 30%;
    }

    .testimonial__right {
        flex: 0 0 70%;
        max-width: none;
    }

    .testimonial__right p {
        max-width: 450px;
    }

    .testimonial__name {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .testimonial__pagination {
        margin-top: 60px;
    }
}

@media (max-width: 460px) {
    .testimonial {
        margin-top: 120px;
    }

    .testimonial__wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .testimonial__left,
    .testimonial__right {
        width: 100%;
        flex: none;
    }

    .testimonial__right p {
        max-width: 300px;
    }

    .testimonial__h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .testimonial__pagination {
        margin-top: 32px;
    }
}

.callback {
    margin-top: 160px;
    padding: 80px;
    background-color: hsla(0, 0%, 85%, 0.2);
}

.callback__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.callback__left {
    max-width: 480px;
}

.callback__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 40px;
    color: #2e2e2e;
}

.callback__desc {
    margin-bottom: 52px;
    color: #000;
}

.callback__contact {
    color: #000;
}

.callback__contact a {
    color: #d74307;
    text-decoration: none;
}

.callback__right {
    background: #d74307;
    padding: 40px;
    width: 570px;
    height: 469px;
    color: #fff;
}

.callback__form-title {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 24px;
    color: #fbfbfb;
}

.callback__form input[type='text'],
.callback__form input[type='tel'] {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(217, 217, 217, 0.3);
    padding: 10px 0;
    margin-bottom: 40px;
    color: #fbfbfb;
    font-size: 18px;
}

.callback__form input::placeholder {
    color: rgba(217, 217, 217, 0.3);
}

.callback__checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.callback__checkbox input {
    accent-color: #fff;
}

.callback__checkbox a {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

.callback__button {
    font-family: inherit;
    font-size: inherit;
    border: none;
    cursor: pointer;
    padding: 19px 62px;
    width: 490px;
    height: 63px;
    background: #fbfbfb;
    font-weight: 600;
    text-align: center;
    color: #1f1f1f;
    transition: all 0.2s ease;
}

.callback__button:hover {
    background-color: #d74307;
    border: 1px solid #fbfbfb;
    color: #fbfbfb;
}

.callback__form input[type='text']:focus,
.callback__form input[type='tel']:focus {
    outline: none;
    border-bottom: 1px solid #ffffff;
}

.callback__form input[type='text'],
.callback__form input[type='tel'] {
    transition: border-color 0.3s ease;
}

.glazing__item.glazing__item_odd {
    margin-top: -190px;
}

@media (max-width:1200px) and (min-width:451px) {
    .callback {
        padding: 60px;
    }

    .callback__wrapper {
        gap: 40px;
    }

    .callback__left {
        max-width: 400px;
    }

    .callback__right {
        width: 480px;
        height: auto;
        padding: 32px;
    }

    .callback__button {
        width: 100%;
    }
}

@media (max-width:768px) and (min-width:451px) {
    .callback {
        margin-top: 140px;
        padding: 80px 20px;
        box-sizing: border-box;
    }

    .callback__wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .callback__title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .callback__desc-contact-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .callback__desc,
    .callback__contact {
        width: 100%;
        font-size: 16px;
        line-height: 1.4;
        margin: 0;
    }

    .callback__right {
        width: 100%;
        padding: 120px;
        height: auto;
        box-sizing: border-box;
    }

    .callback__form-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .callback__form input[type='text'],
    .callback__form input[type='tel'] {
        margin-bottom: 32px;
    }

    .callback__button {
        width: 100%;
    }
}

@media (max-width: 450px) {

    .glazing__item.glazing__item_odd {
        margin-top: 0px;
    }
    .callback {
        padding: 0;
        margin-top: 120px;
    }

    .callback__wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .callback__left {
        max-width: 100%;
    }

    .callback__title {
        font-weight: 700;
        font-size: 24px;
        margin-bottom: 24px;
        color: #2e2e2e;
        line-height: 1.3;
    }

    .callback__desc {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 20px;
        color: #000;
        line-height: 1.4;
    }

    .callback__contact {
        font-weight: 400;
        font-size: 16px;
        margin-bottom: 30px;
        color: #000;
        line-height: 1.4;
    }

    .callback__right {
        width: 100%;
        padding: 24px 20px;
        height: auto;
    }

    .callback__form-title {
        font-weight: 600;
        color: #fbfbfb;
        margin-bottom: 32px;
    }

    .callback__form input[type='text'],
    .callback__form input[type='tel'] {
        font-weight: 400;
        color: #fbfbfb;
        margin-bottom: 32px;
    }

    .callback__checkbox {
        align-items: flex-start;
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 32px;
    }

    .callback__checkbox input {
        margin-top: 4px;
    }

    .callback__checkbox a {
        font-size: 13px;
    }

    .callback__button {
        width: 100%;
        height: 63px;
    }
}

.contacts {
    margin-top: 160px;
}

.contacts__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts__table {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    display: grid;
    row-gap: 16px;
}

.contacts__row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: start;
    border-bottom: 1px solid #d9d9d9;
    padding: 12px 0;
    column-gap: 20px;
}

.contacts__label {
    color: #1f1f1f;
}

.contacts__value {
    color: #1f1f1f;
}

.contacts__value a {
    color: #1f1f1f;
    text-decoration: none;
}

.contacts__map img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    width: 1200px;
    height: 600px;
    display: flex;
    border-radius: 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.modal__left {
    flex: 0 0 560px;
    background: #fbfbfb;
    color: #1f1f1f;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 600;
    max-width: 380px;
    margin: 0;
}

.modal-contact {
    margin-top: 40px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 380px;
}

.modal-contact__email {
    border-bottom: 1px solid #a0caf0;
}

.modal-contact a {
    color: #d74307;
}

.modal__right {
    flex: 0 0 640px;
    background: #d74307;
    color: #fbfbfb;
    padding: 60px 60px 60px 70px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.modal-close:hover svg path {
    fill: #d9d9d9;
}

.modal-subtitle {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0 0 32px;
    max-width: 430px;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 430px;
}

.modal-form input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    color: #fbfbfb;
    font-size: 16px;
}

.modal-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.modal-form input:focus {
    outline: none;
    border-bottom-color: #fbfbfb;
}

.modal__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.modal__checkbox input {
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.modal__span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

.modal__span a {
    color: #fbfbfb;
    text-decoration: underline;
}

.modal__button {
    background: #fbfbfb;
    color: #1f1f1f;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.modal__button:hover {
    background: #d9d9d9;
}

.modal__button:disabled {
    background: #d9d9d9;
    cursor: not-allowed;
}

body.no-scroll {
    position: relative;
    top: var(--scroll-y);
}

.no-scroll {
    overflow: hidden;
    touch-action: none;
}

@media (max-width: 1240px) {
    .modal {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .modal__left,
    .modal__right {
        flex: 0 0 auto;
        width: 100%;
    }

    .modal__left {
        padding: 40px 30px;
        text-align: center;
    }

    .modal__right {
        padding: 40px 30px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
    }
}

@media (max-width: 450px) {

    .modal {
        width: 90vw;
        max-width: 450px;
        height: auto;
        flex-direction: column;
        border-radius: 0;
    }

    .modal__left {
        display: none;
    }

    .modal__right {
        flex: none;
        width: 100%;
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 24px;
        line-height: 1.25;
        max-width: none;
    }

    .modal-contact {
        margin-top: 24px;
        font-size: 13px;
    }

    .modal-subtitle {
        margin: 0 0 24px;
        font-size: 16px;
        max-width: none;
    }

    .modal-form {
        gap: 20px;
        max-width: none;
    }

    .modal-form input {
        font-size: 14px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 15px;
        border-radius: 0;
    }

    .modal-close {
        top: 16px;
        right: 16px;
    }
}

.glazing {
    margin-top: 160px;
}

.glazing__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 40px;
    color: #1f1f1f;
}

.glazing__subtitle {
    max-width: 600px;
    margin-bottom: 48px;
}

.glazing__grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.glazing__item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.glazing__item--reverse {
    flex-direction: row-reverse;
    margin-top: -150px;
}

.glazing__img {
    width: 570px;
    height: 600px;
    background: #d9d9d9;
    flex-shrink: 0;
}

.glazing__text {
    flex: 1;
}

.glazing__text h3 {
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 24px;
    color: #1f1f1f;
}

.glazing__text h4 {
    font-weight: 700;
    color: #D74307;
    margin-top: 30px;
    font-size: 24px;
}

@media (max-width: 1200px) and (min-width: 451px) {
    .glazing__img {
        width: 470px;
        height: 500px;
    }

    .glazing__grid {
        gap: 48px;
    }

    .glazing__item,
    .glazing__item--reverse {
        margin-top: 0;
        gap: 48px;
    }
}

@media (max-width: 768px) and (min-width: 451px) {
    .glazing__img {
        width: 350px;
        height: 400px;
    }

    .glazing__grid {
        gap: 20px;
    }

    .glazing__item,
    .glazing__item--reverse {
        margin-top: 0;
        gap: 20px;
    }

    .glazing__title {
        font-size: 32px;
    }

    .glazing__text h3 {
        font-size: 20px;
    }

    .glazing__text p {
        width: auto;
    }
}

@media (max-width: 450px) {
    .glazing {
        margin-top: 50px;
    }
    .glazing__subtitle {
        margin-bottom: 0;
    }

    .glazing__title {
        font-weight: 700;
        font-size: 24px;
        color: #1f1f1f;
        margin-bottom: 24px;
    }

    .glazing__grid {
        gap: 32px;
    }

    .glazing__item,
    .glazing__item--reverse {
        flex-direction: column;
        gap: 16px;
        margin-top: 70px;
    }

    .glazing__item .glazing__img {
        order:2;
    }
    .glazing__img {
        width: 100%;
        height: 340px;
    }

    .glazing__text h4 {
        margin:0;
    }
    .glazing__text h3 {
        font-weight: 600;
        color: #1f1f1f;
        margin: 10px 0;
        font-size: 16px;
    }

    .glazing__text p {
        width: 100%;
        color: #1f1f1f;
        margin-bottom: 0;
    }
}

.cta-block {
    background-color: #d74307;
    padding-top: 110px;
    padding-bottom: 110px;
    margin-top: 160px;
    color: #fff;
}

.cta-block__container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-block__text {
    font-weight: 400;
    font-size: 36px;
    color: #fbfbfb;
    margin-bottom: 24px;
}

.cta-block__subtext {
    font-weight: 400;
    color: #fbfbfb;
    margin-bottom: 40px;
}

.cta-block__button {
    background: #fbfbfb;
    color: #1f1f1f;
    padding: 19px 62px;
    border: none;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    transition: background 0.2s ease;
}

.cta-block__button:hover {
    background-color: #d74307;
    border: 1px solid #fbfbfb;
    color: #fbfbfb;
}

.windows {
    margin-top: 160px;
    row-gap: 24px;
}

.windows__title {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 40px;
    color: #1f1f1f;
}

.windows__intro {
    color: #1f1f1f;
    margin-bottom: 48px;
    max-width: 600px;
}

.windows__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.windows__item {
    display: flex;
    flex-direction: column;
}

.windows__media {
    width: 100%;
    aspect-ratio: 1/1;
    background: #d9d9d9;
    width: 570px;
    height: 320px;
    margin-bottom: 16px;
}

.windows__name {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 24px;
    color: #282828;
}

.windows__text {
    color: #282828;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    #modalClose {
        top: 2px;
        right: 2px;
    }
    #modalClose svg{
        width: 21px;
        height: 26px;
    }
}
@media (min-width: 600px) {
    .windows {
        margin-top: 120px;
    }

    .windows__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 32px;
    }
}

@media (min-width: 1024px) {
    .windows {
        grid-template-columns: 1fr 2fr;
        column-gap: 64px;
    }

    .windows__title,
    .windows__intro {
        grid-column: 1/2;
    }

    .windows__grid {
        grid-column: 2/3;
        grid-template-columns: repeat(2, 1fr);
    }
}

.color-design__line-block {
    margin-top: 60px;
    text-align: left
}

.color-design__line-block svg {
    margin-bottom: 30px
}

.color-design__bottom-text {
    text-align: left;
    font-weight: 400;
    font-size: 36px;
    max-width: 1200px
}

.color-design {
    margin-top: 160px;
    margin-bottom: 160px
}

.color-design__wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px
}

.color-design__layout {
    position: relative;
    width: 100%;
    padding-bottom: 1200px
}

.color-design__heading {
    position: absolute;
    top: 0;
    left: 0;
    background: #2e2e2e;
    color: #fbfbfb;
    padding: 200px 290px 154px 154px;
    width: 1200px;
    height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.color-design__heading h2 {
    font-weight: 500;
    font-size: 40px;
    color: #fbfbfb;
    text-align: left
}

.color-design__card {
    position: absolute;
    top: 340px;
    right: 0;
    background: #d74307;
    color: #fff;
    padding: 140px 0 140px 60px;
    width: 830px;
    height: 553px;
    z-index: 2
}

.card-title {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    margin-bottom: 24px
}

.card-methods {
    display: flex;
    gap: 70px;
    flex-wrap: wrap
}

.method {
    flex: 1 1 45%
}

.method-number {
    font-weight: 700;
    font-size: 32px;
    color: #fbfbfb;
    margin-bottom: 10px
}

.method-number__text {
    font-weight: 400;
    font-size: 18px;
    color: #fbfbfb;
    max-width: 250px
}

.color-design__image {
    position: absolute;
    top: 800px;
    right: 830px;
    background: #d7d7d7;
    width: 400px;
}

.color-design__text,.color-design__text-h3 {
    position: absolute;
    top: 1020px;
    right: 350px;
    max-width: 400px;
    color: #1f1f1f
}

/* мобильная версия */
.color-design_mobile .color-design__wrapper {
    max-width: 100%;
    padding: 0
}

.color-design_mobile .color-design__layout {
    padding-bottom: 0;
}

.color-design_mobile .color-design__heading {
    position: static;
    width: 100%;
    padding: 40px 10px;
    text-align: center
}

.color-design_mobile .color-design__card {
    position: static;
    width: 100%;
    padding: 40px 10px 20px 10px;
    box-sizing: border-box;
    height: auto;
    margin-top: -50px;
}

.color-design_mobile .card-methods {
    flex-direction: column;
    gap: 20px
}

.color-design_mobile .color-design__image {
    position: static;
    left: auto;
    width: 100%;
    height: 200px;
}

.color-design_mobile .color-design__text {

    width: 100%;
    margin: 20px 0;
    padding: 0 10px;

}
.color-design__text-h3{
    width: 100%;
    margin: -40px 0;
    padding: 0;
    top:970px;
}

.color-design_mobile .color-design__line-block {
    margin-top: 20px;
    text-align: left
}

.color-design_mobile .color-design__line-block svg {
    width: 60%;
    margin-bottom: 10px
}

.color-design_mobile .color-design__bottom-text {
    font-weight: 400;
    font-size: 16px;
    max-width: 100%;
    margin: 0 0 20px;
    padding: 0 10px;
}

.color-design__text_wrap {

}

.hero-content.container {
    padding-left: 35px;
}

@media (max-width: 786px) {
    .color-design.color-design_mobile {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .color-design__wrapper {
        padding: 0;
    }
    .color-design__text_wrap {

    }
    .color-design__heading  {
        width: 100%;
        padding: 100px 2px 5px 15px;
    }
    .color-design__heading h2 {

        font-size: 25px;
    }
    .color-design__card {
        width: 94%;
        padding: 40px 12px 20px 20px;
        height: auto;
    }
    .color-design__text-h3{
        margin-bottom: 10px;
        margin: 0;
        right: unset;
        max-width: unset;
        width: 100%;
        top: 1275px;
        padding-left: 10px;
    }
    .color-design__layout {
        padding-bottom: 0;
    }
    .color-design__text {
        top: 1336px;
        right: unset;
        padding: 15px;
    }
    .color-design__image {
        width: 94%;
        right: unset;
        top: 900px;
    }
    .color-design__text_wrap {
        width: 100%;
        height: 390px;
    }
    .color-design {
        margin-bottom: 60px;
    }
    .color-design__line-block svg {
        width: 100%;
    }
    .color-design__bottom-text {
        font-size: 24px;
        padding: 0 10px;
        margin: 0;
        max-width: 100%;
        width: 100%;

    }
    .hero-content.container {
        width: 100%;
        margin: 0;
    }
}