/*********************************************************************/
/*
/* Powered by Patrick Joly - Contact : patrickjoly@free.fr
/*
/*********************************************************************/

/*********************************************************************/
/* Feuille de style mobile first
/*********************************************************************/
body {
	background: #555555;
	color: #ffffff;
	font-family: "trebuchet ms", helvetica, arial, sans-serif;
	font-size: 1em;
	line-height: 1.5;
	margin: 0;
	text-align: center;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

h1, h2, h3 {
	margin: 0;
	padding: 20px 0;
	text-align: center;
}

p {
	margin: 0;
	padding: 10px 0;
	text-align: justify;	
}

.bouton {
	background: #555555;
	border: 1px solid #ffffff;	
	color: #ffffff;
	display: inline-block;
	margin: 30px;	
	text-decoration: none;
	padding: 10px;
}

.bouton:hover {
	background: #ffffff;
	color: #555555;
}

/*********************************************************************/
/* header
/*********************************************************************/
#header {
	text-align: center;
}

#logo {
	color: #ffffff;
	height: 450px;
}

#logo .bg-image {
	background: #555555 url('img.jpeg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 450px;
	opacity: 0.9;
	position: absolute;
	width: 100%;
	z-index: -1;
}

#logo h1 {
	padding: 30px 0 0 0;
}

#logo .content-wrap,
#section-a .content-wrap {
	padding: 0 20px;
}

/*********************************************************************/
/* section a
/*********************************************************************/
#section-a {
	background: #ffffff;
	color: #555555;
	padding-bottom: 20px;
	text-align: justify;
}

/*********************************************************************/
/* section b
/*********************************************************************/
#section-b {
	padding: 20px;
}

#section-b ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#section-b li {
	background: #ffffff;
	color: #555555;
	margin-bottom: 20px;
}

.card-content {
	padding: 20px;
}

/*********************************************************************/
/* section c
/*********************************************************************/
#section-c {
	background: #ffffff;
	color: #555555;
	padding: 20px;
}

/*********************************************************************/
/* section d
/*********************************************************************/
#section-d .box {
	color: #ffffff;
	padding: 20px;	
}

#section-d .box:first-child {
	background: #bbbbbb
}

/*********************************************************************/
/* footer
/*********************************************************************/
#main-footer {
	background: #ffffff;
	color: #555555;
	padding: 10px;
	text-align: center;
}

#main-footer a {
	color: #555555;
	text-decoration: none;
}

/*********************************************************************/
/* Media Queries - Desktop
/*********************************************************************/
@media(min-width: 700px) {
body {
	font-size: 1.2em;
}

.grid {
	display: grid;
	grid-template-columns: 1fr repeat(2, minmax(auto, 400px)) 1fr;
}

#section-a .content-text {
	columns: 2;
	column-gap: 20px;
}

#section-a .content-text p {
	padding-top: 0;
}

.content-wrap,
#section-b ul {
	grid-column: 2/4;
}

.box, #main-footer div {
	grid-column: span 2;
}

#section-b ul {
	display: flex;
	justify-content: space-around;
}

#section-b li {
	width: 31%;
}
}