*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}

body{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Cabin', sans-serif;
    background-color: white;
    overflow: hidden;
}

.content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.block{
    margin:80px 0 80px;
}

.ml2{
    font-weight: 900;
    font-size: 3.5em;
    margin-left: 20px;
}

.ml2 .letter{
    display: inline-block;
    line-height: 1em;
}

.titreDiv{
    font-size: 40px;
    color:#ff3131;
    margin: 20px 0 40px 0;
}

.presentation{
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    color:white;
}
.presentation video{
    position: absolute;
    min-height: 100vh;
    min-width: 100%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index: -100;
}

.titre{
    padding: 40px 0 40px 0;
    border-radius: 10px;
}

.titreDiv{
    text-transform: uppercase;
}

.presentation p{
    font-size: 1.3em;
    margin: 20px;
}

.notreVision{
    background-color: #eeeaea;
    box-shadow:60px -16px #ff3131;
}

.notreVisionTexte{
    background-color: white;
    margin:20px;
}

.notreVision, .pourquoiNous{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
}
.notreVision p, .textePourquoiNous{
    text-align: left;
    margin: 5px;
    padding: 10px;
    font-size: 1.25em;
}

.nosCreation{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid #ff3131;
    border-radius: 5px;
    padding: 0 20px 10px 20px;
    width: 90%;
}

.creationImg{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.imgCreation{
    display: flex;
    max-width: 350px;
    max-height: 400px;
    padding: 15px;
}

.redirectionBouton{
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background-color: #ff3131;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    margin-top: 20px;
    padding: 10px;
}

.redirectionBouton:hover{
    background-color: #e8695e;
}

.partenaire{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.partenaireChild{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #ff3131;
    padding: 20px;
    gap: 100px;
}

.partenaireImg{
    max-width:100px;
    max-height: 70px;
}

.pourquoiNous{
    box-shadow: -50px -20px #ff3131;
    background-color: #eeeaea;
    padding: 10px;

}

.textePourquoiNous {
    padding:15px;
    background-color: white;
    font-size: 1.25em;
}

.animationSlide{
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animationSlideInverse {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.6s ease-out;
}

.animationSlideY {
    opacity: 0;
    transform: translateY(150px);
    transition: all 0.6s ease-out;
}

.show {
    transform: translateX(0);
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .creationImg{
        flex-direction: column;
    }

    .ml2{
        font-size: 1.7em;
    }

    .presentation p{
        font-size: 1em;
    }

    .notreVision{
        box-shadow: 9px -9px #ff3131;
    }

    .imgCreation{
        padding: 0;
        max-width: 90%;
        margin-bottom: 10px;
    }

    .partenaireChild{
        flex-direction: column;
        width: 60%;
        gap:60px;
    }

    .titreDiv{
        text-align: center;
    }

    .pourquoiNous{
        box-shadow: -9px -9px #ff3131;
        padding: 0 0 10px 0;
    }

    .notreVision, .pourquoiNous{
        width: 90%;
    }
}

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

    .creationImg {
        flex-wrap: wrap;
        justify-content: center;
    }

    .imgCreation {
        width: 47%;
        max-width: 450px;
        margin: 10px;
    }

    .partenaireChild{
        gap:40px;
    }

    .navBar{
        padding: 0 20px 0 20px;
    }
}