/* 
Theme Name: Centre Cœur et santé
Theme URI: 
Description: Thème du site Centre Cœur et santé
Version: 1.0
Author: Aline Héau
Author URI: http://www.aheo.fr
Centre Cœur et santé par Aline Héau || http://www.aheo.fr
*/

/*Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active { /* Improves readability when focused and also mouse hovered in all browsers people.opera.com/patrickl/experiments/keyboard/test */
	outline: 0;
}
a img {
	border: 0;
}


/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}
@media (min-width: 750px) {
 
    .alignfull {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        width: auto;
        max-width: 1000%;
    }
 
    .alignwide {
        margin-left: -34%;
        width: auto;
        max-width: calc(100vw - 2rem);
    }
 
}
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	-webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}




/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}



/* styles généraux */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: #222;
    line-height: 1.5;
}
a {
    color: #5e83bd;
    text-decoration: none;
}
a:hover {
    color: #000;
}
em {
    font-style: italic;
}
strong {
    font-weight: 700;
}
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}
figure {
    margin: 0;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.wrapper {
    max-width: 120rem;
    width: 100%;
    margin: 0 auto;
}
.group:before,
.group:after {
  content: "";
  display: table;
} 
.group:after {
  clear: both;
}
.group {
  zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}
.desktop {
    display: none;
}
.mobile {
    display: block;
}
/* header */
.fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
}
.site-header {
    -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
    box-shadow: 0 5px 10px 0 rgba(0,0,0,.15);
    z-index: 2000;
    width: 100%;
    background: rgba(255,255,255,.85);
    
}
.home .site-header {
    position: absolute;
}
.site-header.shrink {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}
.shrink .site-titre {
    font-size: 3rem;
    margin: 1rem 1rem 0;
    background-size: 8rem;
    padding: 2rem 0;
}
.shrink .menu-menu-header-container > li {
    font-size: 1.9rem;
}
#site-titre,
#site-header {
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.site-surbandeau {
    background: #dbe6f4;
    padding: 1rem;

}
.surbandeau-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.adresse {
    font-size: 1.4rem;
}
.adresse a {
    color: #222;
}
/* recherche*/
.search-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.search-form input[type=search] {
    background: rgba(255,255,255,0);
    border: 0;
    border-bottom: solid 1px #5e83bd;
    padding: .3rem;
}
.search-form input[type=submit] {
    background-color: rgba(255,255,255,0);
    border: 0;
    width: 2.5rem;
    height: 2.2rem;
    background-image: url(img/search.png);
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}
.rendez-vous {
    font-weight: 700;
    font-size: 1.8rem;
    color: #386bba;
    border: solid 1px #386bba;
    padding: 0.2rem 1rem;
    background: #fff;
    border-radius: 5px;
    margin-top: 1rem;
}
.rendez-vous:hover {
    border: solid 1px #000;
}

.logoCCS {
    max-width: 11.5rem;
}

.site-titre {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    background-image: url(img/logoCCS.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    margin: 1rem;
}
.site-titre a {
    padding-left: 10rem;
    text-decoration: none;
    color: #222;
    display: block;
}
/* nav */
.site-nav {
    position: relative;
    background: #dbe6f4;
}
ul.expand {
    display: block;
    position: absolute;
    background: #fff;
    width: 100%;
    border-bottom: solid 1px #dbe6f4;
}
.menu-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.menu-button > * {
    margin: 0 0.5rem;
}
.menu-button i {
    font-style: normal;
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #5e83bd;
    padding: 0.6rem 0;
}
.menu-button span {
    display: block;
    width: 29px;
    height: 2px;
    margin: 8px 0;
    background: #5e83bd;
    z-index: 99;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.ouvert span:nth-of-type(1) {
    -webkit-transform: rotate(45deg) translateY(5px) translateX(5px);
    transform: rotate(45deg) translateY(5px) translateX(5px);
}
.ouvert span:nth-of-type(2) {
    display: none;
}
.ouvert span:nth-of-type(3) {
    -webkit-transform: rotate(-45deg) translateX(2px) translateY(-2px);
    transform: rotate(-45deg) translateX(2px) translateY(-2px);
}
.menu-menu-header-container {
    display: none;
    background: #fff;
    z-index: 1000;
    padding: 1rem;
}
.menu-menu-header-container > li {
    /*
    font-size: 1.8rem;
    font-weight: 700;
    */
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
}
.menu-menu-header-container li .sub-menu {
    margin-left: 4rem;
}
.menu-menu-header-container a {
    text-decoration: none;
}
.menu-menu-header-container a:hover {
    color: #222;
}
/* slider */
.home-carrousel {
    margin-bottom: 6rem;
}
.flickity-viewport {
    max-height: 80vh;
}
.carousel-cell {
    height: 60vh;
    min-height: 50rem;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    color: #103369;
    padding: 1rem;
}
.carousel-cell h2 {
    font-weight: 300;
    font-size: 6rem;
    line-height: .8;
    margin-bottom: 1rem;
}
.carousel-cell h2 a {
    color: #103369;
}

.carousel-cell ul {
    padding-left: 1rem;
    border-left: #103369 solid .1rem;
    margin-left: .5rem;
}
.carousel-cell li {
    font-size: 1.5rem;
}

/* sections home */
.home-main {
    padding: 0 1rem;
}
.section-titre {
    font-weight: 300;
    font-size: 4.8rem;
    line-height: 1.1;
    padding-left: 3rem;
    background-image: url(img/fleche.svg);
    background-repeat: no-repeat;
    background-size: 1.8rem;
    background-position: left center;
    margin-bottom: 2rem;
    width: 100%;
/*    color: #ff4c52;*/
}
.section-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.section-flex article {
    margin-bottom: 4rem;
}
.home .attachment-post-thumbnail {
    float: left;
    margin-right: 1rem;
}
.post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.post-categories li {
    margin-right: .5rem;
}
.centre-titre {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1;
}
.read-more {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: right;
    display: block;
    text-decoration: underline;
    -webkit-transition: all 300ms ease-out;
    -webkit-transition: all 600ms ease-out;
    transition: all 600ms ease-out; 
    height: 4rem;
}
.read-more:hover {
    margin-right: 2rem;
}
.read-more:after {
    content: "";
    width: 0;
    float: right;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    opacity: 0;
}
.read-more:hover:after {
    content: url(img/fleche.svg);
    width: 1.5rem;
    
    opacity: 1;
}
.actus-tags li a {
    font-size: 1.3rem;
    color: #fff;
    background: #ff4c52;
    padding: .1rem .5rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.actus-tags li a:hover {
    background: #ffd2d4;
    color: #222;
}
.post-type span {
    font-size: 1.3rem;
    color: #fff;
    background: #5e83bd;
    padding: .1rem .5rem;
    display: inline-block;
    margin-bottom: 1rem;
}
.article-date {
    font-style: italic;
    font-size: 1.3rem;
}
.actus-titre {
    font-size: 2.2rem;
    padding-left: 1rem;
    border-left: solid 1px #193c74;
    font-weight: 700;
    margin-bottom: 2rem;
}
.lien-actus {
    text-align: center;
    font-size: 2.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #ff4c52;
    margin-bottom: 4rem;
}
.home-focus {
    margin-bottom: 4rem;
}
/* footer */
.site-footer {
    
}
.directions {
    padding: 1rem;
/*    background: #dbe6f4;*/
    background: #ffd2d4;
}
.directions .section-titre {
    color: #222;
}
.infos-accès {
    margin: 2rem 0;
}
.infos-accès h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: .5rem;
}
.infos-accès p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.infos-accès form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.infos-accès form label {
    font-size: 1.4rem;
    width: 100%;
}
.infos-accès form input[type=text] {
    padding: .3rem;
    font-size: 1.6rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: solid 1px #5e83bd;
}
.infos-accès form input[type=submit] {
    border: solid 1px #5e83bd;
    background: #5e83bd;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    cursor: pointer;
}
.menu-footer {
    padding: 1rem;
}
.menu-footer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu-footer li {
    font-size: 1.6rem;
    font-weight: 700;
}
.menu-footer li:after {
    content: " -";
    padding-right: 0.5rem;
}
.menu-footer li:last-child:after {
    content: "";
}
.menu-footer li a {
    color: #222;
}
.menu-footer li a:hover {
    text-decoration: underline;
}
.copyright {
    font-size: 1.6rem;
    text-align: center;
}
/* styles des textes */
.entry {
    margin-bottom: 4rem;
}
.entry p {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.entry h2 {
    font-size: 3.6rem;
    margin: 4rem 0 2rem 0;
    font-weight: 400;
    clear: both;
    line-height: 1.2;
}
.entry h3 {
  	font-size: 2.4rem;
    margin: 2rem 0;
    font-weight: 400;
    clear: both;
}
.entry ul {
    list-style-type: none;
}
.entry ol {
    list-style-type: decimal;
    list-style-position: inside;
}
.entry li {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.entry ul:not(.wp-block-gallery) li:before {
    content: "";
    float: left;
    background: #193c74;
    width: 0.5rem;
    height: 0.5rem;
    float: left;
    margin: 0.7em 0.5em 0 0;
}
.entry p a,
.entry ul li a {
  text-decoration: underline;
}
.entry p a:hover,
.entry li a:hover {
  
}
/* Pour la sélection */
/* https://developer.mozilla.org/en-US/docs/Web/CSS/::selection */
.entry p a::-moz-selection,
.entry ul li a::-moz-selection {
  background-color: black;
  color: white;
  text-shadow: none;
}

.entry p a::-moz-selection,
.entry li a::-moz-selection{
  background-color: black;
  color: white;
  text-shadow: none;
}

.entry p a::selection,
.entry li a::selection{
  background-color: black;
  color: white;
  text-shadow: none;
}
.entry blockquote  {
    padding-left: 2rem;
    border-left: solid 1px #193c74;
}
.entry blockquote p {
    line-height: 1.2;
    font-weight: 300;
    font-style: italic;
    font-size: 3rem;
}
.entry img {
    max-width: 100%;
/*    margin: 0;*/
    margin-bottom: 2rem;
}
.entry figure img {
    margin-bottom: 0;
}
.entry figcaption {
    font-style: italic;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.5rem;
    margin: 0;
}

@media screen and (-ms-high-contrast: active) {
  .entry p a,
    .entry li a{
    background: none !important;
    text-decoration: underline !important;
  }
}
.entry table {
    font-size: 1.6em;
    margin-bottom: 1em
}

/* contenu simple */
.main-contenu-simple {
    padding-top: 6rem;
}
.article-titre {
    font-size: 4.8rem;
    font-weight: 300;
    color: #193c74;
    margin-bottom: 3rem;
    line-height: 1.1;
}
.medecin .article-titre {
    text-align: center;
}
.main-contenu-simple article {
    width: 100%;
    padding: 1rem;
}
.suite-lecture {
    border-top: solid 1px #222;
    padding: 1rem;
    margin-top: 4rem;
}
.suite-lecture p {
    font-size: 1.8rem;
}
.suite-lecture p span {
    font-size: 2.4rem;
    font-style: italic;
    font-weight: 300;
}
.suite-lecture p a {
    color: #222;
    text-decoration: underline;
}
.navigation {
    padding: 1rem;
    font-size: 1.4rem;
}
/* layouts */
.main {
    margin-top: 6rem;
    padding: 0 1rem;
}
/* équipes */
.flex-equipes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.equipes figure {
    position: relative;
    margin-bottom: 4rem;
    display: table;
    overflow: hidden;
}

.equipes figure img {
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}
.equipes figure:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.equipes figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-size: 2.4rem;
    font-weight: 300;
}
.equipes figcaption p {
    font-size: 1.5rem;
    font-weight: 100;
}
.doctolib {
    background-color: #5e83bd;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 1rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: .5rem;
    max-width: 50%;
    margin: 2rem auto;
    border-bottom: solid 2px #305da4;
    position: relative;
    text-align: center;
}
.doctolib:hover {
    top: 2px;
    border-bottom: solid 2px #fff;
}
.flex-medecin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 3rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.portrait-medecin {
    margin-bottom: 2rem;
}
.examens-pratiques {
    padding: 1rem;
    background: #f0f0f0;
    background: -webkit-gradient(linear, left top, left bottom, from(#f0f0f0),to(#ffffff));
    background: linear-gradient(to bottom, #f0f0f0 0%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#ffffff',GradientType=0 );
}
.examens-pratiques span {
    font-weight: 700;
    font-size: 1.6rem;
}
.examens-pratiques p {
    margin-bottom: 0;
    font-size: 1.6rem;
}
/* listes de définitions */
.liste-definitions h2 {
    font-size: 4rem;
    font-weight: 300;
    color: #222;
}
.liste-definitions dd {
    display: none;
}
.liste-definitions h3 {
    margin: 0;
}
.liste-definitions h3:after {
    content: "+";
    float: right;
}
.liste-definitions .open h3:after {
    content: "-";
    float: right;
}
.liste-definitions dt {
    margin-top: 2rem;
    cursor: pointer;
}
.liste-definitions dt,
.liste-definitions dd {
    padding: 1rem;
    border-left: solid 1px #ff4d53;
    background: #f0f0f0;
}
/* archives */
.archive-titre {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
    color: #ff4d53;
}
 /* autres */
.is-style-dots {
    margin: 4rem 0;
}
.gform_footer input[type=submit]{
    font-size: 1.8rem !important;
    padding: 1rem 3rem;
    background: #dbe6f4;
    border: solid 1px #5e83bd;
    text-transform: uppercase;
}
.gform_footer input[type=submit]:hover {
    cursor: pointer;
    background: #5e83bd;
    color: #fff;
}
.gform_confirmation_message {
    font-size: 1.6rem;
    text-align: center;
    background-color: #f0f0f0;
    padding: 1rem;
    border: solid 1px #ddd;
}
/* blocs */
.wp-block-file a {
    font-size: 1.8rem;
}
@media only screen and (min-width:400px) {
    .adresse {
        font-size: 1.4rem;
    }
}

@media only screen and (min-width:800px) {
    .site-titre {
        font-size: 6rem;
        
        display: inline-block;
    }
    .site-titre a {
        padding: 2rem 1rem 2rem 18rem;
    }
    .site-header > .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .section-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .home-centre article {
        width: calc(50% - 1rem);
    }
    .home-actus article,
    .lien-actus {
        width: calc(50% - 1rem);
    }
    .focus-flex {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .focus-flex > * {
        width: calc(50% - 1rem);
    }
    .footer-bottom .section-flex {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .main-contenu-simple article,
    .navigation {
        width: 70%;
        margin: 0 auto;
        min-width: 50rem;
    }
/*
    .entry figure {
        width: calc(100vw - 2rem);
        margin-left: calc((50rem - 100vw) / 2);
    }
*/

    /* équipes */
    .flex-equipes {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .equipes figure {
        position: relative;
        margin-bottom: 4rem;
        width: calc(50% - 1rem);
    }
    .flex-medecin {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .portrait-medecin {
        margin-right: 2rem;
        margin-bottom: 0;
    }
    .examens-pratiques {
        overflow-wrap: break-word;
    }
    .single-medecin_collaborateu .entry {
        clear: both;
    }
}
@media only screen and (min-width:1000px) {
    .shrink .site-titre {
        margin: 1rem;
        padding: 0;
    }
    .shrink .site-titre a {
        padding: 2rem 1rem 2rem 10rem;
    }
    .shrink .menu-menu-header-container > li {
        font-size: 1.6rem;
    }
}


@media only screen and (min-width:1100px) and (max-width:1200px) {
    .site-header {
        padding: 0 1rem;
    }
}
@media only screen and (min-width:1100px) {
	.desktop {
        display: block;
    }
    .mobile {
        display: none;
    }
    /* header */
    .surbandeau-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .site-accueil {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .rendez-vous {
        margin-top: 0;
    }
    .site-nav {
        background: #fff;
        padding: 0.5rem 0;
        
    }
    .menu-button {
        display: none;
    }
    .menu-menu-header-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0;
    }
    .menu-menu-header-container > li {
        position: relative;
        
        margin-bottom: 0;
    }
    .menu-menu-header-container > li a {
        padding: 0 2rem;
    }
    .menu-menu-header-container li li a {
        padding: 0;
    }
    .menu-menu-header-container li:first-child a {
        padding-left: 0;
    }
    .menu-menu-header-container li:last-child a {
        padding-right: 0;
    }
    
    .menu-menu-header-container li.current_page_item > a,
    .menu-menu-header-container li.current-menu-ancestor > a {
        color: #000;
    }
    .menu-menu-header-container .sub-menu {
        position: absolute;
        left: -9999rem;
        z-index: 1000;
        background: #fff;
        padding: 1rem;
        min-width: 25rem;
        -webkit-box-shadow: 0 5px 10px rgba(0,0,0,.15);
        box-shadow: 0 5px 10px rgba(0,0,0,.15);
    }
    .menu-menu-header-container li:hover .sub-menu {
        left: -1rem;
        font-weight: 400;
        margin-left: 0;
        padding-top: 2rem;
    }
    .menu-menu-header-container .sub-menu li {
        margin-bottom: 1.8rem;
        line-height: 1.1;
    }
    .menu-menu-header-container .sub-menu li:last-child {
        margin-bottom: 0;
    }
    /* carrousel */
    .carousel-cell {
/*        min-height: 60rem;*/
        height: 55vh;
    }
    .carousel-cell h2 {
        font-size: 8rem;
    }
    .carousel-cell ul {
        margin-left: 1rem;
    }
    .home-actus article,
    .lien-actus {
        width: calc(25% - 2rem);
    }
    .acces {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .plan {
        width: 66.1666%;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 66.1666%;
        flex: 1 0 66.1666%;
    }
    .infos-accès {
        margin: 0 0 0 2rem;
    }
    .flex-equipes {
       display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        grid-column-gap: 20px;
        grid-row-gap: 20px; 
        padding-bottom: 2rem;
    }
    
    .equipes figure {
        position: relative;
        margin-bottom: 0;
        width: 100%;
    }
    
}
