@import url(fonts.css);

:root{
    --color0: #ffffff; /** arrière plan du site + encarts**/
    --color1: #1DB233; /*couleur titre & menu */
    --color2: #5D5D5D; /*couleur principale*/
    --color3: #393939;
    --color4:#FFD712;
    --color5: #09A67A;
    --color6:#F5FBF6;
    --font_family_1: 'Poppins', sans-serif;
    --font_family_2: 'Segoe UI Bold', sans-serif;
    --taille_font: 16px;
    --taille_title:25px;
    --md_screen:990px;
    --sm_screen:768px;
}   

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

body{
    padding: 0;
    margin: 0;
    /*background: var(--color1);*/
    font-size: var(--taille_font);
    font-family: var(--font_family_1);

}
img{
    max-width: 100%;
}

.float{
    animation: float 6s ease-in-out infinite;
}

.page{
    overflow-x: hidden;
}

.container{
    max-width: 1028px;
}

header {
    position: fixed;
    z-index: 2;
    width: 100%;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
    z-index: 4;
}

header.fixed {
    background: var(--color1);
    box-shadow: 0 0 5px rgba(0,0,0,0.68);
    height: 70px;
    display: flex;
    align-items: center;
}

header .top-header{
    background: var(--color0);
    height: 60px;
    display: flex;
    align-items: center;
}

header.fixed .top-header{
    display: none;
}


header.fixed .header{
    padding: 0;
}

header .top-header .cordonne{
    display: flex;
    flex-direction: row;
    margin: 0;
}
header .top-header .cordonne p{
    margin-bottom: 0;
    margin-right: 30px;
    padding-left: 25px;
}
header .top-header .cordonne p.tel{
    background: url('../images/svg/phone-call.svg') no-repeat center left;
}
header .top-header .cordonne p.email{
    background: url('../images/svg/ico-email.svg') no-repeat center left;
}

header .top-header .rs-header{
    display: flex;
    margin: 0;
    justify-content: flex-end;
}
header .top-header .rs-header ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
}

header .top-header .rs-header ul li{
    margin-right: 20px;
}
header .top-header .rs-header ul li:last-child{
    margin-right: 0;
}
header .top-header .rs-header ul li a{
    color: var(--color3);
}
.header{
    padding-top: 25px;
}
.logo{
    max-width: 247px;
    display: block;
    margin-top: -8px;
}

.menu-principale{
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    margin: 0;
}

.menu-principale li{
    margin: 0 15px;
    position: relative;

}
.menu-principale li:first-child{
    margin-left: 0;
}
.menu-principale li:last-child{
    margin-right: 0;
}
.menu-principale li a{
    color: var(--color0);
    text-decoration: none;
    font: normal normal normal 15px/23px var(--font_family_1);
    padding: 10px 0;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
    position: relative;
    display: block;
    overflow: hidden;
}

header.fixed .menu-principale li a{

}

.menu-principale li a::before{
    width: 20px;
    height: 3px;
    background: var(--color4);
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}
.menu-principale li a:hover::before,
.menu-principale li.active a::before{
    left: 0;
}

.menu-principale li a:hover{
    color: var(--color0);
}


.menu-principale .sub-menu {
    display: none;
    position: absolute;
    top: 39px;
    z-index: 3;
    left: 0;
    padding-left: 0;
    list-style: none;
    padding: 20px;
    background-color: var(--color0);
    width: 275px;
    border-radius: 5px;
}
header .menu-principale .sub-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
header .menu-principale .sub-menu li{
  	display: block;
  	float: none;
  	clear: both;
  	width: 100%;
  	margin: 0;
}
header .menu-principale .sub-menu li:last-child{
 	margin-bottom: 0;
 	border-bottom: none;
}
header .menu-principale .sub-menu li:last-child a{
    padding-bottom: 0;
}
header .menu-principale .sub-menu li:first-child a{
    padding-top: 0;
}
header .menu-principale .sub-menu li a{
    color: var(--color3);
  	font-size: 15px;
  	padding: 10px 0;
  	background: transparent;
  	text-align: left;
  	line-height: normal;
  	height: auto;
	transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
    font: normal normal 300 15px/23px var(--font_family_1);
}
header .menu-principale .sub-menu li a::before{
    display: none;
}

header .menu-principale li .sub-menu li:hover a,
header .menu-principale li .sub-menu li.active a {
  	color: var(--color1);
    font: normal normal 600 15px/23px var(--font_family_1);
}
header .menu-principale li:hover .sub-menu {
  	display: block;
}


.nav-link{
    font-size: 20px;
}



.banner{
    width: 100%;
    height: 650px;
    /*background: url('../images/banner.png') no-repeat center bottom;*/
    /*background:  url('../images/loaders.gif') no-repeat center center;*/
    -ms-background-size: cover;
    -khtml-background-size: cover;
    background-size: cover;
    position: relative;
    overflow: hidden;
}
.special-banner{
    /*background: -moz-linear-gradient(90deg,rgba(29,178,51,.55) 100%,rgba(29,178,51,.55) 0), 
    url('../videos/coter-video-hero-website.gif');
    background: -webkit-linear-gradient(90deg,rgba(29,178,51,.55) 100%,rgba(29,178,51,.55) 0), 
    url('../videos/coter-video-hero-website.gif');
    background: -o-linear-gradient(90deg,rgba(29,178,51,.55) 100%,rgba(29,178,51,.55) 0), 
    url('../videos/coter-video-hero-website.gif');
    background: linear-gradient(90deg,rgba(29,178,51,.55) 100%,rgba(29,178,51,.55) 0), 
    url('../videos/coter-video-hero-website.gif');*/
    background: rgba(29,178,51,.55);
    /*background-color: #1DB233;*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    -ms-background-size: cover;
    -khtml-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 650px;
}
.banner-interior{
    width: 100%;
    height: 650px;
    background: url('../images/banner.png') no-repeat center bottom;
    -ms-background-size: cover;
    -khtml-background-size: cover;
    background-size: cover;
    position: relative;
}



.banner .slegon{
    padding-top: 245px;
    color: var(--color0);
}
.banner.slegon h1{
    color: var(--color1);
    margin: 20px 0 0;
    font: normal normal bold 30px/46px var(--font_family_1);
}

.banner .slegon h2 span{
    color: var(--color4);
}
.slegon .text-slegon{
    text-align: left;
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: var(--color0);
    opacity: 1;
    margin: 0;
}

.banner .btn-scroll{
    width: 66px;
    height: 66px;
    background: url(../images/svg/btn-scroll.svg) no-repeat center;
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    cursor: pointer;
    background-size: cover;
    display: flex;
    z-index: 2;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.banner .btn-scroll i{
    background: url(../images/svg/angle-small-left.svg) no-repeat center;
    width: 18px;
    height: 10px;
    
}

.slegon .btn-slegon{
    padding: 10px 44px 10px 15px;
    background: url(../images/svg/flesh.svg) no-repeat center right 15px transparent;
    border: 1px solid var(--color0);
    color: var(--color0);
    margin-top: 20px;
}

.slegon .btn-slegon:hover{
    border: 1px solid var(--color4);
    background-color: var(--color4);
}

.slegon .btn-slegon li{
    margin-right: 26px;
}
.slegon .btn-slegon li:last-child{
    margin-right: 0;
}
.slegon .btn-slegon a{
    background: none;
    border-radius: 18px;
    font-family: var(--font_family_1);
    padding: 10px 35px;
    border: 1px solid var(--color5);
    color: var(--color5);
    display: inline-block;
    text-decoration: none;
}
.slegon .btn-slegon a:hover{
    background: transparent linear-gradient(103deg, #12CC7F 0%, #096640 100%) 0% 0% no-repeat padding-box;
    color: var(--color0);
}

.bloc-content{
    display: block;
    clear: both;
    padding: 40px 0;
    position: relative;
}

.titre-principale{
    color: var(--color1);
    font-size: var(--taille_title);
    font: normal normal 600 var(--taille_title)/38px var(--font_family_1);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}
.titre-principale.with-text-description{
    margin-bottom: 10px;
}
.titre-principale:before{
    content: '';
    width: 45px;
    height: 3px;
    background: #FFD712;
    position: absolute;
    top: 50%;
    left: -56px;
    transform: translateY(-50%);
}

.text-description{
    color: var(--color2);
}

.service .text-description{
    margin-bottom: 55px;
}

.service{
    position: relative;
    z-index: 1;
    background: url('../images/svg/bg-service.svg') no-repeat center top;
    background-size: cover;
    padding-top: 110px;
}

/* .service::before{
    position: absolute;
    right: 0;
    top:-149px;
    content: "";
    width: 300px;
    height: 680px;
    background: url('../images/farasha-grey.png') no-repeat center;
    background-size: contain;
}
.service::after{
    position: absolute;
    right: 0;
    top:-149px;
    content: "";
    width: 100%;
    height: 680px;
    background: url('../images/bg-service.png') no-repeat center;
    background-size: contain;
    z-index: -1;
} */

.service .item-service{
    color: #7B7B7B;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    padding: 20px;
    height: 280px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}
.service .item-service:hover{
    /*box-shadow: 0px 15px 25px #0000002E;*/
    box-shadow: 0 0 0 15px rgb(29 178 51 / 10%);
}
.service .item-service .ico-service{
    display: block;
    width: 45px;
    height: 60px;
    margin: 0 0 10px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: contain;
}
.service .service-1 .ico-service{
    background-image: url('../images/svg/capital-humain.svg');
}
.service .service-2 .ico-service{
    background-image: url('../images/svg/ico-engagement.svg');
}
.service .service-3 .ico-service{
    background-image: url('../images/svg/ico-construction.svg');
}
.service .service-4 .ico-service{
    background-image: url('../images/svg/ico-revetements.svg');
}
.page.dark .service .item-service{
    background: transparent linear-gradient(150deg, #000E14 0%, #000E14 100%) 0% 0% no-repeat padding-box;
    color: var(--color3);
}
.service .item-service h3{
    font: normal normal 600 26px/28px var(--font_family_1);
    color: var(--color3);
    font-size: 20px;
    line-height: 24px;
}

.content-item-service{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    left: 0;
    top: 0;
    background: #1DB233;
    z-index: 1;
    font: normal normal 300 13px/20px var(--font_family_1);
    letter-spacing: 0px;
    align-items: center;
    padding: 20px;
    color: var(--color0);
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}

.service .content-item-service .btn-primary{
    background: url('../images/svg/flesh.svg') no-repeat center right 15px var(--color4);
    text-align: left;
    color: var(--color0);
    padding: 8px 44px 8px 15px;
    border: 0;
}

.service .item-service:hover .content-item-service{
    opacity: 1;
}

.about-us{
    padding: 95px 0;
    
}
.about-us::after,
.about-us::before{
    content: '';
    position: absolute;
}

.about-us::before{
    background: url('../images/svg/triangle-jaune.svg');
    left: 0;
    bottom: -70px;
    width: 118px;
    height: 267px;
}

.about-us::after{
    background: url('../images/svg/triangle-vert.svg');
    right: 0;
    top: 0;
    width: 187px;
    height: 318px;
}

.about-us .titre-principale{
    margin-left: 55px;
}

.about-us .content-about{
    text-align: left;
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #393939;
}
.text-logo{
    color:var(--color1);
    font-weight: bold;
    font-size: 20px;
}
.bloc-content .btn-primary{
    border-color: var(--color1);
    color:var(--color1);
    background: var(--color0);
    font: normal normal 300 15px/23px var(--font_family_1);
    background: url('../images/svg/flesh-green.svg') no-repeat center right 15px;
    padding: 5px 40px 5px 25px;
    border-radius: 20px;
}
.bloc-content .btn-primary:hover{
    border-color: var(--color1);
    color:var(--color0);
    background: var(--color1);
}

.about-us .content-about .btn-primary{
    background: url(../images/svg/flesh.svg) no-repeat center right 15px var(--color1);
    text-align: left;
    color: var(--color0);
    padding: 8px 44px 8px 15px;
    border: 0;
}

.about-us .img-about{
    width: 100%;
    height: 302px;
    background: url('../images/front-view-businessman-with-wooden-building-blocks.png') no-repeat center;
    background-size: cover;
    border-radius: 10px;
    position: relative;
}

.about-us .img-about .short-descr-video{
    width: 352px;
    height: 280px;
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 7px 15px 30px #0000001A;
    border-radius: 10px;
    opacity: 1;
    position: absolute;
    right: -65px;
    bottom: -50%;
    padding: 20px;
}

.about-us .img-about .short-descr-video h3{
    font: normal normal 600 18px/27px var(--font_family_1);
    letter-spacing: 0px;
    color: #1D438A;
}

.about-us .img-about .short-descr-video p{
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #919191;
}

.about-us .img-about .short-descr-video .btn-voir-vide{
    font: normal normal 600 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #464646;
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 54px;
}
.about-us .img-about .short-descr-video .btn-voir-vide span{
    background: var(--color1);
    width: 55px;
    height: 55px;
    margin-right: 10px;
    border-radius: 50%;
    border: 10px solid transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us .img-about .short-descr-video .btn-voir-vide span i{
    width: 12px;
    height: 15px;
    background: url(../images/svg/fi-sr-play.svg);
    display: block;
}

.our-project{
    background: transparent linear-gradient(180deg, rgba(245,251,246) 0%, #78C57700 100%) 0% 0% no-repeat padding-box;
}

.our-project .tab-galery-project{

}

.our-project .tab-galery-project nav ul{
    list-style: none;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-project .tab-galery-project nav ul li{
    display: flex;
    margin: 0 5px;
}

.our-project .tab-galery-project nav ul li a{
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #5D5D5D;
    text-decoration: none;
    padding: 10px;
    border: 1px solid transparent;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}

.our-project .tab-galery-project nav ul li.active a,
.our-project .tab-galery-project nav ul li a:hover{
    color: var(--color1);
    border: 1px solid var(--color1);
}

.list-galery-project{

}

.list-galery-project .tab-item-project{
    
}

.list-galery-project .item-project{
    width: 100%;
    height: 199px;
    background-color: grey;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    display: block;
}

.list-galery-project .item-project img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
}

.list-galery-project .item-project:hover img{
    scale: 1.1;
}

.list-galery-project .item-project .detail-project{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    background: rgba(0,0,0,0.68);
    color: var(--color0);
    justify-content: center;
    opacity: 0;
    transition: all 0.2s linear 0s;
	-webkit-transition: all 0.2s linear 0s;
	-khtml-transition: all 0.2s linear 0s;
	-o-transition: all 0.2s linear 0s;
    z-index: 2;
}

.list-galery-project .item-project .detail-project .ico-zoom{
    width: 35px;
    height: 35px;
    background-color: var(--color0);
    border-radius: 50%;
    color: #393939;
    text-align: center;
    line-height: 32px;
}

.list-galery-project .item-project .detail-project h3{

    font: normal normal 300 13px/20px var(--font_family_1);
    margin: 10px;
}

.list-galery-project .item-project:hover .detail-project{
    opacity: 1;
}

.list-galery-project .item-project .detail-project .localisation{
    font: normal normal 300 11px/17px var(--font_family_1);
    padding: 3px 15px;
    background: url('../images/svg/marker.svg') no-repeat center left;
}

.list-galery-project .btn-primary{
    background: #1DB233 0% 0% no-repeat padding-box;
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #FFFFFF;
    border: 0;
    padding: 10px 22px;
}

.videos{
    /*background: url('../images/svg/bg-videos.svg') no-repeat center;*/
}

.videos .text-description{
    margin-bottom: 91px;
}
.list-videos{
    height: auto;
    min-height: 590px;
    position: relative;
}
.list-videos .item-video{
    width: 100%;
    position: absolute;
}
.list-videos .item-video iframe,
.list-videos .item-video video{
    position: absolute;
    width: 100%;
    min-height: 450px;
    height: auto;
    top: 0;
    left: 0;
}
.list-videos .item-video h3{
    font: normal normal 600 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: var(--color1); /*#1D1D1D;*/
    box-shadow: 0 0.15rem 0.35rem rgb(0 0 0 / 20%);
    border: 1px solid var(--color1);
    padding: 5px;
    /* margin-bottom: 0; */
    position: fixed;
    top: 25px;
    left: 25px;
}
.list-videos .item-video p{
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #5D5D5D;
}

.videos .bloc-btn{
    display: flex;
    margin-bottom: 20px;
    justify-content: flex-end;
    align-items: center;
    letter-spacing: 0;
}

.videos .bloc-btn .show-all-video{
    border-color: var(--color1);
    color:var(--color1);
    background: var(--color0);
    font: normal normal 300 15px/23px var(--font_family_1);
    background: url('../images/svg/flesh-green.svg') no-repeat center right 15px;
    padding: 10px 45px 10px 15px;
    border-radius: 4px;
}

.videos .bloc-btn .show-all-video:hover{
    border-color: var(--color1);
    color:var(--color0);
    background: url('../images/svg/flesh.svg') no-repeat center right 15px var(--color1);

}


.videos .bloc-btn span{
    width: 31px;
    height: 12px;
    cursor: pointer;
    margin-right:  30px;
}
.videos .bloc-btn span.disabled{
    opacity: 0.4;
}
.videos .bloc-btn span.next{
    background: url('../images/svg/ico-arrow-next.svg') no-repeat center;
}
.videos .bloc-btn span.prev{
    background: url('../images/svg/ico-arrow-next.svg') no-repeat center;
    transform: rotate(180deg);
}

.owl-dots , .owl-nav{
    display: none;
}

.demos .tags{
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: table;
    color: var(--color0);
}
.demos .tags li{
    display: inline-block;
    margin: 0 5px;
    background: transparent linear-gradient(112deg, #0FAA6A 0%, #043D32 100%) 0% 0% no-repeat padding-box;
    border-radius: 50px;
    padding: 5px 25px;
}
.contact-us{
    display: block;
    clear: both;
    position: relative;
    padding-top: 90px;
    /* background: url(../images/svg/gradient-contact.svg) no-repeat center left; */
}

.contact-us::before{
    
    width: 89px;
    height: 106px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: "";
    background: url('../images/svg/illus-contact-3.svg') no-repeat center;
}

.cordonne{
    margin: 20px auto 80px;
    font: normal normal normal 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #5D5D5D;
    max-width: 1028px;
}

.cordonne h3{
    font: normal normal 600 20px/30px var(--font_family_1);
    letter-spacing: 0px;
    color: #1D1D1D;
    text-transform: uppercase;
    opacity: 1;
}
.cordonne p{
    margin: 0;
    font: normal normal normal 15px/23px var(--font_family_1);
    padding-left: 25px;
}
.cordonne p.email{
    background: url('../images/svg/ico-email.svg') no-repeat center left;
}
.cordonne p.tel{
    background: url('../images/svg/phone-call.svg') no-repeat center left;
}
.cordonne p.adress{
    background: url('../images/svg/ico-adress.svg') no-repeat top left;
}

.form-contact{
    max-width: 1028px;
    margin: auto;
    background: url('../images/img-contact.png') no-repeat center left;
    padding: 70px 90px;
    position: relative;
}

.form-contact:before {
    position: absolute;
    top: -42px;
    left: -14px;
    content: '';
    width: 28px;
    height: 198px;
    background: url(../images/svg/illus-contact-1.svg) no-repeat center;
}

.form-contact .formulaire-contact{
    width: 536px;
    /* UI Properties */
    background: var(--unnamed-color-ffffff) 0% 0% no-repeat padding-box;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 12px 20px 30px #00000017;
    opacity: 1;
    padding: 20px;
}

.form-contact .formulaire-contact .sepear{
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    width: 80px;
    height: 60px;
    background: var(--color0);
}

.form-contact .formulaire-contact:before{
    position: absolute;
    top: -22px;
    right: -32px;
    content: '';
    width: 80px;
    height: 60px;
    background: url(../images/svg/illus-contact-2.svg) no-repeat center;
}

.form-contact .formulaire-contact:after{
    position: absolute;
    bottom: -22px;
    right: -22px;
    content: '';
    width: 44px;
    height: 44px;
    background: var(--color4);
    transform: rotate(45deg);
}

.form-contact .formulaire-contact h3{
    text-align: left;
    font: normal normal medium 18px/27px var(--font_family_1);
    letter-spacing: 0px;
    color: #464646;
    opacity: 1;
    margin-bottom: 10px;
}
.form-contact .formulaire-contact .body-contact{
    text-align: left;
    font: normal normal 300 15px/23px var(--font_family_1);
    letter-spacing: 0px;
    color: #707070;
    opacity: 1;
    margin-bottom: 30px;
}

.form-contact input[type=text],
.form-contact input[type=tel],
.form-contact input[type=email],
.form-contact textarea {
    border: 1px solid #C2C2C2;
    border-radius: 5px;
    opacity: 1;
    margin-bottom: 20px;
}
.form-contact input[type=text]:focus,
.form-contact input[type=tel]:focus,
.form-contact input[type=email]:focus,
.form-contact textarea:focus {
    border: 1px solid var(--color1);
}

.form-contact button.btn-primary {
    border: 0;
    color: var(--color0);
    padding: 11px 69px 10px 15px;
    background: url('../images/svg/send.svg') #1DB233 center right 15px no-repeat padding-box;
    border-radius: 8px;
    font-size: 15px;
    text-align: left;
}
.page.dark .form-contact button.btn-primary {
    background-color: var(--color0);
    color: var(--color5);
}
.form-contact button.btn-primary:hover{
    background-color: var(--color5);
    color: var(--color0);
}

footer{
    color: var(--color0);
    position: relative;
    padding: 30px 0 0;
    /* background: transparent linear-gradient(120deg, #12CC7F 0%, #096640 100%) 0% 0% no-repeat padding-box; */
    background: url('../images/svg/footer.svg') no-repeat center top;
    position: relative;
    background-size:cover;
}
footer::before{
    background: red;
    position: absolute;
    z-index: 1;
    content: '';
    left: 0;
    bottom: 49px;
    width: 100%;
    height: calc(100% - 49px);
    display: none;
}
footer h4{
    color: var(--color0);
    font-size: 30px;
    margin-bottom: 30px;
}
.liste-link-footer ul{
    list-style: none;
    margin: 30px 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
}
.liste-link-footer ul li{
    padding: 0 15px;
    position: relative;
}
.liste-link-footer ul li::after{
    content: '';
    height: 15px;
    width: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 7px;
}
.liste-link-footer ul li:last-child::after{
    display: none;
}
.liste-link-footer ul li a{
    color: var(--color0);
    text-decoration: none;
}
.liste-link-footer ul li a:hover{
    color: var(--color0);
    text-decoration: underline;
}
.bot-footer{
    padding: 15px 0;
    background: #24ac38 0% 0% no-repeat padding-box;
}
.bot-footer .copyRight{
    color: var(--color6);
    font: normal normal 300 13px/20px var(--font_family_1);
}
.bot-footer .politique{
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
    font: normal normal 300 13px/20px var(--font_family_1);
}
.bot-footer .politique a{
    color: var(--color6);
    text-decoration: none;
}
footer .logo-footer{
    display: flex;
    justify-content: center;
}
footer .rs-footer{
    margin-top: 30px;
}
footer .rs-footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}
footer .rs-footer ul li{
    margin-right: 25px;
}
footer .rs-footer ul li:last-child{
    margin-right: 0;
}
footer .rs-footer ul li a{
    color: var(--color0);
}
footer .rs-footer ul li a svg{
    width: 20px !important;
    height: auto !important;
}
.no-background{
    background: none !important;
}

@media (max-width:990px) {
    .navbar{
        background: var(--color1) !important;
        position: fixed;
        width: 100%;
        z-index: 10;
    }

    /* .navbar-light .navbar-toggler{
        border-color: white;
    } */

    header,
    header.fixed,
    header .top-header{
        display: none;
    }
    /*.about-us .img-about .short-descr-video,
    .about-us::before,
    .about-us::after{
        display: none;
    }*/
    .about-us .img-about .short-descr-video{
        width: 90%;
        height: auto;
        right: 0;
        bottom: 0;
    }

    .service{
        background: var(--color0);
    }

    .service .item-service{
        border: 1px solid #e7e7e7;
    }

    .cordonne{
        margin: 20px;
    }

    .cordonne p{
        margin-bottom: 20px;
    }

    .navbar-light .navbar-brand{
        width: 270px;
    }

    .page.dark .navbar{
        background: transparent linear-gradient(150deg, #000E14 0%, #000E14 100%) 0% 0% no-repeat padding-box;
    }
    .page.dark .navbar-light .navbar-toggler{
        background: var(--color4);
    }

    header {
        padding-bottom: 50px;
        background: none;
    }

    .header {
        padding-top: 40px;
        display: none;
    }
    .logo{
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }
    .slegon {
        padding-top: 50px;
    }
    .slegon h1{
        font-size: 45px;
        line-height: 50px;
    }
    .slegon .text-slegon{
        margin-top: 30px;
        font-size: 18px;
        line-height: 24px;
    }
    .slegon .btn-slegon{
        margin-top: 30px;
    }
    .slegon .btn-slegon a{
        padding: 10px 25px;
    }
    

    .about-us{
        padding: 95px 0 20px;
    }

    .img-about{
        margin-top: 20px;
    }

    .service{
        padding-top: 40px;
    }

    .service::before{
        display: none;
    }

    .form-contact{
        border-radius: 0;
    }
    .contact-us{
        padding-top: 0;
    }
    .img-form-contact{
        background: none;
        width: 170px;
    }
    .img-form-contact img{
        height: auto;
        margin: 0;
    }
    footer{
        padding: 50px 0 0;
    }

    .copyRight{
        text-align: center;
    }

    .bot-footer .politique{
        justify-content: center;
    }

    .bot-footer .rs-footer{
        padding: 0 0 20px;
    }
    .bot-footer .rs-footer ul{
        justify-content: center;
    }
}

@media (max-width:767px) {
    .form-contact .formulaire-contact{
        width: 100%;
    }
    .liste-link-footer ul{
        flex-direction: column;
    }
    .liste-link-footer ul li::after{
        display: none;
    }
    .form-contact{
        padding: 20px;
    }
    .our-project .tab-galery-project nav ul{
        flex-direction: column;
    }
    .service .item-service{
        margin-bottom: 20px;
    }
}

.img-coter-sport{
   width: 70px;
   height: auto;
}
@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px)
    }

    to {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px)
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
        -webkit-transform: translateY(10px);
        -moz-transform: translateY(10px);
        -ms-transform: translateY(10px);
        -o-transform: translateY(10px)
    }

    to {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px)
    }
}
.animated-up-to-down {
    -webkit-animation: up-down 4s ease-in-out infinite alternate-reverse both;
    animation: up-down 4s ease-in-out infinite alternate-reverse both;
}

.brand-logos{
    display: block;
}
.image-set {
    height: 100%;
    width: 100%;
}
.brand-logos .image-file {
    width: 300px;
    height: auto;
    transition: box-shadow .3s ease-in-out;
    border-radius: 50%;
    /*box-shadow: 0 0.15rem 0.35rem rgb(0 0 0 / 20%);*/
}
.brand-logos:hover .image-file {
    background: transparent;
    box-shadow: 0 0 0 36px rgb(29 178 51 / 20%);
}
.top-video{
    width: 100%;
    height: 700px;
    z-index: -1;
    position: absolute;
}
.logo-header{
    width: 50px;
    height: auto;
}