﻿@import url('global.css');

/* ===================================================================
                
    CONTENT SECTION - Contenitore principale
=================================================================== */

.content {
    background-color: #E2E2E2;
}

.content-section {
    margin: 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

    .content-section .content-top {
        text-align: center;
    }

    .content-section .content-top,
    .content-section .content-middle,
    .content-section .content-bottom {
        padding-bottom: 40px;
    }

    .content-section .content-title {
        font-size: 6rem;
        line-height: 6rem;
        color: var(--main-blue);
        font-weight: 300;
        padding-bottom: 20px;
    }

    .content-section .content-subtitle {
        font-size: 3rem;
        line-height: 3.5rem;
        font-weight: 500;
        padding-bottom: 20px;
        text-align: center;
    }

    .content-section .content-bottom .content-subtitle {
        text-align: left;
    }

    .content-section .content-presentation span {
        font-size: 1.5rem;
        line-height: 1.7rem;
        font-weight: 300;
        text-align: left;
    }

        .content-section .content-presentation span {
            padding-bottom: 15px;
            display:block;
        }


    .content-section .content-middle {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
    }

        .content-section .content-middle section {
            display: flex;
            gap: 40px;
        }

            .content-section .content-middle section .designer-content,
            .content-section .content-bottom .designer-content {
                align-content: flex-end;
                padding-left: 40px;
            }

        .content-section .content-middle .content-subtitle {
            text-align: left;
        }

    .content-section .content-bottom {
        padding-top: 80px;
        text-align: center;
    }

        .content-section .content-bottom section {
            display: flex;
        }

@media (max-width: 1024px) {
    .content-section .content-middle section,
    .content-section .content-bottom section {
        flex-direction: column;
    }
}