.page-headline {
	display: flex;
	justify-content: center;
	margin: 50px 0px;
}

.page-headline h1 {
	border-bottom: 3px solid #FC594A;
}


/* abonnement */ 

.subscription {
	border: solid #5BBE83 2px;
	border-radius: 10px;
	margin-top: 30px;
}

.green-box {
	display: flex;
	background-color: #5BBE83;
	height: 200px;
	box-shadow: inset 0px 0px 50px 20px #11efff65;
	border-radius: 8px 8px 0px 0px;
}

.green-box img {
	width: auto;
	max-height: 200px;
    object-fit: cover;
    border-radius: 10px 0px 0px 0px;
}

.sub-details {
	padding: 20px 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.sub-details ul {
	list-style: square;
	line-height: 1.5;
	font-size: 18px;
}

.mybox-details {
	display: flex;
	width: 100%;
	justify-content: center;
	padding: 30px 0px;
}

.mybox-left {
	width: 100%;
	padding: 0px 30px;
}

.mybox-left h2 {
	position: relative;
	left: 25px;
}

.mybox-right {
	width: 100%;
	padding: 0px 30px;
}

.mid-line {
	border-right: 4px solid #FC594A;
}

.hidden-text {
	visibility: hidden;
}

.meal-card {
	display: flex;
	border-radius: 10px;
	border: 2px solid #5BBE83;
	margin: 25px 15px;
}

.meal-card-img {
	width: 100px;
	height: 100px;
	overflow: hidden;
}

.meal-card-img img {
	width: 100%;
	display: block;
	border-radius: 8px 0px 0px 8px;
	object-fit: cover;	
}

.meal-info-top {
	padding: 8px 0px 0px 10px;
}

.meal-info-top p {
	margin-bottom: 5px;
}

.readmore:hover {
	text-decoration: underline;
}

.meal-info-bottom {
	display: flex;
	justify-content: flex-start;
	padding: 10px 0px 0px 10px;
	align-items: center;
}

.meal-info-bottom span {
	padding: 0px 10px;
	color: grey;
}

.allergenes img {
	max-width: 28px;
}

.modification {
	display: flex;
	justify-content: center;
	position: relative;
	top: 8%;
}

.modification a {
	display: block;
}

.btn-dis {
	display: none;
}


/* Suggestions */

.discover h2 {
	text-align: center;
	margin-bottom: 30px;
}

.carte-verte {
	background-color: #5BBE83;
	height: 450px;
	border-radius: 30px;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	box-shadow: inset 0px 0px 50px 20px #11efff40;
}

.carte-recette {
	border-radius: 20px;
	width: 25%;
	background-color: #FFF;
}

.titre-plat {
	font-weight: 600;
}

.description {
	padding: 15px;
}

.carte-recette img {
	max-width: 100%;
	border-radius: 20px 20px 0px 0px;
}

.info-recette {
	display: flex;
	justify-content: space-between;
}

.info-recette img {
	width: 28px;
	height: 28px;
}

.image-age {
	position: relative;
}

.age {
	color: #5BBE83;
	background-color: #FFF;
	position: absolute;
	right: 0%;
	border-radius: 0px 20px 0px 20px;
	width: 70px;
	height: 130px;
	text-align: center;
}

.age h3 {
	font-size: 64px;
}

.age span {
	font-size: 30px;
	font-weight: 600;
}


/* Contact */

.contact {
	background-color: #FFF;
	border-radius: 20px;
	border: 2px solid #5BBE83;
	padding: 50px;
	margin-bottom: 100px;
}

.contact h2 {
	margin-bottom: 40px;
}

.vers-faq {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

#message {
	width: 100%;
	font-family: Raleway;
	font-size: 20px;
	font-weight: 400;
	color: #000;
	padding: 10px;
	border: 2px solid #5BBE83;
	border-radius: 10px;
	margin: 20px 0px;
}

.envoyer {
	border: none;
	font-family: Raleway;
}

.formulaire-contact {
	text-align: right;
}


/***** MOBILE VERSION *****/

@media screen and (max-width: 760px) {

	h1 {
		font-size: 24px;
	}

	h2 {
		font-size: 20px;
	}

	p {
		font-size: 16px;
	}

	.green-box {
		display: block;
	}

	.green-box img {
		display: none;
	}

	.subscription {
		border: solid #5BBE83 2px;
		border-radius: 10px;
		margin-top: 30px;
		background-color: #FFF;
	}

	.mid-line {
		display: none;
	}

	.mybox-details {
		display: block;
	}

	.btn-dis {
		display: flex;
		font-size: 20px;
		padding: 5px 30px;
		justify-content: center;
		margin: 0px 60px;
	}

	.modification a {
		display: none;
	}

	.mybox-left {
		margin-top: 40px;
		padding: 0px 0px;
	}

	.mybox-left h2 {
		display: none;
	}

	.mybox-right {
		padding: 0px 0px;
	}

	.mybox-right h2 {
		position: absolute;
	}

	.headline-mobile {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.sub-details {
		display: block;
		padding: 0px 0px;
	}

	.sub-details ul {
		font-size: 16px;
		padding: 20px 10px 0px 30px;
	}

	.sub-details a {
		padding: 5px 30px;
		display: none;
	}

	.meal-card p {
		font-size: 12px;
	}

	.allergenes img {
		width: 16px;
		height: 16px;
	}

	hr {
		margin: 30px 0px;
	}

	.discover h2 {
		margin-bottom: 0px;
	}

	.carte-verte {
		display: block;
		background-color: #F8F8F8;
		box-shadow: none;
		height: auto;
	}

	.carte-recette {
		display: flex;
		width: 100%;
		height: 100px;
		margin: 20px auto;
		border-radius: 10px;
		border: 2px solid #5BBE83;
	}

	.description {
		padding: 10px;
		width: 100%;
	}

	.description p {
		font-size: 12px;
		margin-bottom: 5px;
	}

	.info-recette {
		padding-top: 20px;
		justify-content: space-between;
	}

	.image-age img {
		width: 100px;
		height: 100px;
		object-fit: cover;
		border-radius: 8px 0px 0px 14px;
	}

	.image-age {
		overflow: hidden;
	}

	.age {
		display: none;
	}

	.meal-info-bottom {
		margin-top: 30px;
	} 

	.contact {
		background-color: #F8F8F8;
		border: none;
		padding: 0px;
		margin-bottom: 20px;
	}

	.contact h2 {
		margin-bottom: 20px;
	}

	.vers-faq {
		display: block;
	}

	.vers-faq a {
		padding: 5px 30px;
		display: flex;
		flex-wrap: wrap;
		margin: 20px 80px;
		justify-content: center;
	}

	#message {
		font-size: 16px;
		margin: 10px 0px;
	}

	.envoyer {
		padding: 5px 30px;
	}



}