@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family: 'Poppins', sans-serif;
}

html
{
	scroll-behavior: smooth;
}

body
{
	min-height:1000px; 
}

header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 40px 100px;
	z-index: 1000;
	transition: 0.6s;
}

.header_logo {
	display: inline-block;
	margin-left: 5%;
	width: 10%;
}

.header_menu {
	display: inline-block;
	width: 75%;
}

header.sticky
{
	padding: 5px 100px;
	background: #fff;
	border-bottom: 1px solid rgba(0,0,0,.1); 
}

.logo img
{
	width: 80px;
}

header ul
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

header ul li
{
	position: relative;
	list-style: none;
}

header ul li a
{
	position: relative;
	margin: 0 15px;
	text-decoration: none;
	color: black;
	letter-spacing: 2px;
	font-weight: 300;
	transition: 0.6s;
	font-weight: bolder;
}

header.sticky .logo,
header.sticky ul li a
{
color: #000;
}

.banner
{
	position: relative;
	width: 100%;
	min-height: 100vh;
	background: url(/website_cfn/static/img/foret3.jpg);
	background-size: cover;
	display:flex;
	justify-content: center;
	align-items: center;

}

.banner h2
{
	color: #fff;
	font-size: 80px;
	text-transform: uppercase;
	text-align: center;
	line-height: 1em;
}

.banner h2 span
{
	color: #196F3D;
}

.banner li
{
	list-style-type: none;
}


.sec
{
	background: #fff;
	/*min-height: 100vh;*/
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 20px 20px 20px;
}

.sec .content
{
	position: relative;
	text-align: center;
	width: 100%;
}

.sec .corps
{
	position: relative;
	text-align: left;
	width: 100%;
}

.mxw800p
{
	max-width: 800px;
	margin: 0 auto;
	margin-top: 65px;
}

h3
{
	font-size: 40px;
	font-weight: 200;
	margin-bottom: 10px;
}

p
{
	position: relative;
	font-size: 18px;
	font-weight: 300;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.btn
{
	position: relative;
	display: inline-block;
	padding: 10px 30px;
	background: #000;
	text-decoration: none;
	color: #fff;
}

.produits
{
	/*position: relative;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-gap: 30px;
	*/
	max-width: 75%;
	margin: auto;
	margin-top: 50px;
}

.produits .box
{
	width: 90%;
	margin: 0 auto;
	background: #fff;
	padding: 20px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.produits .box h2
{
	font-size: 22px;
	margin-bottom: 10px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 0px;
}

.produits .box .iconBx
{
	margin-top: 5px;
	margin-top: 5px;
    width: 40%;
    display: inline-block;
	vertical-align: top;
}

.produits .box .iconBx img
{
	max-width: 125px;
	margin-bottom: 15px;
	border-radius: 10px;
}

.produits .box .productDescBox {
	width: 59%;
	display: inline-block;
	border: 1px solid #666666;
	border-radius: 10px;
}

.productDescBox .product_table {
	width: 90%;
	text-align: left;
}

.productDescBox .product_table td {
	padding: 10px;
	vertical-align: top;
	width: 50%;
}

.product_image {
	max-width: 120px;
    border-radius: 10px;
    display: grid;
    margin-left: 10px;
}


.contact
{
	background: #000;
}

.contact h3, 
.contact p
{
	color: #fff;
}

.contactForm
{
	position: relative;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
}

.contactForm form
{
	width: 100%;
}

.contactForm .row100
{
	display: flex;
	width: 100%;
}

.contactForm .row100 .inputBx50
{
	width: 50%;
	margin: 0 20px;
}

.contactForm .row100 .inputBx100
{
	width: 100%;
	margin: 0 20px;
}

.contactForm .row100 input,
.contactForm .row100 textarea
{
	position: relative;
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	background: transparent;
	width: 100%;
	padding: 10px 0;
	outline: none;
	font-size: 18px;
	font-weight: 300;
	margin: 20px 0;
	resize: none ;
}

.contactForm .row100 textarea
{
	height: 100px;
}

.contactForm .row100 input::placeholder,
.contactForm .row100 textarea::placeholder
{
	color: rgba(255,255,255,0.5);
}

.contactForm .row100 input[type="submit"]
{
	background: #fff;
	color: #000;
	max-width: 130px;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	font-weight: 500;
}

.container
{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	padding: 30px;
}

.container a
{
	position: relative;
	width: 300px;
	height: 75px;
	margin: 10px 0px;
	font-size: 28px;
	color: #000;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	transition: 0.5s;
	padding: 0 120px;
}

.container a:hover
{
	color: #fff;
}

.container a:before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: url(/website_cfn/static/img/GreenSpot.png);
	background-size: cover;
	transform-origin: left;
	transition: 0.5s;
}

.container a:nth-child(2):before
{
	background: url(/website_cfn/static/img/GreenSpot2.png);
	background-size: cover;
}

.container a:nth-child(3):before
{
	background: url(/website_cfn/static/img/GreenSpot3.png);
	background-size: cover;
}

.container a:nth-child(4):before
{
	background: url(/website_cfn/static/img/GreenSpot4.png);
	background-size: cover;
}

.container a:hover:before
{
	width: 100%;
}

.container a span
{
	position: relative;
	z-index: 1;
}

.toggle
{
	display :none;
}

@media (max-width: 992px)
{
	.toggle
	{
		display: block;
		position: relative;
		width: 30px;
		height: 30px;
		cursor: pointer;
	}
	.toggle:before
	{
		content: '';
		position: absolute;
		top: 4px;
		width: 100%;
		height: 2px;
		background: #000;
		z-index: 1;
		box-shadow: 0 10px 0 #000;
		transition: 0.5s;
	}
	.toggle:after
	{
		content: '';
		position: absolute;
		bottom: 4px;
		width: 100%;
		height: 2px;
		background: #000;
		z-index: 1;
		transition: 0.5s;
	}

	header,
	header.stciky
	{
	 	padding: 5px 50px;
		background: #fff;
	}

	header ul
	{
		position: absolute;
		top: 50px;
		left: 0;
		width: 100%;
		height: 100vh;
		text-align: center;
		overflow: auto;
		background: #fff;
		visibility: hidden;
		opacity: 0;
	}

	header.active ul
	{
		visibility: visible;
		opacity: 1;
		display: block;
		padding-top: 20px;
	} 

	header.active ul li a
	{
		margin: 10px 0;
		font-size: 20px;
		display: inline-block;
		}

	header .logo,
	header ul li a 
	{
		color: #000;
	}

	.banner
	{
		background-position: center;
	}

	.banner h2
	{
		font-size: 60px;
		padding: 0 50px;
	}

	.produits .box
	{
		width: 100%;
	}

	.row100
	{
		flex-direction: column;
	}

	.contactForm .row100 .inputBx50,
	.contactForm .row100 .inputBx100
	{
		width: 100%;
		margin: 0;
	}

	.container
	{
	display: block;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	padding: 30px;
	}
}

.logoCFN
{
	width: 100%;
	height: auto;
    justify-content: center;
    display: flex;
}

.legal_mentions {
	text-decoration: none;
    list-style-type: none;
    text-align: center;
}

.legal_mentions li {
	margin-bottom: 15px;
}