
*{
    padding: 0%;
    margin: 0%;
}
/*Header*/
header{
    position: relative;
    width: 100%;
    height: 20%;
    background: lightskyblue;
    color: steelblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width: 200px;
    float: left;
}


.menu-hamburger{
    width: 70px;
    margin: 30px;
    position: absolute;
    display: none;
}



.Heli{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;  
}

.Heli .fa-github{
    font-size: 35px;
}

.Heli h1{
    margin: 5%;
}

.navigation{
    position: relative;
    width: auto;
    padding: 5%;
    height: 100%;

}

.navbar{
    /*position: left;*/
    width: 40%;
}

.navbar input{
    width: 90%;
    height: 35px;
    border: none;
    border-radius: 5px;
    padding: 1%;
    text-indent: 10px;
    font-size: 18px;
}

ul{
    width: 70%;
}

.nav-links{
    display: flex;
    justify-content: space-between;
    margin-left: 4%;
    padding: 1%;
    font-size: 50px;
}

.nav-links ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
ul li{
    display: flex;
    justify-content: space-between;
    margin-left: 4%;
    padding: 1%;
    font-size: 25px;
    color: white;
    border-radius: 4px;
    transition: all 0.3s ease;
}

ul li a:hover{
    color: red;
    transition: color .4s ease-in-out,
    box-shadow .4s ease-in-out;
    /*background-color: white;*/
}

ul li a{
    color: white;
    text-decoration: none;
}
/*Body*/
Body{
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url("img/R.jpg");
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.H1{
    color: white;
    text-align: center;
    font-size: 50px;
    margin-top: 250px;
    transition: transform .4s;
}

.H2{
    color: white;
    text-align: center;
    font-size: 35px;
    margin-bottom:240px;
    transition: transform .4s;
}

.H1:hover{
    transform: scale(1.5);
}

.H2:hover{
    transform: scale(1.5);
}

.panier{
    margin-bottom: 20px;
    
}

/*Page de contact*/

.container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.container:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("img/R.jpg") no-repeat center;
	background-size: cover;
	filter: blur(25px);
	z-index: -1;
}

.contact-box{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.5);
}

.left{
	background: url("img/cervin.jpg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right{
    padding: 25px 40px;
}

.Contactez{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: steelblue;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 20px;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

.field:focus{
    border: 2px solid rgba(47, 110, 197, 0.47);
    background-color: #fff;
}

.btn{
	width: 100%;
	padding: 0.5rem 1rem;
	background-color: steelblue;
	color: #fff;
	font-size: 1.1rem;
	border: none;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
}

.btn:hover{
    background-color: lightskyblue;
}
/*Page services*/
.Services{
  text-align: center;
  color: white;
  margin-top: 60px;
  margin-bottom: 60px;
  transition: 0.4s;
}

.Services:hover{
    transform: scale(1.5);
}

.box-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.single-box{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: auto;
    border-radius: 4px;
    background-color: steelblue;
    color: white;
    text-align: center;
    margin: 20px;
    padding: 20px;
    transition: 0.3s;
    margin-bottom: 130px;
    z-index: -1;
}

.single-box:hover{
    background-color: red;
    /*color: lightskyblue;*/
    /*transform: scale(1.5);*/
}

.img-area{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
    padding: 20px;
}

.single-box:nth-child(1) .img-area{
    background-image: url(img/hélico.svg);
    background-repeat: no-repeat;
}
.single-box:nth-child(2) .img-area{
    background-image: url(img/boite.svg);
    background-repeat: no-repeat;
}
.single-box:nth-child(3) .img-area{
    background-image: url(img/talkie.svg);
    background-repeat: no-repeat;
}

.header-text{
    font-size: 24px;
    font-weight: 500;
    line-height: 48px;
}

.img-text p{
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}



/*footer*/
footer{
    position: absolute;
    width: 100%;  
    background-color: SteelBlue;
    color: white;
    display: flex;
    justify-content: space-around;
}

.contenup{
    display: flex;
    justify-content: space-around;
    margin: 2%;
}

.map{
    width:300px;
    margin: 10px;
}

p{
    font-size: 20px;
    margin: 10px;
}

/*.résaux{
    display: flex;
    justify-content: space-around;
     width: 100px;
     align-items: center;
}*/

.contact{
    margin-top: 15px;
}

@media  (max-width: 900px) {    
    /*header*/
    .logo img{
        width: 150px;
    }

    .menu-hamburger{
    display: block;
    right: 10px;
    position: absolute;
    transition: 0.5s;
    width: 60px;
    }

    .menu-hamburger:active{
        transform: rotate(180deg);
    }

    .navbar{
        display: none;
    }

    .nav-links{
        top: 0%;
        left: 0%;
        position: absolute;
        background-color: rgba(135, 206, 250, 0.304);
        backdrop-filter: blur(10px);
        width: 100%;
        height: 100vh;
        justify-content: center;
        text-align: center;
        align-items: center;
        margin-left: -100%;
        padding: 0%;
        transition: all 0.5s ease;
    }

    .nav-links ul{
        display: flex;
        flex-direction: column;
    }

    .nav-links.mobile-menu{
        margin-left: 0%;
    }

    .nav-links ul li{
        display: block;
        display: flex;
        flex-direction: column;
        margin:50px;
    }

   /*body*/
   Body{
    font-family: 'Quicksand', sans-serif;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url("img/fond\ re.png");
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}
    .H1{
        color: white;
        justify-content: center;
        text-align: center;
        align-items: center;
        margin-top: 62%;
        transition: transform .4s;
        font-size: 120%;
    }
    
    .H2{
        color: white;
        justify-content: center;
        text-align: center;
        align-items: center;
        margin-bottom: 62%;
        font-size: 110%;
        transition: transform .4s;
    }
    
    .H1:hover{
        transform: scale(1.5);
    }
    
    .H2:hover{
        transform: scale(1.5);
    }
/*footer*/
footer{
    position: absolute;
    width: 100%;  
    background-color: SteelBlue;
    color: white;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contenup{
    display: flex;
    flex-direction: column;
    margin: 2%;
}

.map{
    width:300px;
    margin: 10px;
}

p{
    font-size: 18px;
    margin: 10px;
}

/*.résaux{
    display: flex;
    justify-content: space-around;
    width: 30px;
    align-items: center;
}*/

.contact{
    margin-top: 15px;
}

.contact-box{
    grid-template-columns: 1fr;
}
.left{
    height: 200px;
}
}