body {
    position: relative;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #211F20;
    text-align: center;
    padding: 0;
    margin: 0;
}

/**** STRUCTURE ****/
.navie_container {
    display: flex;
}
@media (max-width: 992px) {
    .navie_container{
        flex-direction: column;
    }
}
.navie_colonne_1 {
    order: 1;
    position: relative;
    flex: 1;
    background-color:#211F20;
    color: #FFFFFF;
    height: 100vh;
}
@media (max-width: 992px) {
    .navie_colonne_1 {
        order: 2;
        height: auto;
        margin-top: 0;
    }
}
.navie_colonne_2 {
    order: 2;
    position: relative;
    flex: 1;
    height: 100vh;
}
@media (max-width: 992px) {
    .navie_colonne_2 {
        order: 1;
        height: auto;
        margin-top: 0;
    }
}
.navie_colonne_1 .navie_contenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}
@media (max-width: 992px) {
    .navie_colonne_1 .navie_contenu {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        padding: 50px 30px 50px 30px;
    }
}
.navie_colonne_2 .navie_contenu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
}
@media (max-width: 992px) {
    .navie_colonne_2 .navie_contenu {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: auto;
        padding: 50px 30px 50px 30px;
    }
}

/**** COLONNE 2 ****/
.navie_image {
    margin-bottom: 30px;
}
.navie_image img {
    width: 70%;
}

.navie_logo {
    text-align: center;
    margin-bottom: 30px;
}
.navie_logo img {
    display: inline-block;
    width: 380px;
}
@media (max-width: 992px) {
    .navie_logo img {
        width: 300px;
    }
}

.navie_informations .navie_information {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    color: #191715;
    margin: 15px 0;
}
.navie_informations .navie_information strong {
    font-weight: 500;
    display: block;
    margin-top: 15px;
    margin-bottom: -10px;
}
.navie_informations .navie_information i {
    color: #211F20;
    margin-right: 3px;
}
.navie_informations .navie_information a {
    color: #191715;
    text-decoration: none;
}


/**** COLONNE 1 ****/
.navie_titre {
    color: #FFFFFF;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 30px;
}

.navie_texte {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 30px;
    line-height: 140%;
}
