.localisation__title{
    font-size: 30px;
    text-align: center;
    text-decoration-line: underline;
    padding-top: 80px;
}

.localisation__items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.localisation__items-left{
    width: 35%;
    height: 450px;
    background-color: aliceblue;
    border-radius: 10px;
}

.localisation__items-left-text{
    text-align: justify;
    margin-left: 25px;
    margin-right: 25px;
    margin-top: 40px;
}

.localisation__items-right{
    width: 64%;
    height: 450px;
    background-color: aliceblue;
    border-radius: 10px;
}

iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.localisation__items-left-title{
    text-align: center;
    text-decoration-line: underline;
}

@media only screen and (max-width: 950px) {


    .localisation__items{
        margin-right: 0;
        margin-bottom: 40px;
        flex-direction: column;
    }

    .localisation__items-left{
        margin-bottom: 40px;
        width: 100%;
        height: 400px;
        flex-direction: column;
    }

    .localisation__items-right{
        width: 100%;
        height: 420px;
    }
}