
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;600&family=Raleway:wght@200;400;600;800&family=Roboto:wght@400;500;700&display=swap');


*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Raleway', sans-serif;

}
html{
	scroll-behavior: smooth;
	scroll-padding-top: 10px;
}
 

title h1 h2{
	font-family: 'Roboto', sans-serif;
}

header {
	z-index: 999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	justify-content:space-between;
	align-items: center;
	padding: 15px 200px 15px;
	transition: 0.5s ease;
}
/*
header .brand {
	color: #000;
	font-size: 1.5em;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}*/

header .brand img{
	z-index: 999;
	position: relative;
	height: 50px;	
	display: flex;
}

header .navigation {
	position: relative;
	display: flex;

}

header .navigation .navigation-items a {
	position: relative;
	color: #000; 
	font-size: 1em;
	font-weight: 500;
	text-decoration: none;
	margin-left: 30px;
	transition: 0.3s ease;
	
}

header .navigation .navigation-items a:before {
	content: '';
	position:absolute;
	background: #000; 
	width: 0;
	height: 1px;
	bottom: 0;
	left: 0;
	transition: 0.3s ease;
	

}

header .navigation .navigation-items a:hover:before{
	width: 100%;
}

header.sticky  {
	padding: 5px, 200px;
	background: rgb(255, 255, 255);
	color: #000;
	position:fixed;
	
}





/* ----------------------------------------*/
.prod {
	padding: 20px 200px;
	position: relative;
	background: #fff;
	

}
.title {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-bottom: 70px;
	text-transform: uppercase;
	margin-top: 100px;	
	


}
.title h2{
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	color: rgb(0, 0, 0);
}


.container {
	max-width: 100%;
	margin: 0 5px;


}

.row {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 2.5fr));
	
	align-items: center;
	justify-content: space-between;


}
.row .card p {
	margin-left: 0px;
}

.card{
	flex: 1 1 1rem;
	margin: 10px 20px;
	background: rgba(0, 0, 0, 0);
	box-shadow: 10px 10px 10px rgba(30, 30, 30, 0.722);
	padding: 10px 20px;
	flex-wrap: wrap;
	align-self: center;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	display: flex;

}
.row .card img {
	width: 250px;
	height: 300px;
	justify-content: center;
	display: flex;
	transition: 0.3s ease;
	
}

.row .card img:hover{
	transform: scale(1.1);
}
.card h4{
	margin-top: 15px;
}

.card h4:hover {
	color: rgb(87, 87, 87);
	

}
.card a{
	margin: 10px 0;
	font-size: 1.1em;
	font-weight: 400;
	
	text-decoration: none;
	color: #000;


}
.card .voirDetails{
	position: relative;
	margin-top: 10px;
	align-items: center;
	justify-content: center;
	
}

.card .voirDetails a{
	background: #000;
	padding: 10px 25px;
	color: #fff;
	font-size: 1.1em;
	font-weight: 500;
	text-decoration: none;
	border-radius: 2px;
	transform: translateY(100%);
	transition: 0.5s ease;
}
.card .voirDetails a:hover {
	background: rgba(108, 108, 108, 0.216);
}





.footer {
	background: #000;
	padding: 40px 0;
	color: #fff;
	position: relative;
}
.container-footer{
	max-width: 1270px;
	margin: auto;
	bottom: 0;
}
ul {
	list-style: none;

}
.row-footer{
	display: flex;
	flex-wrap: wrap;
}
.col-footer {
	width: 25%;
	padding: 0 15px;
}
.col-footer h4{
	font-size: 18px;
	text-transform: uppercase;
	margin-bottom: 30px;
	font-weight: 600;
	position: relative;
	letter-spacing: 2px;
}
.col-footer ul li  {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	font-weight: 200;
	display: block;
	margin-bottom: 20px;
	letter-spacing: 2px;
}
.col-footer ul li a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	font-weight: 200;
	display: block;
	letter-spacing: 2px;
}
.col-footer .social-links a{
	display: inline-block;
	font-size: 1.6em;
	background-color: rgba(0, 0, 0, 0);
	margin-right: 40px;
	color: #fff;
	transition: 0.5s ease;

}
.col-footer .social-links a:hover{
	transform: scale(1.3);
}

.container-footer img{
	height: 50px;
	
}


/**************************************************************TABLETTE****************************************/

@media (max-width:1300px) {
	header {
		padding: 12px 20px;
	}
	section {
		padding: 100px 0px;
	}
	.home .media-icons {
		right: 15px;
	}
	header .navigation {
		display: none;
	}
	header .navigation.active {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		display: flex;
		justify-content: center;
		background: rgba(1, 1, 1, 0.5);
	}
	header .navigation .navigation-items a {
		color: #222;
		font-size: 1.2em;
		margin: 20px;
	}
	header .navigation .navigation-items a:before {
		background: #222;
		height: 1px;

	}

	header .navigation.active .navigation-items {
		background: #fff;
		width: 600px;
		max-width: 600px;
		margin: 20px;
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 5px;
		box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);

	}
	.menu-btn {
		background: url(/assets/images/menu.webp) no-repeat;
		background-size: 30px;
		background-position: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: 0.3s ease;
	}
	.menu-btn.active {
		z-index: 999;
		background: url(/assets/images/close.webp) no-repeat;
		background-size: 25px;
		background-position: center;
		transition: 0.3s ease;

	}
	

	/*********************************************************/
	
	
	/*********************************/
	.prod{
		padding: 20px 100px;
	}

	.title {
		margin-bottom: 30px;
		margin-top: 50px;	
	
	
	}
	.card h4{
		font-size: 1.1em;
	}
	.card p{
		font-size: 0.9em;
	}
	.row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(100px, 1.5fr));
		
		align-items: center;
		justify-content: space-between;
	
	}
	
	
	.card{
		flex: 0.5 0.5 0.5rem;
		margin: 5px 10px;
		padding: 5px 10px;
		
	
	}
	.row .card img {
		width: 150px;
		height: 200px;
	}
	
	.card h4{
		margin-top: 5px;
	}
	.card a{
		margin: 5px 0;
		font-size: 0.6em;
		font-weight: 400;
		text-transform: uppercase;
		text-decoration: none;
		color: #000;
	
	
	}
	.voirDetails{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	.card .voirDetails a{
		padding: 10px 10px;
		font-size: 0.6em;
	}
	

/*************************************************************/


/****************************************************************/
.footer {
	padding: 20px 0;
	top: 600px;
}



.col-footer h4{
	font-size: 16px;
	
	margin-bottom: 20px;
}
.col-footer ul li  {
	font-size: 14px;
	margin-bottom: 10px;
}

.container-footer img{
	height: 40px;
	
}


}

/****************************************************IPAD*******************************************************************************/

@media (max-width:850px) {
	header {
		padding: 1px 2px;
	}
	section {
		padding: 20px 0px;
	}
	

	header .navigation.active .navigation-items {
		background: #fff;
		max-width: 600px;
		margin: 20px;
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 5px;
		box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);

	}
	.menu-btn {
		background: url(/assets/images/menu.webp) no-repeat;
		background-size: 30px;
		background-position: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: 0.3s ease;
	}
	.menu-btn.active {
		z-index: 999;
		background: url(/assets/images/close.webp) no-repeat;
		background-size: 25px;
		background-position: center;
		transition: 0.3s ease;

	}
	

	/***************************************************/
	


	

	/*********************************************************/
	.prod{
		top:200px;
		padding: 0 30px;
	}

	.title {
		margin-bottom: 20px;
		margin-top: 20px;	
		font-size: 1.2em;
	
	
	}
	.row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(100px, 2.5fr));
		
		align-items: center;
		justify-content: space-between;

	
	}

	
	
	.card{
		flex: 1.1 1.1 1.1rem;
		margin: 30px 10px;
		padding: 20px 25px;
		
	
	}
	.row .card img {
		width: 120px;
		height: 170px;
	}
	
	.card h4{
		margin-top: 10px;
		font-size: 1em;
	}
	.card a{
		margin: 5px 0;
		font-size: 0.6em;
		font-weight: 400;
		text-transform: uppercase;
		text-decoration: none;
		color: #000;
	
	
	}

.row .card p {
	font-size: 1em;
}
.prod .voirDetails{
	margin-left: 0;
	margin-right: 0;
}

.prod .voirDetails a{
		font-size: 0.4em;
		padding:8px 3px;	}

/*************************************************************/


/****************************************************************/
.footer {
	padding: 20px 0;
	
	width: 100%;
}



.col-footer h4{
	font-size: 9px;
	
	margin-bottom: 20px;
}
.col-footer ul li  {
	font-size: 9px;
	margin-bottom: 10px;
}

.col-footer ul li a{
	font-size: 9px;

}

.container-footer img{
	height: 20px;
	
}

.col-footer .social-links {
	font-size: 0.8em;
}
.col-footer ul iframe {
	width: 100px;
	height: 90px;
}


}


/*******************************************************PHONE******************************************/


@media (max-width:450px) {



	header {
		width: 99%;
		z-index: 111;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
		transition: 0.5s ease;
		padding: 0 0;
	}
	

	
	section {
		padding: 0px 0px;
	}
	

	header .navigation.active .navigation-items {
		max-width: 300px;
		margin: 50px;
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 5px;
		box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);

	}
	.menu-btn {
		background: url(/assets/images/menu.webp) no-repeat;
		background-size: 30px;
		background-position: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: 0.3s ease;
	}
	.menu-btn.active {
		z-index: 999;
		background: url(/assets/images/close.webp) no-repeat;
		background-size: 25px;
		background-position: center;
		transition: 0.3s ease;

	}
	

	/***************************************************/
	
	/*********************************************************/
	.prod{
		padding:0px 10px 0px 0px;
		top: 20px;
		height: 100vh;
		
		
	}

	.title {
		
		font-size: 0.7em;	

	
	
	}
	.row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(200px, 0.5fr));
		justify-content: center;
		align-items: center;
	
	}
	
	
	.card{
		flex: 1 1 1rem;
		margin: 10px 10px;
		padding: 10px 10px;
		justify-content: center;
		align-items: center;
		
	
	}
	.row .card img {
		width: 150px;
		height: 200px;
		
		
	}
	
	.card h4{
		margin-top: 10px;
		font-size: 1.3em;
		margin-left: 20px;
	}
	.row .card p{
		margin-left: 20px;
	}
	.card a{
		margin: 5px 0;
		font-size: 0.6em;
		font-weight: 400;
		text-transform: uppercase;
		text-decoration: none;
		color: #000;
	
	
	}
	


/*************************************************************/

/****************************************************************/
.footer {
	padding: 40px 20px;
	top: 0;
	width: 100%;
	display: flex;
	flex-direction: row-reverse;
	
}

.container-footer{
	max-width: 380px;
	
	bottom: 0;
}

.row-footer{
	display: flex;
	flex-wrap: wrap;
}
.col-footer {
	width: 50%;
	padding: 10px 15px;
}
.col-footer h4{
	font-size: 12px;
	text-transform: uppercase;
	margin-bottom: 20px;
	font-weight: 600;
	position: relative;
	letter-spacing: 2px;
}
.col-footer ul li  {
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 200;
	display: block;
	margin-bottom: 20px;
	letter-spacing: 2px;
}
.col-footer ul li a {
	font-size: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 200;
	display: block;
	letter-spacing: 2px;
}
.col-footer .social-links a{
	display: inline-block;
	font-size: 1.2em;
	background-color: rgba(0, 0, 0, 0);
	margin-right: 20px;
	color: #fff;
	transition: 0.5s ease;

}
.col-footer .social-links a:hover{
	transform: scale(1.3);
}

.container-footer img{
	height: 20px;
	
}

.container-footer  iframe {
	width: 150px;
	height: 100px;
}


}


/*******************************/



@media (max-width:300px) {



	header {
		width: 99%;
		z-index: 111;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
		align-items: center;
		transition: 0.5s ease;
		padding: 0 0;
	}
	

	
	section {
		padding: 0px 0px;
	}
	

	header .navigation.active .navigation-items {
		max-width: 300px;
		margin: 50px;
		padding: 40px;
		display: flex;
		flex-direction: column;
		align-items: center;
		border-radius: 5px;
		box-shadow: 0 5px 25px rgb(1, 1, 1 / 20%);

	}
	.menu-btn {
		background: url(/assets/images/menu.webp) no-repeat;
		background-size: 30px;
		background-position: center;
		width: 40px;
		height: 40px;
		cursor: pointer;
		transition: 0.3s ease;
	}
	.menu-btn.active {
		z-index: 999;
		background: url(/assets/images/close.webp) no-repeat;
		background-size: 25px;
		background-position: center;
		transition: 0.3s ease;

	}
	

	/***************************************************/
	
	/*********************************************************/
	.prod{
		padding: 0px 5px;
		justify-content: center;
		align-items: center;
		
	}

	.title {
		
		font-size: 0.7em;	

	
	
	}
	.row {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(100px, 1.5fr));
		
		align-items: center;
		justify-content: space-between;
	
	}
	
	
	.card{
		flex: 1 1 1rem;
		margin: 10px 10px;
		padding: 10px 10px;
		justify-content: center;
		align-items: center;
		
	
	}
	.row .card img {
		width: 150px;
		height: 200px;
	}
	
	.card h4{
		margin-top: 10px;
		font-size: 1.2em;
		margin-left: 20px;
	}
	.row .card p{
		margin-left: 20px;
	}
	.card a{
		margin: 5px 0;
		font-size: 0.5em;
		font-weight: 400;
		text-transform: uppercase;
		text-decoration: none;
		color: #000;
	
	
	}
	.card .voirDetails{
		margin-top: 10px;
		margin-bottom: 10px;
	}
.card .voirDetails a{
	font-size: 0.6em;
	padding: 10px 10px;
}


/*************************************************************/

	/****************************************************************/
	.footer {
		padding: 40px 20px;
		top: 100vh;
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		
	}
	
	.container-footer{
		max-width: 380px;
		
		bottom: 0;
	}
	
	.row-footer{
		display: flex;
		flex-wrap: wrap;
	}
	.col-footer {
		width: 50%;
		padding: 10px 15px;
	}
	.col-footer h4{
		font-size: 12px;
		text-transform: uppercase;
		margin-bottom: 20px;
		font-weight: 600;
		position: relative;
		letter-spacing: 2px;
	}
	.col-footer ul li  {
		font-size: 12px;
		color: #fff;
		text-decoration: none;
		font-weight: 200;
		display: block;
		margin-bottom: 20px;
		letter-spacing: 2px;
	}
	.col-footer ul li a {
		font-size: 12px;
		color: #fff;
		text-decoration: none;
		font-weight: 200;
		display: block;
		letter-spacing: 2px;
	}
	.col-footer .social-links a{
		display: inline-block;
		font-size: 1.2em;
		background-color: rgba(0, 0, 0, 0);
		margin-right: 20px;
		color: #fff;
		transition: 0.5s ease;
	
	}
	.col-footer .social-links a:hover{
		transform: scale(1.3);
	}
	
	.container-footer img{
		height: 20px;
		
	}
	
	.container-footer  iframe {
		width: 150px;
		height: 100px;
	}
	
	
	}















