body {
  line-height: 1;
  background: #FFFFFF;
  font-size: 16px;
  color: #555555;
  overflow-x: hidden;
}

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%;
  vertical-align: baseline;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/** Polices **/
@font-face {
  font-family: "Ticons";
  src: url("../fonts/ticons.woff2") format("woff2");
}
/** Couleurs **/
/**
 * Responsive width
 */
/**
 * Graisse
 */
@media (max-width: 1160px) {
  html, body {
    overflow-x: hidden;
  }
}

body {
  font-family: Raleway, sans-serif;
  background: #FFFFFF url("../img/bg-sos_big.svg") center center repeat;
  background-attachment: fixed;
  background-size: 110% auto;
}

a {
  text-decoration: none;
  transition: all ease-in-out 0.2s;
}
a:hover {
  text-decoration: underline;
}

.sos-container {
  max-width: 1200px;
  margin: auto;
}

.splide__arrow {
  background: none;
  height: 2rem;
  width: 2rem;
}
.splide__arrow svg {
  width: 100%;
  height: 100%;
}

.sos-btn {
  padding: 1rem 2rem;
  width: fit-content;
  transition: all ease-in-out 0.2s;
  display: block;
}
.sos-btn--border-white {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.sos-btn--border-white:hover {
  text-decoration: none;
  background-color: #FFFFFF;
  color: #005A9D;
}
.sos-btn--border-orange {
  color: #c5460e;
  border: 1px solid #c5460e;
}
.sos-btn--border-orange:hover {
  text-decoration: none;
  background-color: #c5460e;
  color: #FFFFFF !important;
}
.sos-btn--full-white {
  background-color: #FFFFFF;
  color: #005A9D;
}
.sos-btn--full-white:hover {
  text-decoration: none;
  color: #FFFFFF;
  background: none;
  border: 1px solid #FFFFFF;
}

header {
  background: #FFFFFF;
  position: fixed;
  width: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 10000;
}
@media (max-width: 1160px) {
  header {
    position: initial;
  }
}
header .sos-header-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
header .sos-logo {
  max-height: 70px;
}
header .sos-header-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  min-height: 70px;
}
@media (max-width: 767px) {
  header .sos-header-right {
    justify-content: center;
  }
}
header .sos-coordonnees {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
header .sos-coordonnees--first {
  border-right: 2px solid #005A9D;
  padding-right: 1rem;
}
header .sos-coordonnees-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 767px) {
  header .sos-coordonnees-row {
    display: none;
  }
}
header .sos-coordonnees-icon {
  width: 1.25rem;
  height: 1.25rem;
}
header .sos-coordonnees-text {
  font-family: Arial, sans-serif;
  font-weight: 600;
  color: #005A9D;
  font-size: 14px;
}
header .sos-nav {
  width: 100%;
}
@media (max-width: 1160px) {
  header .sos-nav {
    display: flex;
    justify-content: flex-end;
  }
}
header .sos-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1160px) {
  header .sos-nav-list {
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    padding-top: 0;
    gap: 0;
  }
}
header .sos-nav-item {
  position: relative;
  padding: 0.5rem 0;
  margin-bottom: -0.5rem;
  cursor: pointer;
}
@media (max-width: 1160px) {
  header .sos-nav-item {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
    padding-bottom: 0.5rem;
    height: 32px;
    overflow: hidden;
  }
}
@media (max-width: 1160px) {
  header .sos-nav-item .mobile-active:before {
    transform: rotate(180deg);
    transition: all ease-in-out 0.2s;
  }
}
header .sos-nav-item:hover > .sos-nav-child-list {
  visibility: visible;
  opacity: 1;
  z-index: 100001;
}
header .sos-nav-item:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -0.5rem;
  left: 0;
  background-color: #c5460e;
  opacity: 0;
  transform: scaleX(0.33);
  transition: all ease-in-out 0.2s;
}
header .sos-nav-item:hover:after {
  opacity: 1;
  transform: scaleX(1);
}
header .sos-nav-item-link {
  font-size: 14px;
  font-weight: 400;
  color: rgb(197, 70, 14);
}
@media (max-width: 1160px) {
  header .sos-nav-item-link {
    font-size: 1rem;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
header .sos-nav-item-link:hover {
  text-decoration: none;
}
header .sos-nav-item-link--havechild:before {
  content: "\f107";
  color: #c5460e;
  position: absolute;
  top: 8px;
  right: -1rem;
  font-family: "Ticons", sans-serif;
}
@media (max-width: 1160px) {
  header .sos-nav-item-link--havechild:before {
    content: none;
  }
}
header .sos-nav-item-link--havechild .mobile-action {
  background: none;
  border: none;
  display: none;
}
@media (max-width: 1160px) {
  header .sos-nav-item-link--havechild .mobile-action {
    display: initial;
  }
}
header .sos-nav-item-link--havechild .mobile-action span {
  display: block;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 1160px) {
  header .sos-nav-item-link--havechild .mobile-action span:before {
    content: "\f107";
    font-family: "Ticons", sans-serif;
    color: #FFFFFF;
    font-size: 1.5rem;
    transition: all ease-in-out 0.2s;
  }
}
header .sos-nav-item-link--havechild .mobile-active span {
  transform: rotate(180deg);
}
header .sos-nav-child-list {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 0;
  background-color: #c5460e;
  left: 0;
  right: 0;
  margin-top: 1rem;
  min-width: fit-content;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 1160px) {
  header .sos-nav-child-list {
    position: initial;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1160px) {
  header .sos-nav-child-item {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.5rem;
  }
}
header .sos-nav-child-link {
  display: block;
  margin: 0 0.5rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  color: #FFFFFF;
  font-size: 13px;
  position: relative;
}
@media (max-width: 1160px) {
  header .sos-nav-child-link {
    font-size: 1rem;
  }
}
header .sos-nav-child-link:hover {
  text-decoration: none;
  color: #000000;
}
header .sos-nav-child-link span {
  text-wrap: nowrap;
}
header .sos-nav-child-link span:before {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 1160px) {
  header .sos-nav-child-link span:before {
    content: none;
  }
}
@media (max-width: 1160px) {
  header .sos-nav-mobile {
    position: absolute;
    right: -100%;
    top: 0;
    background: #c5460e;
    color: #FFFFFF;
    max-width: 100%;
    width: 320px;
    height: auto;
    min-height: 100vh;
    transition: all ease-in-out 0.2s;
    z-index: 11000;
    display: none;
  }
}
header .sos-nav .burger-menu {
  display: none;
}
@media (max-width: 1160px) {
  header .sos-nav .burger-menu {
    display: block;
    width: 2rem;
    height: 2rem;
  }
}
header .sos-nav .burger-menu-close {
  display: none;
}
@media (max-width: 1160px) {
  header .sos-nav .burger-menu-close {
    display: block;
    width: 2rem;
    height: 2rem;
    margin: 1rem;
  }
}

footer {
  background-color: #f8f8f8;
}
footer .sos-footer-row-top {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  font-size: 12px;
}
@media (max-width: 1160px) {
  footer .sos-footer-row-top {
    flex-direction: column;
    gap: 3rem;
  }
}
footer .sos-footer-row-top a {
  color: #c5460e;
}
footer .sos-footer-row-top .sos-footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .sos-footer-row-top .sos-footer-rs-list {
  display: flex;
  gap: 0.5rem;
}
footer .sos-footer-row-top .sos-footer-rs-img {
  width: 2rem;
  height: 2rem;
}
footer .sos-footer-row-bottom {
  background-color: #FFFFFF;
  font-size: 14px;
  padding: 2rem 0;
  text-align: center;
}
footer .sos-footer-row-bottom a {
  color: #c5460e;
}
footer .sos-footer-row-bottom .sos-footer-container {
  line-height: 1.4;
}
@media (max-width: 1160px) {
  footer .sos-footer-row-bottom .sos-footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 0.5rem;
  }
}
footer .sos-footer-col {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1160px) {
  footer .sos-footer-col {
    justify-content: flex-start;
    padding-left: 2rem;
  }
}
footer .sos-footer-container {
  max-width: 1200px;
  margin: auto;
}

.sos-accueil {
  padding-top: 100px;
  min-height: 100vh;
}
@media (max-width: 1160px) {
  .sos-accueil {
    padding-top: 0;
  }
}
.sos-accueil .hero-slide {
  height: 600px;
  width: 100%;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1160px) {
  .sos-accueil .hero-slide {
    height: 300px;
  }
}
.sos-accueil .hero-slide .sos-container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  margin-top: -10rem;
}
@media (max-width: 1160px) {
  .sos-accueil .hero-slide .sos-container {
    margin-top: -2rem;
    margin-left: 1rem;
  }
}
.sos-accueil .hero-slide-title {
  font-size: 45px;
  color: #005A9D;
  font-weight: 600;
}
@media (max-width: 1160px) {
  .sos-accueil .hero-slide-title {
    font-size: 2rem;
  }
}
.sos-accueil .hero-slide-subtitle {
  font-size: 28px;
  font-weight: 300;
  color: #c5460e;
}
@media (max-width: 1160px) {
  .sos-accueil .hero-slide-subtitle {
    font-size: 1.5rem;
  }
}
.sos-accueil .infos-squares {
  position: relative;
  margin-top: -2rem;
  padding-bottom: 3rem;
  z-index: 10;
}
@media (max-width: 1160px) {
  .sos-accueil .infos-squares {
    margin-top: 0;
  }
}
.sos-accueil .infos-squares .sos-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 1160px) {
  .sos-accueil .infos-squares .sos-container {
    margin: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
}
.sos-accueil .infos-squares .sos-container .square {
  padding: 2rem;
  color: #FFFFFF;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
  width: 33%;
}
@media (max-width: 1160px) {
  .sos-accueil .infos-squares .sos-container .square {
    width: auto;
  }
}
.sos-accueil .infos-squares .sos-container .square-title {
  font-size: 22px;
  text-transform: uppercase;
}
.sos-accueil .infos-squares .sos-container .square-text {
  line-height: 1.4;
  font-size: 14px;
}
.sos-accueil .infos-squares .sos-container .square-text strong {
  font-size: 18px;
}
.sos-accueil .infos-squares .sos-container .square-text a {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: bold;
  transition: all ease-in-out 0.2s;
}
.sos-accueil .infos-squares .sos-container .square-text a:hover {
  color: #c5460e;
}
.sos-accueil .actus {
  background-color: #f8f8f8;
  padding: 4rem;
  margin-bottom: 8rem;
}
@media (max-width: 1160px) {
  .sos-accueil .actus {
    margin-bottom: 4rem;
  }
}
.sos-accueil .actus-title {
  color: #005A9D;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}
.sos-accueil .actus .sos-container {
  padding-bottom: 8px;
}
.sos-accueil .actus .sos-container .card {
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  height: 505px;
  box-shadow: 5px 5px 8px -4px rgba(0, 0, 0, 0.3);
}
.sos-accueil .actus .sos-container .card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.sos-accueil .actus .sos-container .card-img {
  width: 100%;
  height: 225px;
}
.sos-accueil .actus .sos-container .card-title {
  color: #005A9D;
  font-size: 1.5rem;
  font-weight: bold;
}
.sos-accueil .actus .sos-container .card-text {
  font-size: 14px;
  color: #005A9D;
}
.sos-accueil .actus .sos-container .sos-btn {
  padding: 0.7rem 1rem;
  font-size: 14px;
}

.sos-page {
  margin-bottom: 4rem;
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .sos-page {
    padding: 0;
  }
}
.sos-page .page-title {
  background-color: #f8f8f8;
  padding: 2rem 0;
  margin-bottom: 4rem;
}
@media (max-width: 1200px) {
  .sos-page .page-title {
    margin-bottom: 2rem;
  }
}
.sos-page .page-title h1 {
  font-size: 2rem;
  color: #c5460e;
  font-weight: 600;
}
.sos-page .page-content {
  padding: 0 1rem;
  position: relative;
}
.sos-page .page-content .contact-container {
  display: block;
}
.sos-page .page-content .contact-container input, .sos-page .page-content .contact-container textarea {
  display: inline-block;
  font-family: inherit;
  font-weight: inherit;
  text-align: inherit;
  max-width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  transition: all ease-in-out 0.2s;
  padding: 6px 10px;
  border-radius: 3px;
  color: #616161;
  background: #FFFFFF;
  box-shadow: none;
  border: 1px solid #e0e0e0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-bottom: 1rem;
}
.sos-page .page-content .contact-container input[type=submit] {
  padding: 1rem 2rem;
  width: fit-content;
  transition: all ease-in-out 0.2s;
  display: block;
  cursor: pointer;
  background-color: #c5460e;
  color: #FFFFFF;
}
.sos-page .page-content .contact-container input[type=submit]:hover {
  text-decoration: none;
  background: none;
  color: #c5460e;
  border: 1px solid #c5460e;
}
.sos-page .page-content .contact-row {
  display: flex;
  justify-content: space-around;
  color: #005A9D;
  line-height: 1.2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 2rem;
}
@media (max-width: 1200px) {
  .sos-page .page-content .contact-row {
    flex-direction: column;
    gap: 2rem;
  }
}
.sos-page .page-content .contact-row a {
  color: #c5460e;
}
.sos-page .page-content .contact-row--column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: none;
  font-size: 14px;
  text-align: center;
}
.sos-page .page-content .contact-row .wpcf7 {
  width: 40%;
}
.sos-page .page-content .contact-row .wpcf7 label {
  display: block;
  width: 100%;
}
.sos-page .page-content .contact-row .wpcf7 label span {
  display: block;
  width: 100%;
}
.sos-page .page-content .contact-row .wpcf7 label span input, .sos-page .page-content .contact-row .wpcf7 label span textarea {
  width: 100%;
}
.sos-page .page-content .contact-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.sos-page .page-content .contact-title {
  font-size: 2rem;
  font-weight: 600;
}
.sos-page .page-content .contact-img {
  max-width: 50%;
  height: fit-content;
}
@media (max-width: 1200px) {
  .sos-page .page-content .contact-img {
    max-width: 100%;
  }
}
.sos-page .sos-container {
  display: flex;
  position: relative;
}
@media (max-width: 1160px) {
  .sos-page .sos-container {
    margin: 0 2rem;
  }
}
.sos-page .page-wrap {
  position: relative;
  display: flex;
  width: 100%;
}
.sos-page .aside {
  width: 400px;
  position: absolute;
  top: 120px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
@media (max-width: 1200px) {
  .sos-page .aside {
    position: relative;
    top: initial;
    left: initial;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    width: calc(100% - 4rem);
  }
}
.sos-page .aside-row {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sos-page .aside-row h3 {
  text-transform: uppercase;
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 600;
}
.sos-page .aside-row--bg-bleuclair {
  background-color: #56abe1;
}
.sos-page .aside-row--bg-bleufonce {
  background-color: #2589c5;
}
.sos-page .content {
  width: 800px;
}
@media (max-width: 1160px) {
  .sos-page .content {
    width: 100%;
  }
}
.sos-page .content-row {
  padding: 2rem 0;
  padding-right: 4rem;
}
@media (max-width: 1160px) {
  .sos-page .content-row {
    padding-right: 0;
  }
}
.sos-page .content-row-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .sos-page .content-row-content {
    flex-direction: column;
  }
}
.sos-page .content-row .cards-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.sos-page .content-title {
  color: #005A9D;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  padding-left: 30px;
  margin-bottom: 1rem;
  position: relative;
}
.sos-page .content-title:before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  left: 0px;
  top: 2px;
  border: 2px solid #005b9c;
}
.sos-page .content-text {
  color: #005A9D;
  font-size: 14px;
  line-height: 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.sos-page .content-text h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.sos-page .content-text--article h2 {
  font-size: 1.5rem;
}
.sos-page .content-text .sos-btn {
  margin-bottom: 2rem;
  align-self: center;
}
.sos-page .content-text a {
  color: #c5460e;
}
.sos-page .content-text ul {
  list-style: disc;
  padding-left: 2rem;
}
.sos-page .content-text p {
  margin-bottom: 1rem;
}
.sos-page .content-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 50%;
}
@media (max-width: 1200px) {
  .sos-page .content-images {
    width: 100%;
  }
}
.sos-page .content-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sos-page .content-timeline-row {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  gap: 1rem;
}

.sos-page .content-timeline-date {
  flex: 0 0 100px;
  text-align: right;
}

.sos-page .content-timeline-text {
  flex: 1;
}

@media (max-width: 1200px) {
  .sos-page .content-timeline-row {
    flex-direction: column;
    gap: 1rem;
  }
}
.sos-page .content-timeline-date {
  color: #800000;
  font-weight: bold;
}
.sos-page .content-timeline-text {
  color: #005A9D;
  line-height: 1.4;
  font-size: 14px;
}
.sos-page .content-cards-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.sos-page .content-card {
  background-color: #FFFFFF;
  padding: 3rem 0.5rem;
  padding-top: 4rem;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 311px;
}
.sos-page .content-card-title {
  text-transform: uppercase;
  color: #005A9D;
  font-size: 1.5rem;
}
.sos-page .content-card-content {
  color: #005A9D;
  font-size: 14px;
}
.sos-page .content-card-content a {
  color: #c5460e;
}
.sos-page .content-card-content strong {
  font-weight: bold;
}
.sos-page .content-card-content ul {
  list-style: disc;
}
.sos-page .content-team-cards-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .sos-page .content-team-cards-list {
    justify-content: center;
  }
}
.sos-page .content-team-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sos-page .content-team-card-img {
  width: 100%;
}
.sos-page .content-team-card-title {
  color: #005A9D;
  font-size: 1rem;
  line-height: 1.4;
}
.sos-page .content-team-card-text {
  color: #005A9D;
  font-size: 14px;
  line-height: 1.4;
}
.sos-page .content-team-card .sos-btn {
  padding: 0.75rem 1.25rem;
  font-size: 14px;
}

.content-text ol {
  list-style: decimal;
}

.content-text ol li {
  padding-left: 10px;
}

.content-timeline {
  margin-bottom: 3rem;
}
/*# sourceMappingURL=styles.css.map */

#rdv-traumato {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 2rem;
  align-items: start;
}

.praticiens {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.praticien {
  background: white;
  padding: 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  text-align: center;
}

.praticien img {
  width: 200px;
  height: auto;
  border-radius: 6px;
}

.nom {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.btn-rdv {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 1rem 2rem;
  background: #005b9c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: all .3s;
}

.btn-rdv:hover {
  background: #fff;
  color: #005b9c;
  text-decoration: none;
}

.slot-placeholder {
  margin-top: 0.5rem;
  min-height: 40px;
  background: #e8f4fd;
  border: 1px dashed #2980b9;
  border-radius: 4px;
  padding: 0.5rem;
}

.consultation {
  background: white;
  padding: 2rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.consultation h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #2980b9;
}

.consultation p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .rdv-grid {
    grid-template-columns: 1fr;
  }

  .consultation {
    margin-top: 2rem;
  }
}