@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;
}
:root
{
	--white: #fff;
	--black: #000;
	--blackl: #999;
	--blue: #5968db;
	--bluel: #7d88dd;
	--box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
	--dark-shadow: 0 0 0 100vw rgba(0,0,0,.5);
}
a
{
	text-decoration: none;
}
body
{
	color: var(--black);
	background: #fefefe;
}
section
{
	padding: 25px 100px;
}
.tbtn
{
	display: block;
	width: 100%;
	cursor: pointer;
	border-radius: .5rem;
	margin-top: 5px;
	font-size: 1rem;
	padding: 7px 15px;
	background: var(--blue);
	color: var(--white); 
	text-decoration: none;
}
.tbtn:hover
{
	background: var(--bluel);
	text-decoration: none;
	color: var(--white);
}
.btnn
{
	border: none;
	padding: 6px 10px;
	background: var(--blue);
	text-decoration: none;
	color: #fff;
	border-radius: 5px;
}
.btnn:hover
{
	text-decoration: none;
	background: var(--bluel);
	color: var(--white);
}
.btnns
{
	border: none;
	padding: 4px 7px;
	font-size: .8rem;
	background: var(--blue);
	text-decoration: none;
	color: var(--white);
	border-radius: 2px;
}
.btnns:hover
{
	text-decoration: none;
	background: var(--bluel);
	text-decoration: none;
}
.btn1
{
	border: none;
	padding: 5px 10px;
	background: var(--blue);
	text-decoration: none;
	color: var(--white);
	border-radius: 5px;
	float: right;
	margin-right: 20px;
	cursor: pointer;
}
.btn1:hover
{
	text-decoration: none;
	background: var(--bluel);
}
.accueil
{
	position: fixed;
	height: 100vh;
	width: 100%;
	color: var(--white);
	background: url('../images/img0.jpg') center;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	transition: .3s;
}
.accueil h2
{
	color: var(--white);
	font-size: 3rem;
	font-weight: 600;
	letter-spacing: 2;
	text-transform: uppercase;
}
.accueil a
{
	margin: 10px;
	padding:7px 15px;
	background: var(--white);
	color: var(--blue);
	text-decoration: none;
	border-radius: 30px;
}
.accueil a:hover
{
	margin: 10px;
	padding:7px 15px;
	background: #ddd;
	text-decoration: none;
	border-radius: 30px;
}
.topbar
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 100px;
	width: 100%;
	background: var(--white);
	color: var(--blue);
	box-shadow: var(--box-shadow);
}
.header
{
	position: sticky;
	top: 0; left: 0; right: 0;
	z-index: 1000;
	transition: .5s;
}
.logo
{
	text-transform: uppercase;
	align-items: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 2px;
	display: flex;
	color: var(--blue);
}
.toggle
{
	display: none;
	align-items: center;
	text-align: center;
	padding-right: 10px;
}
.toggle ion-icon
{
	margin-left: .2rem;
	font-size: 1.6rem;
	cursor: pointer;
	color: var(--blue);
}
.search-mobil
{
	display: none;
	z-index: 1000;
	width: 100%;
	padding: 10px;
	background: var(--blue);
}
.space
{
	height: 50px;
	width: 100%;
	display: none;
}
.menu-mobil
{
	position: fixed;
	top: 0; left: -100%;
	z-index: 1000;
	height: 100vh;
	width: 20rem;
	background: var(--white);
	display: flex;
	flex-flow: column;
	transition: .3s;
}
.menu-mobil.active
{
	left: 0;
	box-shadow: var(--dark-shadow);
}
.menu-mobil .nav
{
	margin-top: 80px;
	display: flex;
	flex-flow: column;
}
.menu-mobil .nav a
{
	padding: 10px 20px;
	font-size: 1.1rem;
	color: #111;
	border-bottom: 1px solid #ddd;
	text-decoration: none;
}
.menu-mobil .nav a:hover
{
	color: #555;
	text-decoration: none;
}

.search
{
	position: relative;
	max-width: 400px;
	width: 100%;
	margin: 0 10px;
}
.search label, .search-mobil label
{
	position: relative;
	width: 100%;
}
.search label input, .search-mobil label input
{
	width: 100%;
	height: 40px;
	border-radius: 40px;
	padding: 5px 20px;
	padding-left: 35px;
	font-size: 18px;
	outline: none;
	border: 1px solid var(--blackl);
}
.search label ion-icon , .search-mobil label ion-icon
{
	position: absolute;
	left: 10px;
	top: 10px;
	font-size: 1.3em;
}
.icons
{
	text-align: center;
	align-items: center;
	display: flex;
}
.icons a
{
	text-decoration: none;
}
.icons ion-icon
{
	margin-left: .2rem;
	font-size: 1.6rem;
	cursor: pointer;
	color: var(--blue);
}
.icons span
{
	background: var(--white);
	color: var(--black);
	padding:0 2px;
	border-radius: 4px;

}
@keyframes rotate{
	0%{
		transform: rotate(360deg);
		opacity: 0;
	}
}
.closer
{
	position: fixed;
	top: 20; right: 20px;
	font-size: 2.5rem;
	cursor: pointer;
	z-index: 10000;
	color: #111;
	animation: rotate .4s linear .4s backwards;
}
#closer
{
	position: fixed;
	top: 20; left: 20px;
	font-size: 2.5rem;
	cursor: pointer;
	z-index: 10000;
	color: #111;
	animation: rotate .4s linear .4s backwards;
	display: none;
}
#closer.active
{
	display: block;
}
#closer:hover
{
	color: #555;
}
.closerDom ion-icon
{
	font-size: 1.4rem;
	cursor: pointer;
	color: #000;
}
.closerDom:hover
{
	color: #222;
}
.banner
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	width: 100%;
}
.banner img
{
	width: 100%;
}
.categorie
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10px;
	justify-content: center;
	flex-flow: row;
}
.categorie a
{
	padding: 0px 20px;
	font-size: 1.4rem;
	color: #111;
	text-decoration: none;
}
.categorie a:hover
{
	color: #555;
}
.slider
{
	justify-content: center;
}
.cardBox1
{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 5px;
	padding-top: 30px;
	text-align: center;
}
.cardBox1 .card1
{
	border: 1px solid #ccc;
	padding: 10px;
	width: 100%;
	text-align: center;
	text-decoration: none;
}
.cardBox1 .card1 .name
{
	font-size: 1.1rem;
	font-weight: bold;
	color: var(--black);
}
.cardBox1 .card1 .prix
{
	color: var(--black);
	font-size: 1.2rem;
}
.cardBox1 .card1 .prix-promo
{
	color: #ccc;
	font-size: 0.9rem;
	text-decoration: line-through; 
}
.cardBox1 .card1 img
{
	width: 100px;
}
.cardBox1 .card1 ion-icon
{
	font-size: 1.5rem;
	color: var(--blue);
	padding:10px;
}
.heading h2
{
	font-weight: 600;
	font-size: 1.3rem;
}
.plus
{
	margin-top: 20px;
}
.plus a
{
	text-decoration: none;
	padding: 5px 7px;
	border: 1px solid var(--black);
	border-radius: 30px;
	color: var(--black);
	transition: 0.3s;
}
.plus a:hover
{
	text-decoration: none;
	color: var(--white);
	background: var(--black);
}
.produits .cardBox2
{
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 5px;
	padding-top: 30px;
}

.produits .cardBox2 .card2
{
	background: #eee;
	border-radius: 5px;
	width: 100%;
	padding: 5px;
	transition: .5s;
}
.produits .cardBox2 .card2 a
{
	text-decoration: none;
}
.produits .cardBox2 .card2:hover
{
	background: #fff;
	box-shadow: var(--box-shadow);
}
.produits .cardBox2 .card2 .img
{
	width: 100%;
}
.produits .cardBox2 .card2 img
{
	width: 100%;
}
.produits .cardBox2 .card2 .content
{
	padding: 20px;
}
.produits .cardBox2 .card2 .content .name
{
	font-size: 1rem;
	font-weight: bold;
	padding: 10px 0;
	color: var(--black);
}
.produits .cardBox2 .card2 .content .prix
{
	color: var(--black2);
}

.newsletter
{
	background: #555;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: var(--white);
}
.newsletter form input[type="email"]
{
	width: 100%;
	height: 40px;
	padding: 5px;
	font-size: 18px;
	outline: none;
	border: 1 solid #111;
	margin: 10px 0;
}
.footer 
{
	background: var(--blue);
	color: var(--white);
}
.footer .grid
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 10;
}
.footer .grid .options h2
{
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--white);
	padding-bottom: 10px;
}
.footer .grid .options div
{
	padding-bottom: 10px;
	display: flex;
	align-items: center;
}
.footer .grid .options div ion-icon
{
	width: 20px;
}
.footer .grid .options div a
{
	color: var(--white);
	text-decoration: none;
	transition: .2s;
	padding-left: 5px;
}
.footer .grid .options div a:hover
{
	color: var(--black2);
	text-decoration: none;
}
.footer .grid .options p
{
	color: var(--white);
}
.footer .grid .options form input[type="email"]
{
	width: 100%;
	height: 40px;
	padding: 5px;
	font-size: 18px;
	outline: none;
	border: 1 solid #111;
	margin: 10px 0;
}
.reseaux
{
	width: 120px;
	text-align: center;
	align-items: center;
	display: flex;
	margin: 20px auto;
}
.reseaux ion-icon
{
	margin-left: .2rem;
	font-size: 1.8rem;
	cursor: pointer;
	color: var(--white);
}
.reseaux ion-icon:hover
{
	color: var(--blackl);
}
.reseaux .facebook:hover
{
	color: lightblue;
}
.copyright
{
	background: #111;
	color: #eee;
	text-align: center;
	padding: 20px;
}
.headingb
{
	color: var(--black);
	padding: 20px 100px;
}
.headingb a
{
	text-decoration: none;
	color: var(--black);
}
.headingb a:hover, .headingb span
{
	color: var(--blackl);
}
.catBox
{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 10px;
	overflow-x: scroll;
	padding: 20px;
}
.catBox .cat
{
	width: 100%;
	min-width: 100px;
	padding: 20px 10px;
	text-align: center;
	align-items: center;
	text-decoration: none;
	color: #111;
	border: 1px solid #111;
}
.catBox .cat img
{
	width: 40px;
	padding-bottom: 15px;
}
.catBox .cat p
{
	font-size: 1.2rem;
	font-weight: bold;
}

/*A propos*/
.propos
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 20px;
	align-items: center;
	align-content: center;
	justify-content: center;
}
.propos img
{
	width: 100%;
}
.propos .content p:first-child
{
	font-size: 1.3rem;
	padding: 10px 0;
	color: var(--black2);
}
.propos .content h2
{
	font-size: 1.6rem;
}
.propos .content p
{
	padding: 10px 0;
	position: relative;
	color: var(--black2);
}
.servicesBox
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	padding-top: 30px;
}
.servicesBox .content
{
	width: 100%;
	min-width: 200px;
	padding: 20px;
	text-align: center;
	align-items: center;
	text-decoration: none;
	color: #111;
	border: 1px solid #111;
}
.servicesBox .content img
{
	width: 100px;
	padding-bottom: 15px;
}
.servicesBox .content h3
{

}
.servicesBox .content p
{
	padding: 20px 0;
	color: var(--black2);
}
.manager
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;

}
.manager .managerBox
{
	width: 100%;
	background: var(--light-bg);
	text-align: center;
	align-content: center;
	padding: 50px;
	border-radius: 10px;
	transition: .5s;
}
.manager .managerBox:hover
{
	box-shadow: var(--box-shadow);
}
.manager .managerBox img
{
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin-bottom: 20px;
}
.manager .managerBox h2
{
	padding-bottom: 5px;
}
.manager .managerBox span
{
	font-size: .9rem;
	color: var(--black2);
	padding-top: 20px;
}
.manager .managerBox p
{
	font-size: .9rem;
	color: var(--black2);
	padding-top: 20px;
}

/*single produit*/
.single-prod
{
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-gap: 20px;
}
.single-prod img
{
	width: 100%;
	max-width: 300px;
	display: flex;
	justify-content: center;
	align-content: center;
}
.single-prod .details p
{
	color: var(--black2);
	margin: 10px 0;
}
.single-prod .details h1
{
	font-size: 2.7rem;
}
.single-prod .details h4
{
	font-size: 1.2rem;
	color: var(--black2);
	margin: 20px 0;
}
.single-prod .details input
{
	font-size: 20px;
	width: 50px;
	height: 40px;
	padding-left: 10px;
	margin-right: 10px;
	border: 1px solid #111;
}
.single-prod .details input:focus
{
	outline: none;
}
.single-prod .details h3
{
	margin-top: 20px;
}

/*table-prod*/
.table-prod
{
	max-width: 1200px;
	width: 100%;
	text-align: center;
}
.table-prod table
{
	width: 100%;
	text-align: center;
}
.table-prod thead
{
	background: #ddd;
}
.table-prod th
{
	padding: 10px;
	font-weight: normal;
}
.table-prod td
{
	padding: 10px 5px;
}
/*panier*/
.panierT table
{
	width: 100%;
	border-collapse: collapse;
}
.panierT table thead
{
	border-bottom: 3px solid #eee;
}
.panierT table .prod-info
{
	display: flex;
	flex-wrap: wrap;
}
.panierT table .prod-info img
{
	width: 80px;
	margin-right: 10px;
	background: var(--grey);
}
.panierT th
{
	text-align: left;
	padding: 10px;
	background: var(--light-bg);
	font-weight: normal;
}
.panierT td
{
	padding: 10px 5px;
}
.panierT td input
{
	width: 45px;
	height: 30px;
	padding: 5px;
}
.prix-total
{
	display: flex;
	justify-content: flex-end ;
}
.prix-total table
{
	border-top: 3px solid #eee;
	width: 100%;
	max-width: 450px;
}
td:last-child
{
	text-align: right;
}
th:last-child
{
	text-align: right;
}
/*les form*/
.formBody
{
	position: relative;
	height: 100vh;
	align-items: center;
	background: #eee;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}
.formBody .formHead h1
{
	font-size: 2.2rem;
}
.formBox
{
	margin-top: 40px;
	padding: 25px;
	max-width: 380px;
	width: 100%;
	background: var(--white);
	border-radius: 10px;
	box-shadow: var(--box-shadow);
}
.formBox form input,
.formBox form select
{
	width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 1px solid #ccc;
	padding-left: 10px;
	margin-bottom: 20px;
	font-size: 1rem;
}
.formBox form label
{
	color: var(--black2);
	font-size: .9rem;
}
.formBox form button
{
	width: 100%;
	height: 40px;
	border-radius: 5px;
	border: 1px solid #ccc;
	margin-bottom: 20px;
	font-size: 1rem;
	cursor: pointer;
}
.formBox a
{
	text-decoration: none;
	color: var(--black);
}
.formBox hr
{
	margin: 20px 0;
	color: var(--blackl);
}
.formBox .bout
{
	display: inline-block;
	text-decoration: none;
	color: var(--white);
	background: var(--blue);
	width: 100%;
	height: 40px;
	padding: 10px;
	border-radius: 5px;
	border: none;
	font-size: 1rem;
	cursor: pointer;
	transition: 0.5s;
}
.formBox .bout:hover
{
	background: #333;
}
.top-ouvrier
{
	padding: 30px;
}
.cardBox3
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	padding-top: 30px;
}
.cardBox3 a
{
	text-decoration: none;
	color: var(--blackl);
	width: 100%;
	border-radius: 10px;
	border: 1px solid #eee;
	transition: .5s;
}
.cardBox3 a:hover
{
	text-decoration: none;
	color: var(--black);
	background: var(--white);
	box-shadow: var(--box-shadow);
}
.cardBox3 a img
{
	width: 100%;
}
.cardBox3 a .content
{
	padding: 15px;
}
.cardBox3 a .name
{
	font-weight: 500;
	font-size: 1.2rem
}
.payeBody
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
	align-content: center;
	align-items: center;
}
.payeBody img
{
	width: 100%;
}

.cardBox4
{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	padding-top: 30px;
}
.cardBox4 .card4
{
	position: relative;
	background: var(--white);
	border-radius: 5px;
	cursor: pointer;
	box-shadow: var(--box-shadow);
}
.cardBox4 .card4 img
{
	width: 100%;
}
.cardBox4 .card4 .content
{
	padding: 20px;
}
.error
{
	margin-top: 10px;
	padding: 7px;
	border: 1px solid red;
	border-radius: 10px;
	background-color: rgb(253, 204, 204);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	text-align: center;
}
.succè
{
	max-width: 400px;
	width: 100%;
	background: #fff;
	margin: 10px;
	border-radius: 10px;
	padding:70px 30px;
	position: fixed;
	z-index: 999;
	top: 50%;
	left: 50%;
	right: 50%;
	transform: translate(-50%, -50%);
	box-shadow: var(--dark-shadow);
	transition: 1s;
}
.succè.active
{
	display: none;
}
.succè button
{
	width: 15%;
	border: none;
	padding: 5px 7px;
	text-align: center;
	background: var(--blue);
	color: var(--white);
	border-radius: 5px;
	transition: 0.5s;
}
.succè button:hover
{
	background: var(--bluel);
}
.topcontact
{
	width: 100%;
}
.statis
{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 20px;
}
.statis div
{
	padding: 20px;
	border-radius: 20px;
	box-shadow: var(--box-shadow);
	text-align: center;
}
.statis div .nbr
{
	font-size: 2.2rem;
	color: var(--blackl);
}
.statis div .nbrText
{
	font-size: 1rem;
}
@media (max-width: 1100px)
{
	.search
	{
		position: relative;
		max-width: 350px;
		width: 100%;
		margin: 0 10px;
	}
	.cardBox1
	{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.produits .cardBox2
	{
		display: grid;
		grid-template-columns: repeat(4, 1fr);
	}
	.cardBox3
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.footer .grid
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 904px)
{
	.topbar
	{
		padding: 10px;
	}
	.propos
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}
	.cardbox
	{
	    display: contents;
	}
	.categorie
	{
		display: none;
	}
	.toggle
	{
		display: block;
	}
	
}
@media (max-width: 768px)
{
	section
	{
		padding: 50px;
	}
	.headingb
	{
		padding: 20px 50px;
	}
	.servicesBox
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.single-prod
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.single-prod .details h1
	{
		font-size: 2rem;
	}
	.formBody
	{
		position: relative;
		height: 100vh;
		text-align: center;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.formBody .formBox
	{
		max-width: 100%;
		width: 100%;
	}
	.table-prod
	{
		overflow-y: scroll;
	}
	.search
	{
		display: none;
	}
	.search-mobil
	{
		display: block;
	}
}
@media (max-width: 650px)
{
	section
	{
		padding: 20px;
	}
	.headingb
	{
		padding: 20px;
	}
	.topbar
	{
		padding: 10px;
	}
	.cardBox1
	{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.produits .cardBox2
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.footer .grid
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.servicesBox
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
	.manager
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}
	.cardBox3
	{
		display: grid;
		grid-template-columns: repeat(1, 1fr);
	}
}
@media (max-width: 450px)
{
	.produits .cardBox2
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.cardBox1
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.space
	{
		display: block;
	}
}