@import url('global.css');

/* ===================================================================
                CONTENT
                =================================================================== */

.content-section {
}

    /* =========CATALOGO=======*/
    .content-section .content-top {
        display: flex;
        padding-top: 10px;
    }

        .content-section .content-top .catalogue-left {
            flex: 0 0 65%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-right: 10px
        }

            .content-section .content-top .catalogue-left img {
                width: 100%;
                height: auto;
                display: block;
            }

        .content-section .content-top .catalogue-right {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Cambiato da center a space-between */
            background-color: var(--main-orange);
            position: relative;
        }

            .content-section .content-top .catalogue-right .catalogue-right-top {
                font-size: 2rem;
                align-self: flex-start; /* Assicura che stia in alto */
            }

            /* Wrapper per gli elementi che vanno in basso */
            .content-section .content-top .catalogue-right .catalogue-right-bottom {
                display: flex;
                flex-direction: column;
                gap: 10px; /* Spazio tra gli elementi in basso */
            }

                .content-section .content-top .catalogue-right .catalogue-right-bottom h1 {
                    color: var(--main-black);
                    font-size: 3rem;
                    line-height: 3rem;
                    font-weight: 800;
                }

                .content-section .content-top .catalogue-right .catalogue-right-bottom > span:nth-child(1) {
                    color: var(--main-black);
                    font-size: 3rem;
                    line-height: 3rem;
                }

                .content-section .content-top .catalogue-right .catalogue-right-bottom .vertical-right-text {
                    -webkit-transform: rotate(-90deg);
                    position: absolute;
                    top: 100px;
                    right: -30px;
                }

            .content-section .content-top .catalogue-right div > span:nth-child(1) {
                font-size: 1.5rem;
                font-weight: 700;
                line-height: 1.5rem;
            }

            .content-section .content-top .catalogue-right .catalogue-right-bottom div > span:nth-child(2) {
                color: var(--main-black);
                font-size: 1rem;
                line-height: 1rem;
                padding-left: 20px
            }

            .content-section .content-top .catalogue-right .catalogue-right-bottom div > img {
                margin-bottom: -3px;
                width: 19px;
                height: 19px;
            }

.content-middle {
    margin: 0 60px 0 60px;
    display: flex;
    flex-direction: column;
    background-color: var(--main-black);
    text-align: center;
    padding: 100px 0 100px 0;
    align-items: center;
}

    .content-middle h1 {
        color: var(--main-white);
        font-size: 20rem;
        line-height: 20rem;
    }

    .content-middle h2 {
        color: var(--main-white);
        font-size: 5rem;
        line-height: 5rem;
    }

    .content-middle h3 {
        color: var(--main-white);
        font-size: 2rem;
        line-height: 2rem;
        font-weight: 300;
        padding-top: 20px;
    }

    .content-middle img {
        margin-top: 50px;
    }

.content-bottom {
    margin: 60px;
    display: flex;
    flex-direction: column;
}

    .content-bottom p {
        font-size: 3rem;
        line-height: 3rem;
        padding-bottom:60px
    }

    .content-bottom section {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: 50px;
    }

        .content-bottom section article {
            flex: 1;
            max-width: 300px;
            flex-shrink: 0;
        }

            .content-bottom section article img {
                max-width: 300px;
            }

            .content-bottom section article h2 {
                font-size: 1.5rem;
                line-height: 1.5rem;
                color:var(--main-black);
            }

            .content-bottom section article h3 {
                font-size: 1rem;
                line-height: 1rem;
                color: var(--main-black);
                font-weight:300;
            }


/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1480px)
        =================================================================== */
@media (max-width: 1480px) {
}
/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1279px)
        =================================================================== */

@media (max-width: 1279px) {
    .content-middle {
        margin: 0;
        display: flex;
        flex-direction: column;
    }
}


/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1120px)
        =================================================================== */

@media (max-width: 1120px) {
}


/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 1024px)
         =================================================================== */

@media (max-width: 1024px) {
}

/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 768px)
         =================================================================== */

@media (max-width: 768px) {
    .content-middle h1 {
        color: var(--main-white);
        font-size: 15rem;
        line-height: 15rem;
    }

    .content-bottom {
        margin: 10px;
    }
}
/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 478px)
         =================================================================== */

@media (max-width: 478px) {
    .content-middle h1 {
        color: var(--main-white);
        font-size: 10rem;
        line-height: 10rem;
    }
}
