*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
body
{
    width: 100%;
    height: 100vh;
    display: grid;
    align-items: center;
    background: rgb(72, 72, 223);
    
}
.contact-in
{
    width: 80%;
    height: auto;
    margin: auto;
    display:flex;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 10px;
    background: #fff ;
    box-shadow: 0px 0px 10px 0px #666;
}
.contact-map
{
    width: 100%;
    height: auto;
    flex: 50%;
    
}
.contact-map iframe
{
    width: 100%;
    height: 100%;
    flex: 50%;
    
}
.contact-form
{
    width: 100%;
    height: auto;
    flex: 50%;
    padding: 30px;
    text-align: center;
}
.contact-form h1
{
    margin-bottom: 10px;
}
.contact-form-txt
{
    width: 100%;
    height: 40px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 5Opx;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-txt::placeholder
{
    color: #aaa;
}
.contact-form-textarea
{
    width: 100%;
    height: 130px;
    color: #000;
    border: 1px solid #bcbcbc;
    border-radius: 1Opx;
    outline: none;
    margin-bottom: 20px;
    padding: 15px;
}
.contact-form-texrarea::placeholder
{
    color: #aaa;
}
.contact-form-btn
{
    width: 100%;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #3449c1;
    color: #fff;
    text-transform: uppercase;
    padding: 1Opx 0;
    cursor: pointer;
    font-size: 18px;

}


/*------------Mise en forme du Header --------------*/

.header{
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(52, 54, 62, 0.7),rgba(52, 54, 62, 0.7)),url(imagesGCC/logo.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
}
.nav-links ul li{
    list-style: none ;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a{
    color: #fff;
    text-decoration: none;
    font-size:13px ;
}
.nav-links ul li::after{
    content:'';
    width: 0%;
    height: 2px;
    background: #3d68eb;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-links ul li:hover::after{
    width: 100%;
}
.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;

}
.text-box h1{
    font-size: 62px;
}
.text-box p{
    margin: 10px 0px 40px ;
    font-size: 14px;
    color: #fff;
}
.hero-btn{
    display: inline-block ;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.hero-btn:hover{
    border: 1px solid #3d68eb;
    background: #3d68eb;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(max-width:700px){
    .text-box h1{
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: #3d68eb;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;

    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
}
 /*------footer--------*/

 .footer{
    width: 80%;
    background-color: #3d68eb  ;
    text-align: center;
    padding: 25px ;
    display: flex;
    margin: auto;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
}
.footer-logo img{
    width: 50px;
    border-radius: 10px;
}
.footer h3{
    color: #fff;
    height: 30px;
}
.icons {
    list-style: none;
    margin-left: 20px;
    display: flex;
    cursor: pointer;
    padding: 18px 0;
}
.icons img{
    padding-right: 5px;
    
}