@charset "UTF-8";
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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  outline: none;
  vertical-align: baseline; }

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

*:focus {
  outline: 0; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  outline: none !important; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

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

body {
  font-family: 'Roboto', sans-serif;
  color: #7b848c;
  letter-spacing: 0.02em;
  font-size: 26px; }
  @media screen and (max-width: 812px) {
    body {
      font-size: 13px; } }

.sticky {
  position: fixed;
  z-index: 9999;
  top: 50%;
  right: 0;
  width: 5%;
  transform: translate3d(0, -50%, 0); }
  .sticky img {
    width: 100%;
    height: auto; }
  @media screen and (max-width: 812px) {
    .sticky {
      display: none; } }

.wrapper {
  position: relative;
  overflow: hidden;
  min-height: 100%; }
  .wrapper .full-container {
    max-width: 1900px;
    margin: 0 auto;
    left: 50%;
    min-height: 100vh; }
    @media screen and (max-width: 812px) {
      .wrapper .full-container {
        padding-top: 56px;
        left: 0; } }

#main-loader {
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -32px 0 0 -32px;
  z-index: 999;
  display: inline-block;
  width: 64px;
  height: 64px; }

#main-loader:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #80a8b6;
  border-color: #80a8b6 transparent #80a8b6 transparent;
  animation: lds-dual-ring 1.2s linear infinite; }

.block-loader {
  position: absolute;
  margin: 40px 0 0 -32px;
  z-index: 999;
  left: 50%;
  display: none;
  width: 64px;
  height: 64px; }
  .block-loader.show {
    display: inline-block; }
  .block-loader.white:after {
    border: 5px solid #ffffff;
    border-color: #ffffff transparent #ffffff transparent; }

.block-loader:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #80a8b6;
  border-color: #80a8b6 transparent #80a8b6 transparent;
  animation: lds-dual-ring 1.2s linear infinite; }

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.input-container {
  display: inline-block;
  text-align: left;
  margin: 40px 0 0;
  width: 560px;
  vertical-align: top; }
  .input-container label {
    font-size: 26px;
    margin: 0 30px;
    font-weight: 300; }
    @media screen and (max-width: 812px) {
      .input-container label {
        font-size: 14px; } }
    .input-container label.error {
      color: #df0000;
      font-size: 22px; }
    .input-container label#mention-error {
      margin-left: 80px; }
      .input-container label#mention-error ~ .checkmark {
        border-color: #df0000; }
  .input-container select,
  .input-container textarea,
  .input-container input[type='text'],
  .input-container input[type='search'],
  .input-container input[type='submit'] {
    display: block;
    margin: 15px 30px 0;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 15px 20px;
    font-size: 26px;
    color: #7b848c;
    width: 500px;
    background-color: #ffffff;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
    @media screen and (max-width: 812px) {
      .input-container select,
      .input-container textarea,
      .input-container input[type='text'],
      .input-container input[type='search'],
      .input-container input[type='submit'] {
        font-size: 14px; } }
    .input-container select.error,
    .input-container textarea.error,
    .input-container input[type='text'].error,
    .input-container input[type='search'].error,
    .input-container input[type='submit'].error {
      border: 2.5px solid #df0000;
      color: #df0000; }
  .input-container .error-message {
    margin: 10px 30px 0;
    color: #df0000;
    font-size: 20px; }
  .input-container .custom-checkbox {
    margin: 0 60px 0 0;
    vertical-align: top;
    position: relative;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
    .input-container .custom-checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0; }
    .input-container .custom-checkbox input:checked ~ .checkmark {
      background-color: #80a8b6;
      border-color: #ffffff !important; }
    .input-container .custom-checkbox input:checked ~ .checkmark:after {
      display: block; }
    .input-container .custom-checkbox .checkmark {
      position: absolute;
      top: 0;
      left: 0;
      height: 50px;
      width: 50px;
      background-color: #ffffff;
      box-sizing: border-box;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      border: 1px solid #ffffff; }
      .input-container .custom-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 19px;
        top: 10px;
        width: 10px;
        height: 20px;
        border: solid #ffffff;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg); }
  .input-container input[type='submit'] {
    margin: 15px auto;
    width: auto;
    padding: 15px 50px;
    border: 1px solid #ffffff;
    cursor: pointer;
    text-transform: uppercase;
    transition: all .3s; }
    .input-container input[type='submit']:hover {
      background: #80a8b6;
      color: #ffffff; }
    .input-container input[type='submit'].white:hover {
      background-color: #ffffff;
      color: #80a8b6; }
  .input-container select::-ms-expand {
    display: none; }
  .input-container select {
    background: url("./assets/img/arrow-down-select-blue.png") no-repeat 95% center, #ffffff; }
  .input-container.double {
    width: 1120px; }
    .input-container.double select,
    .input-container.double textarea,
    .input-container.double input[type='text'] {
      width: 1060px; }
  .input-container.full {
    width: 100%;
    text-align: center; }
  .input-container.mention {
    margin-top: 80px; }

@media screen and (max-width: 812px) {
  .input-container {
    margin: 15px 0 0;
    width: 100%; }
    .input-container label {
      display: block;
      margin: 10px 0 0 0; }
    .input-container.mention {
      margin: 15px 0 0;
      min-height: 60px; }
    .input-container.double {
      width: 100%; }
      .input-container.double select,
      .input-container.double textarea,
      .input-container.double input[type='search'],
      .input-container.double input[type='text'] {
        width: 100%; }
    .input-container select,
    .input-container textarea,
    .input-container input[type='text'],
    .input-container input[type='search'],
    .input-container input[type='submit'] {
      width: 100%;
      margin: 5px auto 0; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

section {
  padding-top: 80px; }
  section:first-of-type {
    transform: none;
    margin-bottom: 0;
    padding-top: 0px; }
    section:first-of-type.titre-page {
      padding-top: 80px; }
  section.previous-bloc {
    padding-bottom: 300px; }
    @media screen and (max-width: 812px) {
      section.previous-bloc {
        padding-bottom: 0; } }
  @media screen and (max-width: 812px) {
    section {
      padding-top: 40px; } }
  section.full-width .content,
  section.full-width #mapid {
    max-width: 100%; }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px; }
  header h1 {
    font-size: 0; }
  header .right-item {
    display: inline-block;
    font-size: 21px;
    font-weight: 300;
    padding: 0 25px;
    border-left: 1px solid #7b848c; }
    header .right-item:first-child {
      border: none; }
    header .right-item.lang-item select {
      color: #80a8b6;
      padding: 0 20px;
      background: url("./assets/img/arrow-down-lang.png") no-repeat center right; }
    header .right-item a {
      text-decoration: underline #7b848c; }
    header .right-item select {
      border: none;
      -webkit-appearance: none;
      -moz-appearance: none;
      background: none;
      font-size: 21px;
      color: #7b848c; }
  header .burger {
    display: none; }
  header .search {
    display: none; }
  header .content-right a {
    font-size: 21px;
    letter-spacing: 0.02em;
    padding: 0 20px; }
  @media screen and (max-width: 812px) {
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: calc(100% - 40px);
      background-color: white;
      z-index: 999;
      padding: 13px 20px 12px; }
      header h1 {
        text-align: center;
        width: 100%; }
        header h1 img {
          margin: 0 auto;
          width: 102px; }
      header .burger {
        margin: 0;
        width: 24px;
        height: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        cursor: pointer;
        z-index: 10; }
        header .burger__line {
          display: block;
          width: 30px;
          height: 2px;
          background: #80a8b6;
          transition: all .3s ease; }
          header .burger__line::before, header .burger__line::after {
            display: block;
            content: '';
            width: 100%;
            height: 2px;
            background: #80a8b6;
            transition: all .3s ease; }
          header .burger__line::before {
            transform: translateY(-7px); }
          header .burger__line::after {
            transform: translateY(5px); }
        header .burger.opened .burger__line {
          width: 25px;
          height: 2px;
          background: #80a8b6;
          transform: translateY(0) rotate(45deg); }
          header .burger.opened .burger__line::before {
            background: #80a8b6;
            opacity: 0;
            transform: translateY(0); }
          header .burger.opened .burger__line::after {
            background: #80a8b6;
            height: 2px;
            transform: translateY(-2px) rotate(-90deg); }
      header .search {
        display: block; }
        header .search img {
          width: 22px; }
      header.opened .burger__line {
        background: #80a8b6; }
        header.opened .burger__line::before, header.opened .burger__line::after {
          background: #80a8b6; }
      header.opened .burger.open .burger__line {
        width: 25px;
        height: 2px;
        background: #80a8b6;
        transform: translateY(0) rotate(45deg); }
        header.opened .burger.open .burger__line::before {
          background: #80a8b6;
          opacity: 0;
          transform: translateY(0); }
        header.opened .burger.open .burger__line::after {
          background: #80a8b6;
          height: 2px;
          transform: translateY(-2px) rotate(-90deg); }
      header .content-right {
        display: none; } }

nav {
  background-color: #f2f6f7; }
  nav ul {
    display: flex;
    align-items: stretch;
    position: relative; }
    nav ul li.nav {
      position: relative;
      display: flex;
      padding: 30px 25px;
      text-align: center;
      cursor: pointer; }
      @media all and (-ms-high-contrast: none) {
        nav ul li.nav {
          min-width: 10%; } }
      @media screen and (min-width: 813px) {
        nav ul li.nav:after {
          content: "";
          position: absolute;
          right: 0px;
          width: 1px;
          height: 18px;
          background-color: #ced4d7;
          top: 50%;
          margin-top: -9px; }
        nav ul li.nav:nth-last-child(2):after {
          width: 0; }
        nav ul li.nav:nth-last-child(3):after {
          width: 0; } }
      nav ul li.nav div {
        display: flex;
        align-items: center; }
        nav ul li.nav div.search {
          border: 1px solid #7b848c;
          padding: 15px 25px;
          margin-right: 20px;
          text-transform: uppercase; }
          nav ul li.nav div.search:hover {
            background-color: #7b848c;
            color: #ffffff; }
        nav ul li.nav div a {
          font-size: 20px;
          letter-spacing: 0.04em;
          font-weight: 700; }
          @media screen and (max-width: 812px) {
            nav ul li.nav div a {
              font-size: 15px;
              font-weight: 200; } }
      @media screen and (min-width: 813px) {
        nav ul li.nav:hover:before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          height: 15px;
          background-color: #ffffff; } }
    nav ul .subNav {
      position: absolute;
      left: 60px;
      top: 100%;
      width: calc(100% - 270px);
      padding: 35px 75px 75px 75px;
      visibility: hidden;
      opacity: 0;
      transition: all .3s;
      z-index: 999;
      transform: translate3d(0, -20px, 0);
      background-color: #ffffff; }
      nav ul .subNav.active {
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, -1px, 0); }
      nav ul .subNav ul {
        display: block; }
        nav ul .subNav ul li.subNavItem {
          text-align: left;
          position: relative;
          display: inline-block;
          width: 49%;
          margin: 40px 0 0 0;
          padding: 0 0 40px 0; }
          nav ul .subNav ul li.subNavItem a {
            font-size: 27px;
            letter-spacing: 0;
            color: #80a8b6;
            text-transform: uppercase;
            font-weight: 700; }
            @media screen and (max-width: 812px) {
              nav ul .subNav ul li.subNavItem a {
                font-size: 11px;
                font-weight: 400;
                letter-spacing: 0.04em; } }
          @media screen and (min-width: 813px) {
            nav ul .subNav ul li.subNavItem:after {
              content: "";
              width: 62px;
              height: 1px;
              background-color: #80a8b6;
              position: absolute;
              left: 0;
              bottom: 0; } }
  nav .desktop {
    display: block; }
  nav .mobile {
    display: none; }
  @media screen and (max-width: 812px) {
    nav {
      visibility: hidden;
      position: fixed;
      z-index: 1001;
      top: 56px;
      left: 0;
      width: 100%;
      height: 0;
      background-color: #ffffff;
      transition: all .3s; }
      nav .desktop {
        display: none; }
      nav .mobile {
        display: block; }
      nav.opened {
        display: block;
        visibility: visible;
        height: calc(100% - 56px);
        background-color: rgba(0, 0, 0, 0.5); }
      nav ul {
        display: block;
        overflow: auto;
        height: 100%; }
        nav ul li.nav {
          display: block;
          border-top: 1px solid #edf3f5;
          padding: 15px 0;
          position: relative;
          transition: none;
          background-color: #ffffff; }
          nav ul li.nav.desktop {
            display: none; }
          nav ul li.nav div {
            display: block; }
          nav ul li.nav.active {
            transition: all .3s;
            background-color: #80a8b6;
            color: #ffffff; }
            nav ul li.nav.active:after {
              content: '';
              position: absolute;
              border-style: solid;
              border-width: 6px 22px 0;
              border-color: #80a8b6 transparent;
              display: block;
              width: 0;
              z-index: 3;
              bottom: -6px;
              left: 50%;
              transform: translate3d(-50%, 0, 0); }
        nav ul .subNav {
          position: relative;
          left: 0;
          top: initial;
          width: 100%;
          padding: 0;
          transform: none;
          background-color: #f2f6f7;
          color: #80a8b6;
          height: 0;
          transition: none; }
          nav ul .subNav.active {
            height: auto;
            transform: none; }
          nav ul .subNav ul li.subNavItem {
            display: block;
            width: 100%;
            text-align: center;
            margin: 0;
            padding: 15px 0;
            border-bottom: 1px solid #edf3f5; }
            nav ul .subNav ul li.subNavItem:last-child {
              border-bottom: 0; }
      nav .more {
        background-color: #80a8b6;
        width: 100%;
        height: 54px;
        display: flex;
        border-top: 1px solid #ffffff; }
        nav .more div {
          display: flex;
          align-items: center;
          height: 100%;
          width: 50%;
          justify-content: center; }
          nav .more div:not(last-child) {
            border-right: 1px solid #ffffff; }
          nav .more div a {
            color: #ffffff;
            font-weight: 200; } }

.slideshow-actualites {
  text-align: center; }
  .slideshow-actualites h2 {
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 80px; }
    @media screen and (max-width: 812px) {
      .slideshow-actualites h2 {
        font-size: 20px; } }
    @media screen and (max-width: 812px) {
      .slideshow-actualites h2 {
        margin-bottom: 40px; } }
  .slideshow-actualites .images img {
    width: 100%; }
  .slideshow-actualites .carousel {
    max-width: 1300px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    background-color: #80a8b6;
    padding: 130px 0 80px;
    transform: translate3d(0, -75px, 0); }
    .slideshow-actualites .carousel .slide {
      position: relative;
      display: inline-block;
      max-width: 1300px;
      white-space: initial;
      color: #ffffff; }
      .slideshow-actualites .carousel .slide h3 {
        font-size: 55.22px;
        font-weight: 300;
        text-transform: uppercase;
        padding-bottom: 35px;
        position: relative; }
        @media screen and (max-width: 812px) {
          .slideshow-actualites .carousel .slide h3 {
            font-size: 20px; } }
        .slideshow-actualites .carousel .slide h3:after {
          content: "";
          width: 70px;
          height: 1px;
          background-color: #ffffff;
          position: absolute;
          left: 50%;
          transform: translate3d(-50%, 0, 0);
          bottom: 0; }
      .slideshow-actualites .carousel .slide img {
        margin: 0 auto; }
      .slideshow-actualites .carousel .slide p {
        margin-top: 35px;
        padding: 0 80px;
        white-space: normal; }
      .slideshow-actualites .carousel .slide a {
        font-size: 26px;
        font-weight: 900;
        padding: 15px 55px;
        border: 1px solid #80a8b6;
        background-color: #80a8b6;
        color: #ffffff;
        transition: all .3s ease-in-out;
        display: inline-block;
        margin-top: 30px; }
        .slideshow-actualites .carousel .slide a:hover {
          background-color: transparent;
          color: #80a8b6; }
        .slideshow-actualites .carousel .slide a.white {
          border: 1px solid #ffffff;
          background-color: #ffffff;
          color: #80a8b6; }
          .slideshow-actualites .carousel .slide a.white:hover {
            background-color: transparent;
            color: #ffffff; }
        .slideshow-actualites .carousel .slide a.ocre {
          border: 1px solid #ba9a3e;
          background-color: #ba9a3e;
          color: #ffffff; }
          .slideshow-actualites .carousel .slide a.ocre:hover {
            background-color: transparent;
            color: #ba9a3e; }
        @media screen and (max-width: 812px) {
          .slideshow-actualites .carousel .slide a {
            padding: 10px 20px;
            font-size: 15px; } }
    .slideshow-actualites .carousel.blue {
      background-color: #80a8b6; }
    .slideshow-actualites .carousel.ocre {
      background-color: #bb993f; }
      .slideshow-actualites .carousel.ocre .slide a {
        color: #ba9a3e; }
      .slideshow-actualites .carousel.ocre .slick-dots li button {
        background-color: #d0b878; }
      .slideshow-actualites .carousel.ocre .slick-dots li.slick-active button {
        background-color: #ffffff; }
    @media screen and (max-width: 812px) {
      .slideshow-actualites .carousel {
        overflow: initial;
        width: 100%;
        transform: none;
        padding: 40px 0; }
        .slideshow-actualites .carousel .slide {
          width: 100%; }
          .slideshow-actualites .carousel .slide h2 {
            padding-bottom: 20px; }
          .slideshow-actualites .carousel .slide p {
            margin-top: 20px;
            padding: 0 20px; } }

.push-soins, .push-pathologies {
  padding: 80px 0; }
  @media screen and (max-width: 812px) {
    .push-soins, .push-pathologies {
      padding: 50px 0 20px; } }
  .push-soins.blue, .push-pathologies.blue {
    background-color: #80a8b6;
    color: #ffffff; }
  .push-soins .title, .push-pathologies .title {
    width: 60%;
    margin: 0 auto; }
    @media screen and (max-width: 812px) {
      .push-soins .title, .push-pathologies .title {
        width: 90%; } }
    .push-soins .title h2, .push-pathologies .title h2 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .push-soins .title h2, .push-pathologies .title h2 {
          font-size: 20px; } }
  .push-soins .image, .push-pathologies .image {
    width: 1630px;
    height: 530px;
    margin: 80px auto 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center; }
    @media screen and (max-width: 812px) {
      .push-soins .image, .push-pathologies .image {
        background-size: 100%;
        width: 100%;
        height: 200px;
        margin: 50px auto 0; } }
  .push-soins .pushs, .push-pathologies .pushs {
    margin-top: 80px; }
    @media screen and (max-width: 812px) {
      .push-soins .pushs, .push-pathologies .pushs {
        margin-top: 30px; } }
    .push-soins .pushs .item-mobile, .push-pathologies .pushs .item-mobile {
      display: flex;
      flex-flow: wrap;
      max-width: 320px;
      margin: 0 auto; }
    .push-soins .pushs .carousel, .push-pathologies .pushs .carousel {
      display: flex;
      justify-content: center;
      max-width: 1630px;
      margin: 0 auto; }
      @media screen and (max-width: 812px) {
        .push-soins .pushs .carousel, .push-pathologies .pushs .carousel {
          padding-bottom: 40px;
          flex-wrap: wrap; } }
      .push-soins .pushs .carousel .slick-list, .push-pathologies .pushs .carousel .slick-list {
        padding: 10px 0;
        max-width: 1388px; }
        @media screen and (max-width: 812px) {
          .push-soins .pushs .carousel .slick-list, .push-pathologies .pushs .carousel .slick-list {
            max-width: 159px; } }
      .push-soins .pushs .carousel .slick-arrow, .push-pathologies .pushs .carousel .slick-arrow {
        font-size: 0;
        width: 80px;
        border: none; }
        .push-soins .pushs .carousel .slick-arrow.slick-next, .push-pathologies .pushs .carousel .slick-arrow.slick-next {
          background: url("./assets/img/arrow-right-white.png") center center no-repeat; }
        .push-soins .pushs .carousel .slick-arrow.slick-prev, .push-pathologies .pushs .carousel .slick-arrow.slick-prev {
          background: url("./assets/img/arrow-left-white.png") center center no-repeat; }
      .push-soins .pushs .carousel .slick-dots, .push-pathologies .pushs .carousel .slick-dots {
        top: inherit;
        bottom: 0; }
  .push-soins .content-push, .push-pathologies .content-push {
    display: flex;
    justify-content: center;
    max-width: 1630px;
    margin: 0 auto; }
    .push-soins .content-push.wrap, .push-pathologies .content-push.wrap {
      flex-wrap: wrap; }
      .push-soins .content-push.wrap .push-item, .push-pathologies .content-push.wrap .push-item {
        margin: 80px 20px 0; }
  .push-soins .push-item, .push-pathologies .push-item {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 287px;
    min-width: 287px;
    height: 287px;
    margin: 0 30px;
    position: relative;
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
    cursor: pointer;
    transition: all .3s ease-in-out; }
    .push-soins .push-item::before, .push-pathologies .push-item::before {
      content: '';
      border: 0.5px solid #7b848c;
      display: block;
      position: absolute;
      top: 5%;
      left: 5%;
      width: 90%;
      height: 90%; }
    @media screen and (max-width: 812px) {
      .push-soins .push-item, .push-pathologies .push-item {
        max-width: 135px;
        min-width: 135px;
        height: 135px;
        padding: 10px;
        margin: 20px 12px 0; } }
    .push-soins .push-item a, .push-pathologies .push-item a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      color: #7b848c;
      text-transform: uppercase;
      font-size: 26px;
      font-weight: 500;
      line-height: 30px;
      cursor: pointer;
      z-index: 10; }
      @media screen and (max-width: 812px) {
        .push-soins .push-item a, .push-pathologies .push-item a {
          font-size: 14px;
          line-height: 18px; } }
    .push-soins .push-item:hover, .push-pathologies .push-item:hover {
      transform: scale3d(1.05, 1.05, 1);
      box-shadow: 5px 5px 12px 0px rgba(124, 132, 139, 0.5); }
  .push-soins ~ .footer-page, .push-pathologies ~ .footer-page {
    margin-top: 0; }

.slideshow-pathologies {
  padding: 80px 0; }
  .slideshow-pathologies.white {
    background-color: #ffffff; }
    .slideshow-pathologies.white .pushs .carousel .slick-prev.slick-arrow {
      background: url("/wp-content/themes/sinoue/assets/img/arrow-left-black.png") no-repeat;
      background-size: 100%; }
    .slideshow-pathologies.white .pushs .carousel .slick-next.slick-arrow {
      background: url("/wp-content/themes/sinoue/assets/img/arrow-right-black.png") no-repeat;
      background-size: 100%; }
  .slideshow-pathologies .title {
    width: 60%;
    margin: 0 auto; }
    .slideshow-pathologies .title h2 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .slideshow-pathologies .title h2 {
          font-size: 20px; } }
  .slideshow-pathologies .pushs {
    margin-top: 80px; }
    .slideshow-pathologies .pushs .carousel {
      display: flex;
      justify-content: center;
      max-width: 1630px;
      margin: 0 auto; }
      .slideshow-pathologies .pushs .carousel .slick-list {
        width: 1388px;
        padding: 10px 0; }
      .slideshow-pathologies .pushs .carousel .slide .push-item {
        margin: 0 auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        box-sizing: border-box;
        width: 396px;
        height: 441px;
        position: relative;
        padding: 20px;
        background-color: #ffffff;
        text-align: center;
        border: 2.5px solid #f4f5f6;
        cursor: pointer;
        transition: all .3s ease-in-out; }
        .slideshow-pathologies .pushs .carousel .slide .push-item:hover {
          transform: scale(1.01);
          box-shadow: 5px 5px 12px 0px rgba(189, 189, 189, 0.5); }
          .slideshow-pathologies .pushs .carousel .slide .push-item:hover .item-content a {
            background-color: transparent;
            color: #80a8b6; }
        .slideshow-pathologies .pushs .carousel .slide .push-item .item-title {
          display: flex;
          align-items: center;
          height: 55%;
          width: 100%;
          text-align: center; }
          .slideshow-pathologies .pushs .carousel .slide .push-item .item-title h3 {
            font-size: 39.2px;
            font-weight: 700;
            color: #ba9a3e;
            width: 100%; }
            @media screen and (max-width: 812px) {
              .slideshow-pathologies .pushs .carousel .slide .push-item .item-title h3 {
                font-size: 17px; } }
        .slideshow-pathologies .pushs .carousel .slide .push-item .item-content {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          height: 45%; }
          .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a {
            font-size: 26px;
            font-weight: 900;
            padding: 15px 55px;
            border: 1px solid #80a8b6;
            background-color: #80a8b6;
            color: #ffffff;
            transition: all .3s ease-in-out;
            display: inline-block;
            margin-top: 30px;
            cursor: pointer;
            margin-bottom: 30px; }
            .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a:hover {
              background-color: transparent;
              color: #80a8b6; }
            .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a.white {
              border: 1px solid #ffffff;
              background-color: #ffffff;
              color: #80a8b6; }
              .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a.white:hover {
                background-color: transparent;
                color: #ffffff; }
            .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a.ocre {
              border: 1px solid #ba9a3e;
              background-color: #ba9a3e;
              color: #ffffff; }
              .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a.ocre:hover {
                background-color: transparent;
                color: #ba9a3e; }
            @media screen and (max-width: 812px) {
              .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a {
                padding: 10px 20px;
                font-size: 15px; } }
        @media screen and (max-width: 812px) {
          .slideshow-pathologies .pushs .carousel .slide .push-item {
            width: calc(100% - 124px);
            height: auto; }
            .slideshow-pathologies .pushs .carousel .slide .push-item .item-title {
              min-height: 51px; }
            .slideshow-pathologies .pushs .carousel .slide .push-item .item-content a {
              margin-bottom: 0; } }
    @media screen and (max-width: 812px) {
      .slideshow-pathologies .pushs {
        margin-top: 40px; } }
  @media screen and (max-width: 812px) {
    .slideshow-pathologies {
      padding: 40px 0; } }

.paragraphe {
  display: flex;
  flex-direction: row;
  max-width: 1446px;
  margin: 0 auto; }
  .paragraphe .image {
    position: relative;
    width: 50%;
    min-height: 600px;
    overflow: hidden;
    border-top: 2px solid #edf3f5;
    border-bottom: 2px solid #edf3f5; }
    .paragraphe .image.avatar img {
      max-width: 550px;
      margin: 0 auto;
      min-width: inherit;
      min-height: inherit; }
    .paragraphe .image img {
      display: block;
      width: auto;
      min-width: 100%;
      min-height: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate3d(-50%, -50%, 0); }
  .paragraphe .text {
    padding: 50px 80px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-content: space-around;
    width: 50%;
    border-top: 2px solid #edf3f5;
    border-bottom: 2px solid #edf3f5; }
    .paragraphe .text .textContent h2 {
      font-size: 39.2px;
      font-weight: 700; }
      @media screen and (max-width: 812px) {
        .paragraphe .text .textContent h2 {
          font-size: 17px; } }
    .paragraphe .text .textContent ul {
      margin-top: 20px; }
      .paragraphe .text .textContent ul li {
        text-transform: uppercase; }
        .paragraphe .text .textContent ul li:before {
          content: "•";
          margin-right: 5px; }
    .paragraphe .text .textContent .infos {
      display: block;
      margin-top: 20px;
      font-weight: 700; }
    .paragraphe .text .textContent p {
      margin-top: 10px; }
      .paragraphe .text .textContent p strong {
        font-weight: 700; }
      .paragraphe .text .textContent p em {
        font-style: italic; }
    .paragraphe .text .textContent .cta {
      margin-top: 35px;
      font-size: 26px;
      font-weight: 900;
      padding: 15px 55px;
      border: 1px solid #80a8b6;
      background-color: #80a8b6;
      color: #ffffff;
      transition: all .3s ease-in-out;
      display: inline-block;
      margin-top: 30px; }
      .paragraphe .text .textContent .cta:hover {
        background-color: transparent;
        color: #80a8b6; }
      .paragraphe .text .textContent .cta.white {
        border: 1px solid #ffffff;
        background-color: #ffffff;
        color: #80a8b6; }
        .paragraphe .text .textContent .cta.white:hover {
          background-color: transparent;
          color: #ffffff; }
      .paragraphe .text .textContent .cta.ocre {
        border: 1px solid #ba9a3e;
        background-color: #ba9a3e;
        color: #ffffff; }
        .paragraphe .text .textContent .cta.ocre:hover {
          background-color: transparent;
          color: #ba9a3e; }
      @media screen and (max-width: 812px) {
        .paragraphe .text .textContent .cta {
          padding: 10px 20px;
          font-size: 15px; } }
    .paragraphe .text.ocre {
      /*
            ul li {
                color: $ocre;
            }
            */ }
      .paragraphe .text.ocre .textContent h2 {
        color: #ba9a3e; }
    .paragraphe .text.bleu {
      /*
            ul li {
                color: $blue;
            }
            */ }
      .paragraphe .text.bleu .textContent h2 {
        color: #80a8b6; }
  .paragraphe.droite .text {
    border-right: 2px solid #edf3f5;
    order: 2; }
  .paragraphe.droite .image {
    border-left: 2px solid #edf3f5;
    order: 1; }
  .paragraphe.gauche .text {
    border-left: 2px solid #edf3f5;
    order: 1; }
  .paragraphe.gauche .image {
    order: 2;
    border-right: 2px solid #edf3f5; }
  .paragraphe.no-picture .image {
    display: none; }
  .paragraphe.no-picture .text {
    width: 100%;
    border: 0;
    text-align: center;
    padding: 0 80px; }
    .paragraphe.no-picture .text p {
      margin-top: 45px; }
    .paragraphe.no-picture .text ul li {
      list-style: none;
      margin: 0; }
      .paragraphe.no-picture .text ul li:before {
        content: "•";
        margin-right: 5px; }
  @media screen and (max-width: 812px) {
    .paragraphe {
      display: block; }
      .paragraphe .image img {
        width: 100%;
        height: auto;
        min-height: 0;
        position: relative;
        transform: none;
        left: initial;
        top: initial; }
      .paragraphe .text,
      .paragraphe .image {
        min-height: 0;
        width: 100%; }
        .paragraphe .text.avatar,
        .paragraphe .image.avatar {
          border: none; }
      .paragraphe .text {
        padding: 30px 15px;
        margin-top: 40px;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
        text-align: center; }
        .paragraphe .text ul {
          text-align: left;
          display: inline-block; }
      .paragraphe.no-picture {
        padding: 50px 0; }
        .paragraphe.no-picture .text {
          padding: 0 40px;
          margin-top: 0; }
          .paragraphe.no-picture .text p {
            margin-top: 25px; } }

.encart-accompagnement {
  padding: 80px 0; }
  @media screen and (max-width: 812px) {
    .encart-accompagnement {
      padding: 50px 0 20px; } }
  .encart-accompagnement.blue {
    background-color: #f2f6f7; }
    .encart-accompagnement.blue h3 {
      background-color: #f2f6f7; }
  .encart-accompagnement .title {
    width: 60%;
    margin: 0 auto; }
    @media screen and (max-width: 812px) {
      .encart-accompagnement .title {
        width: 90%; } }
    .encart-accompagnement .title h2 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .encart-accompagnement .title h2 {
          font-size: 20px; } }
  .encart-accompagnement .pushs {
    margin-top: 80px; }
    @media screen and (max-width: 812px) {
      .encart-accompagnement .pushs {
        margin-top: 50px; } }
    .encart-accompagnement .pushs .line-container {
      position: absolute;
      top: 100px; }
      @media screen and (max-width: 812px) {
        .encart-accompagnement .pushs .line-container {
          display: flex;
          justify-content: center;
          height: 75%;
          width: 100%;
          top: 0; } }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .encart-accompagnement .pushs .line-container {
          left: 50%;
          -ms-transform: translate3d(-50%, 0, 0); } }
  @media screen and (-ms-high-contrast: active) and (max-width: 812px), screen and (-ms-high-contrast: none) and (max-width: 812px) {
    .encart-accompagnement .pushs .line-container {
      -ms-transform: translate3d(-50.33%, 2px, 0); } }
      .encart-accompagnement .pushs .line-container .svg-desktop {
        height: 10px; }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .line-container .svg-desktop {
            display: none; } }
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
          .encart-accompagnement .pushs .line-container .svg-desktop {
            background-color: #ffffff; } }
      .encart-accompagnement .pushs .line-container .svg-mobile {
        display: none; }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .line-container .svg-mobile {
            display: block;
            height: 100%; } }
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
          .encart-accompagnement .pushs .line-container .svg-mobile {
            background-color: #ffffff; } }
      .encart-accompagnement .pushs .line-container .line {
        stroke-dasharray: 1200;
        stroke-dashoffset: 1200;
        animation: dash 1.3s linear forwards; }
    .encart-accompagnement .pushs .steps {
      display: flex;
      justify-content: center;
      position: relative; }
      @media screen and (max-width: 812px) {
        .encart-accompagnement .pushs .steps {
          flex-direction: column; } }
    .encart-accompagnement .pushs .step {
      width: 580px;
      text-align: center;
      padding: 0 60px;
      box-sizing: border-box; }
      @media screen and (max-width: 812px) {
        .encart-accompagnement .pushs .step {
          width: 100%;
          padding: 0 25px 40px;
          z-index: 10; } }
      .encart-accompagnement .pushs .step.step-1 {
        animation: show .7s linear forwards; }
      .encart-accompagnement .pushs .step.step-2 {
        opacity: 0;
        animation: show 1s .5s linear forwards; }
      .encart-accompagnement .pushs .step .number {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 230px; }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .step .number {
            height: 130px; } }
        .encart-accompagnement .pushs .step .number::before {
          content: '';
          display: block;
          width: 180px;
          height: 180px;
          border-radius: 80% 10%;
          transform: rotate(135deg) translateX(3px);
          margin: 0 auto;
          background-color: #ffffff; }
          @media screen and (max-width: 812px) {
            .encart-accompagnement .pushs .step .number::before {
              width: 100px;
              height: 100px; } }
          @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .encart-accompagnement .pushs .step .number::before {
              margin: 0; } }
        .encart-accompagnement .pushs .step .number span {
          font-size: 55.22px;
          font-weight: 300;
          text-transform: uppercase;
          color: #ba9a3e;
          position: absolute;
          z-index: 5; }
          @media screen and (max-width: 812px) {
            .encart-accompagnement .pushs .step .number span {
              font-size: 20px; } }
          @media screen and (max-width: 812px) {
            .encart-accompagnement .pushs .step .number span {
              font-size: 26px; } }
          @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
            .encart-accompagnement .pushs .step .number span {
              top: 50%;
              left: 50%;
              -ms-transform: translate3d(-50%, -50%, 0); } }
      .encart-accompagnement .pushs .step h3 {
        font-size: 30.6px;
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 60px; }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .step h3 {
            font-size: 16px; } }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .step h3 {
            margin-top: 30px;
            padding: 5px 0; } }
      .encart-accompagnement .pushs .step p {
        font-size: 26px;
        margin-top: 30px; }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .step p {
            font-size: 14px; } }
        @media screen and (max-width: 812px) {
          .encart-accompagnement .pushs .step p {
            margin-top: 15px; } }

@keyframes dash {
  to {
    stroke-dashoffset: 0; } }

@keyframes show {
  0% {
    opacity: 0; }
  75% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.store-locator {
  padding: 0;
  transform: translateY(-230px);
  margin-bottom: -160px; }
  .store-locator.first {
    transform: translateY(0); }
    .store-locator.first .iframe-map {
      max-height: none; }
  .store-locator .content {
    max-width: 1446px;
    margin: 0 auto;
    background-color: #80a8b6;
    color: #ffffff; }
  .store-locator .title {
    width: 60%;
    padding-top: 40px;
    margin: 0 auto; }
    .store-locator .title h1,
    .store-locator .title h2 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .store-locator .title h1,
        .store-locator .title h2 {
          font-size: 20px; } }
  .store-locator .filters {
    margin: 40px 0 0; }
    .store-locator .filters form {
      text-align: center; }
    .store-locator .filters .filters-select {
      text-align: center; }
      .store-locator .filters .filters-select .input-container {
        display: inline-block;
        text-align: left;
        width: inherit;
        margin: inherit; }
        .store-locator .filters .filters-select .input-container label {
          font-size: 26px; }
          @media screen and (max-width: 812px) {
            .store-locator .filters .filters-select .input-container label {
              font-size: 14px; } }
        .store-locator .filters .filters-select .input-container select {
          display: block;
          margin-top: 15px;
          border: none;
          border-radius: 0;
          -webkit-appearance: none;
          -moz-appearance: none;
          appearance: none;
          padding: 15px 20px;
          font-size: 26px;
          color: #7b848c;
          background: url("./assets/img/arrow-down-select-blue.png") no-repeat 95% center, #ffffff; }
          @media screen and (max-width: 812px) {
            .store-locator .filters .filters-select .input-container select {
              font-size: 14px; } }
          .store-locator .filters .filters-select .input-container select.select-specialties {
            width: 500px;
            margin-right: 100px; }
          .store-locator .filters .filters-select .input-container select.select-age {
            width: 280px; }
    .store-locator .filters .input-container.submit {
      text-align: center;
      margin-top: 60px; }
      .store-locator .filters .input-container.submit input {
        border: 1px solid #80a8b6;
        padding: 15px 55px;
        color: #80a8b6;
        font-size: 26px;
        background-color: transparent;
        text-transform: uppercase;
        cursor: pointer;
        transition: all .3s ease-in-out; }
        .store-locator .filters .input-container.submit input.white {
          border: 1px solid #ffffff;
          color: #ffffff; }
        @media screen and (max-width: 812px) {
          .store-locator .filters .input-container.submit input {
            font-size: 14px; } }
        .store-locator .filters .input-container.submit input:hover {
          background-color: #ffffff;
          color: #80a8b6; }
  .store-locator #mapid {
    max-width: 1446px;
    margin: 60px auto 0;
    height: 738px; }
  @media screen and (max-width: 812px) {
    .store-locator {
      transform: none;
      margin-bottom: 0px; }
      .store-locator .filters {
        margin: 0 15px; }
        .store-locator .filters .filters-select .input-container {
          display: block; }
          .store-locator .filters .filters-select .input-container.submit {
            margin-top: 30px; }
          .store-locator .filters .filters-select .input-container label {
            display: block;
            margin: 10px 0 0 0; }
          .store-locator .filters .filters-select .input-container select.select-specialties, .store-locator .filters .filters-select .input-container select.select-age {
            width: 100%;
            margin: 5px auto 0; }
      .store-locator #mapid {
        margin-top: 40px;
        width: 100%;
        height: 300px; } }

.footer-page {
  margin-top: 60px; }
  .footer-page .contact-container {
    text-align: center;
    padding: 30px 0;
    background-color: #f2f6f7; }
    .footer-page .contact-container a {
      color: #80a8b6;
      text-decoration: underline;
      font-size: 24px;
      font-weight: 700;
      text-decoration: underline;
      font-size: 26px;
      cursor: pointer; }
      .footer-page .contact-container a:hover {
        text-decoration: none; }
    @media screen and (max-width: 812px) {
      .footer-page .contact-container {
        padding: 20px 0;
        background-color: #f4f5f6; }
        .footer-page .contact-container a {
          font-size: 13px; } }
  .footer-page .footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7b848c;
    padding: 60px 0;
    color: #ffffff;
    font-size: 21.55px;
    font-weight: 300; }
    @media screen and (max-width: 812px) {
      .footer-page .footer-container {
        font-size: 13px; } }
    .footer-page .footer-container .links-content li {
      display: inline-block;
      border-right: 1px solid #ffffff;
      padding: 0 20px; }
      .footer-page .footer-container .links-content li a {
        cursor: pointer; }
        .footer-page .footer-container .links-content li a:hover {
          text-decoration: underline; }
    .footer-page .footer-container .social-network {
      display: flex;
      align-items: center;
      justify-content: center; }
      .footer-page .footer-container .social-network a {
        display: inline-block;
        padding: 0 20px;
        cursor: pointer; }
        .footer-page .footer-container .social-network a:last-child {
          border: none; }
        .footer-page .footer-container .social-network a img {
          width: 23px; }
    @media screen and (max-width: 812px) {
      .footer-page .footer-container {
        display: block;
        text-align: center;
        padding: 20px 0 25px; }
        .footer-page .footer-container .links-content {
          width: 100%; }
          .footer-page .footer-container .links-content li {
            display: block;
            border-right: 0;
            padding: 10px 0;
            position: relative; }
            .footer-page .footer-container .links-content li::after {
              content: "";
              position: absolute;
              bottom: 0;
              left: 50%;
              transform: translate3d(-50%, 0, 0);
              width: 16px;
              height: 1px;
              background-color: #ffffff; }
        .footer-page .footer-container .social-network {
          width: 100%;
          margin-top: 10px; }
          .footer-page .footer-container .social-network a img {
            width: 28px; } }
  @media screen and (max-width: 812px) {
    .footer-page {
      margin-top: 0px; } }

.chiffres-cles {
  position: relative;
  margin: 80px 0 40px; }
  @media screen and (max-width: 812px) {
    .chiffres-cles {
      margin: 40px 0 20px; } }
  .chiffres-cles::before {
    content: '';
    display: block;
    width: 100%;
    height: 75%;
    background: #f2f6f7;
    position: absolute;
    top: 0;
    left: 0; }
  .chiffres-cles .content {
    width: 1450px;
    margin: 0 auto;
    position: relative; }
    @media screen and (max-width: 812px) {
      .chiffres-cles .content {
        width: 100%; } }
  .chiffres-cles .title {
    width: 60%;
    margin: 0 auto; }
    @media screen and (max-width: 812px) {
      .chiffres-cles .title {
        width: 90%; } }
    .chiffres-cles .title h2 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .chiffres-cles .title h2 {
          font-size: 20px; } }
  .chiffres-cles .text-container {
    margin: 60px auto 0;
    width: 80%; }
    @media screen and (max-width: 812px) {
      .chiffres-cles .text-container {
        margin: 30px auto 0;
        width: 90%; } }
    .chiffres-cles .text-container p {
      font-size: 26px;
      text-align: center; }
      @media screen and (max-width: 812px) {
        .chiffres-cles .text-container p {
          font-size: 14px; } }
  .chiffres-cles .pushs {
    margin-top: 30px; }
    .chiffres-cles .pushs .content-carousel {
      display: flex;
      justify-content: center; }
      @media screen and (max-width: 812px) {
        .chiffres-cles .pushs .content-carousel {
          width: 100%; } }
      .chiffres-cles .pushs .content-carousel.wrap {
        flex-flow: wrap;
        justify-content: initial;
        max-width: 1320px;
        margin: 0 auto; }
        @media screen and (max-width: 812px) {
          .chiffres-cles .pushs .content-carousel.wrap {
            justify-content: center; } }
    .chiffres-cles .pushs .push-item {
      width: 400px;
      height: 375px;
      position: relative;
      box-sizing: border-box;
      padding: 20px;
      margin: 30px 20px 0;
      background-color: #ffffff;
      text-align: center;
      border: 2.5px solid #f4f5f6; }
      @media screen and (max-width: 812px) {
        .chiffres-cles .pushs .push-item {
          width: 180px;
          height: 180px;
          margin: 10px 5px 0; } }
      .chiffres-cles .pushs .push-item .number {
        margin-top: 65px;
        font-size: 120px;
        font-weight: 600;
        color: #ba9a3e;
        text-transform: uppercase; }
        @media screen and (max-width: 812px) {
          .chiffres-cles .pushs .push-item .number {
            font-size: 60px; } }
        @media screen and (max-width: 812px) {
          .chiffres-cles .pushs .push-item .number {
            margin-top: 20px; } }
      .chiffres-cles .pushs .push-item .text {
        margin-top: 45px;
        font-size: 26px; }
        @media screen and (max-width: 812px) {
          .chiffres-cles .pushs .push-item .text {
            font-size: 14px; } }
        @media screen and (max-width: 812px) {
          .chiffres-cles .pushs .push-item .text {
            margin-top: 10px; } }
    .chiffres-cles .pushs .slick-list {
      width: 1300px; }
      @media screen and (max-width: 812px) {
        .chiffres-cles .pushs .slick-list {
          max-width: 190px;
          margin-bottom: 50px; } }
    .chiffres-cles .pushs .slick-arrow {
      font-size: 0;
      width: 80px;
      border: none; }
      .chiffres-cles .pushs .slick-arrow.slick-next {
        background: url("./assets/img/arrow-right-black.png") center center no-repeat; }
      .chiffres-cles .pushs .slick-arrow.slick-prev {
        background: url("./assets/img/arrow-left-black.png") center center no-repeat; }
    @media screen and (max-width: 812px) {
      .chiffres-cles .pushs .slick-dots {
        top: inherit;
        bottom: 0; }
        .chiffres-cles .pushs .slick-dots li button {
          background-color: #f4f5f6; }
        .chiffres-cles .pushs .slick-dots li.slick-active button {
          background-color: #80a8b6; } }

.carousel {
  position: relative; }
  .carousel .slick-dots {
    margin: 0;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 50px;
    width: 100%;
    display: none; }
    .carousel .slick-dots.show {
      display: block; }
    .carousel .slick-dots li {
      display: inline-block;
      cursor: pointer; }
      .carousel .slick-dots li button {
        background-color: #a6c2cc;
        border-radius: 10px;
        display: inline-block;
        height: 20px;
        width: 20px;
        margin: 0 10px;
        color: transparent;
        border: 0;
        cursor: pointer; }
      .carousel .slick-dots li.slick-active button {
        background-color: #ffffff; }
    @media screen and (max-width: 812px) {
      .carousel .slick-dots {
        top: -33px; }
        .carousel .slick-dots li button {
          height: 10px;
          width: 10px;
          padding: 0;
          border-radius: 5px; } }
  .carousel .slick-prev.slick-arrow,
  .carousel .slick-next.slick-arrow {
    width: 71px;
    height: 44px;
    position: absolute;
    top: 50%;
    padding: 0;
    margin-top: -22px;
    display: block;
    cursor: pointer;
    border: 0;
    color: transparent;
    z-index: 2; }
    @media screen and (max-width: 812px) {
      .carousel .slick-prev.slick-arrow,
      .carousel .slick-next.slick-arrow {
        width: 30px;
        height: 19px;
        margin-top: -9.5px; } }
  .carousel .slick-prev.slick-arrow {
    background: url("/wp-content/themes/sinoue/assets/img/arrow-left-white.png") no-repeat;
    left: 0; }
    @media screen and (max-width: 812px) {
      .carousel .slick-prev.slick-arrow {
        left: 20px; } }
  .carousel .slick-next.slick-arrow {
    background: url("/wp-content/themes/sinoue/assets/img/arrow-right-white.png") no-repeat;
    right: 0; }
    @media screen and (max-width: 812px) {
      .carousel .slick-next.slick-arrow {
        right: 20px; } }

.titre-text {
  padding: 80px 0; }
  @media screen and (max-width: 812px) {
    .titre-text {
      padding: 50px 0; } }
  .titre-text.bleu {
    background-color: #f2f6f7; }
  .titre-text.blanc {
    background-color: #ffffff; }
  .titre-text .content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (max-width: 812px) {
      .titre-text .content {
        padding: 0 40px; } }
  .titre-text .title h2 {
    text-align: center;
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase; }
    @media screen and (max-width: 812px) {
      .titre-text .title h2 {
        font-size: 20px; } }
  .titre-text .text {
    margin-top: 45px; }
    @media screen and (max-width: 812px) {
      .titre-text .text {
        margin-top: 25px; } }
    .titre-text .text p {
      text-align: center;
      font-size: 26px; }
      @media screen and (max-width: 812px) {
        .titre-text .text p {
          font-size: 14px; } }
      .titre-text .text p strong {
        font-weight: 700; }
      .titre-text .text p em {
        font-style: italic; }
    .titre-text .text ul li:before {
      content: "•";
      margin-right: 5px; }

.titre-page {
  padding: 80px 0;
  color: #80a8b6; }
  @media screen and (max-width: 812px) {
    .titre-page {
      padding: 50px 0; } }
  .titre-page.bleu {
    background-color: #f2f6f7;
    color: #7b848c; }
  .titre-page.blanc {
    background-color: #ffffff; }
  .titre-page .content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px; }
    @media screen and (max-width: 812px) {
      .titre-page .content {
        padding: 0 40px; } }
  .titre-page .title h1 {
    text-align: center;
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase;
    font-weight: 500; }
    @media screen and (max-width: 812px) {
      .titre-page .title h1 {
        font-size: 20px; } }
  .titre-page .title hr {
    width: 70px;
    border: 1.2px solid; }
    @media screen and (max-width: 812px) {
      .titre-page .title hr {
        width: 30px; } }
  .titre-page .text {
    margin-top: 25px; }
    @media screen and (max-width: 812px) {
      .titre-page .text {
        margin-top: 15px; } }
    .titre-page .text p {
      text-align: center;
      font-size: 26px; }
      @media screen and (max-width: 812px) {
        .titre-page .text p {
          font-size: 14px; } }

.ancres {
  padding: 80px 0; }
  @media screen and (max-width: 812px) {
    .ancres {
      padding: 50px 0; } }
  .ancres .content {
    max-width: 1440px;
    margin: 0 auto; }
  .ancres ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; }
    @media screen and (max-width: 812px) {
      .ancres ul {
        flex-direction: column; } }
    .ancres ul .ancre-item {
      flex: 1 1 25%;
      padding: 0 25px;
      text-align: center;
      position: relative; }
      @media screen and (max-width: 812px) {
        .ancres ul .ancre-item {
          width: 100%;
          box-sizing: border-box;
          text-align: left; } }
  @media screen and (max-width: 812px) and (-ms-high-contrast: active), screen and (max-width: 812px) and (-ms-high-contrast: none) {
    .ancres ul .ancre-item {
      flex: none; } }
      .ancres ul .ancre-item:first-child::before {
        width: 50%;
        right: 0;
        left: inherit; }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item:first-child::before {
            width: 0;
            height: 50%;
            right: inherit;
            top: inherit;
            left: 44px;
            bottom: 0; } }
      .ancres ul .ancre-item:last-child::before {
        width: 50%;
        left: 0;
        right: inherit; }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item:last-child::before {
            width: 0;
            height: 50%;
            left: 44px; } }
      .ancres ul .ancre-item::before {
        content: "";
        display: block;
        border: 1.5px solid #80a8b6;
        width: 100%;
        position: absolute;
        left: 0;
        top: 40px; }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item::before {
            border-width: 1px;
            width: 0;
            height: 100%;
            top: 0;
            left: 44px; } }
        @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
          .ancres ul .ancre-item::before {
            background-color: #80a8b6; } }
      .ancres ul .ancre-item:hover .ancre-image {
        background-color: #80a8b6; }
      .ancres ul .ancre-item .ancre-image {
        border: 3px solid #80a8b6;
        width: 70px;
        height: 70px;
        margin: 0 auto;
        border-radius: 80% 10%;
        transform: rotate(135deg) translateX(3px);
        background-color: #ffffff;
        transition: background-color 1s ease;
        -webkit-transition: background-color 1s ease;
        -moz-transition: background-color 1s ease;
        -ms-transition: background-color 1s ease;
        -o-transition: background-color 1s ease; }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item .ancre-image {
            border-width: 2px;
            margin: 0;
            width: 40px;
            height: 40px; } }
      .ancres ul .ancre-item .ancre-text {
        margin-top: 45px;
        font-size: 26px;
        font-weight: 600; }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item .ancre-text {
            font-size: 14px; } }
        @media screen and (max-width: 812px) {
          .ancres ul .ancre-item .ancre-text {
            margin: 0 0 0 25px; } }
      @media screen and (max-width: 812px) {
        .ancres ul .ancre-item a {
          display: flex;
          align-items: center;
          justify-content: end;
          width: 100%;
          min-height: 80px; } }

.slideshow-images .carousel .slick-dots {
  top: initial;
  bottom: 50px; }
  @media screen and (max-width: 812px) {
    .slideshow-images .carousel .slick-dots {
      bottom: 20px; } }

.breadcrumb {
  text-align: center;
  padding: 25px 15px;
  color: #7b848c;
  opacity: 0.5;
  font-size: 24px; }
  .breadcrumb a {
    text-decoration: underline;
    font-weight: 700; }
    .breadcrumb a:hover {
      text-decoration: none; }
  @media screen and (max-width: 812px) {
    .breadcrumb {
      font-size: 12px; } }

.cover img {
  width: 100%; }

.infos-etablissements {
  text-align: center; }
  .infos-etablissements img {
    max-width: 100%;
    margin: 0 auto 60px;
    display: block; }
  .infos-etablissements span.phone {
    margin-bottom: 60px;
    border: 1px solid #7b848c;
    padding: 15px 60px;
    display: inline-block;
    font-size: 30px;
    font-weight: 700; }
    @media screen and (max-width: 812px) {
      .infos-etablissements span.phone {
        font-size: 15px; } }
  @media screen and (max-width: 812px) {
    .infos-etablissements img {
      max-width: calc(100% - 40px);
      margin: 0 20px 20px 20px; }
    .infos-etablissements span.phone {
      margin-bottom: 20px; } }

.accordeon {
  margin: 0 auto 60px;
  max-width: 1280px; }
  .accordeon .slide {
    margin: 20px 20px 0;
    text-align: center;
    color: #ffffff;
    background-color: #80a8b6; }
    .accordeon .slide:first-child {
      margin-top: 0; }
    .accordeon .slide .title {
      position: relative;
      padding: 35px 0;
      cursor: pointer;
      font-size: 30px;
      font-weight: 700; }
      @media screen and (max-width: 812px) {
        .accordeon .slide .title {
          font-size: 15px; } }
      .accordeon .slide .title:after {
        content: url("/wp-content/themes/sinoue/assets/img/arrow-down-accordeon-white.png");
        position: absolute;
        right: 60px;
        top: 50%;
        margin-top: -18px;
        width: 25px;
        height: 15px;
        transform: none; }
        @media screen and (max-width: 812px) {
          .accordeon .slide .title:after {
            right: 20px;
            margin-top: -8px; } }
      .accordeon .slide .title.opened:after {
        margin-top: 0;
        transform: rotate(180deg); }
    .accordeon .slide .content {
      display: none;
      margin: 20px 0 0 0; }
      .accordeon .slide .content ul li:before {
        content: "•";
        margin-right: 5px; }
      .accordeon .slide .content a {
        font-weight: 700;
        color: #ffffff; }
        .accordeon .slide .content a:hover {
          text-decoration: none; }

.slideshow-reassurance {
  background-color: #ecf2f4;
  text-align: center;
  padding: 100px 0 200px 0; }
  .slideshow-reassurance .carousel .slide .title {
    font-size: 120px;
    font-weight: 600;
    color: #ba9a3e;
    text-transform: uppercase;
    color: #80a8b6; }
    @media screen and (max-width: 812px) {
      .slideshow-reassurance .carousel .slide .title {
        font-size: 60px; } }
    .slideshow-reassurance .carousel .slide .title span {
      font-weight: 400; }
  .slideshow-reassurance .carousel .slide .text {
    color: #7b848c; }
  .slideshow-reassurance .slick-dots {
    top: initial;
    bottom: -100px; }
    .slideshow-reassurance .slick-dots li button {
      background-color: #b7bdc3; }
    .slideshow-reassurance .slick-dots li.slick-active button {
      background-color: #9399a2; }
  @media screen and (max-width: 812px) {
    .slideshow-reassurance {
      padding: 50px 0 100px 0; }
      .slideshow-reassurance .slick-dots {
        bottom: -50px; } }

.popin-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: none; }

.slideshow-medecins {
  position: relative; }
  .slideshow-medecins .title h2 {
    padding-top: 80px;
    text-align: center;
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase; }
    @media screen and (max-width: 812px) {
      .slideshow-medecins .title h2 {
        font-size: 20px; } }
    @media screen and (max-width: 812px) {
      .slideshow-medecins .title h2 {
        padding-top: 40px; } }
  .slideshow-medecins .carousel {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 1630px;
    margin: 0 auto;
    padding: 80px 0 100px; }
    .slideshow-medecins .carousel .slick-list {
      max-width: 1284px;
      margin: 0 auto; }
    .slideshow-medecins .carousel .slick-prev.slick-arrow {
      background: url("/wp-content/themes/sinoue/assets/img/arrow-left-black.png") no-repeat;
      background-size: 100%; }
    .slideshow-medecins .carousel .slick-next.slick-arrow {
      background: url("/wp-content/themes/sinoue/assets/img/arrow-right-black.png") no-repeat;
      background-size: 100%; }
    .slideshow-medecins .carousel .slide {
      position: relative; }
      .slideshow-medecins .carousel .slide .push-item {
        position: relative;
        width: 396px;
        height: 600px;
        text-align: center;
        border: 2px solid #edf3f5;
        overflow: hidden;
        margin: 0 25px; }
        .slideshow-medecins .carousel .slide .push-item.open-popin-trigger {
          cursor: pointer; }
        .slideshow-medecins .carousel .slide .push-item .image {
          overflow: hidden;
          width: 100%;
          height: 100%;
          background-color: #edf3f5; }
          .slideshow-medecins .carousel .slide .push-item .image img {
            display: block;
            width: auto;
            min-width: 100%;
            min-height: 100%;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0); }
        .slideshow-medecins .carousel .slide .push-item .overlay {
          position: absolute;
          z-index: 2;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: #80a8b6;
          opacity: 0;
          -webkit-transition: all .3s;
          transition: all .3s; }
        .slideshow-medecins .carousel .slide .push-item .infos {
          position: absolute;
          z-index: 3;
          left: 50%;
          top: 50%;
          opacity: 0;
          -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
          -webkit-transition: all .3s;
          transition: all .3s;
          width: calc(100% - 20px); }
          .slideshow-medecins .carousel .slide .push-item .infos span {
            display: block;
            color: #ffffff; }
            .slideshow-medecins .carousel .slide .push-item .infos span.title, .slideshow-medecins .carousel .slide .push-item .infos span.name {
              font-size: 40px;
              font-weight: 700; }
            .slideshow-medecins .carousel .slide .push-item .infos span.specialities {
              margin-top: 20px; }
        .slideshow-medecins .carousel .slide .push-item .preview {
          position: absolute;
          bottom: 0;
          background: #ffffff;
          padding: 40px 0;
          width: 100%;
          -webkit-transition: all .3s;
          transition: all .3s; }
          .slideshow-medecins .carousel .slide .push-item .preview .title {
            display: none; }
        .slideshow-medecins .carousel .slide .push-item .cta {
          position: absolute;
          z-index: 4;
          bottom: 40px;
          left: 50%;
          opacity: 0;
          -webkit-transform: translate3d(-50%, 20px, 0);
          transform: translate3d(-50%, 20px, 0);
          cursor: pointer;
          font-size: 26px;
          font-weight: 900;
          padding: 15px 55px;
          border: 1px solid #80a8b6;
          background-color: #80a8b6;
          color: #ffffff;
          transition: all .3s ease-in-out;
          display: inline-block;
          margin-top: 30px;
          -webkit-transition: all .3s;
          transition: all .3s;
          display: table; }
          .slideshow-medecins .carousel .slide .push-item .cta:hover {
            background-color: transparent;
            color: #80a8b6; }
          .slideshow-medecins .carousel .slide .push-item .cta.white {
            border: 1px solid #ffffff;
            background-color: #ffffff;
            color: #80a8b6; }
            .slideshow-medecins .carousel .slide .push-item .cta.white:hover {
              background-color: transparent;
              color: #ffffff; }
          .slideshow-medecins .carousel .slide .push-item .cta.ocre {
            border: 1px solid #ba9a3e;
            background-color: #ba9a3e;
            color: #ffffff; }
            .slideshow-medecins .carousel .slide .push-item .cta.ocre:hover {
              background-color: transparent;
              color: #ba9a3e; }
          @media screen and (max-width: 812px) {
            .slideshow-medecins .carousel .slide .push-item .cta {
              padding: 10px 20px;
              font-size: 15px; } }
          .slideshow-medecins .carousel .slide .push-item .cta:hover {
            border: 1px solid #ffffff;
            color: #ffffff; }
        .slideshow-medecins .carousel .slide .push-item:hover .overlay {
          opacity: .6; }
        .slideshow-medecins .carousel .slide .push-item:hover .infos {
          opacity: 1; }
        .slideshow-medecins .carousel .slide .push-item:hover .preview {
          -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0); }
        .slideshow-medecins .carousel .slide .push-item:hover .cta {
          opacity: 1;
          -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0); }
  @media screen and (max-width: 812px) {
    .slideshow-medecins .carousel .slide .push-item {
      width: calc(100% - 124px);
      margin: 0 auto;
      height: 480px; }
      .slideshow-medecins .carousel .slide .push-item .overlay {
        opacity: .6;
        display: none; }
      .slideshow-medecins .carousel .slide .push-item .infos {
        display: none; }
      .slideshow-medecins .carousel .slide .push-item .image {
        height: 65%;
        position: relative; }
        .slideshow-medecins .carousel .slide .push-item .image img {
          height: 100%; }
      .slideshow-medecins .carousel .slide .push-item .preview {
        padding: 30px 0 70px;
        font-size: 39.2px;
        color: #ba9a3e; }
        .slideshow-medecins .carousel .slide .push-item .preview .title {
          display: inline; }
      .slideshow-medecins .carousel .slide .push-item .cta {
        opacity: 1;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        bottom: 20px; }
        .slideshow-medecins .carousel .slide .push-item .cta:hover {
          color: #80a8b6;
          border: 1px solid #80a8b6; }
      .slideshow-medecins .carousel .slide .push-item:hover .preview {
        transform: none;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none; } }
  .slideshow-medecins .popin {
    display: none;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    z-index: 10; }
    .slideshow-medecins .popin.active {
      display: block; }

section.image {
  max-width: 1446px;
  margin: 0 auto; }
  section.image h2 {
    text-align: center;
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 80px; }
    @media screen and (max-width: 812px) {
      section.image h2 {
        font-size: 20px; } }
    @media screen and (max-width: 812px) {
      section.image h2 {
        margin-bottom: 40px; } }
  section.image img {
    width: 100%; }

section.video {
  max-width: 1446px;
  margin: 0 auto; }
  section.video h2 {
    text-align: center;
    font-size: 55.22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 80px; }
    @media screen and (max-width: 812px) {
      section.video h2 {
        font-size: 20px; } }
    @media screen and (max-width: 812px) {
      section.video h2 {
        margin-bottom: 40px; } }
  section.video .videoContainer {
    position: relative;
    width: 100%;
    padding-top: 56.25%; }
    section.video .videoContainer iframe {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }

.push-actualites {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1284px;
  margin: 0 auto;
  justify-content: center; }
  .push-actualites .push {
    width: 100%;
    max-width: 396px;
    margin: 0 auto;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-left: 2px solid #f4f5f6;
    border-right: 2px solid #f4f5f6;
    border-bottom: 2px solid #f4f5f6; }
    .push-actualites .push:first-child {
      margin-left: 0; }
    .push-actualites .push:last-child {
      margin-right: 0; }
    .push-actualites .push .image {
      position: relative;
      overflow: hidden;
      height: 231px;
      margin-left: -2px;
      width: calc(100% + 4px); }
      .push-actualites .push .image img {
        display: block;
        width: auto;
        height: auto;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0); }
      .push-actualites .push .image .hover {
        cursor: pointer;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all .3s; }
        .push-actualites .push .image .hover .background {
          position: absolute;
          z-index: 1;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          opacity: .8;
          background-color: #80a8b6; }
        .push-actualites .push .image .hover .title {
          text-transform: uppercase;
          text-align: center;
          color: #ffffff;
          position: absolute;
          z-index: 2;
          top: 50%;
          left: 50%;
          transform: translate3d(-50%, -50%, 0); }
      .push-actualites .push .image:hover .hover {
        opacity: 1; }
    .push-actualites .push .text {
      padding: 50px 0 160px;
      text-align: center;
      position: relative;
      width: 100%; }
      .push-actualites .push .text .cta {
        position: absolute;
        bottom: 60px;
        left: 50%;
        transform: translate3d(-50%, 0, 0);
        font-size: 26px;
        font-weight: 900;
        padding: 15px 55px;
        border: 1px solid #80a8b6;
        background-color: #80a8b6;
        color: #ffffff;
        transition: all .3s ease-in-out;
        display: inline-block;
        margin-top: 30px;
        margin-top: 0;
        width: calc(100% - 210px); }
        .push-actualites .push .text .cta:hover {
          background-color: transparent;
          color: #80a8b6; }
        .push-actualites .push .text .cta.white {
          border: 1px solid #ffffff;
          background-color: #ffffff;
          color: #80a8b6; }
          .push-actualites .push .text .cta.white:hover {
            background-color: transparent;
            color: #ffffff; }
        .push-actualites .push .text .cta.ocre {
          border: 1px solid #ba9a3e;
          background-color: #ba9a3e;
          color: #ffffff; }
          .push-actualites .push .text .cta.ocre:hover {
            background-color: transparent;
            color: #ba9a3e; }
        @media screen and (max-width: 812px) {
          .push-actualites .push .text .cta {
            padding: 10px 20px;
            font-size: 15px; } }
  @media screen and (max-width: 812px) {
    .push-actualites {
      display: block; }
      .push-actualites .push {
        width: 100%;
        max-width: 100%;
        margin: 20px auto 0; }
        .push-actualites .push:first-child {
          margin-top: 0; }
        .push-actualites .push .image {
          overflow: initial;
          height: auto; }
          .push-actualites .push .image img {
            position: relative;
            width: 100%;
            height: auto;
            top: initial;
            left: initial;
            transform: none; }
          .push-actualites .push .image .hover {
            opacity: .8; }
        .push-actualites .push .text {
          padding: 25px 0 80px; }
          .push-actualites .push .text .cta {
            width: auto;
            bottom: 25px; }
          .push-actualites .push .text.no-cta {
            padding: 25px 0; } }

.recherche-etablissements .store-locator .title {
  padding-top: 80px; }
  @media screen and (max-width: 812px) {
    .recherche-etablissements .store-locator .title {
      padding-top: 40px; } }

.recherche-etablissements .store-locator #submitBlocStoreLocator {
  transition: all .3s ease-in-out; }

.recherche-etablissements .store-locator #mapid {
  margin-top: 100px; }
  .recherche-etablissements .store-locator #mapid #mapid {
    margin-top: 60px; }

.recherche-etablissements .etablissement-details {
  padding-top: 80px; }
  @media screen and (max-width: 812px) {
    .recherche-etablissements .etablissement-details {
      padding: 40px 0; } }
  .recherche-etablissements .etablissement-details .no-results {
    text-align: center; }

.annuaire .breadcrumb {
  background-color: #80a8b6;
  color: #ffffff;
  opacity: 1; }
  .annuaire .breadcrumb a {
    color: #ffffff; }

.annuaire section.annuaire-search {
  background-color: #80a8b6;
  color: #ffffff;
  padding-bottom: 80px;
  margin-top: -1px; }
  .annuaire section.annuaire-search .title {
    padding-top: 40px; }
    .annuaire section.annuaire-search .title h1 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .annuaire section.annuaire-search .title h1 {
          font-size: 20px; } }
  .annuaire section.annuaire-search .filters {
    margin: 40px 0 0; }
    .annuaire section.annuaire-search .filters .filters-select {
      text-align: center; }
  .annuaire section.annuaire-search .order {
    margin: 40px 0 0;
    text-align: center; }
    .annuaire section.annuaire-search .order h2 {
      font-size: 26px;
      font-size: 30px; }
      @media screen and (max-width: 812px) {
        .annuaire section.annuaire-search .order h2 {
          font-size: 14px; } }
    .annuaire section.annuaire-search .order ul {
      margin: 40px 0 0; }
      .annuaire section.annuaire-search .order ul li {
        display: inline-block;
        padding: 5px; }
        .annuaire section.annuaire-search .order ul li a {
          color: #ffffff;
          text-decoration: underline; }
  @media screen and (max-width: 812px) {
    .annuaire section.annuaire-search {
      padding-bottom: 40px; }
      .annuaire section.annuaire-search .filters {
        margin: 0 15px; }
      .annuaire section.annuaire-search .order ul {
        text-align: center;
        margin: 20px 0 0;
        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; }
        .annuaire section.annuaire-search .order ul li {
          width: calc(100% / 26); } }

.annuaire section.annuaire-results {
  padding-top: 80px; }
  @media screen and (max-width: 812px) {
    .annuaire section.annuaire-results {
      padding-top: 40px; } }
  .annuaire section.annuaire-results .no-results {
    text-align: center; }
  .annuaire section.annuaire-results .paragraphe .open-annuaire-popin-trigger {
    cursor: pointer; }
  .annuaire section.annuaire-results .paragraphe .image {
    min-height: 600px;
    cursor: pointer; }
    @media screen and (max-width: 812px) {
      .annuaire section.annuaire-results .paragraphe .image {
        min-height: 0; } }
  .annuaire section.annuaire-results .paragraphe .text .textContent {
    margin: auto 0; }
    .annuaire section.annuaire-results .paragraphe .text .textContent span.title {
      display: block;
      color: #ba9a3e;
      font-size: 35px;
      font-weight: 700;
      line-height: 1.2em; }
    .annuaire section.annuaire-results .paragraphe .text .textContent span.address {
      margin-top: 20px;
      display: block; }
    .annuaire section.annuaire-results .paragraphe .text .textContent strong {
      font-weight: 700; }

.annuaire section.pagination .page {
  cursor: pointer;
  display: inline-block;
  padding: 0 10px;
  font-size: 26px;
  text-decoration: underline; }
  @media screen and (max-width: 812px) {
    .annuaire section.pagination .page {
      padding: 0 5px;
      font-size: 16px; } }
  .annuaire section.pagination .page:hover {
    color: #80a8b6; }
  .annuaire section.pagination .page.active {
    text-decoration: none;
    color: #80a8b6; }

.contact {
  background-color: #80a8b6;
  color: #ffffff;
  padding-bottom: 80px; }
  .contact .breadcrumb {
    background-color: #80a8b6;
    color: #ffffff;
    opacity: 1; }
    .contact .breadcrumb a {
      color: #ffffff; }
  .contact .title {
    padding-top: 40px; }
    .contact .title h1 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .contact .title h1 {
          font-size: 20px; } }
  .contact section.contact-form {
    text-align: center; }
  @media screen and (max-width: 812px) {
    .contact section.contact-form {
      margin: 0 15px; } }
  .contact .obligatoire {
    margin-top: 100px;
    transform: translateX(30px);
    font-weight: 100; }
  .contact .confirmation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 220px 0 142px; }
    @media screen and (max-width: 812px) {
      .contact .confirmation-message {
        padding: 40px 0 0 0; } }
  .contact .text-mention {
    display: block;
    margin: 10px 0 0 80px; }

.contact ~ .footer-page {
  margin: 0; }
  .contact ~ .footer-page .contact-container {
    display: none; }

.search-page .breadcrumb {
  color: #ffffff; }

.search-page p.cta {
  cursor: pointer; }

.search-page .search-box {
  background-color: #80a8b6;
  color: #ffffff;
  padding-bottom: 80px;
  margin-top: -1px;
  text-align: center; }
  .search-page .search-box .title {
    padding-top: 40px; }
    .search-page .search-box .title h1 {
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .search-page .search-box .title h1 {
          font-size: 20px; } }
  .search-page .search-box .filters {
    margin: 40px 0 0; }
  @media screen and (max-width: 812px) {
    .search-page .search-box {
      padding-bottom: 40px; }
      .search-page .search-box .filters {
        margin: 0 15px; } }

.search-page .results-box {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center; }
  .search-page .results-box .result:first-child hr {
    display: none; }
  .search-page .results-box .result:last-child {
    margin-bottom: 90px; }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result:last-child {
        margin-bottom: 45px; } }
  .search-page .results-box .result h3 {
    margin-top: 90px;
    font-size: 35.5px;
    font-weight: 700;
    color: #80a8b6; }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result h3 {
        margin-top: 45px; } }
  .search-page .results-box .result p {
    margin-top: 50px;
    font-size: 26px; }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result p {
        font-size: 14px; } }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result p {
        margin-top: 25px; } }
  .search-page .results-box .result .cta {
    margin-top: 50px;
    font-size: 26px;
    font-weight: 900;
    padding: 15px 55px;
    border: 1px solid #80a8b6;
    background-color: #80a8b6;
    color: #ffffff;
    transition: all .3s ease-in-out;
    display: inline-block;
    margin-top: 30px; }
    .search-page .results-box .result .cta:hover {
      background-color: transparent;
      color: #80a8b6; }
    .search-page .results-box .result .cta.white {
      border: 1px solid #ffffff;
      background-color: #ffffff;
      color: #80a8b6; }
      .search-page .results-box .result .cta.white:hover {
        background-color: transparent;
        color: #ffffff; }
    .search-page .results-box .result .cta.ocre {
      border: 1px solid #ba9a3e;
      background-color: #ba9a3e;
      color: #ffffff; }
      .search-page .results-box .result .cta.ocre:hover {
        background-color: transparent;
        color: #ba9a3e; }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result .cta {
        padding: 10px 20px;
        font-size: 15px; } }
  .search-page .results-box .result hr {
    width: 70%;
    margin-top: 90px; }
    @media screen and (max-width: 812px) {
      .search-page .results-box .result hr {
        margin-top: 45px; } }

.search-page ~ .footer-page {
  margin-top: 0; }

.sitemap-page {
  padding: 80px 75px;
  background-color: #80a8b6; }
  .sitemap-page a {
    color: #ffffff; }
  .sitemap-page ul.main-cat li {
    padding-top: 50px; }
    .sitemap-page ul.main-cat li ul {
      margin-left: 40px; }
      .sitemap-page ul.main-cat li ul li {
        padding-top: 20px;
        display: block; }
  .sitemap-page ul.footer {
    padding-top: 30px; }
    .sitemap-page ul.footer li {
      padding-top: 20px;
      display: block; }
  @media screen and (max-width: 812px) {
    .sitemap-page {
      padding: 40px 20px; }
      .sitemap-page ul.main-cat li ul {
        margin-left: 25px; } }

.rdv {
  background-color: #80a8b6;
  color: #ffffff;
  padding-bottom: 80px; }
  .rdv .breadcrumb {
    background-color: #80a8b6;
    color: #ffffff;
    opacity: 1; }
    .rdv .breadcrumb a {
      color: #ffffff; }
  .rdv .title {
    padding-top: 40px; }
    .rdv .title h1 {
      text-align: center;
      font-size: 55.22px;
      font-weight: 300;
      text-transform: uppercase; }
      @media screen and (max-width: 812px) {
        .rdv .title h1 {
          font-size: 20px; } }
  .rdv section.rdv-form {
    text-align: center;
    max-width: 1130px;
    margin: 0 auto; }
    .rdv section.rdv-form .input-container {
      width: auto; }
  @media screen and (max-width: 812px) {
    .rdv section.rdv-form {
      margin: 0 15px; }
      .rdv section.rdv-form .input-container {
        width: 100%; } }
  .rdv .obligatoire {
    margin-top: 100px;
    transform: translateX(30px);
    font-weight: 100; }
  .rdv .confirmation-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 220px 0 142px; }
    @media screen and (max-width: 812px) {
      .rdv .confirmation-message {
        padding: 40px 0 0 0; } }
  .rdv .text-mention {
    display: block;
    margin: 10px 0 0 80px; }

.rdv ~ .footer-page {
  margin: 0; }
  .rdv ~ .footer-page .rdv-container {
    display: none; }

.overlay-popin {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none; }

.popin {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center; }
  .popin.active {
    display: flex; }
    @media screen and (max-width: 812px) {
      .popin.active {
        display: table; } }
  .popin .main-popin {
    width: 100%;
    max-width: 1620px;
    padding: 40px 85px;
    box-sizing: border-box;
    position: relative;
    background-color: #ffffff;
    opacity: 0;
    animation: show .5s .2s forwards ease-in-out; }
    @media screen and (max-width: 812px) {
      .popin .main-popin {
        vertical-align: middle;
        display: table-cell;
        padding: 0;
        min-height: 100vh; } }
    .popin .main-popin .close {
      position: absolute;
      top: 20px;
      right: 20px;
      display: block;
      width: 32px;
      height: 32px;
      background: url("./assets/img/close-blue.png") center no-repeat;
      background-size: contain;
      cursor: pointer; }
      @media screen and (max-width: 812px) {
        .popin .main-popin .close {
          top: 10px;
          right: 10px;
          width: 25px;
          height: 25px; } }
    .popin .main-popin .header {
      font-size: 23.76px;
      line-height: 30px;
      font-weight: 300;
      color: #80a8b6;
      text-align: center; }
      @media screen and (max-width: 812px) {
        .popin .main-popin .header {
          font-size: 19px;
          line-height: 25px; } }
      .popin .main-popin .header strong {
        font-weight: 600; }
      .popin .main-popin .header em {
        font-style: italic; }
      @media screen and (max-width: 812px) {
        .popin .main-popin .header {
          padding: 0 20px; } }
      .popin .main-popin .header h2 {
        font-size: 39.2px;
        font-weight: 700; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .header h2 {
            font-size: 29px; } }
      .popin .main-popin .header h3 {
        font-size: 13px;
        line-height: 13px;
        font-weight: 500;
        margin-top: 30px; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .header h3 {
            margin: 10px 0; } }
      .popin .main-popin .header p {
        margin-top: 30px;
        font-size: 13px;
        line-height: 13px; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .header p {
            margin-top: 0px; } }
    .popin .main-popin .content-popin {
      display: flex;
      flex-wrap: wrap;
      margin-top: 40px; }
      @media screen and (max-width: 812px) {
        .popin .main-popin .content-popin {
          display: none; } }
      .popin .main-popin .content-popin.mobile {
        display: none; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .content-popin.mobile {
            margin: 20px auto 0;
            display: block;
            text-align: center; } }
        .popin .main-popin .content-popin.mobile .slide {
          margin: 5px 0 0 0; }
          @media screen and (max-width: 812px) {
            .popin .main-popin .content-popin.mobile .slide .title {
              padding: 15px 0; }
              .popin .main-popin .content-popin.mobile .slide .title:after {
                margin-top: -8px;
                right: 20px; } }
          .popin .main-popin .content-popin.mobile .slide .content {
            padding: 0 20% 40px; }
      .popin .main-popin .content-popin .tab-content {
        display: none;
        align-items: center;
        justify-content: center;
        flex: 1 1 100%;
        margin-top: -1px;
        min-height: 450px;
        background-color: #80a8b6;
        font-size: 23.76px;
        line-height: 30px;
        font-weight: 300;
        color: #ffffff;
        text-align: center; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .content-popin .tab-content {
            font-size: 19px;
            line-height: 25px; } }
        .popin .main-popin .content-popin .tab-content strong {
          font-weight: 600; }
        .popin .main-popin .content-popin .tab-content em {
          font-style: italic; }
        .popin .main-popin .content-popin .tab-content .tab-content-text {
          box-sizing: border-box;
          padding: 20px 40px;
          max-height: 450px;
          overflow-y: auto; }
        .popin .main-popin .content-popin .tab-content ul {
          list-style-type: disc;
          margin-top: 15px; }
      .popin .main-popin .content-popin input {
        display: none; }
      .popin .main-popin .content-popin label {
        display: inline-block;
        flex: 1 1 20%;
        padding: 15px 0;
        text-align: center;
        background-color: #ffffff;
        border: 1px solid #80a8b6;
        font-size: 22.41px;
        text-transform: uppercase;
        font-weight: 400;
        color: #80a8b6;
        transition: background-color .5s ease, color .5s ease; }
        .popin .main-popin .content-popin label.active {
          color: #ffffff;
          background-color: #80a8b6; }
      .popin .main-popin .content-popin label:hover {
        color: #ffffff;
        background-color: rgba(128, 168, 182, 0.7);
        cursor: pointer; }
      .popin .main-popin .content-popin .tab-fonctions.active ~ #content-fonctions,
      .popin .main-popin .content-popin .tab-parcours.active ~ #content-parcours,
      .popin .main-popin .content-popin .tab-publications.active ~ #content-publications,
      .popin .main-popin .content-popin .tab-langues.active ~ #content-langues {
        display: flex; }
      .popin .main-popin .content-popin a.cta {
        font-size: 26px;
        font-weight: 900;
        padding: 15px 55px;
        border: 1px solid #80a8b6;
        background-color: #80a8b6;
        color: #ffffff;
        transition: all .3s ease-in-out;
        display: inline-block;
        margin-top: 30px;
        margin: 20px auto;
        cursor: pointer; }
        .popin .main-popin .content-popin a.cta:hover {
          background-color: transparent;
          color: #80a8b6; }
        .popin .main-popin .content-popin a.cta.white {
          border: 1px solid #ffffff;
          background-color: #ffffff;
          color: #80a8b6; }
          .popin .main-popin .content-popin a.cta.white:hover {
            background-color: transparent;
            color: #ffffff; }
        .popin .main-popin .content-popin a.cta.ocre {
          border: 1px solid #ba9a3e;
          background-color: #ba9a3e;
          color: #ffffff; }
          .popin .main-popin .content-popin a.cta.ocre:hover {
            background-color: transparent;
            color: #ba9a3e; }
        @media screen and (max-width: 812px) {
          .popin .main-popin .content-popin a.cta {
            padding: 10px 20px;
            font-size: 15px; } }
        @media screen and (max-width: 812px) {
          .popin .main-popin .content-popin a.cta {
            margin-bottom: 0; } }

@keyframes show {
  0% {
    opacity: 0;
    transform: translateY(15px); }
  80% {
    opacity: 0.8; }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.pagination {
  text-align: center;
  padding-bottom: 60px; }
  @media screen and (max-width: 812px) {
    .pagination {
      margin-top: 45px;
      padding-bottom: 30px; } }
  .pagination hr {
    width: 70%;
    margin-bottom: 60px; }
    @media screen and (max-width: 812px) {
      .pagination hr {
        margin-bottom: 30px; } }
  .pagination .search-posts-page-link {
    display: inline-block;
    padding: 0 20px;
    font-size: 26px; }
    @media screen and (max-width: 812px) {
      .pagination .search-posts-page-link {
        padding: 0 15px;
        font-size: 16px; } }
    .pagination .search-posts-page-link.active {
      color: #80a8b6;
      font-size: 34px; }
      @media screen and (max-width: 812px) {
        .pagination .search-posts-page-link.active {
          font-size: 20px; } }
  .pagination .right, .pagination .left {
    display: none; }
    .pagination .right.active, .pagination .left.active {
      display: inline-block;
      color: #7b848c; }
