/* ========= */
/* Variables */
/* ========= */
:root {
	--headerBackColor: #738773;
	--headerFontColor: #fff;

	--outerColor: #3f5a3f;
	--mainFontColor: #344e34;

	--footerBackColor: #738773;
	--footerFontColor: #e0ebe0;
}

/* ========== */
/* Animations */
/* ========== */
@keyframes openTab {

}

@keyframes closeTab {

}

/* ========= */
/* HTML TAGS */
/* ========= */
* {
	margin: 0;
	padding: 0;

	font-family: 'Dosis', sans-serif;
	font-weight: 400;
	font-size: 19px;
}

body {
	width: 100vw;
	height: 100vh;
}

li {
	list-style-type: none;
	font-size: 14px;
}

h1 {
	font-size: 25px;
	color: var(--mainFontColor);
	text-decoration: underline;
	text-align: center;
	text-decoration-thickness: 1px;
}

hr {
  	border: none;
  	background-color: var(--footerFontColor);
  	opacity: .7;
  
  	height: 1px;
	width: 25% ;
}

th {
	font-size: 16px;
}

th span {
	font-weight: 600;
	font-size: 17px;
}

/* === */
/* IDs */
/* === */

#disappear {
	position: absolute;
	inset: 0;
	z-index: 9;

	width: 100%;
	height: 40px;

	background-color: #fff;
}

#navBar {
	position: absolute;
	inset: 0;
	z-index: 10;
	
	width: 100%;
	max-width: 1300px;
	height: 55px;
	
	margin: 0 auto 0 auto;

	text-align: center;

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;

	background-color: var(--headerBackColor);
	border-radius: 0;
	border-bottom: 1px solid #9da89d;

	-webkit-box-shadow:
		0px 10px 28px -10px rgba(0,0,0,0.75);
	-moz-box-shadow:
		0px 10px 28px -10px rgba(0,0,0,0.75);
	box-shadow:
		0px 10px 28px -10px rgba(0,0,0,0.75);
}

#wrapper {
	position: absolute;
	inset: 0;
	z-index: 8;
	-ms-overflow-style: none;
	scrollbar-width: none;

	width: 100%;
	max-width: 1300px;

	margin: 0px auto 0 auto;
}

#wrapper::-webkit-scrollbar {
	display: none;
}

#imagePanel {
	background-origin: border-box;
	background-attachment: inherit;
	background-clip: content-box;
	background-image:
		url(../pictures/feuille.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	height: 290px;
}

#rs {
	margin: 0 0 0 25px;
}

#menus,
#menusResponsive {
	margin: 0 25px 0 0;
}

#rs, #menus {
	display: flex;
	justify-content: center;
	align-items: center;
}

#rs p,
#menus a {
	text-decoration: none;
	color: var(--headerFontColor);
	font-size: 19px;

	margin: 0 30px 0 0;
}

#menus svg,
#menusResponsive svg {
	width: 20px;
	height: 20px;

	color: #fff;
}

#menusResponsive,
#sideMenu {
	display: none;
}

#responsiveSVG:hover {
	cursor: pointer;
}

#sideMenu {
	position: absolute;
	z-index: 15;

	width: 150px;
	height: 200px;
	top: 10px;
	right: 10px;

	background-color: #fff;
	background-color: #acb9ac;
	background-color: #738773;

	border-radius: 15px;
	/*border: 2px solid var(--headerBackColor);
	border: 1px solid #fff;*/
	
	-webkit-box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);
	-moz-box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);
	box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);
}

#sideMenu > ul li a {
	text-decoration: none;
	color: var(--headerBackColor);
	color: #fff;
	font-size: 19px;
}

#sideMenu > ul {
	text-align: center;
}

#job {
	font-size: 42px;
	color: var(--headerFontColor);
	font-weight: 400;
	letter-spacing: 10px;

	text-align: center;
	margin: 50px 0 0 0;
	padding: 80px 0 0 0;

	text-shadow:
		-1px -1px 0 var(--outerColor),
		1px -1px 0 var(--outerColor),
		-1px 1px 0 var(--outerColor),
		1px 1px 0 var(--outerColor);

	white-space: normal;
}

#paperBoard {
	-webkit-box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);
	-moz-box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);
	box-shadow:
		0px 0px 7px 0px rgba(0,0,0,0.75);

	width: 98%;
	margin: auto;

	position: relative;
	top: -40px;
	background-color: #fff;

	border-radius: 0 0 30px 30px;
}

#twoColumns {
	width: 70%;
	height: fit-content;
	margin: 80px auto 0 auto;

	display: flex;
}

#infosColumnFirst {
	text-align: right;
	padding: 0 15px 0 0;

	width: 30%;

	color: var(--mainFontColor);
}

#infosColumnSecond {
	text-align: right;
	width: 30%;
}

#infosColumnFirst p img,
#infosColumnSecond p img {
	border: 1px solid var(--headerBackColor);
	width: 75px;
}

#infosColumnSecond {
	display: none;
}

#speakColumn {
	border-left: 1px double var(--mainFontColor);
	text-align: justify;
	padding: 0 0 0 15px;

	width: 70%;
	margin: 0 0 70px 0;
}

#speakColumn p {
	color: var(--mainFontColor);
}

#infosColumn p {
	color: var(--mainFontColor);
	font-size: 16px;
	line-height: 15px;
}

#podPicA,
#podPicB,
#podPicC,
#podPicZ {
	width: 50%;

	background-origin: border-box;
	background-attachment: inherit;
	background-clip: content-box;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	border: 1px solid var(--footerBackColor);
}

#podPicZ {
	background-image:
		url(../pictures/aq3r.png);
}

#podPicA {
	background-image:
		url(../pictures/aq2r.png);
}

#podPicB {
	background-image:
		url(../pictures/aq4r.png);
}

#podPicC {
	background-image:
		url(../pictures/aq1r.png);
}

#podiPicA,
#podiPicB,
#podiPicZ {
	width: 50%;

	background-origin: border-box;
	background-attachment: inherit;
	background-clip: content-box;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

	border:
		1px solid var(--footerBackColor);
}

#podiPicZ {
	background-image:
		url(../pictures/02.jpg);
	filter: blur(0px);
}

#podiPicA {
	background-image:
		url(../pictures/05.jpg);
	filter: blur(0px);
}

#podiPicB {
	background-image:
		url(../pictures/06.jpg);
	filter: blur(0px);
}

#tarifs {
	text-align: center;
}

#boldp {
	font-weight: 600;
	font-size: 17px;
	text-align: center;
}

#listTarifs {
	margin: 30px auto 0 auto;
	width: 60%;
	text-align: left;
}

#transports {
	width: fit-content;
	margin: 0 auto;
}

#transports span {
	text-decoration: underline;
}

#contactMe {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin: 50px 0 50px 0;

	color: var(--mainFontColor);
}

#contactMeRefs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	margin: 50px 0 50px 0;
}

#doctolibLink {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	color: var(--mainFontColor);
}

#concab {
	background-origin: border-box;
	background-attachment: inherit;
	background-clip: content-box;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-image: url(../pictures/cabne.jpeg);

	height: 350px;
	margin: 60px 0 0 0;

	border: 1px solid var(--footerBackColor);
}

#horairesZone {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	margin: 50px 0 0 0;

	color: var(--mainFontColor);
}

.horairesTitle {
	border: 1px solid var(--mainFontColor);
}

#quote {
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin: 20px 0;
}

#quote p {
	font-style: italic;
	font-size: 22px;
	color: var(--outerColor);
}

#divQuote svg {
	width: 40px;
	height: 40px;

	margin-right: 10px;

	opacity: .7;
}

#footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-around;

	background-color:
		var(--footerBackColor);
	color:
		var(--footerFontColor);
	border-radius: 0 0 30px 30px;
	background: rgb(131,149,131);

	width: 100%;
	height: 300px;
	margin: 50px 0 0 0;
}

#footer * {
	/*border: 1px solid green;*/
}

#footerTitle {
	width: 90%;
	
	text-align: center;
}

#footerInfos,
#footerLegal {
	display: flex;
	flex-direction: row;
	justify-content: space-around;

	width: 50%;
	height: 20px;
}

#footerInfos {
	height: fit-content;
}

#webgridSolutions {
	text-align: center;
}

#webgridSolutions p a {
	text-decoration: none;

	font-size: 13px;
	color: #acb9ac;
}

/* ======= */
/* Classes */
/* ======= */
.infoSection {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.txtSection {
	text-align: center;
	width: 200px;
	height: 40px;

	font-size: 15px;
}

.line {
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
}

.pageTitle {
	text-align: right;
	color: var(--mainFontColor);
	letter-spacing: 15px;

	border-bottom: 2px solid var(--mainFontColor);
	width: 30%;
	padding-top: 40px;
}

.pageTitle p {
	font-size: 27px;
	font-weight: 400;
}

.minusP {
	font-size: 15px;
}

.podText {
	width: 50%;
	height: 500px;
	background-color: #fff;
	color:
		var(--mainFontColor);
	border:
		1px solid var(--headerFontColor);
}

.podText p {
	text-align: justify;
	padding: 30px;
	font-size: 17px;
}

.podText h1 {
	color: var(--mainFontColor);
	padding: 30px 0 0 0;
}

.firstContact {
	margin: 0 0 50px 0;
	width: 300px;
	border: 1px solid;
	text-align: center;
	text-transform: uppercase;
}

.contactsClass {
	text-align: center;
	width: 300px;
}

.simpleTitle {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-transform: uppercase;
}

.fonts600 {
	font-weight: 600;
}
