/* COLORS */

:root {
	--WWW_BLUE: #03cafc;
	--WWW_DARKBLUE: #0056b3;
	--WWW_BACK: white;
	--WWW_TEXT: white;
	--WWW_RED: firebrick;
}

/* BODY */

* {
	box-sizing: border-box;
}

body {
	background-color: var(--WWW_BACK);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.1rem;
}

main {
	width: 75%;
	height: max-content;
	margin: auto auto;
}

/* HEADER */

header {
	height: 15%;
	width: 100%;
}

.row-header {
	width: 100%;
	height: 200px;
	max-height: 100%;
	display: flex;
	flex-direction: row;
	margin: 0;
	position: relative;
	justify-content: space-between;
}

#logo {
	height: 100%;
	flex: 1;
	position: relative;
	display: flex;
	justify-content: center;
}

#logo img {
	height: 100%;
	width: auto;
	/* position: absolute;
	left: 0; */
}

#headline {
	width: 100%;
	flex: 2.5;
	display: flex;
	justify-content: space-between;
	margin: 15px 0;
}

#header-text {
	flex: 3;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#header-text p {
	text-align: center;
	font-weight: bold;
	color: var(--WWW_DARKBLUE);
}

#message {
	background-color: var(--WWW_BLUE);
	border: 2px solid var(--WWW_BLUE);
	color: var(--WWW_TEXT);
	display: block;
	text-align: center;
	padding: 5px;
	font-weight: bold;
	font-size: small;
}

/* FOOTER */

footer {
	padding: 20px 20px;
	width: 100%;
}

.row-footer {
	width: 100%;
	max-height: 100%;
	display: flex;
	flex-direction: row;
	color: var(--WWW_DARKBLUE);
	font-weight: bold;
}

#MyFooter {
	flex: 1;
	display: flex;
}

#MyWebsite {
	flex: 1;
	display: flex;
	justify-content: center;
}

#MyLegal {
	flex: 1;
	display: flex;
	justify-content: right;
	text-decoration: none;
	font-weight: normal;
}

#MyLegal a {
	text-decoration: none;
	color: var(--WWW_DARKBLUE);
}

#MyMail {
	flex: 1;
	display: flex;
	justify-content: center;
	font-weight: normal;
	color: var(--WWW_DARKBLUE);
}

footer p {
	font-size: 1.1rem;
	line-height: 1.3;
}

/* PAGES - PARAMETRES GLOBAUX */

section.content-container {
	width: 100%;
	height: max-content;
	border-top: 1px solid var(--WWW_BLUE);
	border-bottom: 1px solid var(--WWW_BLUE);
	display: flex;
}

.row {
	flex-direction: row;
}

.column {
	flex-direction: column;
}

.page-text {
	font-size: 1.1rem;
	padding: 10px;
	line-height: 1.3;
	width: 100%;
}

.page-text p,
h1,
h2 {
	padding-top: 10px;
	line-height: 1.3;
	color: var(--WWW_DARKBLUE);
}

.page-text ul {
	list-style-type: disc;
	list-style-position: outside;
	padding: 0 40px;
	line-height: 1.5;
}

.page-text ol {
	list-style-type: decimal;
	list-style-position: outside;
	padding: 0 40px;
	line-height: 1.5;
}

.img-text {
	font-size: 0.7rem;
	padding-bottom: 20px;
}

/* PAGE - HOME */

.home-content {
	display: flex;
	flex-direction: column;
}

.button-services {
	display: inline-block;
	padding: 20px 40px;
	font-size: 24px;
	margin: 10px;
	text-align: center;
	text-decoration: none;
	color: var(--WWW_TEXT);
	background-color: var(--WWW_BLUE);
	border-radius: 8px;
	transition: background-color 0.3s;
	align-content: center;
}

.button-services:hover {
	background-color: var(--WWW_DARKBLUE);
	font-weight: bold;
}

.multi-services {
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.autres-services {
	flex: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/* PAGE - SERVICES */

.service-titre p {
	display: inline-block;
	padding: 10px 20px;
	font-size: 20px;
	font-weight: bold;
	margin: 10px;
	text-align: center;
	color: var(--WWW_TEXT);
	background-color: var(--WWW_BLUE);
	border-radius: 8px;
	transition: background-color 0.3s;
	align-content: center;
}

.service-content {
	display: flex;
	flex-direction: row;
}

.service-left,
service-right {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 0px 5px;
}

.service-content ul {
	color: var(--WWW_DARKBLUE);
	list-style-type: square;
}

.service-content p {
	padding-bottom: 10px;
}

.service-image {
	display: flex;
	justify-content: center;
}

.service-image img {
	height: 230px;
}

#button-retour {
	/* display: inline-block; */
	display: none;
	padding: 5px 15px;
	font-size: 12px;
	margin: 10px;
	text-align: center;
	text-decoration: none;
	color: var(--WWW_TEXT);
	background-color: var(--WWW_BLUE);
	border-radius: 8px;
	transition: background-color 0.3s;
	align-content: center;
}

#button-retour:hover {
	background-color: var(--WWW_DARKBLUE);
	font-weight: bold;
}