@font-face{
    font-family: AeroMatics;
    src: url(../Styles/police_AeroMatics.ttf)
}

@font-face{
    font-family: SuperDream;
    src: url(../Styles/police_SuperDream.ttf);
}

.contenu{
    max-width: 100vw;
}

.contenu-titre{
    display: none;
    font-family: AeroMatics;
}

.diaporama-images{
    margin-top: 40px;
    width: 100vw;
    overflow: hidden;
}

.images{
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    animation: defilement 80s linear infinite;
}

.images img{
    width: 250px;
    border-radius: 10px;
}

.affichage{
    margin-top: 40px;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: white;
    font-family: arial;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.texte{
    margin: 0;
    max-width: 670px;
}

.contenu-texte-2{
    margin-top: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
    box-sizing: border-box;
}

.texte-2{
    font-size: 45px;
    color: white;
    text-align: center;
    margin: 50px 0 50px 0;
    padding: 0 20px 0 20px;
    font-family: SuperDream;
}

.diaporama-clients{
    margin-top: 40px;
    width: 100vw;
    overflow: hidden;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.clients{
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    animation: defilement2 20s linear infinite;
    box-sizing: border-box;
}

.clients img{
    height: 70px;
    box-sizing: border-box;
}

.presentation-prestations{
    background-color: white;
    margin-top: 30px;
    padding: 10px;
    width: 100vw;
    text-align: center;
}

@keyframes defilement{
    0%{transform: translate(0,0);}
    100%{transform: translate(-2970px,0);}
}

@keyframes defilement2{
    0%{transform: translate(0,0);}
    100%{transform: translate(-745px,0);}
}

@media screen and (min-width: 1025px){
    .contenu{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .clients{
        animation: none;
        justify-content: space-evenly;
    }

    .supp{
        display: none;
    }

    .diaporama-clients{
        width: 100vw;
        padding: 0 20px 0 20px;
    }

    .texte-2{
        margin-bottom: 10px;
        font-size: 45px;
    }

    .contenu-titre{
        margin-top: 80px;
        margin-bottom: 40px;
        display: flex;
        gap: 30px;
    }

    .titre{
        font-size: 55px;
        color: white;
    }

    .texte{
        max-width: 800px;
    }

    .affichage{
        flex-direction: row;
        justify-content: center;
    }
}