@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

* {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style: none;
    transition: .5s;
}
body{
    background-color: #f5f5f5;
}
/* NAVBAR */
.nav{
    width: 100%;
    min-height: 100vh;
    background: url(../img/home.jpg) no-repeat;
    box-sizing: border-box;
    background-size: cover;
}
.header{
    padding: 10px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo{
    color: #f5f5f5;
    font-weight: 800;
    font-size: 70px;
}
#chk{
    display: none;
}
.header label{
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border-radius: 4px;
    border: solid 1px transparent;
    color: #f5f5f5;
    cursor: pointer;
}
.bars{
    background-color: #ea8a0d;
    display: none;
}
.bars:hover{
    background-color: #b36b0c;
}
.cross{
    background-color: #d40808;
    display: none;
}
.cross:hover{
    background-color: #910303;
}
.link{
    padding: 5px 10px;
    border-radius: 4px;
    color: #f5f5f5;
    font-weight: 400;
}
.link:hover{
    background-color: #ea8a0d;
}
/* HOME & ABOUT */
.home{
    padding: 0 10%;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    height: calc(100vh - 70px);
}
.home_description{
    color: #f5f5f5;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 0px 10px 30px #000;
}
.home_sub_description{
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 200;
    text-shadow: 0px 20px 30px #000;
    margin: 20px 0;
}
.home_button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #ea8a0d;
    color: #f5f5f5;
    width: 200px;
}
.home_button:hover{
    background-color: #b36b0c;
}
/* SERVICES */
.services{
    display: flex;
    flex-direction: column;
    padding: 20px 10%;
}
.services_title{
    color: #ea8a0d;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 0px 10px 30px #000;
    margin-bottom: 20px;
}
.services_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.service{
    width: 47%;
    border-radius: 5px;
    margin: 10px 0;
    padding: 10px 0;
    background-color: #ea8a0d;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service_title{
    color: #f5f5f5;
    margin-bottom: 10px;
    font-size: 20px;
}
.service_image{
    width: 90%;
    height: 300px;
}
.service_image img{
    width: 100%;
    border-radius: 5px;
    height: 100%;
}
.service:hover{
    transform: scale(1.05);
    box-shadow: 10px 10px 20px #000;
}
/* REALISATIONS */
.realisations{
    background-image: linear-gradient(  rgb(79, 43, 79), rgb(77, 74, 74), rgb(79, 43, 79));
    padding: 20px 10%;
    display: flex;
    flex-direction: column;
}
.realisations_title{
    color: #ea8a0d;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 0px 10px 30px #000;
    margin-bottom: 20px;
}
.realisation_section{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}
.realisation{
    width: 47%;
    height: 500px;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    margin: 20px 0;
}

.title_realisation{
    color: #000;
    height: 5%;
    width: 100%;
    background-color: #ea8a0d;
    text-align: center;
    border-radius: 5px 5px 0 0;
}
.adress_realisation{
    color: #fff;
    height: 5%;
    width: 100%;
    background-color: #000;
    text-align: center;
    border-radius: 0 0 5px 5px;
}
.image{
    width: 95%;
    height: 90%;
}
/* FOOTER */
.footer_section{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    background: url(../img/map.jpg) center no-repeat;
    box-sizing: border-box;
    background-size: cover;
}
.contact_section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    padding: 10px 10%;
}
.footer_content{
    width: 33%;
    height: calc(100vh - 20px);
    /* background-color: #910303; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer_adresse{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    margin: 20px 0;
    color: #ea8a0d;
    font-weight: 400;
}
.footer_adresse i{
    font-size: 20px;
    margin-right: 10px;
}
.footer_content iframe{
    width: 100%;
    height: 400px;
    border-radius: 5px;
}
.form{
    background-color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    padding: 10px 0;
    
}
.input_content{
    width: 98%;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b36b0c;
    margin: 3px 0;
}
.input_content label{
    width: 30px;
    color: #f5f5f5;
    background-color: #b36b0c;
    border-radius: 5px 0 0 5px;
    text-align: center;
}
.input_content input{
    width: 100%;
    border-radius: 0 5px 5px 0;
    border: none;
    background-color: #ea8a0d;
    padding: 5px;
}
input::placeholder{
    color: #fff;
}
textarea{
    width: 98%;
    border-radius: 5px;
    height: 300px;
    background-color: #ea8a0d;
    padding: 5px;
}
textarea::placeholder{
    color: #fff;
}
button{
    width: 98%;
    margin-top: 5px;
    border-radius: 5px;
    border: none;
    background-color: #ea8a0d;
    padding: 4px 0;
    font-weight: bold;
    cursor: pointer;
}
button:hover{
    background-color: #b36b0c;
}
.social_media{
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.sm{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50px;
}
.sm_logo{
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
}
.sm_text{
    background-color: #fff;
    padding: 2px 5px;
    border-radius: 5px;
    transform: scale(0);
    margin-top: 10px;
    font-size: 8px;
}
.sm_logo:hover~.sm_text{
    transform: scale(1);
}
/* SM ICON */
.facebook i,.fb{
    color: #3b5998;
}
.youyube i,.yt{
    color: #c4302b;
}
.linked_in i,.linked{
    color:#0e76a8   
}

footer{
    display: flex;
    height: auto;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #000;
    color: #ea8a0d;
}