@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
}

#wrapper-header{display: flex;
height: 100vh;
overflow: hidden;}

#wrapper-right{
    width: 100%;
}

#wrapper-left{
position: absolute;
width: 50%;
background: #014489;
color: #FFF;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
padding: 5%;
height: 100vh;
padding-right: 15%;
transition: all 0.5s ease-in-out;
}

.show{
    left: 0;
}

.hide{
    left: -43%;
}

#left-content > span{
    position: absolute;
    top: 50%;
    right: 70px;
    font-size: 60px;
    cursor: pointer;
    -webkit-animation: linear infinite;
  -webkit-animation-name: run;
  -webkit-animation-duration: 0.8s;
}

@-webkit-keyframes run {
    0% {
      right: 30px;
    }
    50% {
      right: 50px;
    }
    100% {
      right: 30px;    
    }
  }

#left-content > h2{
    font-size: 40px;
    font-weight: 700;
}

#left-content > p{
  padding: 10% 0;  
  font-size: 14px;
}

#footer-wrapper > div:nth-child(2) > h3{
    text-align: center;
}

#socials-container > ul{
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-around;
    margin-top: 10%;
}

.socials > a > img{
    width: 30px;
}

#link-visite-virtuelle{
    text-decoration: none;
    color: #1C1C1C;
    font-weight: 500;
    padding: 8px 15px;
    background: #FFF;
    border: solid 2px #FFF;
    transition: all 0.3s ease-in;
}

#link-visite-virtuelle:hover{
    background: #1C1C1C;
    color: #FFF;
}

#sidebar-content > h2{
    font-size: 40px
}

#visite-virtuelle{
    height: -webkit-fill-available;
}

#menu-container{
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: end;
}

.menu-item{
    list-style: none;
    padding: 0 15px;
}

.menu-content{
    text-decoration: none;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.menu-content:hover{
    border-bottom: solid 2px #1C1C1C;
    color: #000;
}

#gmap_canvas{
    position: relative;
    top: 30px;
}

#footer-wrapper{
    background: #1C1C1C;
    color: #FFF;
    display: flex;
    justify-content: space-around;
    padding: 2%;
}

.footer-section{
    display: flex;
    flex-direction: column;
}

.footer-section a{
    text-decoration: none;
    color: #FFF;
    margin: 16px 0px;
}

.footer-section a:hover{
    text-decoration: underline;
}

#footer-bottom-container{
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

#createdby{
    display: flex;
    align-items: center;
}

#createdby > img{
    width: 60px;
}

#contact-section > h3{
    font-size: 50px;
    font-weight: bold;
}

#copyright>h4,
#copyright>p{
    margin: 5px;
}

form{
    display: flex;
    justify-content: center;
}

#message-contact-form{
    width: 99%;
}

#input-container > div:nth-child(1){
    display: flex;
}

#contact-section{
    padding: 5%;
}

.input{
    display: flex;
    flex-direction: column;
    margin: 10px 20px;
}

#submit-container{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#submit-container > input[type=submit]{
    background: #014489;
    color: #FFF;
    padding: 10px 30px;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

#nom-contact-form,
#email-contact-form,
#message-contact-form{
    border: none;
    background-color: #F2F2F2;
}

label{
    font-weight: 500;
}

input{
    padding: 5px;
}

#logo-container > img{
    width: 70%;
}

#copyright > h4{
    font-size: 18px;
}

#copyright > p{
    font-size: 18px;
}

#createdby > h4{
    font-size: 16px;
}

#copyright{
    display: flex;
    align-items: center;
}

#logo-google-trust{
    width: 125px;
}

#menu-container > li:nth-child(2){
    display: none;
}

/*RESPONSIVE*/

@media screen and (max-width: 1180px) {
    #wrapper-left{
        width: 75%;
    }

    .hide{
        left: -60%
    }
}

@media screen and (max-width: 767px) {
    #wrapper-header{
        flex-direction: column-reverse;
        height: auto;
    }

    #menu-container > li:nth-child(2){
        display: block;
    }  

    #wrapper-left{
        position: unset;
        height: auto;
    }

    #wrapper-right{
        height: 95vh;
    }

    #visite-virtuelle{
        height: 100%;
    }

    #left-content > span{
        display: none;
    }

    #menu-container{
        justify-content: center;
    }

    #wrapper-right > nav{
        position: fixed;
        background: #FFF;
        width: 100%;
    }

    .menu-content{
        font-size: 15px;
    }

    #wrapper-left,
    #wrapper-right{
        width: 100% !important;
    }

    #sidebar-content{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #footer-wrapper{
        flex-direction: column;
        align-items: center;
    }

    #input-container > div:nth-child(1){
        flex-direction: column;
    }

    .footer-section{
        text-align: center;
    }

    .footer-section > h3{
        font-weight: 900;
    }
}