/*********/
/*GENERAL*/
/*********/

body {
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	color: white;
	min-width: 300px;
}
h1 {
	font-size: 48px;
	font-weight: 700;
	text-align: center;
}
h2 {
	font-weight: 400;
	margin-bottom: 60px;
	text-align: center;
}

p{
	margin: 0px;
	padding: 0px;
}

a{
	text-decoration: none;
	color: initial;
}

a:hover{
	text-decoration: none;
	color: initial;
}

.logo {
	height: 100px;
	font-size: 40px;
	text-align: right;
	line-height: 20px;
}

.sous_h1{
	color: #B68349;
    font-size: 20px;
}

/*maxwidth + centering*/
.limitedWidthBlockContainer {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.logo.limitedWidthBlock{
	width: 80%;
}

.limitedWidthBlock {
	width: 90%;
	max-width: 1400px;
	padding: 0 5%;
}

.blue{
	background-color: var(--secondary-color);
}

.white{
	color: var(--secondary-color);
	background-color: white;
}

.fin{
	flex-direction: column;
    align-content: center;
    align-items: center;
}

.fin p{
	font-size: 27px;
	margin-bottom: 40px;
}

.fin button{
	margin: auto;
    font-size: xx-large;
    text-align: center;
    display: flex;
    color: white;
    background-color: red;
    padding: 5%;
    border: none;
    border-radius: 10px;
    margin-bottom: 40px;

}

/*Colors*/
:root {
	--main-color: #3498db;
	--secondary-color: #2c3e50;
	--text-color: #3d4c68;
	--footer-text-color: #a6b0b3; 
	--footer-main-color: #3d424f; 
	--footer-secondary-color: #2d2f3e;
	/*background-color: var(--main-color);*/
}




/********/
/*Header*/
/********/

/*informations*/
.informations {
	font-size: 13px;
	background-color: var(--main-color);
}
.informations img {
	height: 17px;
}
.informations ul {
	display: flex;
	padding-left: 0;
}
.informations ul li {
	display: flex;
	list-style: none;
	margin-right: 36px;
}
.informations__phone,
.informations__mail {
	margin-right: 10px;
}

/*menu*/
.menu {
	background-color: white;
	height: 15vh;
	min-height: 150px;
}
.menu .limitedWidthBlock {
	display: flex;
	justify-content: space-between;
}

.logo{
	display: flex;
	align-items:center ;

}

.menu a {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.menu nav {
	display: flex;
}
.menu nav ul {
	display: flex;
	margin: 0;
}
.menu nav ul li {
	list-style: none;
	margin-left: 50px;
	color: var(--text-color);
}
.menu nav ul li:hover {
	font-weight: 600;
	color: #3498db !important;
}

/*banniere*/
.banniere {
	width: 100%;
	height: 85vh;
	object-fit: cover;
	display: flex;
}




/******/
/*Main*/
/******/

main {
	background-color: var(--main-color);
}

/*items*/
.items {
	margin: 5% 2%;
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	font-size: 20px;
	width: 100%;
}

.items_e {
	margin: 5% 2%;
    justify-content: space-around;
    flex-wrap: wrap;
    display: flex;
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.items a {
	width: 21%;
	text-decoration: none;
	color: unset;
}
.items a:hover article {
	box-shadow: rgba(42, 18, 206, 0.9) 0 0 22px 6px;
}
.items article {
	background-color: var(--secondary-color);
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
	padding-top: 25px;
	width: 100%;
	border-radius: 10px;
}
.items article img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
}
.items article h3 {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
.items article p {
	text-align: center;
	padding-left: 23px;
	padding-right: 23px;
	box-sizing: border-box;
	overflow: hidden;
	text-overflow: ellipsis;

	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	white-space: normal;
	font-size: 15px;
}

.i_p{
	display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    text-shadow: 0px 0px 10px red;
}

.i_p i {
    font-size: 50px;
    margin: 10px;
}

.ul_li{
	display: flex;
	justify-content: center;
}

.ul_li ul{
	width: 40%;
}

.cart__order__form__question {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.cart__order__form__question input{
    border-radius: 13px;
    border: 0;
    height: 26px;
    margin-top: 4px;
}

.cart__order__form__question textarea {
    border-radius: 13px;
    border: 0;
    margin-top: 4px;
    height: 70px;
}

.cart__order__form__question p {
    margin: 0;
    color: #fbbcbc;
    font-size: 15px;
    margin-left: 8px;
}

form.cart__order__form {
    width: 60%;
}

.items_e button{
	font-size: large;
    color: white;
    background-color: red;
    padding: 5%;
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 40px;
}




/********/
/*Footer*/
/********/

footer {
	color: var(--footer-text-color);
	display: flex;
	flex-direction: column;
	font-size: 14px;
}
footer .footerMain,
footer .footerSecondary {
	width: 100%;
}

/*footerMain*/
.footerMain {
	background-color: var(--footer-main-color);
	padding: 50px 0;
}
.footerMain .limitedWidthBlock {
	display: flex;
	justify-content: space-between;
}
.footerMain .limitedWidthBlock div {
	display: flex;
	align-items: center;
}

/*footerSecondary*/
.footerSecondary {
	background-color: var(--footer-secondary-color);
	padding: 25px 0;
}




/***************/
/*Media queries*/
/***************/

@media (max-width: 991.98px) {
	.informations ul {
		display: flex;
		justify-content: space-around;
	}
	.items a {
		width: 42%;
	}
	.footerMain .limitedWidthBlock {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.footerSecondary .limitedWidthBlock p {
		text-align: center;
	}
}

@media (max-width: 575.98px) { 
	h1{
		font-size: 30px;
	}
	.informations ul {
		flex-direction: column;
		align-items: center;
	}
	.informations ul li{
		margin-bottom: 14px;
		margin-right: 0;
	}
	.menu .limitedWidthBlock {
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	.menu nav ul {
		padding: 0;
		line-height: 10px;
	}
	.menu nav ul li{
		margin-left: 20px;
	}
	.menu nav ul a:first-child li {
		margin-left: 0;
	}
	.items a {
		width: 75%;
	}

	.ul_li{
		flex-direction: column;
	}

	.ul_li ul{
		width: 80%;
	}
}


