/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');


/* --------------------------------------------------------------      reset.css   * Resets default browser CSS.   -------------------------------------------------------------- */
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, code,del, dfn, em, img, q, dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td {

  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: 'Oswald', sans-serif;
  vertical-align: baseline;

}

p, a, span{

  font-family: 'Open sans', sans-serif; 

}


body {

   line-height: 1.5;
 
}


/* Tables still need 'cellspacing="0"' in the markup. */
table {

 border-collapse: separate;
 border-spacing: 0;
 
}


caption, th, td {

 text-align: left;
 font-weight: normal;
 
}


table, td, th { vertical-align: middle; }


/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }


blockquote, q { quotes: "" ""; }


/* Remove annoying border on linked images. */
a img { border: none; }


html {  box-sizing: border-box; }


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


/* correction pour conteneurs non standard */
.ye-corr > .row{ margin-right: 0; }

/* keyframes */
@keyframes line-in {
  0% { width: 0%;}
  50% { width: 110%; }
  75% { width: 100%; }
  100% { width: 100%; }
}

/* base */
.container{
  max-width: 1350px;
}

.ye-section{ margin: 100px 0; }

.ye-btn-blanc{
  font-weight: 600;
  border: 2px solid #fff;
  color: #fff;
  padding: 20px 25px;
}

.ye-btn-blanc:hover{
  border-color: #DC2C2D;
  background-color: rgba(21,29,29,0.75);    
  text-decoration: none;
  color: #fff;
}

.ye-btn-arrow-right{
  font-size: 28px;
  font-weight: 600;
  color: #212929;
  position: relative;
}

.ye-btn-arrow-right:hover{
  color: #DC2C2D;
  text-decoration: none;
}

.ye-btn-arrow-right::after{
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/arrow-right.png);
  background-size: cover;
  top: 50%;
  transform: translateY(-42%);
  right: -37px;
  transition: right 0.5s ease-in;
}

.ye-btn-arrow-right:hover::after{
  right: -42px;
  transition: right 0.5s ease-out;
  background-image: url(../images/icons/arrow-right-r.png);
}

.ye-btn-contactez{
  font-family: "Oswald", sans-serif;
  background-color: #AD2927;
  color: #fff;
  padding: 0 12px;
  text-transform: uppercase;  
}

/* Header */


/* menu */
.ye-top-menu{
  background-color: #222222;
  padding: 22px 0;
  font-size: 20px;  
}

.ye-top-menu a{
  color: #fff;
  text-decoration: none;
  position: relative;
}

.ye-top-menu .ye-line-anim:before{
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -3px;
  background-color: #fff;
}

.ye-top-menu .ye-line-anim:hover:before{
  animation-name: line-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}


.ye-top-menu p{
  color: #fff;
  font-size: 16px;
  margin-left: 15px;
}

.ye-top-menu p:first-of-type{
  margin-left: 0;
}

.ye-top-menu p span{
  margin-left: 8px;
}

.ye-top-menu .ye-btn-contactez{
  display: none;
  margin-left: 19px;
}

.ye-top-menu .ye-menu-dr img{
  display: block;
}

.ye-top-menu .ye-facebook-sm{
  display: none;
}

.navbar{
  background-color: #000;
  padding: 22px 0;
}

.navbar .navbar-nav .nav-item{
  margin-left: 26px;
}

.navbar .navbar-nav .nav-item .nav-link{
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
}

.navbar .navbar-nav .nav-item:not(.ye-btn-contactez) .nav-link:hover {
  color: #AD2927;
}

.navbar .navbar-nav .nav-item.ye-btn-contactez{
  background-color: #AD2927;
  cursor: pointer;
}

.navbar .navbar-nav .nav-item .nav-link.ye-active{
  color: #AD2927;  
  font-weight: 600;
}


/* Section hero */
.ye-hero{
  padding: 150px 0; 
  position: relative;
}

.ye-hero .ye-video {
  object-fit: cover;
  object-position: 0% 4%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ye-hero .ye-container-hero .ye-titre{
  margin-bottom: 80px;
}

.ye-hero .ye-container-hero h1{
  font-size: 62px;
  line-height: 92px;
  color: #fff;
}

/* section presentation video */
.ye-presentation-video{
  background-color: #212929;
  padding: 35px 0;
}

/* section realisations et carousel */
.ye-realisations{
  background-color: #212929;
  padding: 70px 0;
}

.ye-realisations > .container{
  max-width: 1500px;
  transform: translateX(70px);
}

.ye-realisations h3{
  font-size: 40px;
  color: #DC2C2D;
  margin-bottom: 25px;
}

.ye-realisations p{
  font-size: 24px;
  color: #fff;  
  margin-bottom: 40px;
  position: relative;
}

.ye-realisations p span{
  color: #DC2C2D;     
}

.ye-realisations p:not(:last-of-type)::after{
  content: "";
  position: absolute;
  width: 106%;
  height: 1px;
  background-color: #fff;
  bottom: -22px;
  left: 0;
}

/* correction carousel */
.ye-realisations .carousel-control-prev-icon {
  background-image: url(../images/realisations/carousel/icons/arrow-left.png);
}

.carousel-control-next-icon {
  background-image: url(../images/realisations/carousel/icons/arrow-right.png);
}

.ye-realisations .carousel-control-prev-icon,
.ye-realisations .carousel-control-next-icon {
  display: inline-block;
  width: 23px;
  height: 40px;
  background-size: cover;
}

.ye-realisations .carousel-indicators{
  bottom: -35px;
}

.ye-realisations .carousel-indicators li{
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #a5adad;
  background-color: transparent;
  background-clip: unset;
  margin-left: 14px;
  margin-right: 14px;
}

.ye-realisations .carousel-indicators li.active{
  background-color: #a5adad;
}

/* mots du president */
.ye-mots-president > .container{
  max-width: 1500px;
  transform: translateX(70px);  
}

.ye-mots-president{
  background-color: #AD2927;
  padding: 95px 0;
}

.ye-mots-president h3{
  color: #fff;
  font-size: 40px;
  line-height: 60px;
}

.ye-mots-president h3:last-of-type{
  margin-left: 28px;
  margin-bottom: 50px;
}

.ye-mots-president h4{
  color: #fff;
  font-size: 28px;
  line-height: 38px;
  text-align: end;
  margin-right: 72px;
}

.ye-mots-president .ye-mobile{
  display: none;
}


/* section projet lonugeuil */
.ye-projet-longueuil{
  padding: 100px 0 260px 0;
}

.ye-projet-longueuil .ye-image-container picture{
  display: block;
  position: absolute;
  top: -190px;
}

.ye-projet-longueuil h3{
  color: #DC2C2D;
  font-size: 40px;
  margin-bottom: 68px;
  position: relative;
  display: inline-block;
}

.ye-projet-longueuil h3::after{
  content: "";
  position: absolute;
  width: 162%;
  height: 1px;
  background-color: #212929;
  bottom: -22px;
  left: -150px;
  z-index: -1;
}

.ye-projet-longueuil p{
  color: #212929;
  font-size: 24px;
}

/* section maison jeunes */
.ye-maison-jeunes h3{
  color: #DC2C2D;
  font-size: 40px;
  line-height: 60px;
  position: relative;
}

.ye-maison-jeunes h3:last-of-type::after{
  content: "";
  position: absolute;
  width: 135%;
  height: 1px;
  bottom: -22px;
  left: 0;
  background-color: #212929;
}

.ye-maison-jeunes .ye-image-container{
  background-image: url(../images/realisations/maison-jeunes.jpg);
  background-repeat: no-repeat;
  background-position-x: -25%;
  padding: 345px 0;
}


/* section notre expertise */
.ye-notre-expertise{
  overflow: hidden;
}

.ye-notre-expertise > .container{
  max-width: 1500px;
  transform: translateX(70px);
}

.ye-notre-expertise h3{
  font-size: 40px;
  line-height: 60px;
  color: #DC2C2D;
  margin-bottom: 23px;
}

.ye-notre-expertise p{
  font-size: 24px;
  color: #212929;
}

.ye-notre-expertise .ye-text-container{
  padding: 110px 0;
}

.ye-notre-expertise .ye-images-container{
  position: relative;
  padding: 110px 0;
}

.ye-notre-expertise .ye-images-container .ye-images{
  text-align: end;
}

.ye-notre-expertise .ye-images-container .ye-images picture:first-of-type{
  display: block;
  margin-bottom: 10px;
}

.ye-notre-expertise .ye-images-container::before{
  content: "";
  background-color: #A2ADAD;
  position: absolute;
  width: 50vw;
  height: 101%;
  top: 0;
  z-index: -1;
  -webkit-clip-path: polygon(18% 0, 100% 0, 100% 100%, 22% 100%, 0 13%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 22% 100%, 0 13%);
}

/* section des avantages */
.ye-avantages{
  padding: 100px 0;
}

.ye-avantages h3{
  font-size: 40px;
  color: #DC2C2D;
  text-align: center;
  margin-bottom: 100px;
}

.ye-avantages picture{
  margin-bottom: 17px;
  display: block;
}

.ye-avantages h4{
  color: #212929;
  font-size: 32px;
  margin-bottom: 17px;
}

.ye-avantages p{
  color: #212929;
  font-size: 24px;
  padding: 0 30px;
}

.ye-avantages .ye-btn-arrow-right{
  margin-top: 46px;
}

/* outils performants */
.ye-outils-performants{
  background-image: url(../images/accueil/texture-ciment.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0;
}

.ye-outils-performants h3{
  color: #DC2C2D;
  font-size: 40px;
  line-height: 60px;
}

/* chef duraform */
.ye-chef-duraform{
  background-color: #AD2927;
  padding: 120px 0;
}

.ye-chef-duraform h3{
  color: #fff;
  font-size: 40px;
  line-height: 60px;
}

/* section nos realisations */
.ye-nos-realisations{
  padding: 100px 0;
}

.ye-nos-realisations > .container{
  max-width: 1515px;
}

.ye-nos-realisations h3{
  color: #DC2C2D;
  font-size: 40px;
  line-height: 60px;
  text-align: center;
  margin-bottom: 100px;
}

.ye-nos-realisations h4{
  margin-top: 20px;
}

.ye-nos-realisations .ye-btn-arrow-right{
  margin-top: 90px;
}

.ye-nos-realisations.ye-page-realisation{
  position: relative;
  margin-top: 200px;
  padding-bottom: 200px;
}

.ye-nos-realisations.ye-page-realisation::before{
  content: "";
  position: absolute;
  background-color: #A2ADAD;
  width: 100%;
  height: 55%;
  top: 0;
}

.ye-nos-realisations.ye-page-realisation h3{
  color: #fff;
}

/* section notre equipe */
.ye-notre-equipe{
  background-image: url(../images/accueil/photo-equipe.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.ye-notre-equipe-claire{
  background-image: url(../images/emploi/photo-employes.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 240px 0;
}

.ye-notre-equipe h3{
  font-size: 40px;
  line-height: 60px;
  color: #fff;
}

.ye-notre-equipe .ye-btn-container{
  margin-top: 100px;
}

/* section partenaires */
.ye-partenaires{
  padding: 90px 0;
}

.ye-partenaires picture{
  margin-left: 92px;
}

.ye-partenaires picture:last-of-type{
  margin-left: 145px;
}

/* banner top */
.ye-banner-top{  
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 105px 0 132px 0;
}

.ye-banner-top h1{
  font-size: 62px;
  line-height: 92px;
  color: #fff;
}

.ye-b-a-propos{
  background-image: url(../images/a-propos/banner-top.jpg);
}

.ye-b-presentation{
  background-image: url(../images/presentation/banner-top.jpg);
}

.ye-b-realisations{
  background-image: url(../images/realisations/banner-top.jpg);
}

.ye-b-estimation{
  background-image: url(../images/estimation/banner-top.jpg);
}

.ye-b-emploi{
  background-image: url(../images/emploi/banner-top.jpg);
}

.ye-b-contact{
  background-image: url(../images/contact/banner-top.jpg);
}

/* section mission */
.ye-mission{
  position: relative;  
}

.ye-mission::before{
  content: "";
  width: 70%;
  height: 100%;
  background-color: #212929;
  position: absolute;
  top: 0;
}

.ye-mission .ye-texte-container{
    padding-top: 150px;
}

.ye-mission .ye-image-container{
  background-image: url(../images/a-propos/mission.jpg);
  background-size: cover;
}

.ye-mission h3{
  color: #DC2C2D;
  font-size: 40px;
  margin-bottom: 25px;
}

.ye-mission h2{
  font-family: "Open sans", sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  color: #fff;
  padding-bottom: 100px;
}

.ye-mission h2 span{
  font-weight: 600;

}

/* section valeurs */
.ye-valeurs > .container{
  background-image: url(../images/a-propos/valeurs.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 50%;
}

.ye-valeurs .ye-slogan{
  padding: 125px 0;  
  position: relative;
}

.ye-valeurs .ye-slogan::before{
  content: "";
  position: absolute;
  background-color: #AD2927;
  height: 100%;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  top: 0;
  z-index: -1;
}

.ye-valeurs .ye-slogan h3{
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  padding-left: 35px;
}

.ye-valeurs .ye-text-container{
  padding: 80px 0 0 142px; 
}

.ye-valeurs .ye-text-container h4{
  color: #DC2C2D;
  font-size: 40px;
  margin-bottom: 24px;
}

.ye-valeurs .ye-text-container p{
  font-size: 24px;
  line-height: 36px;
}

/* section la force d'une équipe */
.ye-force-equipe{
  padding-top: 174px;
  padding-bottom: 100px;
  padding-left: calc(((100% - 1350px) / 2) - 15px);
}

.ye-force-equipe .ye-texte-container{
  max-width: calc( (1350px / 2) + 15px);
}

.ye-force-equipe .ye-texte-container h3{
  color: #DC2C2D;
  font-size: 40px;
  margin-bottom: 22px;
}

.ye-force-equipe .ye-texte-container p{
  font-size: 24px;
}

.ye-force-equipe .ye-image-container{  
  background-image: url(../images/a-propos/force-equipe.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* section services */
.ye-services{
  background-color: #A2ADAD;
  padding-top: 110px;
}

.ye-services .ye-service-container{
  margin-bottom: 125px;
  text-align: center;
  padding: 0 45px;
}

.ye-services picture{
  display: block;
  margin-bottom: 20px;
}

.ye-services h3{
  font-size: 32px;
  line-height: 47px;
  color: #fff;
}

/* formulaire estimation */
.ye-formulaire-estimation{
    overflow: hidden;
}

.ye-formulaire-estimation .ye-formulaire-container{
  width: 102%; 
  height: calc(100% + 45px);
  border-radius: 5px; 
  box-shadow: 0 0 10px #00000029;
  position: relative;
  top: -118px;
  background-color: #fff;
  z-index: 1;
}

.ye-formulaire-estimation .ye-text-container{
  padding: 55px 0 155px 0;
  position: relative;
}

.ye-merci .ye-text-container{
  padding: 155px 0 155px 0;
}

.ye-formulaire-estimation .ye-text-container h2{
  font-size: 40px;
  line-height: 60px;
  color: #fff;
  text-transform: uppercase;
}

.ye-formulaire-estimation .ye-text-container h2 span{
  font-family: 'Oswald', sans-serif;
  color: #212929;
}

.ye-formulaire-estimation .ye-text-container::before{
  content: "";
  position: absolute;
  background-color: #AD2927;
  width: 100vw;
  height: 100%;
  left: 50%;
  right: 50%;
  top: 0;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ye-formulaire-estimation .ye-contacts-container{
  background-color: #A2ADAD;
  padding: 50px 0 0 50px;
  height: 500px;
  border-bottom-right-radius: 5px;
}

.ye-formulaire-estimation .ye-contacts-container h3{
  font-size: 24px;
  color: #212929;
  margin-bottom: 28px;
}

.ye-formulaire-estimation .ye-contacts-container p,
.ye-formulaire-estimation .ye-contacts-container p a{
  font-size: 20px;
  line-height: 35px;
  color: #fff;
}

.ye-formulaire-estimation .ye-contacts-container .ye-contactez-nous,
.ye-formulaire-estimation .ye-contacts-container .ye-tels{
  margin-bottom: 28px;
}

.ye-formulaire-estimation .ye-contacts-container .ye-tels p a{
  font-size: 24px;
  line-height: 50px;
  color: #fff;
}

.ye-formulaire-estimation .ye-contacts-container .ye-tels p a img,
.ye-formulaire-estimation .ye-contacts-container .ye-tels p img{
  margin-right: 9px;
}

/* section nous desservons */
.ye-nous-desservons{
  background-image: url(../images/estimation/nous-resservons.jpg);
  padding: 100px 0;
}

.ye-nous-desservons h3{
  font-size: 40px;
  color: #DC2C2D;
}

/* section nous joindre */
.ye-joindre-equipe > .container-fluid{ 
  padding-left: calc( ((100% - 1350px) / 2) + 15px);
}

.ye-joindre-equipe h3{
  font-size: 40px;
  line-height: 60px;
  color: #DC2C2D;
  margin-bottom: 54px;
}

.ye-joindre-equipe .ye-list-container p{
  font-size: 24px;
  line-height: 56px;
  color:#212929;
}

.ye-joindre-equipe .ye-list-container .fa-check{
  font-size: 30px;
  margin-right: 7px;
}

.ye-joindre-equipe .ye-image-container{
    background-image: url(../images/emploi/employees.jpg);  
    background-repeat: no-repeat;
    background-size: cover;
    padding: 330px 0;
    margin-bottom: -70px;
}

/* section avantage travailler */
.ye-avantages-travailler{
  background-color: #A2ADAD;
  padding: 170px 0 85px 0;
}

.ye-avantages-travailler h3{
  color: #fff;
  font-size: 40px;
  margin-bottom: 100px;
}

.ye-avantages-travailler .ye-ligne{
  margin-bottom: 70px;
}

.ye-avantages-travailler .ye-avantage-container{
  padding: 0 50px;
  text-align: center;
}

.ye-avantages-travailler .ye-avantage-container h3{
  font-size: 32px;
  margin-bottom: 10px;
}

.ye-avantages-travailler .ye-avantage-container p{
  color: #fff;
  font-size: 24px;
  font-weight: 300;
}






/* footer */
footer{
  padding: 75px 0;
  background-image: url(../images/texture-footer.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

footer p,
footer p a{
  font-size: 20px;
  color: #fff;
  line-height: 47px;
  font-weight: 300;
}

footer a:hover{
  text-decoration: none;
  color: #AD2927;
}

footer .ye-desc p{
  line-height: 32px;
}

footer p span{
  font-weight: bold;  
}

footer .ye-btn-contactez{
  display: none;
}

footer .ye-footer-bottom{
  margin-top: 65px;
}

footer .ye-footer-bottom h3{  
  color: #fff;
  font-family: "Open sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

footer .ye-footer-bottom h4{  
  color: #fff;
  font-family: "Open sans", sans-serif;
  font-weight: 300;
  font-size: 20px;
}

footer .ye-footer-bottom h4 A{
  color: #AD2927;
  font-weight: 400;
}


@media screen and (max-width: 3000px) {}

@media screen and (max-width: 1350px) {
  .ye-force-equipe .ye-image-container{
    background-size: contain;
  }

  .ye-joindre-equipe > .container-fluid {
    padding-left: 15px;
  }

  .ye-joindre-equipe .ye-image-container{
    padding: 275px 0;
  }
  
  .ye-joindre-equipe .ye-list-container p {
    font-size: 18px;
  }
  
    
}

@media screen and (max-width: 1200px) {

  .ye-btn-blanc {
    padding: 15px 45px;
  }

  /* menu */
  .ye-top-menu {
    padding: 22px 30px;
  }

  .ye-top-menu .ye-btn-contactez{
    display: block;    
  }

  .navbar {
    padding: 22px 15px;
  }

  .navbar .navbar-nav .nav-item.ye-btn-contactez {
    display: none;
  }

  /* section hero */
  .ye-hero {
    padding: 40px 0 80px 0;
  }

  .ye-hero .ye-container-hero,
  .ye-banner-top .ye-banner-container{
    justify-content: center;
    text-align: center;
  }

  .ye-hero .ye-container-hero h1,
  .ye-banner-top h1 {
    font-size: 55px;
    line-height: 82px;
  }

  /* section realisations et carousel */
  .ye-realisations > .container {
    transform: initial;
  }

  .ye-realisations h3 {
    font-size: 32px;
  }

  .ye-realisations p {
    font-size: 20px;
    margin-bottom: 34px;
  }

  .ye-realisations p:not(:last-of-type)::after {
    width: 111%;
  }

  /* mots du president */
  .ye-mots-president > .container{
    transform: initial;
  }

  .ye-mots-president h3 {
    font-size: 27px;
    line-height: 45px;
  }

  .ye-mots-president h3:last-of-type {
    margin-left: 19px;
    margin-bottom: 25px;
  }

  /* section projet lonugeuil */
  .ye-projet-longueuil {
    padding: 60px 0 210px 0;
  }  

  .ye-projet-longueuil .ye-image-container picture {
    top: -140px;
  }

  .ye-projet-longueuil .ye-image-container img{
    max-width: 90%;
  }

  .ye-projet-longueuil h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .ye-projet-longueuil p {
    font-size: 20px;
  }

  /* section maison jeunes */
  .ye-maison-jeunes h3 {
    font-size: 32px;
    line-height: 46px;
  }

  /* section nos realisations */
  .ye-nos-realisations.ye-page-realisation {
    margin-top: 100px;
    padding-bottom: 100px;
  }


  /* chef duraform */
  .ye-chef-duraform{
    padding: 55px 0;
  }

  .ye-chef-duraform h3{
    font-size: 27px;
  }

  /* notre expertise */
  .ye-notre-expertise p {
    padding-righT: 35px;
  }

  .ye-notre-expertise .ye-images-container::before {
    width: 100vw;
    height: 101%;
    left: -55vw;
    -webkit-clip-path: polygon(11% 0, 100% 0, 100% 100%, 5% 100%, 0 11%);
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 5% 100%, 0 11%);
  }

  /* section mission */
  .ye-mission h2 {
    font-size: 19px;
  }

  .ye-mission h3 {
    font-size: 32px;
    text-align: center;
  }

  /* section valeurs */
  .ye-valeurs .ye-slogan {
    padding: 110px 0;
  }

  .ye-valeurs .ye-slogan h3 {
    font-size: 32px;
  }

  .ye-valeurs .ye-text-container {
    padding: 42px 0 0 60px;
  }

  .ye-valeurs .ye-text-container h4 {
    font-size: 32px;
  }

  .ye-valeurs .ye-text-container p {
    font-size: 19px;
    line-height: 33px;
  }

  /* force d'une équipe */
  .ye-force-equipe {
    padding-top: 120px;
  }

  .ye-force-equipe .ye-texte-container h3 {
    font-size: 32px;
    margin-bottom: 18px;
  }

  .ye-force-equipe .ye-texte-container p {
    font-size: 19px;
  }

  /* section services */
  .ye-services {
    padding-top: 100px;
  }

  .ye-services picture {
    margin-bottom: 10px;
  }

  .ye-services h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .ye-services .ye-service-container {
    margin-bottom: 100px;
  }

  /* formulaire estimation */
  .ye-formulaire-estimation .ye-text-container h2 {
    font-size: 32px;
    line-height: 50px;
  }

  .ye-formulaire-estimation .ye-formulaire-container {
    width: 103%;
  }

  .ye-formulaire-estimation .ye-contacts-container h3 {
    font-size: 22px;
  }

  .ye-formulaire-estimation .ye-contacts-container .ye-tels p a {
    font-size: 18px;
    line-height: 45px;
  }

  .ye-formulaire-estimation .ye-contacts-container p, 
  .ye-formulaire-estimation .ye-contacts-container p a {
    font-size: 18px;
    line-height: 32px;
  }

  /* section nous desservons */
  .ye-nous-desservons h3{
    font-size: 32px;
    color: #DC2C2D;
  }

  /* section nous joindre */
  .ye-joindre-equipe h3{
    font-size: 24px;
  }
  
  .ye-joindre-equipe .ye-image-container {
    padding: 240px 0;
  }
  
  .ye-joindre-equipe .ye-list-container p {
    font-size: 16px;
    line-height: 50px;
  }


  /* section avantage travailler */
  .ye-avantages-travailler h3 {
    font-size: 32px;
    margin-bottom: 70px;
    margin-left: 50px;
  }

  .ye-avantages-travailler .ye-avantage-container h3 {
    font-size: 26px;
    margin-bottom: 8px;
    margin-left: 0;
  }

  .ye-avantages-travailler .ye-avantage-container p {
    font-size: 22px;
  }

  /* section des avantages */
  .ye-avantages {
    padding: 70px 0;
  }

  .ye-avantages h3 {
    font-size: 32px;
    margin-bottom: 40px;
    padding: 0 230px;
  }

  .ye-avantages h4 {
    font-size: 22px;
  }

  .ye-avantages p {
    font-size: 14px;
  }

  .ye-btn-arrow-right {
    font-size: 18px;
  }

  /* section outils performants */
  .ye-outils-performants{
    padding: 70px 0 100px 0;
  }

  .ye-outils-performants .ye-col-g,
  .ye-outils-performants .ye-col-d
  {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .ye-outils-performants .ye-col-d
  {
    text-align: center;
    padding-top: 40px;
  }

  .ye-outils-performants h3{
    font-size: 32px;
    padding: 0px 225px;
    text-align: center;
    line-height: 47px;
  }

  /* section nos realisations */
  .ye-nos-realisations h3 {
    margin-bottom: 35px;
  }

  .slick-prev {
    left: 30px!important;
    z-index: 1;
  }

  .slick-next {
    right: 30px!important;
    z-index: 1;
  }

  /* section notre equipe */
  .ye-notre-equipe h3 {
    font-size: 32px;
    line-height: 47px;
    padding: 0px 115px;
  }

  .ye-notre-equipe-claire {
    padding: 175px 0;
  }

  .ye-notre-equipe .ye-btn-container {
    margin-top: 80px;
  }

  /* section partenaires */
  .ye-partenaires {
    padding: 52px 0;
  }

  .ye-partenaires picture:first-of-type img{
    max-width: 180px;
  }

  .ye-partenaires picture:last-of-type {
    margin-left: 80px;
  }

  .ye-partenaires picture:last-of-type img{
    max-width: 360px;   
  }

  /* footer */
  footer p,
  footer p a{
    font-size:18px;
  }

  footer .ye-links p,
  footer .ye-links p a,
  footer .ye-desc p,
  footer .ye-desc p a
  {
    font-size: 16px;
  }
  
  footer .ye-footer-bottom h3{  
    font-size: 14px;
  }
  
  footer .ye-footer-bottom h4{  
    font-size: 12px;
  }
  

  .ye-footer-top{
    align-items: center;
  }

  .ye-footer-top .ye-logo{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 100px;
    text-align: end;
  }

  .ye-footer-top .ye-logo img{
    max-width: 126px;
  }

  .ye-footer-top .ye-position{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .ye-footer-top .ye-links{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin: 50px 0;
  }

  .ye-footer-top .ye-links p:not(:first-of-type){
    margin-left: 30px;
  }

  .ye-footer-top .ye-desc{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 30px;
    text-align: center;
  }

  footer .ye-btn-contactez{
    display: inline-block;
    line-height: 30px;
  }


}

@media screen and (max-width: 992px) {

  /* base */
  .ye-btn-blanc {
    padding: 13px 21px;
  }

  /* hero */
  .ye-hero .ye-container-hero h1 {
    font-size: 44px;
  }

  /* section realisations et carousel */
  .ye-realisations {
    padding: 50px 0;
  }

  .ye-realisations h3 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .ye-realisations p {
    font-size: 17px;
  }

  /* mots du president */
  .ye-mots-president {
    padding: 45px 0;
  }

  .ye-mots-president h3 {
    font-size: 20px;
    line-height: 32px;
  }

  .ye-mots-president h3:last-of-type {
    margin-left: 14px;
  }

  .ye-mots-president h4 {
    font-size: 19px;
    line-height: 28px;
  }

  /* section projet lonugeuil */
  .ye-projet-longueuil {
    padding: 60px 0 38px 0;
  }

  .ye-projet-longueuil h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .ye-projet-longueuil h3::after {
    bottom: -12px;
  }

  .ye-projet-longueuil p {
    font-size: 18px;
  }

  /* section maison jeunes */
  .ye-maison-jeunes h3 {
    font-size: 26px;
    line-height: 37px;
  }

  .ye-maison-jeunes h3:last-of-type::after {
    bottom: -12px;
  }  

  .ye-maison-jeunes .ye-image-container {
    background-position-x: -13%;
    padding: 238px 0;
  }

  /* section nous joindre */
  .ye-joindre-equipe h3 {
    font-size: 19px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .ye-joindre-equipe .ye-list-container p {
    font-size: 20px;
  }

  .ye-joindre-equipe .ye-list-container .fa-check {
    font-size: 26px;
  }
  
  .ye-joindre-equipe .ye-image-container {
    padding: 210px 0;
    margin-bottom: -50px;
  }

  /* section avantage travailler */
  .ye-avantages-travailler {
    padding: 85px 0 85px 0;
  }

  .ye-avantages-travailler .ye-avantage-container {
    padding: 0 15px;
  }
  
  .ye-avantages-travailler h3 {
    margin-left: 0;
  }

  /* section des avantages */
  .ye-avantages h3 {
    padding: 0 115px;
  }

  .ye-avantages h4 {
    font-size: 18px;
  }

  .ye-avantages p {
    padding: 0 10px;
  }

  /* section valeurs */
  .ye-valeurs .ye-valeur-section{
    justify-content: center;
    background-color: #fff;
    z-index: 1;
  }

  .ye-valeurs .ye-image-container{
    display: none;
  }

  .ye-valeurs .ye-text-container{
    padding: 50px;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* chef duraform */ 
  .ye-chef-duraform h3{
    font-size: 19px;
    line-height: 35px;
  }

  /* notre expertise */
  .ye-notre-expertise .ye-text-container {
    padding: 70px 0;
  }

  .ye-notre-expertise .ye-images-container {
    padding: 70px 0;
  }

  .ye-notre-expertise h3 {
    font-size: 32px;
  }

  .ye-notre-expertise p {
    font-size: 18px;
  }

  .ye-notre-expertise .ye-images-container::before {
    left: -55vw;
    -webkit-clip-path: polygon(11% 0, 100% 0, 100% 100%, 3% 100%, 0 10%);
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 3% 100%, 0 10%);
  }

  /* formulaire estimation */
  .ye-formulaire-estimation .ye-text-container h2 {
    font-size: 23px;
    line-height: 40px;
  }
  
  .ye-formulaire-estimation .ye-formulaire-container {
    width: 104%;
  }

  .ye-formulaire-estimation .ye-contacts-container {
    padding: 30px 0 0 30px;
  }
  
  .ye-formulaire-estimation .ye-contacts-container h3 {
    font-size: 22px;
  }
  
  .ye-formulaire-estimation .ye-contacts-container .ye-tels p a {
    font-size: 18px;
    line-height: 45px;
  }
  
  .ye-formulaire-estimation .ye-contacts-container p, 
  .ye-formulaire-estimation .ye-contacts-container p a {
    font-size: 18px;
    line-height: 32px;
  }
  
  /* section nous desservons */
  .ye-nous-desservons h3{
    font-size: 28px;
  }

  /* outils performants */
  .ye-outils-performants h3 {
    font-size: 32px;
    padding: 0px 100px;
  }

  /* section nos realisations */
  .ye-notre-equipe h3 {
    padding: 0px 10px;
  }

  /* section partenaires */
  .ye-partenaires picture {
    margin-left: 0;
  }

  .ye-partenaires picture:last-of-type {
    margin-left: 55px;
  }

}

@media screen and (max-width: 767px) {
    
    .ye-force-equipe {
      padding-top: 0;
    }
    
    .ye-force-equipe .ye-image-container {
      background-size: cover;
      padding: 200px 0;
      margin-bottom: 30px;
      order: -1;
    }
    
    .ye-joindre-equipe .ye-image-container {
      padding: 140px 0;
      margin-bottom: 0;
      order: -1;
    }
}

@media screen and (max-width: 640px) {

  /* menu */
  .ye-top-menu {
    padding: 22px 0;
  }

  .ye-top-menu .ye-facebook-lg{
    display: none;
  }

  .ye-top-menu .ye-facebook-sm{
    display: block;
  }

  .ye-top-menu a{
    font-size: 14px;
  }

  .ye-top-menu .ye-menu-g{
    justify-content: center;
  }

  .ye-top-menu .ye-menu-dr p{
    justify-content: center!important;
    margin-top: 25px;
  }

  .navbar .navbar-brand img{
    max-width: 255px;
  }

  /* hero */
  .ye-hero .ye-container-hero h1 {
    font-size: 34px;
    line-height: 51px;
  }

  .ye-hero .ye-container-hero .ye-titre {
    margin-bottom: 35px;
  }
  
  /*banner top*/
  .ye-banner-top {
    padding: 70px 0;
   }

  /* section realisations et carousel */
  .ye-realisations {
    overflow: hidden;
  }

  .ye-realisations p:not(:last-of-type)::after {
    width: 100%;
  }

  .ye-realisations .carousel-indicators li {
    margin-left: 10px;
    margin-right: 10px;
  }

  /* mots du president */
  .ye-mots-president h3{
    display: none;
  }

  .ye-mots-president h3.ye-mobile{
    display: block;
  }

  .ye-mots-president h3 {
    font-size: 16px;
  }

  .ye-mots-president h3:last-of-type {
    margin-left: 0;
  }

  .ye-mots-president h4 {
    margin-right: 3px;
    font-size: 17px;
  }

  /* section projet lonugeuil */
  .ye-projet-longueuil .ye-image-container picture {
    height: 350px;
    overflow: hidden;
    position: initial;
    margin-bottom: 20px;
  }

  .ye-projet-longueuil .ye-image-container img {
    max-width: 100%;
  }

  .ye-projet-longueuil h3 {
    display: block;
    text-align: center;
  }

  .ye-projet-longueuil h3::after {
    width: 100%;
    left: 0;
  }

  /* section maison jeunes */
  .ye-maison-jeunes h3 {
    text-align: center;
  }

  .ye-maison-jeunes h3:last-of-type{
    margin-bottom: 30px;
  }

  .ye-maison-jeunes h3:last-of-type::after {
    width: 100%;
  }

  .ye-maison-jeunes .ye-image-container {
    background-position-x: 0;
    padding: 295px 0 0 0;
    background-size: cover;
  }

  /* section mission */
  .ye-mission .ye-texte-container {
    padding-top: 25px;
  }
  
  .ye-mission::before {
    width: 100%;
  }

  .ye-mission .ye-image-container {
    padding: 140px 0;
    background-position: 50% 30%;
  }

  .ye-mission h2 {
    padding-bottom: 15px;
    font-size: 16px;
    line-height: 27px;
  }
  
  .ye-mission h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  /* section valeurs */
  .ye-valeurs > .container {
    background-image: none;
  }

  .ye-valeurs .ye-slogan {
    padding: 45px 0;
  }

  .ye-valeurs .ye-slogan h3 {
    padding-left: 0;
    font-size: 24px;
    line-height: 40px;
  }
  
  .ye-valeurs .ye-text-container {
    padding: 15px;
  }
  
  .ye-valeurs .ye-text-container h4{
    font-size: 24px;
    margin-bottom: 10px;
  }  
  
  .ye-valeurs .ye-text-container p {
    font-size: 16px;
    line-height: 27px;
  }

  /* section services */
  .ye-services {
    padding-top: 60px;
  }

  .ye-services .ye-service-container {
    margin-bottom: 60px;
  }

  /* section force equipe */
  .ye-force-equipe {
    padding-top: 15px;
    padding-bottom: 40px;
  }

  .ye-force-equipe .ye-text-container {
    padding-bottom: 60px;
  }
  
  .ye-force-equipe .ye-image-container {
    padding: 100px 0;
  }
  
  .ye-force-equipe .ye-texte-container h3 {
    font-size: 24px;
    margin-bottom: 10px;
   }
   
   .ye-force-equipe .ye-texte-container p {
    font-size: 16px;
    line-height: 27px;
   }


  /* section avantages */
  .ye-avantages h3 {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0 35px;
  }

  .ye-avantages h4 {
    font-size: 20px;
  }

  .ye-avantages p {
    padding: 0 85px;
  }

  .ye-avantages picture {
    margin-bottom: 4px; 
    display: block;
  }

  .ye-avantages .ye-avantages-cont:not(:first-of-type) {
    margin-top: 40px;
  }

  /* section outils performants */
  .ye-outils-performants h3 {
    font-size: 20px;
    padding: 0px 55px;
  }

  /* section nos realisations */
  .ye-nos-realisations h3 {
    font-size: 32px;
  }

  .ye-nos-realisations .ye-btn-arrow-right {
    margin-top: 45px;
  }
  
    /* chef duraform */ 
  .ye-chef-duraform .ye-duraform-container{
    flex-wrap: wrap;
    justify-content: center!important;
  }

  .ye-chef-duraform h3{
    font-size: 19px;
    text-align: center;
    line-height: 39px;
    margin-bottom: 20px;
    width: 100%;
  }

  /* section notre equipe */
  .ye-notre-equipe {
    padding: 55px 0;
    background-position: center;
  }

  .ye-notre-equipe-claire {
    padding: 65px 0;
  }

  .ye-notre-equipe h3 {
    font-size: 20px;
    line-height: 30px;
    padding: 0px 57px;
  }

  /* section partenaires */
  .ye-partenaires picture:last-of-type {
    margin-left: 0;
    margin-top: 50px;
    display: block;
  }

  .ye-partenaires picture:last-of-type img {
    max-width: 100%;
  }
  
   /* notre expertise */
  .ye-notre-expertise > .container {
    transform: initial;
  }
  
  .ye-notre-expertise .ye-text-container {
    padding: 15px;
    text-align: center;
  }
  
  .ye-notre-expertise p {
    padding-right: 0;
    font-size: 16px;
    line-height: 27px;
  }
  
  .ye-notre-expertise h3 {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 35px;
  }
  
  .ye-notre-expertise .ye-images-container {
    padding: 70px 0;
  }
  
  .ye-notre-expertise .ye-images-container::before {
    left: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .ye-notre-expertise .ye-images-container .ye-images picture:first-of-type img{
    display: none;
  }
  
  

  /* formulaire estimation */
  .ye-formulaire-estimation .ye-text-container h2 {
    font-size: 14px;
    line-height: 28px;
  }
    
  .ye-formulaire-estimation .ye-formulaire-container {
    width: 100%;
  }
  
  /* section nous desservons */
  .ye-nous-desservons {
    padding: 55px 0;
  }

  .ye-nous-desservons h3{
    font-size: 15px;
  }

  /* section nous joindre */
  .ye-joindre-equipe h3 {
    line-height: 35px;
    margin-bottom: 15px;
  }

  /* section avantage travailler */
  .ye-avantages-travailler {
    padding: 85px 0 20px 0;
  }

  .ye-avantages-travailler h3 {
    font-size: 19px;
    margin-bottom: 30px;
  }

  .ye-avantages-travailler .ye-avantage-container h3 {
    font-size: 21px;
  }

  .ye-avantages-travailler .ye-avantage-container {
    margin-bottom: 50px;
  }

  .ye-avantages-travailler .ye-ligne {
    margin-bottom: 0;
  }

  /* footer */
  .ye-footer-top .ye-logo {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .ye-footer-top .ye-position {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin: 25px 0;
  }

  footer .ye-btn-contactez {
    margin-top: 15px;
  }

  .ye-footer-top .ye-links {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0;
  }

  .ye-footer-top .ye-links p:not(:first-of-type) {
    margin-left: 0;
  }

}

@media screen and (max-width: 414px) {

  /* base */
  .ye-btn-arrow-right,
  .ye-nos-realisations .ye-btn-arrow-right  {
    transform: translateX(-15px);
  }

  /* banner-top */
  .ye-hero .ye-container-hero h1, .ye-banner-top h1 {
    font-size: 34px;
  }

  /* section avantages */
  .ye-avantages h3 {
    padding: 0 10px;
  }

  .ye-avantages p {
    padding: 0 56px;
  }

  /* section outils performants */
  .ye-outils-performants h3 {
    padding: 0;
  }

  /* section notre equipe */
  .ye-notre-equipe h3 {
    padding: 0px 28px;
  }
  
  /*section joindre equipe*/
  .ye-joindre-equipe .ye-image-container {
    padding: 100px 0;
  }

  /* footer */
  .ye-footer-top .ye-logo {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    text-align: center;
  }

  .ye-footer-top .ye-position {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    margin: 25px 0;
  }

  footer .ye-btn-contactez {
    margin-top: 15px;
  }

  .ye-footer-top .ye-links {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    margin: 5px 0;
  }

  .ye-footer-top .ye-links p:not(:first-of-type) {
    margin-left: 0;
  }

}



