@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap');

* {
	box-sizing:border-box;
}

:root {
	--basecolor:#222;
	--backgroundcolor:#fff;
	--greycolor:#e5e5e5;
	--linkscolor:#946038;
	--stbatsyellow:#fcd006;
	color:var(--basecolor);
	
	--fontsizenormal:1.1em;
	--fontsizequote:1.5em;
	--fontsizeh1titles:2.5em;
	--fontsizeh2titles:2em;
	--fontsizesmall:0.95em;
	--fontsizetopmenu:0.9em;
	--fontsizemobilemenu:1.2em;
	
	font-size:var(--fontsizenormal);
	font-family: 'Roboto', sans-serif;
		
	--sitecontainermaxwidth:100%;
	--sitecentermaxwidth:1200px;
	--contentpaddingh:20px;
	--brunclairanecem:#f4d6a4;
	--brunmoyenanecem:#946038;
	--brunfonceanecem:#683b11;

}

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	border: 0;
	vertical-align: top;
}

p {
	margin-bottom:6px;
}

h3 {
	font-size: calc(1.1 * var(--fontsizenormal));
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.skiplink {
	position: fixed;
	top:0; left:0; right:0;
	text-align: center;
	padding: 10px;
	background-color: black;
	color: white;
	transform: translateY(-100%);
	transition: transform 250ms ease-in-out;
}

.skiplink:focus {
	transform: translateY(0);
}

#sitecontainer {
	max-width:var(--sitecontainermaxwidth);
	margin-left:auto; margin-right:auto;
}

.site_center {
	max-width:var(--sitecentermaxwidth);
	margin-left:auto; margin-right:auto;
	padding:0px var(--contentpaddingh);
}

.quotestlye {
	font-size: var(--fontsizequote);
}


.fullwidthtable, .fullwidthtable tbody, .fullwidthtable tr, .fullwidthtable td {
	display:block;
	border-collapse: collapse;
}

.fullwidthtable tr {
	max-width:var(--sitecontainermaxwidth);
	position: relative;
	left: 50%;
	margin-left: calc(-0.5 * var(--sitecontainermaxwidth));
}

.fullwidthtable td {
	max-width:var(--sitecentermaxwidth);
	margin-left:auto; margin-right:auto;
	padding:40px var(--contentpaddingh);
}

#damenubutton {
	display:none;
	text-align:right;
	margin-right:10px;
	cursor:pointer;
	position: fixed;
	top:10px; right: 10px;
	z-index: 110;
}

#datoplineback {
	background-color: black;
	border-bottom: 12px solid var(--stbatsyellow);
}

#datopline {
	position: relative;
	height: 50px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
}

#datoplogo p {
	background-color: black;
	box-shadow: 4px 4px 10px rgba(0,0,0,0.7);
}

#datoplogo img {
	max-height:200px;
	width:auto;
}

#datopmenu {
	display: flex;
	justify-content: center;
}

.domenu ul {
	list-style-type:none;
	padding:0px;
	margin:0px;
	display: -webkit-flex;
	display:flex;
	align-items: center;
}

.domenu ul li {
	list-style-type:none;
	padding:0px;
	margin:0px;
}

.domenu ul li a {
	display:block;
	text-transform:uppercase;
	color:white;
	margin:0px 15px;
	border-bottom:0px solid #fff;
}

.domenu ul li.active a, .domenu ul li a:hover {
	border-bottom:0px solid black;
}

.domenu ul li a:hover {
	text-decoration:none;
}

#datopmenu ul li a {
	font-size: var(--fontsizetopmenu);
}

#datopmenu ul li:last-child {
	border-left: 2px solid var(--stbatsyellow);
}


#damainmenu .domenu ul li a {
	font-size: 1.15rem;
}

#damobilemenu {
	background-color: black;
	opacity: 0.95;
	position: fixed;
	top:0px; left:0px; bottom:0px; right:0px;
	z-index: 100;
	transition: all 0.5s;
	padding-top: 80px;
	overflow: hidden;
}

#damobilemenu.hidemenu {
	transform: translateX(-100%);
}

#damobilemenu ul {
	display: -webkit-flex;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
}

#damobilemenu ul li {
	width: 100%;
	list-style-type:none;
	padding:0px;
	margin:0px;
}

#damobilemenu ul li a {
	display: block;
	position: relative;
	font-size: var(--fontsizemobilemenu);
	padding:10px 10px 10px 60px;
	margin: 0px;
	border-bottom: 1px dotted #ddd;
	color: var(--stbatsyellow);
}

#damobilemenu ul + ul + ul  {
	margin-top: 30px;
}

#damobilemenu ul + ul li:last-child a, #damobilemenu ul + ul + ul li:last-child a {
	border-bottom: 0;
}

#damobilemenu ul li.active a, #damobilemenu ul li a:hover {
	color: white;
}

#damobilemenu ul li.active a::before, #damobilemenu ul li a:hover::before {
	content: '⏵';
	color: white;
	position: absolute;
	left:30px; top:6px;
}



#daheader {
	height:700px;
	width:100%;
	display: flex;
	align-items: center;
}

#daheader .custom {
	width: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	border-top:1px solid white;
	border-bottom:1px solid white;
	padding: 20px 0px 15px;
}

#daheader .custom p {
	max-width:var(--sitecentermaxwidth);
	margin-left:auto; margin-right:auto;
	text-align: center;
	font-size: var(--fontsizequote);
	text-transform: uppercase;
	font-weight: bold;
}

#damainmenu {
	position: relative;
	top:-8em;
	background-color: black;
	padding: 15px 0px;
	border-bottom: 12px solid var(--stbatsyellow);
}

#damainmenu .domenu ul {
	justify-content: space-around;
}

#dahomenews {
	background-color: var(--stbatsyellow);
	position: relative;
	top:-4em;
	padding:2em 0;
}

#dahomenews h2 {
	text-align: center;
	margin-bottom: 1em;
}

#dahomenews ul.latestnews {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em;
	font-size: 0.9em;
}

#dahomenews ul.latestnews li {
	background-color: rgba(0,0,0,0.9);
	padding: 1em;
}

#dahomenews ul.latestnews .latestarticle {
	display: flex;
	flex: 1 1 100%;
	flex-direction: column;
	height: 100%;
}

#dahomenews ul.latestnews .latestarticledate {
	color: white;
	font-size: 0.9em;
}

#dahomenews ul.latestnews .latestarticletitle {
	color: var(--stbatsyellow);
	font-weight: bold;
	padding-bottom: 0.3em;
	border-bottom: 1px solid var(--stbatsyellow);
	margin:0.5em 0 1em;
}

#dahomenews ul.latestnews .latestarticletext {
	margin-bottom: 1em;
}

#dahomenews ul.latestnews .latestarticletext, #dahomenews ul.latestnews .latestarticletext * {
	color: white;
	font-size: 1em !important;
}

#dahomenews ul.latestnews .latestarticlemore {
	margin-top: auto;
	text-align: center;
}

#dahomenews ul.latestnews .latestarticlemore .readmore a {
	display: inline-block;
	height:1em;
	width: 1em;
	line-height: 1em;
	background-color: var(--stbatsyellow);
	border-radius: 50%;
	color: black;
	font-size: 2em;
}

#dahomenews ul.latestnews .latestarticlemore .readmore a:hover {
	text-decoration: none;
	background-color: white;
}

#dacontent {
	padding:50px 20px;
	background-color: rgba(255,255,255,0.7);
}

#daquote {
	padding: 50px 10px;
	font-size: var(--fontsizequote);
	font-weight: bold;
}


#daparallax1 {
	color: white;
	font-size: var(--fontsizesmall);
	height:800px;
}

#dafooter {
	padding-top:30px;
	padding-bottom:30px;
	background-color: black;
	color: white;
}

#dacopyright {
	font-size: var(--fontsizesmall);
	text-align: right;
	padding: 20px 0px 60px;
	background-color: var(--stbatsyellow);
}

#dacopyright a, #dacopyright a:hover {
	font-size: calc(0.8 * var(--fontsizesmall));
	color: black;
	font-weight: normal;
	text-decoration: none;
}

.page-header h2 {
	display:inline-block;
	font-weight:bold;
	text-transform:uppercase;
	font-size:var(--fontsizeh2titles);
	border-bottom:10px solid var(--linkscolor);
	margin-bottom:60px;
	padding-bottom: 20px;
}

/* ###################### OVERALL SETTINGS ###################### */
HTML {
	scroll-behavior: smooth;
}

BODY {
	background-color:var(--backgroundcolor);
	overflow-x:hidden;
}

h1 {
	font-size:var(--fontsizeh1titles);
	letter-spacing:1px;
	color:var(--basecolor);
	margin:15px 0px;
}

h2 {
	font-size:var(--fontsizeh2titles);
	letter-spacing:1px;
	color:var(--basecolor);
	margin:10px 0px;
}


/* ###################### LINKS ###################### */
a:link, a:visited {
  font-weight	   : bold;
  text-decoration  : none;
  color: var(--linkscolor);
}

a:hover, a:active {
	text-decoration:underline;
}

img {
	border:none;
	max-width:100%;
}

table {
	width: 100%;
}

td {
	vertical-align:top;
}

li {
	margin-bottom: 10px;
}

.clearit {
	clear:both;
}

#dacontent img, #datopline img {
	max-width:100% !important;
	height:auto;
}

.pcontainer {
	box-sizing:border-box;
	-webkit-align-items: center;
	align-items: center;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0;
	padding: 15px;
	position: relative;
	width: 100%;
	min-height: 800px;
}

.pcontainer .pcontent {
	box-sizing:border-box !important;
	width:100%;
	text-align:center;
}

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -100;
}
.parallax__container .parallax {
	/* can be put in a seperate class for better control */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* --------------------------- */
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
}



#footertable, #footertable tbody, #footertable tr, #footertable td {
	display:block;
	font-size: var(--fontsizesmall);
}

#footertable a {
	color:white;
	text-decoration:none;
	text-transform: uppercase;
}

#sfootertable a::before {
	content: '';
	background-image: url('../images/links_triangle.png');
	background-size: cover;
	background-position: center;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-right: 5px;
	position: relative;
	top:1px;
}

#footertable tr {
	display: grid;
	width: 100%;
	grid-template-columns: auto 1fr;
	gap: 1em;
}

#footertable td {
	padding: 1em;
}


.dofullscreen {
	width: 100%;
	height: 100% !important;
}



/* =========================== switch < 1920px ================================= */
@media screen and (max-width: 1920px) {

.fullwidthtable tr {
	max-width:100vw;
	margin-left: calc(-0.5 * 100vw);
}
}


/* =========================== switch < 1200px ================================= */
@media screen and (max-width: 1200px) {

:root {
	--sitecentermaxwidth:95%;
}

iframe {
	width:100% !important;
}

}



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

	#datoplogo img {
		max-height:150px;
	}
	
	#datopmenu, #damainmenu {
		display: none;
	}

	#daheader {
		height:400px;
	}

	#damenubutton {
		display:block;
	}

	#dahomenews ul.latestnews {
		grid-template-columns: 1fr;
	}

	.pcontainer .pcontent {
		padding:40px 0px 60px;
	}

	.menu_brun li {
		width:100%;
	}

	#footertable tr {
		grid-template-columns: 1fr;
	}
	
	#footertable td {
		text-align:center;
	}

}

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

	#daheader {
		height:350px;
	}

	#daheader .custom p {
		font-size: calc(0.75 * var(--fontsizequote));
	}

	.tableau_prestations tr, .tableau_liste tr {
		display:flex;
		flex-wrap:wrap;
	}
	
	.tableau_prestations tr td, .tableau_liste tr td {
		width:100%;
	}

	.tableau_liste tr:first-child td:nth-child(2) {
		display: none;
	}
	
	.tableau_prestations tr td:first-child {
		margin-top:20px;
		margin-bottom:5px;
	}
}

.visually-hidden{
	display:none;
}

