@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: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .content-middle .content-catalogue {
        display: flex;
        flex-wrap: wrap;
    }

        .content-middle .content-catalogue .catalogue-left, .content-middle .content-catalogue .catalogue-right {
            flex: 1;
        }

            .content-middle .content-catalogue .catalogue-left h2 {
                font-size: 1.5rem;
            }

            .content-middle .content-catalogue .catalogue-left h3 {
                font-size: 2.5rem;
            }

            .content-middle .content-catalogue .catalogue-left p {
                padding: 20px 0 20px 0;
                max-width: 500px;
                font-weight: 300;
                line-height: 1.5rem;
            }

    .content-middle .content-other-catalogue {
        display: flex;
        padding-top: 100px;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .content-middle .content-other-catalogue article {
            flex: 1;
            display: flex;
            max-width: 435px;
            flex-direction: column;
            padding-bottom:80px;
        }

            .content-middle .content-other-catalogue article p {
                font-weight: 300;
                line-height: 1.2rem;
                padding: 20px 0 20px 0;
            }

.content-bottom .content-require-catalogue {
    display: flex;
    flex-direction: column;
    background-color: var(--main-lightgray);
    padding: 100px;
}

    .content-bottom .content-require-catalogue h2 {
        flex: 1;
        font-size: 5rem;
        font-weight: 800;
    }

    .content-bottom .content-require-catalogue h3 {
        flex: 1;
        font-size: 3.5rem;
        max-width: 1280px;
        line-height: 3rem;
        padding: 40px 0 40px 0;
        font-weight: 800;
    }

    .content-bottom .content-require-catalogue form {
        display: flex;
        flex-direction: column
    }

        .content-bottom .content-require-catalogue form * {
            flex: 1;
            max-width: 500px;
        }

        .content-bottom .content-require-catalogue form input[type=text],
        .content-bottom .content-require-catalogue form input[type=tel],
        .content-bottom .content-require-catalogue form input[type=number],
        .content-bottom .content-require-catalogue form input[type=email],
        .content-bottom .content-require-catalogue form textarea {
            border: 1px solid var(--main-darkgray);
            background-color: var(--main-lightgray);
            color: var(--main-darkgray);
            padding: 20px;
            margin-top: 15px;
        }

        .content-bottom .content-require-catalogue form span {
            float: left;
            padding: 20px;
        }

            .content-bottom .content-require-catalogue form span label {
                font-weight: 300;
                font-size: 0.8rem;
                padding-left: 5px;
            }

/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1480px)
        =================================================================== */
@media (max-width: 1480px) {
    .content-section .content-top .catalogue-right .catalogue-right-bottom h1 {
        color: var(--main-black);
        font-size: 2.5rem;
        line-height: 2.5rem;
        font-weight: 800;
    }
}
/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1279px)
        =================================================================== */

@media (max-width: 1279px) {
    /*Contents*/

    .content-top {
        flex-direction: column;
        padding: unset !important;
    }

    .catalogue-left {
        flex: none;
        width: 100%;
        padding-bottom: 10px;
        padding-right: unset !important;
    }

    .catalogue-right {
        flex: none;
        width: 100%;
    }

        .catalogue-right h2 {
            font-size: 20px;
        }


    .content-middle .content-catalogue .catalogue-left h3 {
        font-size: 2rem;
    }
}


/* ===================================================================
        RESPONSIVE - TABLET E MOBILE (max-width: 1120px)
        =================================================================== */

@media (max-width: 1120px) {

    .content-middle .content-catalogue .catalogue-left h3 {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}


/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 1024px)
         =================================================================== */

@media (max-width: 1024px) {
    .content-middle {
        margin: 60px;
    }

        .content-middle .content-catalogue {
            flex-direction: column;
        }

    .content-bottom .content-require-catalogue h2 {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }

    .content-bottom .content-require-catalogue h3 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }
}

/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 768px)
         =================================================================== */

@media (max-width: 768px) {

    .content-bottom .content-require-catalogue{
        text-align:center;
    }

    .content-bottom .content-require-catalogue h2 {
        font-size: 3rem;
        line-height: 3rem;
    }

    .content-bottom .content-require-catalogue h3 {
        font-size: 2rem;
        line-height: 2rem;
    }

    .content-middle .content-catalogue .catalogue-left{
        text-align:center;
    }
}
/* ===================================================================
         RESPONSIVE - MOBILE PICCOLO (max-width: 478px)
         =================================================================== */

@media (max-width: 478px) {
}
