/* debut modale2  */
.modale2 {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    background: rgba(0, 0, 0, .7);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}

.modale2:target {
    visibility: visible;
    opacity: 1;
}

.boite2 {
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(228, 213, 213) 100%);
    border-radius: 20px;
    max-width: 90%;
    font-family:"Barlow Condensed", sans-serif;
    height: 75vh;
    width: 70vh;

}

.boite2 .fermer {
    text-decoration: none;
    font-size: 40px;
    position: absolute;
    top: 20px;
    color: black;
    right: 15px;
    cursor: pointer;
    max-width: 10%;
}

/* fin modale2  */
/* debut contact  */
.container2 {
    margin: 1px;
}

.row1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -13px;
    margin-left: -13px;
}


a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    color: #b8a07e;
    font-family:"Barlow Condensed", sans-serif;
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: none !important;
    outline: none !important;
    -webkit-box-shadow: none;
    box-shadow: none;
}


.form-control {
    height: 40px;
    background: transparent;
    color: rgb(0, 0, 0) !important;
    font-size: 14px;
    border-radius: 0px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
}

.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-control:-ms-input-placeholder {
    /* IE 0+ */
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5) !important;
}

.form-control:focus,
.form-control:active {
    background: transparent;
    border-color: rgba(0, 0, 0, 0.3) !important;
}

form input+.zone {
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgb(255, 146, 21, .5);
    height: 2px;
    width: 0%;
    transition: .5s;
}

form input:focus+.zone {
    width: 100%;
}

/* fin contact  */