.clear{
    clear:both;
}

*:focus {
    outline: none;
}

img{
    max-width:100%;
}

a{
    color:#BD551E;
    text-decoration: none;
}

.smalltext{
    font-size: .6em;
    line-height: 2em;
}

ul{
    padding-left:2em;
}

li {

    list-style: none;
}

li::before {
    content: "—";
    display: inline-block;
    width: 2em;
    margin-left: -2em;
}

body,
html {
	
	font-family: 'Inter', sans-serif;
	font-size: 16px;
    line-height: 1.625em;
	color: #3A3838;
	font-weight: 400;
	height: 100%;
	background-color: #F8F7F7;
	
	text-rendering: auto;
	text-rendering: optimizeLegibility;
	text-rendering: geometricPrecision;
	font-smooth: always;
	font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
    margin:0px;
    padding: 0px;
}

body{
    display: flex;
    flex-direction: column;
}

main{
    flex: auto;
}

h1, h2, h3, h4{
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    margin-top: 0px;
}

.inside{
    box-sizing: border-box;
    padding-left: 80px;
    padding-right: 80px;
    width:100%;
    max-width: 1600px;
    position: relative;
    margin: auto;
}

/** BASE **/
h1{
    color: #BD551E;
    font-size: 40px;
    line-height: 1.250em;
}

h2{
    color: #7E3A16;
    font-size: 40px;
    line-height: 1.250em;
}

h3{
    color: #BD551E;
    font-size: 30px;
    line-height: 1.333em;
}

.button{
    display: inline-block;
    background-color: #BD551E;
    color:#fff;
    text-decoration: none;
    border-radius: 4px;
	text-transform: uppercase;
    padding-left:20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 11px;
    line-height: 2.364em;
}

select{
    border: 1px solid #DCDCDC;
    border-radius: 4px;
    padding: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #3A3838;
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.filterselect:after{
    content:"";
    display: block;
    position: absolute;
    right:15px;
    top:50%;
    transform: translateY(-50%);
    width:20px;
    height:20px;
    background-image: url(../img/dropdown.svg);
    background-position: center right;
    background-repeat: no-repeat;
}

.boxgrid{
    display: flex;
    gap:30px;
    align-self: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.boxgrid .box{
    padding:40px;
    box-sizing: border-box;
}

.boxgrid .box.boxQuart{
    width:calc((100% - 90px) / 4);
 }

.boxgrid .box.boxTiers{
   width:calc((100% - 60px) / 3);
}

.boxgrid .box.boxDemi, .halfcontent{
    width:calc((100% - 30px) / 2);
}

.boxgrid .box.boxFull{
    width:100%;
}


.boxgrid .box.boxFullSmall{
    width:100%;
    max-width: 844px;
}


/** HEADER **/
header{
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
}

header .inside{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo{
    width:300px;
    height: 38px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    background-image: url(../img/logo.svg);
}

header .navcontainer{
    display: flex;
    gap:65px;
}

header nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:60px;
    font-size: 14px;
}

header nav a{
    text-decoration: none;
    color: inherit;
}

header nav a.active, header nav a:hover{
    color:#BD551E;
}

header nav.lan{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:18px;
    font-size: 10px;
    text-transform: uppercase;
}

/** HEADER MOBILE **/ 
header.mobile{
    display: none;
    position: fixed;
    top:0px;
    left:0px;
    height:70px;
    box-sizing: border-box;
    z-index: 100;
    width:100%;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 10%);
    padding-top:20px;
    padding-bottom: 20px;
}

.logo.mobile{
    display: none;
    position: fixed;
    left:20px;
    top:20px;
    height:30px;
    z-index: 600;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left center;
    background-image: url(../img/logo.svg);
    width:230px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
}



.hamburger{
    position: fixed;
    top:6px;
    right:0px;
    z-index: 600;
    display: none;
}

.navcontainermobile{
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
  display: flex;
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-color: #fff;
    box-sizing: border-box;
    padding:40px;
    z-index: 300;
    flex-direction: column;
    gap:30px;
    align-items: center;
    justify-content: flex-start;
    padding-top: 100px;
}

body.mobilemenu .navcontainermobile{
    opacity: 1;
    pointer-events:all;
}

body.mobilemenu .logo.mobile{
   /* left:50%;
    transform: translateX(-50%);*/
    display: block;
}

body.mobilemenu .hamburger{
    display: block;
}

.navcontainermobile nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:30px;
    font-size: 24px;
}

.navcontainermobile nav.lan{
    flex-direction: row;
    text-transform: uppercase;
    font-size: 14px;
    gap:10px;
}

.navcontainermobile a{
    display: block;
    color: inherit;
}

.navcontainermobile a.active, .navcontainermobile a:hover{
    color:#BD551E;
}

footer{
    color:#fff;
    background-color: #BD551E;
    padding-top: 60px;
    padding-bottom: 100px;
    font-size: 12px;
    line-height: 1.5em;
}

footer .inside{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

footer .logoandnav{
    display:flex;
    gap:120px;
}

footer .logo{
    width:240px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
    background-image: url(../img/logo_white.svg);
}

footer nav{
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap:20px;
}

footer a{
    color: inherit;
    text-decoration: none;
}

footer h1{
    color:#fff;
    font-size: 18px;
}

footer .footerExtraText{
  margin-top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

/** POPUPS **/
.overlay{
    position: fixed;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-color: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease-in-out;
  -moz-transition: opacity .25s ease-in-out;
  -webkit-transition: opacity .25s ease-in-out;
  z-index: 1000;
}

body.overlayopen .overlay{
    opacity: 1;
    pointer-events:all;
}

.overlay .overlaypopup{
    background-color: #fff;
    padding:20px;
    padding-right: 0px;
    padding-top: 40px;
    width:calc(100% - 40px);
    max-width: 840px;
    box-sizing: border-box;
    position: relative;
    max-height: calc(100vh - 40px);
    overflow-y: scroll;
}

.overlay .overlaypopup .overlayclose{
    position: absolute;
    right:20px;
    top:20px;
    width:40px;
    height:40px;
    background-color: #BD5511;
    border-radius: 200px;
    background-image: url(../img/close.svg);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay .overlaypopup .overlaypopupcontent .text{
    padding-right: 40px;
}

/** INTRO HERO **/
.introhero{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    height:540px;
    align-items: center;
    justify-content: flex-start;
}

.introhero .gradient{
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
}


.introhero h1{
    margin:0px;
    padding-top:20px;
    padding-bottom:20px;
    position: relative;
    max-width: 870px;
    text-transform: uppercase;
}

.introhero h1:before{
    content:"";
    display: block;
    height:1px;
    width:68px;
    max-width: 100%;
    background-color: #BD551E;
    position: absolute;
    top:0px;
    left:0px;
}

.introhero h1:after{
    content:"";
    display: block;
    height:1px;
    width:68px;
    max-width: 100%;
    background-color: #BD551E;
    position: absolute;
    bottom:0px;
    left:0px;
}

/** PAGE **/
.section{
    position: relative;
}

.pagecontent{
    position: relative;
}

.pageback{
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pagebackmobile{
    display: none;
    position: absolute;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/** HOME INTRO **/
.home_intro{
    background-color: #fff;
    padding-top:60px;
    padding-bottom: 60px;
}

.home_intro .inside{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap:30px;
}

.home_intro .carouselchiffres{
    width:405px;
    background-color:  #F8F7F7;
    padding-top:80px;
    padding-bottom: 80px;
    max-width: 100%;
}

.home_intro .carouselchiffres .chiffreitem{
    font-size: 14px;
    line-height: 1.571em;
    color: #75726F;
    text-align: center;
}

.home_intro .carouselchiffres .chiffre{
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-size: 80px;
    line-height: 0.875em;
    font-feature-settings: 'pnum' on, 'lnum' on;
    margin-bottom: 30px;
    color: #7E3A16;
}

#homechiffresslider{
    padding-bottom: 50px;
}

#homechiffresslider .swiper-pagination{
    bottom:0px;
}

#homechiffresslider .swiper-pagination-bullet{
    background-color: #BD551E;
    opacity: 0.1;
}

#homechiffresslider .swiper-pagination-bullet-active{
    opacity: 1;
}

/** HOME VALEURS **/
.home_valeurs{
    padding-top:60px;
    padding-bottom: 60px;
}

.valeursgrid{
    display: grid;
    grid-template-columns: repeat(4,  1fr);
    gap:30px;
}

.valeursgrid .valeuritem{
    background-color: #fff;
    padding:20px;
    padding-top: 45px;
    padding-bottom: 40px;
    text-align: center;
    font-size: 14px;
    line-height: 1.571em;
    color: #75726F;
}

.valeursgrid .valeuritem h2{
    font-size: 24px;
    line-height: 1.333em;
    color: #BD551E;
    margin-bottom: 30px;
    margin-top: 30px;
}

.valeursgrid .valeuritem p{
    margin-bottom: 0px;
}



/** HOME TEAM **/
.home_team{
    background-color: #fff;
    padding-top:60px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home_team .box img{
    width:100%;
}

.home_team .box h3{
    font-size: 24px;
    line-height: 1.333em;
    color: #BD551E;
    margin-bottom: 0px;
}

.home_team .box h4{
    color:#75726F;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height:1.500em;
    margin: 0px;
    margin-top: 5px;
}

.home_team .teamitem{
    position: relative;
    padding:15px;
}

.home_team .teamitem .roundedplus{
    position: absolute;
    right:15px;
    bottom:13px;
    width:25px;
    height:25px;
    background-color: #BD5511;
    border-radius: 200px;
    background-image: url(../img/plus.svg);
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
}

/** HOME CONTENU **/
.home_contenu{
    background-color: #fff;
    padding-top:60px;
    padding-bottom: 60px;
}

.home_contenu .box{
    background-color: #F8F7F7;
    font-size: 14px;
    line-height: 1.571em;
    text-align: center;
    padding-left: 23px;
    padding-right: 23px;
}

.home_contenu .box h3{
    font-size: 24px;
    line-height: 1.333em;
    color: #BD551E;
}


/** ONEPAGE TEXTE IMAGE **/
.onepage_text_image{
    padding-top: 60px;
    padding-bottom: 60px;
}

.onepage_text_image .inside{
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap:30px;
}

.onepage_text_image .image{
    padding-right: 85px;
    box-sizing: border-box;
}

.onepage_text_image .text{
    background-color: #fff;
    padding: 60px;
    box-sizing: border-box;
}


/** ONEPAGE INTRO **/
.onepage_intro{
    background-color: #fff;
    text-align: center;
}

.onepage_intro .inside{
    max-width: 880px;
    padding-top:110px;
    padding-bottom:110px;
}

.onepage_intro .inside:before{
    content:"";
    display: block;
    position: absolute;
    left:50%;
    top:30px;
    width:1px;
    height:50px;
    transform: translateX(-50%);
    background-color: #BD551E;
}

.onepage_intro .inside:after{
    content:"";
    display: block;
    position: absolute;
    left:50%;
    bottom:30px;
    width:1px;
    height:50px;
    transform: translateX(-50%);
    background-color: #BD551E;
}

/** ONEPAGE VALEURS **/
.onepage_valeurs{
    padding-top:60px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.box{
    background: #fff;
}

.onepage_valeurs .valeuritem h3{
    display: flex;
    align-items: center;
    gap:24px;
}

/** ONEPAGE TEAM **/
.onepage_team{
    padding-top:60px;
    padding-bottom: 60px;
}
.onepage_team .box{
    background: #fff;
}

.onepage_team .box img{
    width:100%;
}

.onepage_team .box h3{
    font-size: 24px;
    line-height: 1.333em;
    color: #BD551E;
    margin-bottom: 0px;
}

.onepage_team .box h4{
    color:#75726F;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height:1.500em;
    margin: 0px;
    margin-top: 5px;
    padding-right: 40px;
}

.onepage_team .filtergrid{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    font-size: 14px;
    margin-bottom:60px;
}

.onepage_team .filterselect{
    display: none;
    align-items: center;
    justify-content: center;
    gap: 60px;
    font-size: 14px;
    margin-bottom:60px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width:300px;
    max-width: 100%;
}

.onepage_team .filtergrid a{
    color:inherit;
    text-decoration: none;
}

.onepage_team .filtergrid a:hover, .onepage_team .filtergrid a.active{
    color:#BD551E;
}

.onepage .teamgrid .teamitem{
    width:calc((100% - 90px)/4);
    padding: 40px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.onepage .teamgrid .teamitem .roundedplus{
    position: absolute;
    right:20px;
    bottom:14px;
    width:40px;
    height:40px;
    background-color: #BD5511;
    border-radius: 200px;
    background-image: url(../img/plus.svg);
    background-size: 20px 20px;
    background-position: center;
    background-repeat: no-repeat;
}

.teampupop{
    display: flex;
    gap:30px;
    justify-content: flex-start;
    align-items: center;
    font-size: 14px;
    line-height:1.571em;
}

.teampupop .image{
    width:226px;
    flex-shrink: 0;
}

.teampupop h1{
    color:#BD551E;
    font-size: 24px;
    line-height: 1.333em;
}

.teampupop h2{
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.5em;
    color:#75726F;
}

.linkedinbutton{
    display: inline-block;
    width:30px;
    height:30px;
    background-color: #F8F7F7;
    border-radius: 200px;
    background-image: url(../img/linkedin.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 10px auto;
}

/** ONEPAGE PARTENAIRES **/
.onepage_partenaires{
    padding-top:60px;
    padding-bottom: 60px;
}
.onepage_partenaires .box{
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .onepage_partenaires img{
    border: 1px solid;
}*/

/** ONEPAGE CHIFFRES **/
.onepage_chiffres{
    padding-top:60px;
    padding-bottom: 60px;
}

.onepage_chiffres .chiffresgrid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
}

.onepage_chiffres .chiffresgrid .chiffrespacer{
    flex: 0.5;
    background-color: #BD551E;
    height:1px;
    margin-bottom: 44px;
}

.onepage_chiffres .chiffresgrid .chiffreitem{
    font-size: 14px;
    line-height: 1.571em;
    color: #75726F;
    text-align: center;
    flex:1;
}

.onepage_chiffres .chiffresgrid .chiffreitem .chiffre{
    font-family: 'Playfair Display', serif;
    font-weight: normal;
    font-size: 80px;
    line-height:0.875em;
    color:#BD551E;
    font-feature-settings: 'pnum' on, 'lnum' on;
    margin-bottom: 30px;
}


/** ONEPAGE CONTENU **/
.onepage_contenu{
    padding-top:60px;
    padding-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/** ONEPAGE CONTENU SMALL **/
.onepage_contenu_small {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top:60px;
    padding-bottom: 60px;
}

.onepage_contenu_small .inside{
    max-width: 1004px;
}

.onepage_contenu_small .halfcontent{
    width:100%;
    text-align: center;
}

/** CONTACT **/
.pageconact{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100%;
}

.pageconact > div{
    background-color: #fff;
    padding: 60px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    margin-top: 200px;
    margin-bottom: 200px;
}

.pageconact{
    font-size: 12px;
    line-height: 1.5em;
    text-align: center;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #fff;
}

.pageconact h1{
    font-size: 30px;
    margin-top: 0px;
}

@media (max-width: 1350px){
    header nav{
      gap:40px;
    }
    header .navcontainer{
        gap:45px;
    }
    header nav{
        gap:20px;
    }
}

@media (max-width: 1200px){
    .inside {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    header{
        display: none;
    }
    
    header.mobile, .hamburger, .logo.mobile{
        display: block;
    }

    
}

@media (max-width: 1024px){
    .inside {
        padding-left: 30px;
        padding-right: 30px;
    }

    .onepage_text_image .inside{
        flex-direction: column;
    }

    .onepage_text_image .inside .halfcontent{
        width:100%;
        padding: 40px;
    }
    .onepage_text_image .image{
        padding:0px;
        max-width: 450px;
    }
}

@media (max-width: 960px){
    body{
        padding-top:70px;
    }
   

   

    .home_intro .inside{
        flex-direction: column;
        align-items: center;
    }

    .home_intro .inside .halfcontent{
        width:100%;
    }


    .boxgrid .box.boxQuart, .onepage .teamgrid .teamitem{
        width:calc((100% - 30px) / 2);
     }
     .valeursgrid {
        grid-template-columns: repeat(2, 1fr);
    }

     .boxgrid .box.boxTiers{
        width:100%;
     }

     .pageconact{
        background-size: cover;
     }

     .onepage_chiffres .chiffresgrid{
        flex-direction: column;
        gap:30px;
     }

     .onepage_chiffres .chiffresgrid .chiffrespacer{
        flex: auto;
        height:30px;
        width:1px;
        margin: 0px;
     }

     .onepage_team .filtergrid{ display: none; }
     .onepage_team .filterselect{ display: flex; }

}

@media (max-width: 767px){
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 32px;
    }

    h3{
        font-size: 24px;
    }

    .pageback{
        display: none;
    }
    .pagebackmobile{
        display: block;
    }

    .introhero {
        height: 70vh;
    }

    .boxgrid .box.boxDemi, .halfcontent{
        width:100%;
     }

     footer .inside{
        flex-direction: column;
        gap:60px;
     }

     footer .logoandnav{
        flex-direction: column;
        gap:60px;
    }

    .teampupop{
        flex-direction: column;
        align-items: flex-start;
        gap:0px;
    }
    .home_team .teamitem{
        width: calc((100% - 30px) / 2);
     }
}

@media (max-width: 560px){
    .valeursgrid {
        grid-template-columns: repeat(1, 1fr);  
    }
    .boxgrid .box.boxDemi, .halfcontent{
        width:100%;
     }

     .boxgrid .box.boxQuart, .onepage .teamgrid .teamitem{
        width: 100%;
     }
     .home_team .teamitem.boxQuart{
        width: calc((100% - 30px) / 2);
        padding:10px;

     }
     .home_team .box h3{
        font-size: 18px;
     }
     .home_team .box h4{
        font-size: 10px;
     }

    
}

@media (max-width: 450px){
    .inside {
        padding-left: 20px;
        padding-right: 20px;
    }
}