header {
    min-height: 450px;
    height: 45dvh;
    display: flex;
    justify-content: start;
    align-items: center;
    background-color: var(--gray);
    background-image: url(/images/image.webp);
    background-position: center 20%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 124px;
    border-radius: var(--border-radius-5);
    position: relative;
}


header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
    border-radius: var(--border-radius-5);
    pointer-events: none;
}

.contact-btn-header {
    border-color: transparent !important;
    background-color: transparent !important;
    color: white !important;
    transition: all .2s ease-in-out;
}


.contact-btn-header:hover {
    color: rgb(219, 219, 219) !important;
}

.border-white {
    border-color: white !important;
}

button a {
    transition: all .2s ease-in-out;
}

.desc-p {
    color: white;
    max-width: 750px;
    ;
}

.main-h1 {
    color: white;
    font-weight: 800;
    font-size: 2.55rem !important;
}

header .card-white {
    max-width: 480px !important;
}

main.container {
    max-width: unset !important;
    padding: 0;
}

.single-category {
    background-color: white;
    text-align: center;
    border-radius: var(--border-radius-2);
}

.single-category {
    padding: 3px 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.single-category img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.single-category .count {
    margin-top: 0px;
    font-weight: 600;
    color: gray;
}

.single-category .name-category {
    margin-top: 0px !important;
}

@media (max-width: 780px) {
    header .card-white {
        max-width: 580px !important;
    }

    header {
        padding: 48px;
    }
}

@media (max-width: 560px) {

    .single-category {
        padding: 2px 10px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .contact-btn-header {
        padding-left: 0 !important;
    }

    header {
        border-radius: 0 !important;
        min-height: 340px !important;
    }

    header::after {
        border-radius: 0 !important;
    }

    header .card-white {
        max-width: 540px !important;
    }



    .single-category .name-category,
    .single-category .count {
        margin-top: 0 !important;
    }

    .single-category img {
        height: 32px;
        width: 32px;
        ;
    }

    .single-category .name-category,
    .single-category .count {
        font-size: .8em !important;
    }


    html:has(.is-toolbar) .main-h1 {
        padding-top: 70px !important;
    }

    header {
        padding: 12px;
        min-height: 560px;
        height: 55dvh;
    }
}