@charset "UTF-8";
.wrap-post {
  border-radius: var(--size-10);
  box-shadow: var(--size-0) var(--size-0) var(--size-0) var(--size-2) var(--bc-border-red-100);
}
.wrap-post .post-thumbnail {
  overflow: hidden;
  border-top-left-radius: var(--size-10);
  border-top-right-radius: var(--size-10);
  max-height: 200px;
}
.wrap-post .post-link-content {
  height: 100%;
  overflow: hidden;
  padding: var(--size-24);
  border-bottom-left-radius: var(--size-10);
  border-bottom-right-radius: var(--size-10);
  background-color: var(--bc-background);
}
.wrap-post .post-link-content .post-date {
  font-weight: var(--font-weight-medium);
  font-size: var(--size-14);
  line-height: 1.5;
}
.wrap-post .post-link-content .post-title {
  font-size: var(--size-18);
  line-height: 1.5;
  margin-block-end: var(--size-0);
}
.wrap-post .post-link-content .post-excerpt {
  font-size: var(--size-14);
  line-height: 1.5;
}
.wrap-post .post-link-content .button {
  font-weight: var(--font-weight-medium);
  margin-block-start: auto;
}
.wrap-post .post-link-content .button svg {
  font-size: var(--size-24);
  color: var(--bc-foreground-accent);
}

.site-header {
  z-index: var(--z-index-sticky);
  transform: translateY(0%);
  transition: all 0.3s ease-in-out;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}
.site-header .top-header {
  background-color: var(--bc-background);
  padding-block: var(--size-12);
}
.site-header .top-header .site-logo {
  font-size: var(--size-72);
  height: 1em;
}
.site-header .top-header .site-logo svg {
  width: auto;
}
.site-header .top-header .container-field {
  height: var(--size-42);
  border-radius: var(--size-10);
  box-shadow: var(--bc-shadow-border);
  padding-inline-start: var(--size-12);
  padding-inline-end: var(--size-6);
  gap: var(--size-8);
}
.site-header .top-header .container-field .icon-item {
  font-size: var(--size-20);
  color: var(--bc-foreground-muted);
}
.site-header .top-header .container-field .search-field {
  border: var(--size-0);
}
.site-header .top-header .container-field .button {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--size-10);
  padding: var(--size-16) var(--size-24);
  font-size: var(--size-18);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  border: var(--size-0);
  outline-width: var(--size-2);
  transition: var(--animation-property-all) var(--timing-medium) var(--animation-cubic);
}
.site-header .top-header .container-field .button svg {
  font-size: 0.75em;
  margin-left: var(--size-8);
}
.site-header .top-header .container-field .button {
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--size-8) var(--size-12);
  font-size: var(--size-12);
  color: var(--bc-foreground-button-default);
  border: var(--size-0);
  border-radius: var(--size-6);
  background-color: var(--bc-background-button-default);
}
.site-header .menu-header {
  background-color: var(--bc-background-red-50);
  box-shadow: 0 4px 15px 0 rgba(0, 51, 61, 0.15);
}
.site-header .menu-header .close-menu {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}
.site-header .menu-header .site-menu ul {
  -moz-column-gap: var(--size-40);
       column-gap: var(--size-40);
}
.site-header .menu-header .site-menu ul .menu-item a {
  display: block;
  font-size: var(--size-18);
  padding-block: var(--size-12);
  position: relative;
  cursor: pointer;
}
.site-header .menu-header .site-menu ul .menu-item a::before {
  content: "";
  width: 0px;
  height: 1px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  background-color: var(--bc-color-black);
  opacity: 0;
  transition: var(--animation-property-all) var(--timing-medium) ease-in-out;
}
.site-header .menu-header .site-menu ul .menu-item a:hover::before {
  width: 100%;
  opacity: 1;
}
.site-header .menu-header .site-menu ul .menu-item.current_page_item a::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  background-color: var(--bc-color-black);
  opacity: 1;
}
.site-header .menu-header .site-menu ul .sub-menu .menu-item a::before, .site-header .menu-header .site-menu ul .sub-menu .menu-item a::after {
  display: none;
}
.site-header .menu-header .site-menu .menu-item:not(.sub-menu .menu-item) {
  padding-inline: var(--size-12);
}
.site-header .menu-header .site-menu .menu-item-has-children {
  position: relative;
}
.site-header .menu-header .site-menu .menu-item-has-children a::after {
  content: "";
  position: absolute;
  right: -24px;
  -webkit-mask-image: url("../../img/icons/chevron-down.svg");
          mask-image: url("../../img/icons/chevron-down.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-color: var(--bc-color-black);
  transition: all 0.3s ease-in-out;
}
.site-header .menu-header .site-menu .menu-item-has-children:hover a::after {
  transform: translateY(-50%) rotate(180deg);
}
.site-header .menu-header .site-menu .menu-item-has-children:hover .sub-menu {
  display: flex;
  flex-direction: column;
  gap: var(--size-10);
}
.site-header .menu-header .site-menu .menu-item-has-children .sub-menu {
  display: none;
  position: absolute;
  background-color: var(--bc-color-red-50);
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--bc-color-red-700);
  border-top: none;
  border-bottom-left-radius: var(--border-radius-medium);
  border-bottom-right-radius: var(--border-radius-medium);
  overflow: hidden;
}
.site-header .menu-header .site-menu .menu-item-has-children .sub-menu .menu-item {
  position: relative;
}
.site-header .menu-header .site-menu .menu-item-has-children .sub-menu .menu-item a {
  padding: var(--size-12);
}
.site-header .menu-header .site-menu .menu-item-has-children .sub-menu .menu-item:hover {
  background-color: var(--bc-background-red-500);
  color: var(--bc-color-white);
}
.site-header .menu-mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .site-header .menu-header {
    position: absolute;
    left: 0;
    top: 96px;
    height: calc(100vh - 96px);
    width: 100%;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    overflow: scroll;
  }
  .site-header .menu-header > div.container:first-child {
    height: 100%;
  }
  .site-header .menu-header > div.container:first-child > .row:first-child {
    height: 100%;
  }
  .site-header .menu-header .close-menu {
    display: block;
  }
  .site-header .menu-header .menu-item.current_page_item a::after {
    display: none;
  }
  .site-header .menu-header .menu-item a::before {
    display: none;
  }
  .site-header .menu-header.is-open {
    transform: translateX(0%);
  }
  .site-header .menu-header.is-open #menu-principal {
    flex-direction: column;
  }
  .site-header .menu-header.is-open #menu-principal .menu-item {
    width: 100%;
  }
  .site-header .menu-header.is-open #menu-principal .menu-item-has-children:hover a::after {
    transform: translateY(-50%);
  }
  .site-header .menu-header.is-open #menu-principal .menu-item-has-children.is-open a::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .site-header .menu-header.is-open #menu-principal .menu-item-has-children.is-open .sub-menu {
    display: block;
    position: relative;
    left: initial;
    transform: none;
    border: none;
  }
  .site-header .menu-header #menu-principal {
    flex-direction: column;
    gap: var(--size-20);
  }
  .site-header .menu-header #menu-principal .sub-menu {
    display: none;
  }
  .site-header .menu-mobile {
    display: flex;
  }
  .site-header .wrap-right {
    display: none;
  }
}

.gform_wrapper .gform_heading .gform_title {
  text-align: center !important;
}
.gform_wrapper .gform-body .gform_fields .gfield .gfield_label {
  margin-block-end: var(--size-4);
}
.gform_wrapper .gform-body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container select,
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container input:not([type=checkbox]) {
  height: 42px;
}
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container textarea {
  max-height: 640px;
}
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container select,
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container input,
.gform_wrapper .gform-body .gform_fields .gfield .ginput_container textarea {
  border: var(--size-2) solid var(--bc-border-muted);
  border-radius: var(--border-radius-medium);
  outline: none !important;
  box-shadow: none;
}
.gform_wrapper form .gform-footer {
  margin-inline-start: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.gform_wrapper form .gform-footer .gform_button.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--size-16) var(--size-24) !important;
  font-size: var(--size-18) !important;
  color: var(--bc-foreground-button-default) !important;
  border: 0 !important;
  border-radius: var(--size-10) !important;
  outline: none !important;
  outline-width: var(--size-2) !important;
  background-color: var(--bc-background-button-default) !important;
  box-shadow: none !important;
}
.gform_wrapper form .gform-footer .gform_button.button:hover {
  color: var(--bc-foreground-button-hover) !important;
  outline-color: var(--bc-border-button-hover) !important;
  background-color: var(--bc-background-button-hover) !important;
}
.gform_wrapper form .gform-footer .gform_button.button:focus-visible {
  color: var(--bc-foreground-button-focus) !important;
  outline-color: var(--bc-border-button-focus) !important;
  background-color: var(--bc-background-button-focus) !important;
}
.gform_wrapper form .gform-footer .gform_button.button:active {
  color: var(--bc-foreground-button-active) !important;
  outline-color: var(--bc-border-button-active) !important;
  background-color: var(--bc-background-button-active) !important;
}

.tablepress {
  margin-top: var(--size-24) !important;
}
.tablepress thead tr td:first-of-type {
  background-color: transparent;
}
.tablepress thead th {
  background-color: var(--bc-color-white);
  padding: var(--size-12);
  border: 1px solid var(--bc-color-red-500);
  text-align: center;
}
.tablepress tbody tr:nth-child(even) {
  background-color: var(--bc-color-red-50);
}
.tablepress tbody tr:nth-child(odd) {
  background-color: var(--bc-color-white);
}
.tablepress tbody tr td {
  padding: var(--size-12);
  text-align: center;
  background-color: transparent !important;
  vertical-align: bottom;
  border: 1px solid var(--bc-color-red-500);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 500px) {
  .tablepress {
    overflow-x: scroll;
  }
}

.tablepress-table-description {
  font-weight: var(--font-weight-bold);
}

.card-etablissement-vertical {
  background-color: var(--bc-color-white);
  border-radius: var(--border-radius-medium);
  border: var(--size-1) solid var(--bc-color-grey-200);
  overflow: hidden;
}
.card-etablissement-vertical .post-thumbnail {
  aspect-ratio: 279/182;
  min-height: 182px;
}
.card-etablissement-vertical .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.card-etablissement-vertical .post-link-content {
  min-height: 158px;
}
.card-etablissement-vertical .flag {
  display: block;
  top: var(--size-24);
  right: var(--size-20);
  position: absolute;
}
.card-etablissement-vertical .flag svg {
  width: var(--size-24);
  height: var(--size-24);
}
.card-etablissement-vertical:hover {
  border-color: var(--bc-color-purple-500);
  background-color: var(--bc-color-purple-200);
}
.card-etablissement-vertical:hover .selected-marker {
  opacity: 1;
}
.card-etablissement-vertical:active {
  background-color: var(--bc-color-purple-300);
  border-color: var(--bc-color-purple-500);
  border-width: var(--size-2);
}

.card-etablissement-horizontal {
  border: var(--size-1) solid var(--bc-color-grey-200);
  border-radius: var(--border-radius-medium);
  background-color: var(--bc-color-white);
  height: 100%;
  overflow: hidden;
}
.card-etablissement-horizontal .selected-marker {
  opacity: var(--size-0);
  right: var(--size-10);
  bottom: var(--size-10);
}
.card-etablissement-horizontal .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 186/182;
}
.card-etablissement-horizontal .post-link-content {
  transition: all var(--timing-medium) ease-in-out;
  width: 90%;
  padding-inline: var(--size-24);
  padding-block: var(--size-24);
}
.card-etablissement-horizontal .post-link-content .flag {
  position: absolute;
  right: var(--size-10);
  top: var(--size-24);
}
.card-etablissement-horizontal .post-link-content .post-title {
  text-transform: uppercase;
}
.card-etablissement-horizontal .post-link-content .adresse-content div {
  width: 95%;
}
.card-etablissement-horizontal:hover {
  border-color: var(--bc-color-purple-500);
  background-color: var(--bc-color-purple-200);
}
.card-etablissement-horizontal:hover .selected-marker {
  opacity: 1;
}
.card-etablissement-horizontal:active {
  background-color: var(--bc-color-purple-300);
  border-color: var(--bc-color-purple-500);
  border-width: var(--size-2);
}
@media screen and (max-width: 500px) {
  .card-etablissement-horizontal {
    flex-direction: column;
    margin-bottom: var(--size-20);
  }
  .card-etablissement-horizontal .post-thumbnail {
    height: 181px;
  }
  .card-etablissement-horizontal .post-thumbnail img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 100%;
    height: 100%;
  }
  .card-etablissement-horizontal .post-link-content {
    padding: var(--size-24);
    width: 100%;
    min-height: 158px;
  }
}

*:focus-visible {
  outline-width: var(--size-2);
  outline-style: solid;
  outline-offset: 0;
}

html {
  font-size: 62.5%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: var(--bc-font-family-text);
  font-size: var(--size-16);
  color: var(--bc-foreground);
  background-color: var(--bc-background);
  text-rendering: optimizelegibility;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body.admin-bar {
  --admin-bar-top: calc(32px + var(--size-0));
}
body.admin-bar .site-header {
  top: var(--admin-bar-top);
}
body.home .site-main {
  padding-block-end: var(--size-0);
}
body.archive .breadcrumb-container {
  margin-block-end: var(--size-24);
}
body.page-id-24 .highlight {
  padding: var(--size-24);
}

.site-main {
  padding-block-start: 144px;
  padding-block-end: var(--size-80);
  min-height: 100dvh;
}
@media screen and (max-width: 1024px) {
  .site-main {
    padding-block-start: 96px;
  }
}

.site-footer {
  background-color: var(--bc-background-red-500);
  padding: var(--size-80) var(--size-0);
  margin-block-start: var(--size-0);
  color: var(--bc-color-white);
}
.site-footer .divider {
  width: 100%;
  height: var(--size-1);
  background: var(--bc-linear-background);
  margin-block: var(--size-24);
}
.site-footer .site-footer-up .column-widget:first-of-type ~ .column-widget:nth-of-type(2) h1, .site-footer .site-footer-up h2, .site-footer .site-footer-up h3, .site-footer .site-footer-up h4, .site-footer .site-footer-up h5, .site-footer .site-footer-up h6, .site-footer .site-footer-up p {
  color: var(--bc-color-white);
}
.site-footer .site-footer-up .widget_text p {
  word-break: break-word;
}
.site-footer .site-footer-below {
  font-size: var(--size-14);
}
.site-footer .site-footer-below p,
.site-footer .site-footer-below .column-widget {
  margin-bottom: var(--size-0) !important;
}
.site-footer .site-footer-below p a {
  text-decoration: none;
}
.site-footer .site-footer-below .column-widget-2 {
  font-weight: var(--font-weight-light);
}
.site-footer .site-footer-below nav .menu {
  display: flex;
  gap: var(--size-8);
}
.site-footer .site-footer-below nav .menu li a {
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 1024px) {
  .site-footer {
    padding: var(--size-40) var(--size-0);
  }
}

.signature-billiotte {
  display: flex;
  align-items: center;
  font-size: var(--size-14);
  margin-inline-start: auto;
}
.signature-billiotte a {
  display: inline-block;
  width: 120px;
  height: 30px;
  position: relative;
  margin-left: 5px;
  font-size: 0;
  text-decoration: underline;
  color: #FF6600;
  background-image: url(../../img/signature-billiotte-white.svg);
  background-repeat: no-repeat;
  background-position: unset;
  background-size: 100%;
}

.wrapper-pagination .pagination-result,
.wrapper-pagination .pagination-page {
  font-size: var(--size-16);
}
.wrapper-pagination .pagination-result-pages .separator {
  font-size: var(--size-24);
  line-height: var(--size-16);
}
.wrapper-pagination .pagination-links {
  display: flex;
  gap: var(--size-8);
  margin-inline: auto;
}
.wrapper-pagination .pagination-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-60);
  font-weight: var(--font-weight-semibold);
  font-size: var(--size-18);
  text-align: center;
  border: var(--size-2) solid transparent;
  border-radius: var(--size-44);
  aspect-ratio: 1;
}
.wrapper-pagination .pagination-links .page-numbers.current {
  border-color: transparent;
  background: var(--bc-pagination-background-current);
  color: var(--bc-pagination-foreground-current);
}
.wrapper-pagination .pagination-links .page-numbers.first, .wrapper-pagination .pagination-links .page-numbers.last, .wrapper-pagination .pagination-links .page-numbers.prev, .wrapper-pagination .pagination-links .page-numbers.next {
  font-size: var(--size-24);
  border-color: var(--bc-pagination-border-muted);
  background-color: var(--bc-pagination-background);
}
.wrapper-pagination .pagination-links .page-numbers.first:after, .wrapper-pagination .pagination-links .page-numbers.last:after, .wrapper-pagination .pagination-links .page-numbers.prev:after, .wrapper-pagination .pagination-links .page-numbers.next:after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: var(--bc-pagination-foreground);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.wrapper-pagination .pagination-links .page-numbers.first:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevrons-left.svg");
          mask-image: url("../../../assets/img/icons/chevrons-left.svg");
}
.wrapper-pagination .pagination-links .page-numbers.last:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevrons-right.svg");
          mask-image: url("../../../assets/img/icons/chevrons-right.svg");
}
.wrapper-pagination .pagination-links .page-numbers.prev:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevron-left.svg");
          mask-image: url("../../../assets/img/icons/chevron-left.svg");
}
.wrapper-pagination .pagination-links .page-numbers.next:after {
  -webkit-mask-image: url("../../../assets/img/icons/chevron-right.svg");
          mask-image: url("../../../assets/img/icons/chevron-right.svg");
}
.wrapper-pagination .pagination-links .page-numbers:not(.current):hover {
  border-color: var(--bc-pagination-border);
}
.wrapper-pagination .pagination-links .page-numbers:not(.current):active {
  border-color: var(--bc-pagination-border);
  background-color: var(--bc-pagination-background-active);
}

.page-head {
  background-color: var(--bc-background-red-100);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 160%;
  margin-block-end: var(--size-112);
  height: 360px;
  position: relative;
}
.page-head::before {
  content: "";
  position: absolute;
  left: 0px;
  background-image: url("../../img/personnes-aide.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  aspect-ratio: 324/216;
}
.page-head::after {
  content: "";
  position: absolute;
  right: -11px;
  background-image: url("../../img/2personnesDeboutDiscute.svg");
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  aspect-ratio: 324/216;
}
.page-head .page-excerpt {
  max-width: 60ch;
}
@media screen and (max-width: 1100px) {
  .page-head::before, .page-head::after {
    display: none;
  }
}

.postpage-head,
.subpage-head {
  height: 280px;
  overflow: hidden;
  margin-block-end: var(--size-32);
}
.postpage-head:before,
.subpage-head:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: var(--z-index-above);
  top: 0;
  left: 0;
  background-color: var(--bc-background-reverse-aplha-50);
}
.postpage-head .page-thumbnail,
.subpage-head .page-thumbnail {
  width: 100%;
  height: 100%;
  z-index: var(--z-index-below);
  background-color: var(--bc-foreground);
}
.postpage-head .page-thumbnail::after,
.subpage-head .page-thumbnail::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(158, 69, 42, 0.5) 0%, rgba(158, 69, 42, 0.5) 100%);
  z-index: 3;
  position: absolute;
  top: 0;
}
.postpage-head .page-thumbnail img,
.subpage-head .page-thumbnail img {
  width: 100%;
  height: 100%;
  max-width: inherit;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postpage-head .page-title,
.subpage-head .page-title {
  z-index: var(--z-index-abover);
  font-weight: var(--font-weight-semibold);
  font-size: var(--bc-fluid-32-72);
  color: var(--bc-foreground-reverse);
  margin-block-end: var(--size-24);
}
.postpage-head .page-excerpt,
.subpage-head .page-excerpt {
  max-width: 60ch;
  z-index: var(--z-index-abover);
  color: var(--bc-foreground-reverse);
}

.breadcrumb-container {
  margin-block-end: var(--size-80);
}
.breadcrumb-container li {
  min-width: 3ch;
}
.breadcrumb-container li a {
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb-container li span {
  text-wrap: nowrap;
}
.breadcrumb-container li:last-child span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.wp-block-columns .wp-block-column .wp-block-image img {
  border-radius: var(--border-radius-medium);
}
.wp-block-columns .wp-block-column .wp-block-image .wp-element-caption {
  text-align: center;
}

.wp-block-quote, .highlight {
  margin-block: var(--size-12);
  margin-inline: var(--size-24);
  padding-block: var(--size-12);
  padding-inline: var(--size-24);
  background-color: var(--bc-background-red-50);
  border: 1px solid var(--bc-color-red-500);
  border-radius: var(--border-radius-medium);
  color: var(--bc-color-red-700);
  list-style-position: inside;
}
.wp-block-quote h3, .highlight h3 {
  text-align: center;
}
.wp-block-quote h4, .highlight h4 {
  color: var(--bc-color-red-700);
}

ul.wp-block-list {
  list-style-position: inside;
}
ul.wp-block-list li::marker {
  color: oklch(57.86% 0.181 36.86deg);
}

.orange {
  padding: var(--size-24);
  background-color: var(--bc-color-red-500);
  border-radius: var(--border-radius-medium);
  color: var(--bc-color-white);
}
.orange .wp-block-heading {
  color: var(--bc-color-white);
  text-align: center;
}
.orange hr {
  width: 5px;
  height: 5px;
  border-radius: var(--border-radius-rounded);
  background-color: var(--bc-color-white);
  border: none;
}

.telechargement {
  border: 1px solid var(--bc-color-red-500);
  background-color: var(--bc-color-red-50);
  padding: var(--size-40);
  border-radius: var(--border-radius-medium);
}
.telechargement .wp-block-list, .telechargement ul {
  list-style: none;
  padding-left: 0;
}
.telechargement .wp-block-list li, .telechargement ul li {
  position: relative;
  padding-left: 25px;
}
.telechargement .wp-block-list li::before, .telechargement ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("../../img/icons/file.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.cards_contact {
  text-align: center;
}
.cards_contact .wp-block-heading {
  border-bottom: 1px solid oklch(57.86% 0.181 36.86deg);
  padding-block: var(--size-12);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.cards_contact .mail {
  color: oklch(57.86% 0.181 36.86deg);
}
.cards_contact .mail a {
  text-decoration: none;
}

.documents {
  background-color: var(--bc-background-red-50);
  border: var(--size-1) solid var(--bc-color-red-500);
  border-radius: var(--border-radius-medium);
  padding: var(--size-24);
  height: -moz-fit-content;
  height: fit-content;
}
.documents .wp-block-heading {
  text-align: center;
  border-bottom: var(--size-1) solid var(--bc-background-red-500);
  padding-bottom: var(--size-10);
}
.documents .wp-block-list, .documents ul {
  list-style: none;
  padding-left: 0;
}
.documents .wp-block-list li, .documents ul li {
  position: relative;
  padding-left: 25px;
}
.documents .wp-block-list li::before, .documents ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("../../img/icons/file.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.documents #bt_download_jour,
.documents #bt_download_temporaire,
.documents #bt_download_permanent {
  display: none;
}
.documents #bt_download_spec_jour,
.documents #bt_download_spec_temporaire,
.documents #bt_download_spec_permanent {
  display: none;
}
.documents .dropdown {
  margin-top: var(--size-10);
}
.documents .dropdown .dropdown-toggle {
  background-color: var(--bc-color-white);
  border: var(--size-1) solid var(--bc-color-grey-200);
  padding: var(--size-12) var(--size-24);
  border-radius: var(--border-radius-medium);
  font-size: var(--size-18);
}
.documents .dropdown .dropdown-toggle:focus {
  border-color: var(--bc-color-purple-500);
  background-color: var(--bc-color-white);
}
.documents .dropdown .dropdown-toggle:active {
  border-color: var(--bc-color-purple-500);
  background-color: var(--bc-color-white);
}
.documents .dropdown .dropdown-menu {
  position: absolute;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  max-height: 240px;
  overflow-y: scroll;
  background-color: var(--bc-color-white);
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  border: var(--size-1) solid var(--bc-color-purple-500);
  border-radius: var(--border-radius-medium);
  transform: translateY(10px);
}
.documents .dropdown .dropdown-menu .dropdown-item {
  padding: var(--size-12);
  cursor: pointer;
}
.documents .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: var(--bc-color-purple-100);
}
.documents .dropdown.show .dropdown-menu {
  display: flex;
}

#formulaire-responsive {
  margin: 0 auto;
  width: 100%;
}

.rang-form {
  width: 100%;
}

.demi-colonne, .colonne {
  font-size: 16px;
  float: left;
  position: relative;
  padding: 0.65rem;
  width: 100%;
  box-sizing: border-box;
}
.demi-colonne span, .colonne span {
  display: block;
  padding-top: 10px;
}

.your-etablissement .wpcf7-select {
  width: 100%;
  background-color: white;
  border-color: #ccc;
  border-radius: 3px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/**---------------- Media query ----------------**/
@media only screen and (min-width: 48em) {
  .demi-colonne {
    width: 50%;
  }
}
.wpcf7-submit {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--size-10);
  padding: var(--size-16) var(--size-24);
  font-size: var(--size-18);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  border: var(--size-0);
  outline-width: var(--size-2);
  transition: var(--animation-property-all) var(--timing-medium) var(--animation-cubic);
}
.wpcf7-submit svg {
  font-size: 0.75em;
  margin-left: var(--size-8);
}
.wpcf7-submit {
  float: right;
  border: none;
  background-color: var(--bc-color-purple-500);
  color: var(--bc-color-white);
  padding-bottom: 18px;
  cursor: pointer;
}
.wpcf7-submit:hover {
  background-color: var(--bc-color-purple-400);
}
.wpcf7-submit:active {
  background-color: var(--bc-color-purple-600);
}

.wpcf7-submit:hover {
  background-position-y: 37px;
}

.wpcf7-submit:focus {
  outline: none;
}

.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 textarea {
  width: 100%;
  padding-inline: 8px;
  height: 42px;
  border: var(--size-2) solid var(--bc-color-red-50);
  border-radius: var(--border-radius-medium);
  box-sizing: border-box;
  outline: none;
}

.wpcf7 input[type=text]:focus {
  background: #fff;
}

span.wpcf7-not-valid-tip {
  text-shadow: none;
  font-size: 12px;
  padding: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border: none;
  text-shadow: none;
  font-size: 20px;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-shadow: none;
  font-size: 20px;
  text-align: center;
}

.gallery {
  margin-top: 50px;
}
.gallery .item {
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
}
.gallery .picture_gallery {
  border-radius: 15px;
  padding: 0px 5px;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  -ms-transition: 0.4s ease-in-out;
}
.gallery .owl-nav {
  position: absolute;
  width: 100%;
}
.gallery .owl-nav button:focus {
  outline: none !important;
}
.gallery .owl-nav .owl-prev {
  background: url("../../img/arrow.svg") no-repeat center center !important;
  width: 50px;
  height: 50px;
  left: 15px;
  top: -190px;
  position: absolute;
}
.gallery .owl-nav .owl-prev span {
  display: none;
}
@media screen and (max-width: 2000px) {
  .gallery .owl-nav .owl-prev {
    top: -280px;
  }
}
@media screen and (max-width: 1700px) {
  .gallery .owl-nav .owl-prev {
    top: -260px;
  }
}
@media screen and (max-width: 1600px) {
  .gallery .owl-nav .owl-prev {
    top: -230px;
  }
}
@media screen and (max-width: 1450px) {
  .gallery .owl-nav .owl-prev {
    top: -200px;
  }
}
@media screen and (max-width: 1150px) {
  .gallery .owl-nav .owl-prev {
    top: -170px;
  }
}
@media screen and (max-width: 992px) {
  .gallery .owl-nav .owl-prev {
    top: -150px;
  }
}
@media screen and (max-width: 870px) {
  .gallery .owl-nav .owl-prev {
    top: -140px;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery .owl-nav .owl-prev {
    top: -120px;
    width: 35px;
  }
}
@media screen and (max-width: 600px) {
  .gallery .owl-nav .owl-prev {
    top: -190px;
    width: 50px;
  }
}
@media screen and (max-width: 492px) {
  .gallery .owl-nav .owl-prev {
    top: -160px;
    width: 50px;
  }
}
@media screen and (max-width: 430px) {
  .gallery .owl-nav .owl-prev {
    top: -140px;
    width: 50px;
  }
}
.gallery .owl-nav .owl-next {
  background: url("../../img/arrow.svg") no-repeat center center !important;
  transform: rotate(180deg);
  width: 50px;
  height: 50px;
  right: 15px;
  top: -190px;
  position: absolute;
}
.gallery .owl-nav .owl-next span {
  display: none;
}
@media screen and (max-width: 2000px) {
  .gallery .owl-nav .owl-next {
    top: -280px;
  }
}
@media screen and (max-width: 1700px) {
  .gallery .owl-nav .owl-next {
    top: -260px;
  }
}
@media screen and (max-width: 1600px) {
  .gallery .owl-nav .owl-next {
    top: -230px;
  }
}
@media screen and (max-width: 1450px) {
  .gallery .owl-nav .owl-next {
    top: -200px;
  }
}
@media screen and (max-width: 1150px) {
  .gallery .owl-nav .owl-next {
    top: -170px;
  }
}
@media screen and (max-width: 992px) {
  .gallery .owl-nav .owl-next {
    top: -150px;
  }
}
@media screen and (max-width: 870px) {
  .gallery .owl-nav .owl-next {
    top: -140px;
    width: 40px;
  }
}
@media screen and (max-width: 768px) {
  .gallery .owl-nav .owl-next {
    top: -120px;
    width: 35px;
  }
}
@media screen and (max-width: 600px) {
  .gallery .owl-nav .owl-next {
    top: -190px;
    width: 50px;
  }
}
@media screen and (max-width: 492px) {
  .gallery .owl-nav .owl-next {
    top: -160px;
    width: 50px;
  }
}
@media screen and (max-width: 430px) {
  .gallery .owl-nav .owl-next {
    top: -140px;
    width: 50px;
  }
}

.voir_tout {
  font-size: 18px;
  color: var(--bc-color-black);
  padding-top: 60px;
  margin-bottom: 40px;
  display: inline-block;
}
.voir_tout span:after {
  content: " ";
  display: block;
  margin: 0 auto;
  height: 13px;
  width: 90%;
  background-color: var(--bc-color-red-500);
  position: relative;
  top: 5px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
}
.voir_tout span:hover:after {
  content: " ";
  display: block;
  margin: 0 auto;
  height: 13px;
  width: 70%;
  background-color: var(--bc-color-red-700);
  position: relative;
  top: 5px;
}

.voir_tout:hover {
  text-decoration: none;
  color: var(--bc-color-black);
}

.page-id-18 h3.citation {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
.page-id-18 h3.citation::before {
  content: "“";
  display: block;
  font-size: 180px;
}
.page-id-18 h3.citation::after {
  content: "”";
  display: block;
  height: 60px;
  font-size: 180px;
}/*# sourceMappingURL=all.css.map */