/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */   html,   body,   p,   ol,   ul,   li,   dl,   dt,   dd,   blockquote,   figure,   fieldset,   legend,   textarea,   pre,   iframe,   hr,   h1,   h2,   h3,   h4,   h5,   h6 {    margin: 0;    padding: 0;   }       h1,   h2,   h3,   h4,   h5,   h6 {    font-size: 100%;    font-weight: normal;   }       ul {    list-style: none;   }       button,   input,   select,   textarea {    margin: 0;   }       html {    box-sizing: border-box;   }       *, *::before, *::after {    box-sizing: inherit;   }       img,   video {    height: auto;    max-width: 100%;   }       iframe {    border: 0;   }       table {    border-collapse: collapse;    border-spacing: 0;   }       td,   th {    padding: 0;   }       td:not([align]),   th:not([align]) {    text-align: left;   }

@font-face {
    font-family: 'DIN Pro';
    src: url('DINPro.woff2') format('woff2'),
        url('DINPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*::after,
*::before {
  box-sizing: inherit;
}

body {
    width: 100%;
    background-color: white;
    font-family: 'DIN Pro';
}

/*Header*/ 

header{
    background-image: url(asset/images/background-coding.jpg);
    background-position: bottom;
    background-size: auto;
    background-repeat: no-repeat;
    height:100vh;
}

nav{
    background-color: black;
    position:fixed;
    left:0px;
	top:0px;
    height: 100px;
    width: 100%;
    padding : 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.logo{
    max-width: 300px;
    min-width: 300px;
}

.menu{
    width: 780px;
    height: auto;
}

.menu ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

li a{
    color: white;
    display: inline-block;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 30px;
}

.line-link::after{
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color:#088391;
    transition: width .3s;
}

.line-link:hover::after{
    width: 100%;
    transition: width .3s;
}

.hero{
    width: 800px;
    height: 500px;
    margin: 0px 275px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 150px;
}


nav label { 
    display: none;
}

nav label, #toggle {
    display: none;
}

/* bloc media sociaux*/

.bloc-social-media{
    width: 200px;
    float: right;
    display: flex;
    flex-direction: row;
    margin-top: 120px;
}

.social-media{
    display: flex;
    flex-direction: column;
    gap : 10px;
}

.linkedin{
    padding-left: 20px;
    width: 40px;
}

.lignes-hero{
    width: 200px;
    height: 60px;
}

/* fin bloc media sociaux*/

h1{
    font-size: 50px;
    color: white;
}

.hero p{
    font-size: 18px;
    color: white;
}

.button{
    width: 210px ;
    font-size: 16px;
    background-color: #088391;
    color: white;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    padding: 10px 30px 10px 30px;
}

.button:hover {
    background-color: #04626D;
}

.H2_Title{
    font-size: 45px;
    color: black;
    display: flex;
    align-items: center;
    gap: 30px;
}

.H2_Title img{
    width: 225px;
    height: 15px;
    margin: 0px 20px 0px -275px;
}

h3{
    font-size: 25px;
    color: black;
}

p{
    font-size: 18px;
    color: black;
}


/***Responsive Header***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    
    header {
        height: 50vh;
    }
    
    nav{    
        padding : 15px;
    }

    nav .menu{
        display: none;
        flex-direction: column;
        background: #000000;
        height: 300px;
        max-width: 768px;  
        margin: 80px -15px 0px -15px;
    }

    #toggle:checked + .menu {
        display: flex;
        position: absolute;
    }

    .menu ul{
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
    }

    .menu{
        width: 768px;
        height: auto;
    }

    .hero{
        width: 100%;
        margin: 0px;;
        padding: 130px 50px;
        align-items: center;
    }

    .hero h1{
        font-size: 40px;
        text-align: center;
    }

    .bloc-social-media{
        display: none;
    }


      /* bouton menu burger */
      nav label{
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        color: white;
        cursor: pointer;
   }
}

   

@media screen and (max-width: 767px) {
    
    header {
        height: 70vh;
    }

    nav{
        padding : 15px;
    }

    nav .menu {
        display: none;
        flex-direction: column;
        background: rgb(0, 0, 0);
        height: 300px;
        width: 375px;   
        margin: 70px -15px 0px -15px;
    }

    #toggle:checked + .menu {
        display: flex;
        position: absolute;
    }

    .menu ul{
        flex-direction: column;
        align-items: center;    
    }

    .hero{
        width: 100%;
        margin: 0px;;
        padding: 130px 50px;
        align-items: center;
    }

    .hero h1{
        font-size: 25px;
        text-align: center;
    }

    .hero p{
        font-size: 14px;
        text-align: center;
    }

    .bloc-social-media{
        display: none;
    }

    .button{
        width: 150px ;
        font-size: 14px;
        padding: 10px 20px;
    }

    .logo{
        min-width: 200px;
    }

    /* bouton menu burger */
    nav label{
        width: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
        color: white;
        cursor: pointer;           
    }
}


/*******Main*******/ 

/*Société*/ 

#section-societe{
    padding: 100px 275px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

#section-societe p{
    padding-top: 20px;
}

.bandeau{
    margin: 0 auto;
}


/***Responsive Main***/

@media screen and (min-width: 768px) and (max-width:1023px) {

    .H2_Title img{
        margin: 0px 20px 0px -260px;
    }

    .H2_Title{
        gap: 10px;
    }

}

@media screen and (max-width: 767px) {
    .H2_Title{
        font-size: 20px;
        gap: 0px;
    }
    
    .H2_Title img{
        margin: 0px 20px 0px -140px;
        width: 125px
    }
    
    h3{
        font-size: 18px;
    }
    
    p{
        font-size: 14px;
    }   
}

/***Responsive Section société***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    #section-societe {
        padding: 50px 80px;
    }

}    

@media screen and (max-width: 767px) {
    #section-societe {
        padding: 40px;
    }
}


/*Prestations*/ 

#section-prestations{
    padding: 100px 275px;
}

#section-prestations p{
    padding-top: 40px;
}

.conteneur-prestations{
    max-width: 1200px;
    margin: 0 auto;
    display : grid;
    grid-template-columns: repeat(4, 23%);
    grid-template-rows: 100%;
    gap: 3%;
    padding-top: 40px;
}

.conteneur-prestations h3{
    font-size: 20px;
    text-align: center;
}
.conteneur-prestations p{
    font-size: 14px;
    text-align: left;
    padding-top: 0px;
}
.conteneur-prestations ul{
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 14px;
}

.prestation-bloc-1{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap : 20px;
    grid-area: 1 / 1 / 2 / 2 ;
}

.prestation-bloc-2{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap : 20px;
    grid-area: 1 / 2 / 2 / 3 ;
}

.prestation-bloc-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap : 20px;
    grid-area: 1 / 3 / 2 / 4 ;
}

.prestation-bloc-4{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap : 20px;
    grid-area: 1 / 4 / 2 / 5 ;
}

.btn_contact{
    width: 100%;
    margin-top: 50px;
    text-align: center;
}

/***Responsive Section société***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    #section-prestations {
        padding: 50px 80px;
    }

    .conteneur-prestations{
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: repeat(2, 50%);
        gap: 20px;
    }  

    .conteneur-prestations ul {
        text-align: center;
        font-size: 14px;
    }

    .prestation-bloc-1{
        gap : 10px;
        grid-area: 1 / 1 / 2 / 2 ;
    }
    
    .prestation-bloc-2{
        gap : 10px;
        grid-area: 1 / 2 / 2 / 3 ;
    }
    
    .prestation-bloc-3{
        gap : 10px;
        grid-area: 2 / 1 / 3 / 2 ;
    }
    
    .prestation-bloc-4{
        gap : 10px;
        grid-area: 2 / 2 / 3 / 3 ;
    }

    .prestation-bloc-3 p{
        text-align: center;
    }
    .prestation-bloc-4 p{
        text-align: center;
    }
}    

@media screen and (max-width: 767px) {
    #section-prestations {
        padding: 40px;
    }

    #section-prestations p {
        padding-top: 0px;
    }

    .conteneur-prestations{
        width: 100%;
        display : flex;
        flex-direction: column;
        align-items: center;
        padding-top: 30px;
        gap: 30px;
    }  

    .conteneur-prestations ul {
        text-align: center;
        font-size: 14px;
    }


    .prestation-bloc-1{
        gap : 10px;
    }
    .prestation-bloc-2{
        gap : 10px;
    }
    .prestation-bloc-3{
        gap : 10px;
    }
    .prestation-bloc-4{
        gap : 10px;
    }
    .prestation-bloc-3 p{
        text-align: center;
    }
    .prestation-bloc-4 p{
        text-align: center;
    }
}



/***Réalisations***/ 

#section-realisations{
    padding: 100px 275px;
    background-color: #088391;
    height: 600px;
}

#section-realisations h2{
    font-size: 45px;
    color: white;
}

.realisations h3{
    color: white;    
    padding-top: 40px;
}

.realisations p{
    color: white;    
}

.realisations{
    width: auto;   
}

/*Slider*/ 

.carousel-items {
    display: flex;
    overflow-x: scroll;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}


.carousel-item {
    flex: 1 0 170px;
    margin-left: 1rem;
    scroll-snap-align: start;
}

.carousel ::-webkit-scrollbar-track {
    background-color: #088391;
}

.carousel ::-webkit-scrollbar {
    height: 10px;
    background-color: #f5f5f5;

}

.carousel ::-webkit-scrollbar-thumb {
    background-color: #3d4852;
    border-radius: 4px;
}

.card{
    width: 150px;
}

.card img{
    width:150px;
}

.card p{
    font-size: 13px;
    color: white;
    font-family: 'DIN Pro light';
}



/***Responsive Section réalisations***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    #section-realisations {
        padding: 50px 80px;
        height: 500px;
    }

    .realisations h3 {
        color: white;
        padding-top: 20px;
    }

    .realisations ul{
        flex-direction: row;
        justify-content: space-between;
    }
}


@media screen and (max-width: 767px){
    #section-realisations{
        padding: 40px;
        height: 480px;
    }

    #section-realisations h2{
        font-size: 20px;
        color: white;
    }

    .realisations h3 {
        padding-top: 16px;
        padding: 20px 0px;
    }

    .realisations ul{
        flex-direction: row;
        justify-content: space-between;
    }
}
    

/*Section contact*/ 

#section-contact{
    background-image: url(asset/images/background-contact.jpg);
    padding: 100px 275px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

#section-contact h2{
    font-size: 45px;
    color: white;
}
#section-contact h3{
    color: white;    
    padding-top: 40px;
}
#section-contact p{
    color: white;    
}

.conteneur-contact{
    display: flex;
    flex-direction: row;
}

.adress{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    max-height: 150px;
    width: 100%;
    padding-left: 90px;
}

.bloc-adress{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}


/*-Formulaire-*/ 

#feedback-page{
	text-align:center;
}

#form-div {
	background-color:rgba(72,72,72,0.4);
	padding: 25px 25px 50px 25px ;
	width: 1020px;
    margin-top: 10px;
	margin-left: -30px;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    
}

.feedback-input {
	color:#616161;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
	font-size: 16px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 12px 12px 12px 14px;
	margin-bottom: 10px;
	width:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
    border: 3px solid rgba(0,0,0,0);
}

.feedback-input:focus{
    background: #fff;
	box-shadow: 0;
	border: 3px solid  #088391;
	color: black;
	outline: none;
	padding: 12px 12px 12px 14px;
}

.focused{
	color: #088391;
	border: #088391 solid 3px;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

input:hover, textarea:hover,
input:focus, textarea:focus {
	background-color:white;
}

.btn-check{
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-content: flex-end;
    padding-top: 20px;
}

.btn-check label {
    color: white;
    font-size: 12px;
}


/***Responsive Section contact***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    #section-contact {
        padding: 50px 80px;
        background-position-x: 70%;
        height: 70vh;
    }

    #section-contact p{
        font-size: 14px;   
    }
    
    .adress{
        padding-left: 50px;
    }

    .bloc-adress {
        gap: 20px;
    }

    #form-div{
        padding: 20px;
    }

    .btn-check{
        gap: 10px;
        padding-top: 5px;
    }

    #btn_contact{
        padding-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    #section-contact {
        padding: 40px;
        background-position-x: 70%;
        height: 100vh;
    }

    #section-contact p{
        font-size: 12px;   
    }

    #section-contact h2{
        font-size: 20px;
        color: white;
    }

    .conteneur-contact {
        display: grid;
        grid-template-columns: 100%;
        gap: 5px;
        padding: 20px 0px;
    }  

    .adress{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
        padding-left: 10px;
        grid-area: 1/1/2/2;
    }

    .bloc-adress {
        gap: 30px;
    }

    #form-div{
        padding: 20px;
        width: 300px;
        margin: 0 auto;
        grid-area: 2/1/3/2;
    }

    .btn-check{
        gap: 10px;
        padding-top: 5px;
    }

    #btn_contact{
        padding-top: 10px;
    }
}



/*******Footer*******/ 


footer{
    background-color: black;
    height: 70px ;
    padding-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    gap:750px;
}

footer p{
    color: white;
    font-size: 14px;
}

footer a{
    color: white;
    font-size: 14px;
    padding-left: 50px;
}

.logo-footer{
    width: 200px;
}

.logo-k-footer{
    display: none;
}


/***Responsive footer***/

@media screen and (min-width: 768px) and (max-width:1023px) {
    footer {
        padding: 15px 60px;
        gap: 90px;
    }

    .logo-k-footer{
        display: none;
    }
}    

@media screen and (max-width: 767px) {
    footer {
        padding: 8px;
        height: 50px ;
        gap:20px;
    }

    .logo-footer{
        display: none;
    }
    .logo-k-footer{
        display: block;
        width: 30px;
    }
    footer p{
        font-size: 12px;
        padding-left: 12px
    }
    footer a{
        font-size: 12px;
        padding-left: 30px;
    }
}