*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', serif;
}
.container{
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #464646;
    background-image: url(images/background8.jpg);
}
h5{
    color: rgb(103, 121, 137);
    font-size: 60px;
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: center;
  }
h6{
    color: rgb(102, 124, 146);
    padding-left: 10%;
    padding-right: 10%;
    font-size: 2vw;
    text-align: center;
  }

.contact-map{
    max-width: 1500px;
    height: 100%;
    margin: auto;
    width: 96%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    justify-content: center;
}

.contact-form textarea{
    resize: none;
    height: 22vh;
}

.map iframe{
    width: 100%;
    height: 100%;
    background-image: url(GMm.png);
}










.header label{
    color: #000000;
}


form{
    width: 100%;

}
.input-group{
    margin-bottom: 30px;
    position: relative;
}
input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #202020;
    color: #000000;
    background: transparent;
    font-size: 15px;
}
.contact label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #000000;
    cursor: text;
    transition: 0.2s;
}
button{
    padding: 10px 0;
    color: #000000;
    outline: none;
    background: transparent;
    border: 1px solid #000000;
    width: 100%;
    cursor: pointer;
}
.contact input:focus~label,.contact input:valid~label,.contact textarea:focus~label,.contact textarea:valid~label{
    top: -35px;
    font-size: 14px;
}

.row .input-group{
    flex-basis: 48%;
}










@media (min-width:1500px){
    .map{
        padding-left: 4%;
    }
    form{
        width: 100%;
        padding-right: 4%;
    }
}

@media (max-width:1499px){
    .contact-map{
        margin: 0 auto;
        width: 80%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    h6{
        font-size: 2.2vw;
    }
    .map iframe{
        height: 50vw;
    }
}
@media (max-width:1000px){
    .contact-map{
        width: 90%;
    }
}

@media (max-width:800px){
    h5{
        font-size: 6vw;
    }
    h6{
        font-size: 2.2vw;
    }
}

@media (max-width:500px){
    h5{
        font-size: 9vw;
    }
}

@media (min-width:450px){
    .row{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width:500px){
    h6{
        font-size: 4.5vw;
    }
}

@media (min-width:501px){
    .adresse{
        max-width: 1500px;
        margin: auto;
        width: 90%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: left;   
    }
}