/* ==================================================
   RESET
   ================================================== */

.border {border:1px solid red;}
.fixed {position:fixed;}
html,
body {
	min-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	height: auto;
}

/* Modèle de boîte prévisible */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Suppression des marges par défaut */

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Base du document */

html {
	min-height: 100%;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	margin: 0;

	line-height: 1.5;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

/* Médias responsives */

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

/* Typographie des formulaires */

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

/* Boutons */

button {
	border: 0;
	padding: 0;
	background: none;
	cursor: pointer;
}

/* Liens */

a {
	color: inherit;
	text-decoration: none;
}

/* Listes */

ul,
ol {
	margin: 0;
	padding: 0;
}

/*
Retirer les puces uniquement lorsqu'une classe
est explicitement appliquée à la liste.
*/

.list-reset {
	list-style: none;
}

/* Tableaux */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Textes longs */

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

/* Éléments masqués */

[hidden] {
	display: none !important;
}

/* Accessibilité : contenu réservé aux lecteurs d'écran */

.screen-reader-text {
	position: absolute !important;

	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;

	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;

	border: 0;
}

/* Réapparition lors du focus clavier */

.screen-reader-text:focus {
	position: fixed !important;
	z-index: 100000;
	top: 10px;
	left: 10px;

	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;

	overflow: visible;
	clip: auto;
	white-space: normal;

	background: #ffffff;
	color: #000000;
}

/* Respect des préférences d'animation */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* custom */ 



.full-width {
    width: 100%;
    min-width: 100%;
    height: auto;
}

.embed-container iframe, 
.embed-container object, 
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.full-width-container {width: 100vw;
    position: relative;
    margin-left: -50vw!important;
    margin-top: 0!important;
    left: 50%;
    display: block;}