body {
    margin: 0;
    font-family:'Lato', sans-serif;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/common/background-about.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Presentation */

.presentation-section {
    background-image: 
        url('../images/index/flower-five-petal.svg'),
        url('../images/index/image-card.webp');

    background-position: 
        left -5% bottom -20%,
        left 52% top 10%;

    background-size: 
        300px auto,
        80px auto;

    background-repeat: 
        no-repeat,
        no-repeat;
}

.presentation {
    display: grid;
    align-items: center;
    grid-template-columns: 7fr 5fr;
    gap: 24px;
}

.presentation > div > div:last-of-type > img:first-of-type {
    padding-bottom: 56px;
}

.image-full-height {
    display: flex;
    justify-content: center;
}

.image-full-height > img {
    width: 90%;
}

h1 {
    font-family: 'DM Serif Display';
    font-size: 72px;
    font-weight: 400;
    color: #002AB4;
}

.content > * {
    padding-bottom: 40px;
}

.intro-text > p {
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #333333;
}

.intro-text > p:not(:last-of-type) {
        padding-bottom: 12px;
}

p > span{
    font-weight: 900;
    color: #002AB4; 
}

.presentation ul {
    display: flex;
    gap: 16px;
}

/* ----- RESPONSIVE ----- */

@media (max-width: 960px) {
    h1 {
        font-size: 64px;
    }
    .presentation {
        grid-template-columns: 8fr 4fr;
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: 56px;
        text-align: center;
    }

    .div-none-mobile {
        display: none;
    }

    .none-mobile {
        display: none;
    }

    .presentation {
        grid-template-columns: 1fr;
    }

    .intro-text > p {
        font-size: 18px;
        text-align: center;
    }

    .presentation-section {
        background-image: none;
    }

    .presentation {
        padding: 56px;
    }

    .presentation ul {
        justify-content: center;
    }
}

@media (max-width: 540px) {
    h1 {
        font-size: 48px;
    }

    .presentation ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 376px) {
    h1 {
        font-size: 40px;
    }

    .presentation {
        padding: 40px;
    }
}