/* header */
.site-header{
    background-color: #fff;
/*     background: linear-gradient(to bottom, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 100%); */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0.7) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.site-header-inner{
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 30px;
}
.logo-header{
    max-width: 182px;
}
.logo-header img{
    vertical-align: middle;
}
.header-right{
    display: flex;
    align-items: center;
}
.site-nav ul{
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.site-nav ul li{
    list-style: none;
}
.site-nav ul li a{
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    color: #373736;
    font-size: 1rem;
    line-height: 24.3px;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease-in-out;
}
.site-nav ul li a:hover::before{
    width: 100%;
}
.site-nav ul li.current-menu-item a::before{
    width: 100%;
}
.site-nav ul li a::before{
    transition: all 0.2s ease-in-out;
    width: 0;
    position: absolute;
    left: 0;
    top: 100%;
    content: "";
    /* width: 100%; */
    height: 3px;
    background: #AAC547;
}
/* footer */
.site-footer{
    padding-top: 100px;
    padding-bottom: 17px;
}
.copyright a,
.copyright p{
    font-size: 0.889rem;
    margin: 0;
    text-decoration: none;
    position: relative;
    color: #3C3C3B;
    line-height: 1.278rem;
    font-weight: 400;
    text-align: right;
    transition: all 0.2s ease-in-out;
}
.copyright a::before{
    content: "";
    position: absolute;
    height: 3px;
    background: #AAC547;
    top: 100%;
    left: 0;
    width: 0;
    transition: all 0.2s ease-in-out;
}
.copyright a:hover::before{
    width: 100%;
}
/* contact */
.banner-contact{
    min-height: 500px;
    /*height: calc(100vw / 2.88);*/
    position: relative;
}
.contact-map{
    height: 100%;
}
.contact-map iframe{
    width: 100%;
    height: 100%;
}
.title-banner-wrap{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.title-box{
    z-index: 1;
    max-width: 515px;
    padding: 20px 40px;
    background: #3C3C3B;
}
.title-box h1{
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}
.place-card-large{
    display: none;
}
.contact-page{
    padding-top: 115px;
    padding-bottom: 30px;
}
.contact-page-innner{
    display: flex;
    padding-left: 115px;
}
.ct-decs{
	margin-right: 137px;
    width: 400px;
    flex-shrink: 0;
}
.ct-decs .ct-decs-content {
    background: linear-gradient(to bottom, rgba(170, 197, 71, 1) 100%, rgba(170, 197, 71, 0.38) 38%);
    padding: 40px;
    padding-bottom: 33px;
    padding-top: 33px;
    max-width: 400px;
}
.thumb-infor img{
    vertical-align: middle;
}
.ct-decs p{
    font-weight: 500;
    color: #fff;
    line-height: 1.5rem;
    margin: 0;
    font-size: 1.111rem;
}
.ct-decs p strong{
    font-weight: 800;
}
.ct-info{
    /* width: calc((100% - 33.19%) - 137px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px; */
    width: calc(66.81% - 137px);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* gap: 27px; */
    padding-top: 22px;
    padding-bottom: 20px;
    row-gap: 50px;
}
.info-item{
    display: flex;
    align-items: center;
}
.info-item a{
    position: relative;
    color: #3C3C3B;
    line-height: 24.3px;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
.info-item p{
    margin: 0;
    color: #3C3C3B;
    line-height: 24.3px;
    font-weight: 700;
}
.thumb-infor{
    max-width: 36px;
    margin-right: 28px;
}
.info-item a::before{
    transition: all 0.2s ease-in-out;
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 3px;
    background: #AAC547;
}
.info-item a:hover:before{
    width: 100%;
}
/* project */
.sct-project{
    padding-top: 100px;
    padding-bottom: 110px;
	overflow: hidden;
}
.project-cat{
    overflow-x: auto;
    margin-bottom: 30px;
/* 	width: calc(100% + ((100vw - 100%) / 2)); */
	width: 100vw;
}
/*  */
.project-cat::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 1px;
    height: 0px;
}

.project-cat::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}
/*  */
.list-cat{
    display: flex;
    width: max-content;
}
.list-cat a{
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    margin-right: 15.5px;
    background: #CBCBC6;
    border-radius: 30px;
    font-size: 0.889rem;
    line-height: 1rem;
    font-weight: 700;
    transition: all 0.2s ease-in-out;
}
.list-cat a:last-child{
    margin-right: 0;
}
.list-cat a:hover{
    background: #AAC547;
}
.list-cat a.active{
    background: #AAC547 !important;
}
.list-cat a:focus {
    background: #CBCBC6;
}
.project-box{
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.thumb-pr{
    position: relative;
}
.thumb-pr img{
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.cat-pr{
    display: inline-block;
    background: #AAC547;
    padding: 6px 14px;
    bottom: 15px;
    right: 15px;
    border-radius: 30px;
    position: absolute;
    color: #fff;
    font-size: 0.667rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
}
.project-item{
    width: calc((100% - 120px) / 3);
    text-decoration: none;
    background: #fff;
}
.project-item:hover .title-pr::before{
    width: 100%;
    
}
.title-pr::before{
    transition: all 0.2s ease-in-out;
    content: "";
    width: 0;
    height: 3px;
    position: absolute;
    top:100%;
    left: 0;
    background: #AAC547;
}
.title-pr{
    display: inline-block;
    width: fit-content;
    position: relative;
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.222rem;
    color: #000;
    margin-bottom: 7.5px;
}
.meta-pr{
    padding: 30px 15px;
    padding-top: 26px;
    padding-bottom: 25px;
    display: flex;
    flex-direction: column;
}
.lieu{
    font-size: 16px;
    color: #000;
    font-weight: 300;
}
.title-home-project,
.title-actualites{
    text-transform: uppercase;
    margin-bottom: 30px;
    margin-top: 0;
    color: #373736;
    font-weight: 500;
}
.home-project{
    padding-top: 100px;
    padding-bottom: 112px;
}
/* banner home */
.banner-home{
    background: #373736;
}
.banner-slider{
    height: 100vh;
}
.banner-slider .banner-item img{
    width: 100%;
    vertical-align: middle;
    height: 100%;
    object-fit: cover;
}
/* end banner home */
.banner-slider .swiper-slide h3,
.banner-slider .swiper-slide span {
    opacity: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.2s ease;
}
  
.banner-slider .fade-in {
opacity: 1 !important;
}
.box-title{

}
.box-title {
position: absolute;
bottom: 20px;
right: 20px;
background-color: #000;
padding: 10px;
border-radius: 5px;
z-index: 1;
}
.title-banner{
    background: #373736;
    padding: 20px 40px 19px 40px;
    color: #fff;
    position: absolute;
    bottom: 0;
    font-weight: 700;
    right: calc(98px + calc(calc(calc(100vw - 100%) / 2) + 60px));
    margin: 0;
    line-height: 27px;
    /* display: flex; */
    /* align-items: center; */
    min-height: 66px;
}
.title-banner::before{
    content: "";
    width: 0;
    position: absolute;
    bottom: 20px;
    left: 40px;
    height: 3px;
    background: #fff;
    transition: all 0.2s ease-in-out;
}
.title-banner:hover::before{
    width: calc(100% - 80px);
}
.title-banner .banner-lieu{
    font-weight: 400;
    margin-left: 3px;
}
.banner-home .container{
    position: relative;
}
.box-nav {
    display: flex;
    width: 96px;
    min-height: 66px;
    position: absolute;
    z-index: 2;
    bottom: 0;
    right: calc(calc(calc(100vw - 100%) / 2) + 60px);
    background: #373736;
    color: #fff;
    padding: 24px 30px;
    /* padding: 20px 30px 19px 30px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-nav .swiper-button-next,
.box-nav .swiper-button-prev{
    width: max-content;
    position: unset;
    height: max-content;
    margin: 0;
}
.box-nav .swiper-button-next:after{
    display: none;
}
.box-nav .swiper-button-prev:after{
    display: none;
}
.sct-actualites{
    padding-top: 110px;
}
.actualites-wrap{
    display: flex;
    padding: 75px;
    padding-bottom: 75px;
	gap: 60px;
}
.content-actualites{
/*     width: 60%; */
	width: calc(100% - 285px - 60px);
}
.thumb-actualites{
/*     width: calc(100% - 60%); */
/* 	max-width: 285px; */
	width: 285px;
}
.thumb-actualites img{
    /* width: 425px; */
    width: 100%;
    vertical-align: middle;
/*     height: 100%; */
    object-fit: cover;
	aspect-ratio: 1/1;
}
.actualites-item{
    background: #fff;
    opacity: 0.4;
}
.actualites-item.swiper-slide-active{
    opacity: 1;
}
.title-actualites{
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 40px;
}
.content-actualites p{
    margin: 0;
    margin-bottom: 22px;
    color: #000;
    line-height: 1.2rem;
    text-align: justify;
    font-weight: 400;
}
.content-actualites a{
    position: relative;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.content-actualites a::before{
    content: "";
    width: 0;
    height: 3px;
    background: #AAC547;
    position: absolute;
    top: 100%;
    left: 0;
    transition: all 0.2s ease-in-out;
}
.content-actualites a:hover::before{
    width: 100%;
}
.actualites-item{
    height: 100% !important;
/* 	height: fit-content !important; */
}
.txt-title{
    font-weight: 700;
    text-transform: uppercase;
    margin-top: -8px;
    margin-bottom: 19px;
}
.banner-slider .swiper-slide h3,
.banner-slider .swiper-slide span {
    margin: 0;
}
.title-banner{
    transition: all 0.2s ease-in-out;
    color: #fff !important;
    text-decoration: none;
}
.box-info{
    transition: all 0.2s ease-in-out;
}

.page-template-tp-contact .box-info{
	display: none;
}
.logo-header h1{
	margin: 0;
}