#about .presentation {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 500px;
}

#about .presentation .presentation-text {
    max-width: 50%;
    padding: 0 10px;
    text-align: justify;
    font-size: 16px;
    color: var(--text-color);
    letter-spacing: 2px;
    line-height: 30px;
}

#about .presentation .presentation-text h2 {
    font-family: var(--font-display);
    color: var(--orange-theme);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

#about .presentation .presentation-image {
    padding: 0 10px;
    display: contents;
}

#about .presentation .presentation-image img {
    height: 100%;
}

#about .list-services .carte-service {
    width: 320px;
    height: max-content;
    margin: 16px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

#about .list-services .carte-service:hover {
    transform: translateY(-6px);
    border-color: var(--steel);
    box-shadow: var(--shadow-lg);
}

#about .list-services .carte-service img {
    width: 100%;
    height: 220px;
}

#about .list-services .carte-service .service-title {
    color: var(--blue-theme);
    width: 100%;
    padding: 10px;
    font-size: 24px;
    text-align: center;
}

#about .list-services .carte-service .service-description {
    color: var(--text-color);
    width: 100%;
    padding: 10px;
    font-size: 16px;
}

@media screen and (max-width: 1366px) {

    #about .presentation {
        height: 350px;
    }

    #about .presentation .presentation-text {
        font-size: 14px;
        letter-spacing: 0px;
        line-height: 25px;
    }

    #about .presentation .presentation-text h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

}

@media screen and (max-width: 990px) {

    #about .presentation {
        flex-direction: column;
        height: 100%;
    }

    #about .presentation .presentation-text {
        max-width: 100%;
    }

    #about .presentation .presentation-image {
        width: 90%;
        padding: 20px 0;
        display: block;
    }

    #about .presentation .presentation-image img {
        width: 100%;
    }

}
