/* _content/BelzConstruction.Web/Components/Footer.razor.rz.scp.css */
footer[b-i1id441fv1] {
    background-color: #232220;
    color: white;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.footer-content[b-i1id441fv1]{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-logo[b-i1id441fv1] {
    width: 182px;
}

.footer-item-header[b-i1id441fv1]{
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.footer-item[b-i1id441fv1] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacts-content[b-i1id441fv1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contacts-content a[b-i1id441fv1] {
        text-decoration: underline;
        color: white;
        transition: .15s ease;
        font-weight: 500;
        width: fit-content;
    }

    .contacts-content a:hover[b-i1id441fv1] {
        color: #FFA346;
    }

.socials[b-i1id441fv1]{
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.socials img[b-i1id441fv1]{
    width: 2rem;
}

.services-content[b-i1id441fv1] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 1.5rem;
   
}
    .services-content a[b-i1id441fv1] {
        color: white;
        transition: .15s ease;
        font-weight: 600;
        width: fit-content;
    }

    .services-content a:hover[b-i1id441fv1] {
        color: #FFA346;
    }

@media screen and (max-width: 576px) {

    .footer-content[b-i1id441fv1] {
        grid-template-columns: 1fr;
    }
}

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

    footer[b-i1id441fv1]{
        padding: 2rem;
        gap: 2rem;
    }

    .footer-logo[b-i1id441fv1]{
        width: 120px;
    }


    .footer-item-header[b-i1id441fv1],
    .footer-services[b-i1id441fv1] {
        display: none;
    }
}
/* _content/BelzConstruction.Web/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-s9wq4v073m] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-s9wq4v073m] {
    flex: 1;
}

.sidebar[b-s9wq4v073m] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

#blazor-error-ui[b-s9wq4v073m] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-s9wq4v073m] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/BelzConstruction.Web/Components/Layout/NavMenu.razor.rz.scp.css */
header[b-c9zifi06og] {
    position: fixed;
    background-color: white;
    width: 100%;
    z-index: 10;
    top: 0px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.header-container[b-c9zifi06og] {
    display: flex;
    width: 100%;
    align-items: center;
    height: 72px;
    justify-content: space-between;
    padding: 1rem 4rem;
    gap: 60px;
    position: relative;
}

.header-content[b-c9zifi06og] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-left[b-c9zifi06og] {
    display: flex;
    align-items: center;
}

.header-menu[b-c9zifi06og] {
    display: flex;
    gap: 1rem;
}

.header-menu-item[b-c9zifi06og] {
    color: rgba(0,0,0,0.4);
    font-weight: 500;
    cursor: pointer;
}

    .header-menu-item:hover[b-c9zifi06og],
    .header-menu-item.selected[b-c9zifi06og] {
        color: black;
        font-weight: 500;
    }

.header-logo img[b-c9zifi06og] {
    width: 72px;
    height: 32px;
}

.header-menu-item.show[b-c9zifi06og] {
    color: black;
    font-weight: 500;
}

.header-mobile[b-c9zifi06og] {
    display: flex;
    justify-content: center;
    align-items: center;
/*    width: 32px;
    height: 32px;*/
    gap: 1rem;
}

.header-mobile[b-c9zifi06og] {
    display: none;
}

.header-button-mobile[b-c9zifi06og] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    padding: 0;
}

    .header-button-mobile img[b-c9zifi06og] {
        width: 1rem;
        height: 1rem;
    }

    .header-button-mobile span[b-c9zifi06og] {
        display: block;
        width: 100%;
        height: 2px;
        opacity: 0.85;
        background-color: black;
        transition: transform 0.15s ease, opacity 0.10s ease;
    }

    .header-button-mobile.active span:first-child[b-c9zifi06og] {
        transform: translateY(4px) rotate(45deg);
    }

    .header-button-mobile.active span:last-child[b-c9zifi06og] {
        transform: translateY(-4px) rotate(-45deg);
    }

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

    .header-container[b-c9zifi06og] {
        padding: 1rem 2rem;
    }

    .header-content[b-c9zifi06og] {
        opacity: 0;
        visibility: hidden;
        transform: translateX(40px);
        position: absolute;
        top: 71px;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 71px);
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

        .header-content.visible[b-c9zifi06og] {
            display: flex;
            flex-direction: column;
            justify-content: unset;
            gap: 1rem;
            align-items: flex-start;
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            padding: 1rem 2rem;
            transition: opacity 0.25s ease-in-out, transform 0.2s ease-in-out, visibility 0.25s;
            height: 100vh;
        }

    .header-menu-item[b-c9zifi06og] {
        color: rgba(0, 0, 0, 0.8);
    }

    .header-left[b-c9zifi06og] {
        width: 100%;
    }

    .header-menu[b-c9zifi06og] {
        flex-direction: column;
    }

    .header-mobile[b-c9zifi06og] {
        display: flex;
    }
}
/* _content/BelzConstruction.Web/Components/Pages/Home.razor.rz.scp.css */

.capabilities-cards[b-vx8efqpffd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.capabilities-cards-double[b-vx8efqpffd] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.capabilities-item:nth-child(4)[b-vx8efqpffd],
.capabilities-item:nth-child(5)[b-vx8efqpffd] {
    grid-column: span 1; /* Каждый занимает 1 колонку */
}

.capabilities-item[b-vx8efqpffd] {
    width: 100%;
    height: 440px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    font-size: 2rem;
    line-height: 2rem;
    color: rgba(0,0,0,0.85);
    font-weight: 600;
    transition: .15s ease;
}

    .capabilities-item img[b-vx8efqpffd] {
        width: 2rem;
        height: 2rem;
    }

    .capabilities-item:hover[b-vx8efqpffd] {
        background-color: #FFF3E6;
        border-color: #FFB366;
    }

.principles-item[b-vx8efqpffd] {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principles-item-info[b-vx8efqpffd] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
}

.principles-item-photos[b-vx8efqpffd] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5rem;
}

.principles-item-title[b-vx8efqpffd] {
    font-size: 4rem;
    font-weight: 600;
    color: rgba(0,0,0,0.2);
}

.line[b-vx8efqpffd] {
    height: 1px;
    width: 100%;
    background-color: rgba(0,0,0,0.1);
}

.contact-content[b-vx8efqpffd] {
    display: grid;
    grid-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 1220px) {

    .capabilities-cards-double[b-vx8efqpffd],
    .capabilities-cards[b-vx8efqpffd] {
        grid-template-columns: 1fr;
    }

    .capabilities-item[b-vx8efqpffd] {
        height: 280px;
    }
}

@media screen and (max-width: 992px) {
    .contact-content[b-vx8efqpffd] {
        grid-template-columns: 1fr;
    }

    .principles-item-photos[b-vx8efqpffd] {
        grid-template-columns: 1fr;
    }

}

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

    .capabilities-cards-double[b-vx8efqpffd],
    .capabilities-cards[b-vx8efqpffd] {
        grid-template-columns: 1fr;
    }

    .capabilities-item[b-vx8efqpffd] {
        height: 280px;
    }

    .main-block-logo[b-vx8efqpffd] {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .principles-item-info[b-vx8efqpffd] {
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }

    .principles-item-title[b-vx8efqpffd] {
        font-size: 2.5rem;
    }

}
