@import url('https://fonts.googleapis.com/css?family=Merriweather&display=swap');
@import url('http://fr.allfont.net/allfont.css?fonts=droid-sans');


*{
	font-family: 'Merriweather', serif;
}

.carousel-item{
	height:450px;
}
.carousel-image{
	background-size:cover;
	background-position:center; 
}
.carousel-image-1{
	background-image:url('../img/home.jpg');
	background-size:cover;
	background-position:center; 
}
.carousel-image-2{
	background-image:url('../img/01-AdobeStock_241799670-RobinetNew.jpeg');
	background-size:cover; 
	background-position:center;
}
.carousel-image-3{
	background-image:url('../img/02-Fotolia_32902779_XS-StationNew.jpeg');
	background-size:cover; 
	background-position:center; 
}
.carousel-image-4{
	background-image:url('../img/03-Fotolia_44054420_XS-DigesteurNew.jpeg');
	background-size:cover; 
	background-position:center; 
}
.carousel-image-5{
	background-image:url('../img/04-AdobeStock_190089792-ESavingNew.jpeg');
	background-size:cover; 
	background-position:center; 
}
.carousel-image-6{
	background-image:url('../img/AdobeStock_40970806_Panneau Solaire PV.jpeg');
	background-size:cover; 
	background-position:center; 
}
.contact{
	background-image: url('../img/bg.jpg');
	background-attachment: fixed;
	background-size:cover; 
	background-position:center; 
}
.card-deck p{
	font-weight: bold;
}
.cards{
	padding: 30px 0;
}
.image{
	position: relative !important;
	background-image: url('../img/2.jpg');
	min-height: 240px;
	background-repeat: no-repeat;
	background-size: cover;
}
.image1{
	position: relative !important;
	background-image: url('../img/7.jpg');
	min-height: 240px;
	background-repeat: no-repeat;
	background-size: cover;
}
.image2{
	position: relative !important;
	background-image: url('../img/10.jpg');
	min-height: 240px;
	background-repeat: no-repeat;
	background-size: cover;
}
.inner{
	position: absolute!important;
	bottom: 0 !important;
	width: 100%;
}
.cont{
	width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box{
	position: relative;
	width: 300px;
	height: 400px;
	background: #000;
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.box_sm{
	width: 220px;
	height: 300px;
}
@media screen and (max-width: 575px){
	.cont{
		justify-content: center;
	}
	.box{
		box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
	}
	.test{
		max-width: 100%;
	}
}
@media screen and (max-width: 767px){
	.cont{
		justify-content: center;
	}
	.test{
		max-width: 100% !important;
		opacity: .7;
	}
}


.box .imgbox{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.box .imgbox img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5;
}
.box:hover .imgbox img{
	opacity: 0;
}
.box .content{
position: absolute;
bottom: 20px;
left: 10%;
width: 80%;
height: 60px;
/*background: #fff;*/
opacity: .7;
transition: 0.5s;
overflow: hidden;

padding: 20px;
box-sizing: border-box;
}

.box:hover .content{
	width: 100%;
	height: 100%;
	bottom: 0;
	left: 0;
	background: #fff !important;
	opacity: 1;
}
.box .content h3{
	margin: 0;
	padding: 0;
	font-size: 20px;
}
.box .content p{
	margin: 10px 0 0;
	padding: 0;
	opacity: 0;
	line-height:1.2em;
	transition:0.5s;
}
.box:hover .content p{
opacity: 1;
transition-delay: 0.5s;
}
.bg_about_us{
	background-color: #FCFFFC;
}
.list-group-item.active{
	background-color: #14F82F !important;
	color: white !important;
	border-color: #14F82F !important;
}
/**/
a.neon{
	position: relative;
	display: inline-block;
	padding: 15px 30px;
	color: #14F82F;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 14px;
	text-decoration: none;
	overflow: hidden;
	transform: 0.2s;

}
a.neon:hover{
	color: #fff;
	background:#14F82F;
	box-shadow: 0 0 10px #14F82F, 0 0 40px #14F82F,0 0 80px #14F82F;
	transition-delay: 1s;
	text-decoration:none;
}
a.neon span {
	position: absolute;
	display: block;
}
a.neon span:nth-child(1){
	top: 0;
	left: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg,transparent,#14F82F);
}
a.neon:hover span:nth-child(1){
	left:100%;
	transition: 1s;
}

a.neon span:nth-child(3){
	bottom: 0;
	right: -100%;
	width: 100%;
	height: 2px;
	background: linear-gradient(270deg,transparent,#14F82F);
}
a.neon:hover span:nth-child(3){
	right:100%;
	transition: 0.1s;
	transition-delay: 0.5s;
}

a.neon span:nth-child(2){
	top: -100%;
	right: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(180deg,transparent,#14F82F);
}
a.neon:hover span:nth-child(2){
	top:100%;
	transition: 0.1s;
	transition-delay: 0.25s;
}

a.neon span:nth-child(4){
	bottom: -100px;
	left: 0;
	width: 2px;
	height: 100%;
	background: linear-gradient(360deg,transparent,#14F82F);
}
a.neon:hover span:nth-child(4){
	bottom:100%;
	transition: 0.1s;
	transition-delay: 0.75s;
}

.cards{
	padding: 0 !important;height: 280px !important;
	max-height: 400px !important;
}

.cards .boxx:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #14F82F;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.5s;
}
.cards .boxx:hover:before{
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform 0.5s;
}
/*.cards .boxx h2{
	position: absolute;
	left: 40px;
	top: 60px;
	font-size: 4em;
	font-weight: 800;
	z-index: 1;
	opacity: 0.2;
	transition: 0.5s
}*/
.cards .boxx .bt{
	display: none;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 5;
	transition: 0.5s
}
.cards .boxx:hover .bt{
	display: block;
}
.cards .boxx:hover h2{
	opacity: 1;
	color: #fff;
	transform: translateY(-40px);
}
.cards .boxx p{
	position: relative;
	top: 20%;
	font-size: 20px;
	z-index: 2;
	color:#333;
	transform: 0.5s 
}
.cards .boxx:hover p{
	color: #fff;
	font-size: 20px;
}


.about .ebox div:first-child .img
{
	width: 100px;
	height: 100px;
	border:none;
	border-radius: 50%;
	background-color: #fff;
	position: relative;
	border: 3px solid #14F82F;
	transition: background-color .3s; 
}
.about .ebox div:first-child .img i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #111;
	transition: color .3s; 
}
.about .ebox div:first-child .img:hover
{
	background-color: #14F82F;
	border: none;
}
.about .ebox div:first-child .img:hover i
{
	color: #fff;
}
.bouton{
	background-color: #14F82F!important;
	color:#fff!important;

}
.navbar-light .navbar-nav .active>.nav-link{
	color:#14F82F!important;
}


/**/

a.reverse{
	position: relative;
	padding: 20px 40px;
	border: 2px solid #475a6d;
	font-size: 2em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	/*color: #475a6d;*/
	letter-spacing: 4px;
	transition: 0.5s;

}
a.reverse:hover{
color: #475a6d;
}
a.reverse:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #475a6d;
	z-index: -1;
	transform-origin: left;
	transition: transform 0.5s ease;
	transform: scaleX(1);
}
a.reverse:hover:before{
	transform-origin: right;
	transition: transform 0.5s ease;
	transform: scaleX(0);
}
 span i.fab:hover{
	color: #14F82F;
	cursor: pointer;
}
.angle_down
{
	font-size: 35px !important;
	color: #fff !important;
}
.angle_down:hover
{
	font-size: 40px;
	text-decoration: none;
}
/**/
#panel,#panel1,#panel2,#panel3,#panel4,#panel5,#panel6,#panel7,#panel8,#panel9{
  display: none;
}
.hv:hover{
	box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.hv .bouton{
	cursor: pointer;
}
.img-p
{
	height: 150px;
	width: 100%;
}
.color-green{
	color:#14F82F;
}

/**/
.test{
	max-width: 70%;
	min-height: 100%;
	background-color: white;
	color: rgb(0,0,0);
	font-size: 16px;
	padding: 12px;
	margin: 2px;
	opacity: .7;
}
.text
{
	font-style: italic;
	font-size: 14px;
	text-align: justify;
	padding-top: 10px;
}
.h-0
{
	height: auto !important;
}
.part{
	width: auto;
	height: 100%;
}