@font-face {
    font-family: agendaBold;
    src: url('../fonts/Agenda/Agenda-Bold.eot');
    src: url('../fonts/Agenda/Agenda-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Agenda/Agenda-Bold.woff2') format('woff2'),
        url('../fonts/Agenda/Agenda-Bold.woff') format('woff'),
        url('../fonts/Agenda/Agenda-Bold.ttf') format('truetype'),
        url('../fonts/Agenda/Agenda-Bold.svg#Agenda-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: agendaMedium;
    src: url('../fonts/Agenda/Agenda-Medium.eot');
    src: url('../fonts/Agenda/Agenda-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Agenda/Agenda-Medium.woff2') format('woff2'),
        url('../fonts/Agenda/Agenda-Medium.woff') format('woff'),
        url('../fonts/Agenda/Agenda-Medium.ttf') format('truetype'),
        url('../fonts/Agenda/Agenda-Medium.svg#Agenda-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: agendaBlack;
    src: url('../fonts/Agenda/Agenda-Black.eot');
    src: url('../fonts/Agenda/Agenda-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Agenda/Agenda-Black.woff2') format('woff2'),
        url('../fonts/Agenda/Agenda-Black.woff') format('woff'),
        url('../fonts/Agenda/Agenda-Black.ttf') format('truetype'),
        url('../fonts/Agenda/Agenda-Black.svg#Agenda-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

body {
    background: url("../images/2560x3800px_fondo.png") no-repeat center center, #d9e7f3;
    background-size: cover, cover, auto;
    background-attachment: scroll, scroll, scroll;
    font-family: agendaMedium;
}

.logo {
    width:200px;
    height: 200px;
}

.title {
    font-size: 5.6em;
    color: #1d70b7;
}

.title span {
    font-style: italic;
    color: #e3051b;
    font-family: agendaBlack;
}

.spaced {
    height: 30px;
}

.double_spaced {
    height: 60px;
}

.section_list {
    width:100%;
    max-width:600px;
    margin:0 auto;
}

.section_list .section_bullet {
    margin:0 auto;
    padding: 0 0 0 0;
}

.section_list li {
    list-style: none;
}

.section_list li::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-image: url("../images/icona_elenco_200x200.svg");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.section_list ol li {
    color: #e3051b;
}

.section_list ol li span {
    color: #1d70b7;
    font-style: italic;
    font-family: agendaBold;
}

.section_list ol li p {
    font-weight: 500;
}

.footer {
    text-align:center;
    color: #e3051b;
}

.section_list .text {
    color: #e3051b;
}

.content_container {
    display: grid;
    grid-template-areas: "headerSection emptySection" "textSection imageSection" "footerSection footerSection";
    gap: 3px;
}

.content_container div.headerSection {
    grid-area: headerSection;
}

.content_container div.emptySection {
    grid-area: emptySection;
}

.content_container div.imageSection {
    grid-area: imageSection;
}

.content_container div.imageSection section {
    display: flex;
    justify-content: flex-end;
}

.content_container div.imageSection img {
    height: 500px;
    width:500px;
}

.content_container div.footerSection {
    grid-area: footerSection;
}

.content_container div.textSection {
    grid-area: textSection;
    padding: 30px 0 30px 0;
}

/* ==============================
   Responsive improvements
   ============================== */

@media (max-width: 768px) {
    body {
        background-size: auto 100%, cover;
        background-position: center top;
    }

    .content_container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "headerSection"
            "textSection"
            "imageSection"
            "footerSection";
    }

    .content_container div.emptySection {
        display: none;
    }

    .content_container div.imageSection img {
        height: 300px;
        width:300px;
    }

    .content_container div.textSection {
        grid-area: textSection;
        padding: 0 0 0 0;
    }

    .section_list {
        max-width: 90%;
        padding: 0 0;
    }

    .title {
        margin: 0 0 !important;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 3.6em;
        color: #1d70b7;
    }

    .title span {
        font-style: italic;
        color: #e3051b;
        font-size: 3.0rem;
        font-family: agendaBlack;
    }

    .section_list {
        width: 100%;
    }

    .content_container div.imageSection img {
        height: 200px;
        width:200px;
    }

    .section_list ol {
        font-size: 1.6em;
        padding: 0 0 0 1px;
    }

    .section_list ol li p {
        font-weight: 500;
        font-size: 0.5em;
    }

    .section_list .text {
        color: #e3051b;
        font-size: 0.8rem;
    }
}

@media (min-width: 2000px) {
    .content_container {
        display: grid;
        grid-template-areas:
            "headerSection emptySection"
            "textSection imageSection"
            "footerSection footerSection";
        grid-template-columns: 60% 40%;
        gap: 3px;
    }

    .content_container div.emptySection {
        grid-area: emptySection;
    }

    .content_container div.headerSection {
        grid-area: headerSection;
        display: grid;
        justify-content: end;
        padding-left: 175px;
    }

    .headerSection .main_logo {
        width: 140px;
        height: auto;
        margin-bottom: 40px;
    }

    .headerSection h1 {
        color: #e3051b;
        font-family: agendaBold;
        font-style: italic;
        font-size: 4rem;
        margin: 0;
    }

    .content_container div.textSection {
        grid-area: textSection;
        display: grid;
        justify-content: end;
    }

    .content_container div.imageSection {
        grid-area: imageSection;
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .content_container div.imageSection img {
        height: 600px;
        width: 600px;
    }

    .section_list {
        width: 100%;
        justify-content: start;
    }

    .section_list ol {
        font-size: 2em;
        padding: 0 0 0 1px;
    }

    .section_list ol li p {
        font-weight: 500;
        font-size: 0.8em;
    }

    .section_list .text {
        color: #e3051b;
        font-size: 1.2rem;
    }

    .section_list ol li span {
        color: #1d70b7;
        font-style: italic;
        font-size: 1.5em;
        font-family: agendaBold;
    }

    .section_list li::before {
        content: "";
        display: inline-block;
        width: 60px;
        height: 60px;
        background-image: url("../images/icona_elenco_200x200.svg");
        background-size: contain;
        background-repeat: no-repeat;
        vertical-align: middle;
    }
}