@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
/*****************************************************/
/*  Reset
******************************************************/
:root {
	--color: #121c42;
	--color-light: #121c4299;
	--color-transparent: rgba(18, 28, 66, 0);
	--gap: 20px;
	--space: 8px;
	--border: #d5e3ec;
	--border-light: #e6eff4;
	--background: #fff;
	--background-links: rgb(56, 84, 105);
	--links-hover: #8ca29f;
	--shadow: #d8e1e8;
	--list-hover: var(--background);
	--skeleton: var(--border-light);
	--skeleton-wave: var(--border-light);
	--selection-background: var(--border);
}

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

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

iframe {
	max-width: 95%;
}

button {
	color: inherit;
	padding: 0;
	border: none;
	cursor: pointer;
	background: 0 0;
	font-size: inherit;
}

form {
	display: block;
}

input,
select {
	font-size: inherit;
	font-family: inherit;
}

pre {
	font-family: monospace;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
	content: '';
	content: none;
}

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

img {
	max-width: 100%;
}

a {
	text-decoration: none;
	color: inherit;
	transition: color 0.3s;
}

textarea {
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	resize: none;
}

hr {
	height: 1px;
	background: var(--border);
	margin: 0;
	padding: 0;
	border: none;
}

:focus:not(:focus-visible) {
	outline: 0;
}

:root {
	--container-padding: 20px;
	--container-width: calc(100vw - var(--container-padding) * 2);
}

@media only screen and (min-width: 900px) {
	:root {
		--container-padding: 32px;
	}
}
@media only screen and (min-width: 1370px) {
	:root {
		--container-padding: 20px;
		--container-width: 1330px;
	}
}
/*****************************************************/
/*  Classes
******************************************************/
.page-wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background-color: var(--background);
	border-radius: 10px;
}
@media only screen and (min-width: 950px) {
	.page-wrapper {
		padding-left: calc(50% - var(--container-width) / 2);
		padding-right: calc(50% - var(--container-width) / 2);
	}
}

.container,
.footer,
.header,
.sections > * {
	box-sizing: border-box;
	width: 100%;
	padding-left: calc(50% - var(--container-width) / 2);
	padding-right: calc(50% - var(--container-width) / 2);
}

.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.hidden {
	display: none;
}

.grid {
	width: 100%;
	display: grid !important;
	grid-gap: calc(2 * var(--space));
	grid-template-columns: repeat(auto-fill, minmax(var(--col, 275px), 1fr));
}

.stack {
	--gap: 2;
	display: grid !important;
	grid-template-columns: 1fr;
	align-content: flex-start;
	gap: calc(var(--gap) * var(--space));
}

.py1 {
	padding-top: 1em;
	padding-bottom: 1em;
}

/*****************************************************/
/*  Formatted
******************************************************/
.formatted h2 {
	font-weight: 700;
	font-style: normal;
	font-size: 32px;
	line-height: 1.2;
}

.formatted > :last-child {
	margin-bottom: 0 !important;
}

.formatted em {
	font-style: italic;
}

.formatted strong {
	font-weight: 700;
}

.formatted details > summary {
	list-style: none;
}

.formatted details > summary::-webkit-details-marker {
	display: none;
}

.formatted a {
	text-decoration: underline;
}

.formatted a:hover {
	color: var(--contrast);
}

.formatted pre {
	margin: 2em 0;
	overflow: auto;
	border: 1px solid var(--border-light);
}

@media (min-width: 1400px) {
	.formatted pre {
		margin-left: -1rem;
		margin-right: -1rem;
	}
}
.formatted ol,
.formatted p,
.formatted ul {
	margin-top: 1rem;
	margin-bottom: 30px;
}

.formatted ol,
.formatted p,
.formatted ul {
	line-height: 1.6;
}

.formatted p:first-child {
	margin-top: 0 !important;
}

.formatted h1,
.formatted h2,
.formatted h3 {
	color: var(--color-dark);
	font-family: Inter, sans-serif;
	font-weight: 700;
}

.formatted h1 {
	font-size: 2em;
}

.formatted h2 {
	margin-top: calc(5 * var(--space));
	margin-bottom: 2px;
}

.formatted h3 {
	font-weight: 700;
	font-style: normal;
	font-size: 24px;
	line-height: 1.2;
	margin-bottom: 2px;
}

.formatted h4 {
	margin-top: calc(2 * var(--space));
}

.formatted ul {
	list-style: disc;
	padding-left: 19px;
}

.formatted ol {
	list-style: decimal;
	padding-left: 19px;
}

.formatted img {
	max-width: 226px;
	max-height: 226px;
	width: auto;
	position: relative;
	object-fit: cover;
	aspect-ratio: 1/1;
}

@media screen and (max-width: 990px) {
	.formatted img {
		max-width: 100vw;
	}
}
.formatted figure {
	padding: 0;
	margin: 30px;
	display: inline-block;
	position: relative;
}

.formatted figure.left {
	margin-left: 0;
	margin-top: 0;
}

.formatted figure.left img {
	max-width: 275px;
}

.formatted figure.right {
	margin-right: 0;
	margin-top: 0;
}

.formatted figure.right img {
	max-width: 275px;
}

.formatted figure img {
	border: 4px solid #eee;
	display: block;
}

.formatted figure img[src$='.png'],
.formatted figure img[src$='.svg'] {
	border: none;
}

.formatted li > code,
.formatted p > code {
	display: inline-block;
	background: var(--skeleton);
	outline: solid 1px var(--border);
	padding: 0 0.2em;
	color: var(--color-light);
}

/*****************************************************/
/*  Début
******************************************************/
body {
	font-family: Verdana, sans-serif;
	font-size: 16px;
	color: var(--color);
	line-height: 1.6;
	background-color: var(--background);
	scroll-margin: 100px 0 0 0;
	word-break: break-word;
}

.home {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(2 * var(--space));
	grid-auto-flow: dense;
}
@media screen and (min-width: 950px) {
	.home {
		grid-template-columns: 0.8fr 2fr 1.2fr;
	}
}

.covid {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(2 * var(--space));
	grid-auto-flow: dense;
}
.covid img {
	justify-self: center;
}
@media screen and (min-width: 950px) {
	.covid {
		grid-template-columns: 0.8fr 3.2fr;
	}
}

.pineux,
.spec,
.medecins,
.patients,
.informations,
.contact,
.horaires,
.galerie {
	display: grid;
	grid-template-columns: 1fr;
	gap: calc(2 * var(--space));
	grid-auto-flow: dense;
}
.pineux img,
.spec img,
.medecins img,
.patients img,
.informations img,
.contact img,
.horaires img,
.galerie img {
	justify-self: center;
}
.pineux .formatted img,
.spec .formatted img,
.medecins .formatted img,
.patients .formatted img,
.informations .formatted img,
.contact .formatted img,
.horaires .formatted img,
.galerie .formatted img {
	max-width: 100%;
	max-height: 100%;
	aspect-ratio: unset;
}
@media screen and (min-width: 950px) {
	.pineux,
	.spec,
	.medecins,
	.patients,
	.informations,
	.contact,
	.horaires,
	.galerie {
		grid-template-columns: 0.8fr 3.2fr;
	}
}

.gallery #links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.gallery #links .gllr_image_block {
	flex-shrink: 1;
	flex-basis: 0;
}
.gallery #links .gllr_image_block a {
	display: block;
}
.gallery #links .gllr_image_block a img {
	max-width: 200px;
	max-height: 200px;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.pineux .formatted img {
	max-width: 225px;
	max-height: 300px;
	aspect-ratio: 1/1;
}

.side {
	display: none;
}
.side ul {
	list-style: none;
}
.side ul li {
	line-height: 26px;
	white-space: nowrap;
}
.side ul li a {
	text-decoration: none;
	display: block;
	padding: 10px 15px;
	background-color: var(--background-links);
	color: white;
	border-bottom: 1px solid #587479;
	border-top: 1px solid #203c51;
}
.side ul li a:hover {
	background-color: var(--links-hover);
}
@media only screen and (min-width: 950px) {
	.side {
		display: block;
	}
}

.hero {
	padding: 0.5em;
	background-color: #8ca29f;
	border-bottom: 2px white solid;
	vertical-align: middle;
	font-weight: bold;
	font-size: 20px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Arial Black', Gadget, sans-serif;
	color: #385469;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}
.hero h1 {
	text-align: center;
}

.header-container {
	width: 100%;
	padding: 1em 0;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.header-container .menu-container {
	display: none;
	align-items: flex-end;
	flex-flow: row-reverse;
}
.header-container .menu-container .menu {
	display: flex;
	justify-content: space-between;
	width: 42px;
	height: 30px;
	cursor: pointer;
	flex-flow: column;
}
.header-container .menu-container .menu span {
	display: block;
	background-color: #385469;
	position: relative;
	border-radius: 2px;
	height: 4px;
	width: 100%;
	transition: 0.2s;
}
.header-container .menu-container .menu.active .bar1 {
	transform: rotate(-45deg) translate(-9px, 9px);
}
.header-container .menu-container .menu.active .bar2 {
	opacity: 0;
}
.header-container .menu-container .menu.active .bar3 {
	transform: rotate(45deg) translate(-9px, -9px);
}
@media screen and (max-width: 950px) {
	.header-container .menu-container {
		display: flex;
	}
}

.footer {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 1em;
	padding-bottom: 1em;
	background: var(--background);
	border-top: solid 2px var(--border-light);
	gap: calc(4 * var(--space));
	background-color: #8ca29f;
	color: #385469;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	font-family: 'Arial Black', Gadget, sans-serif;
}

#responsive-menu {
	display: none;
	position: fixed;
	top: 0;
	right: 100%;
	height: 100%;
	width: 100%;
	transition: 0.2s;
	z-index: 1000;
}
@media screen and (max-width: 950px) {
	#responsive-menu {
		display: block;
	}
}
#responsive-menu.active {
	right: 0;
}
#responsive-menu #responsive-menu-inner {
	width: 70%;
	background-color: #385469;
	max-width: 400px;
	height: 100%;
	padding: 20px 0;
	overflow-y: auto;
}
#responsive-menu #responsive-menu-inner ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#responsive-menu #responsive-menu-inner ul li {
	font-size: 16px;
	line-height: 26px;
}
#responsive-menu #responsive-menu-inner ul li a {
	color: #fff;
	text-transform: uppercase;
	padding: 19px 15px;
	display: block;
	position: relative;
}

/*# sourceMappingURL=app.css.map */
