.div1 *{
margin-bottom: 40px;
}

.accueil-photos{
    background-color: white;
    padding: 80px;
}
    
.accueil-photos h2{
    margin-bottom: 80px;
    text-align: center;
    color: #242424;
}

.accueil-photos div{
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}


.accueil-introduction{
    display: flex;
    flex-direction: row;
    max-width: 1000px;  
    margin: auto;
    align-items: center;
    
}

.accueil-formulaire{
    background-color: #1f2039;
    color: white;
}
.accueil-formulaire p{
    color: #a5b4fc;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    text-align: center;
    margin-bottom: 40px;
}

.form-colonne input{
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #7478d3;
    opacity: 30%;
    width: 570px;
    height: 50px;
}

textarea{
    margin-top: 20px;
    height: 200px;
    background-color: #7478d3;
    opacity: 30%;
}

.form-colonne{
    display: flex;
    flex-direction: column;
}
.form-row{
    display: flex;
    margin: auto;
    justify-content: space-between;
}

.accueil-formulaire .cta{
    margin-top: 20px;
   
}

@media screen and (max-width : 996px) {

    .div1{
        margin: 0;
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    

    .accueil-introduction{
        display: flex;
        flex-direction: column;
        
    }

    .accueil-photos div{
        display: flex;
        flex-direction: column;
    }

    .form-colonne input{
        width: auto;
    }
    .form-row{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

}