.cta {
  padding: 0.5rem 1.5rem;
  border-radius: 2.5rem;
  text-align: center;
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}
@media only screen and (min-width: 1024px) {
  .cta {
    padding: 0.5rem 1.875rem;
    font-size: 1rem;
  }
}

.cta-primary {
  background-color: var(--navy-primary);
  border: 2px solid var(--navy-primary);
  color: var(--white);
}
@media only screen and (min-width: 1024px) {
  .cta-primary:hover {
    background-color: var(--blue-teal);
    border: 2px solid var(--blue-teal);
  }
}

.cta-outline {
  background-color: var(--white);
  color: var(--navy-primary);
  border: 2px solid var(--navy-primary);
}
@media only screen and (min-width: 1024px) {
  .cta-outline:hover {
    background-color: var(--navy-primary);
    color: var(--white);
  }
}

.cta-tertiary {
  background-color: var(--white);
  border: 2px solid var(--blue-teal);
  color: var(--navy-primary);
}
@media only screen and (min-width: 1024px) {
  .cta-tertiary:hover {
    background-color: var(--blue-teal);
    color: var(--white);
  }
}

.input {
  font-family: "Poppins", sans-serif;
  border: 1px solid var(--white);
  border-radius: 1.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  width: 100%;
}
.input:focus {
  outline: 2px solid var(--peach-tertiary);
}

.input.input--lg-background {
  background-color: var(--light-gray);
  border: 1px solid var(--light-gray);
}

.input.input--wh-background {
  background-color: var(--white);
  border: 1px solid var(--white);
}

@media only screen and (min-width: 768px) {
  .informations {
    display: flex;
    flex-wrap: wrap;
  }
}
.informations__block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2.5rem 2rem;
  height: 450px;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .informations__block {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1024px) {
  .informations__block {
    height: 500px;
  }
}
@media only screen and (min-width: 1440px) {
  .informations__block {
    width: 33.3333333333%;
    height: 450px;
  }
}
@media only screen and (min-width: 2540px) {
  .informations__block {
    height: 600px;
  }
}
.informations__block-texte {
  width: 85%;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .informations__block-texte {
    width: 90%;
  }
}
@media only screen and (min-width: 1440px) {
  .informations__block-texte {
    width: 100%;
  }
}
.informations__block-question {
  background: url("../../assets/img/tube.png"), var(--peach-tertiary);
  background-size: 65%;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .informations__block-question {
    background-size: 55%;
  }
}
@media only screen and (min-width: 1440px) {
  .informations__block-question {
    background-size: 65%;
  }
}
@media only screen and (min-width: 2540px) {
  .informations__block-question {
    background-size: 60%;
  }
}
.informations__block-agenda {
  background: url("../../assets/img/agenda.png"), var(--white);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .informations__block-agenda {
    background-size: 65%;
    background-position: center bottom;
  }
}
@media only screen and (min-width: 1024px) {
  .informations__block-agenda {
    background-size: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .informations__block-agenda {
    background-size: 85%;
  }
}
@media only screen and (min-width: 1620px) {
  .informations__block-agenda {
    background-size: 68%;
  }
}
.informations__block-discover {
  background-color: var(--light-gray);
}
.informations__block-discover-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.informations__block-discover-container .dialog__form-input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.informations__block-ressources {
  background: var(--light-blue-secondary);
}

.dialog {
  background-color: var(--white, #fff);
  height: 65vh;
  min-height: 500px;
  width: clamp(35%, 100vw - 2rem, 90%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog[open] {
  display: flex;
}
.dialog::backdrop {
  background: rgba(45, 40, 80, 0.3);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .dialog {
    width: 55%;
  }
}
@media only screen and (min-width: 1024px) {
  .dialog {
    height: 70vh;
    max-height: 515px;
    max-width: 600px;
  }
}
.dialog__close {
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.dialog__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.dialog__form-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  max-width: 260px;
}
.dialog__form-label, .dialog__form-aide {
  text-align: center;
}
.dialog__form-input {
  width: 90%;
}
.dialog__form-input:focus-visible {
  outline: white auto 1px;
}
.dialog__form-aide {
  color: var(--gray);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}
.dialog__form-error {
  font-size: 1rem;
  text-align: center;
  line-height: 130%;
  margin-top: 1rem;
  font-weight: 500;
  color: var(--coral-tertiary);
}
.dialog__form--chat {
  gap: 0;
  justify-content: flex-start;
}
.dialog__asterisque {
  color: var(--coral-tertiary);
}

.external-link-dialog {
  height: auto;
  min-height: 0;
  max-width: 520px;
  width: clamp(300px, 90vw, 520px);
  gap: 1.5rem;
}

.external-link-dialog__message {
  text-align: center;
  color: var(--navy-primary);
  line-height: 1.5;
}

.external-link-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.not-found {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.not-found__text {
  max-width: 38rem;
  word-break: break-word;
}

.not-found__cta {
  align-self: flex-start;
}

@media only screen and (max-width: 767px) {
  .not-found__cta {
    width: 100%;
  }
}

.close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}

.splide {
  width: 100%;
}
.splide__arrow.splide__arrow--ts {
  background-color: transparent;
  opacity: 1;
}
@media only screen and (min-width: 375px) {
  .splide__arrow.splide__arrow--prev {
    left: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .splide__arrow.splide__arrow--prev {
    left: 3.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .splide__arrow.splide__arrow--prev {
    left: 1.5rem;
  }
}
@media only screen and (min-width: 1620px) {
  .splide__arrow.splide__arrow--prev {
    left: 3.5rem;
  }
}
@media only screen and (min-width: 2540px) {
  .splide__arrow.splide__arrow--prev {
    left: 6.5rem;
  }
}
@media only screen and (min-width: 375px) {
  .splide__arrow.splide__arrow--next {
    right: 2rem;
  }
}
@media only screen and (min-width: 768px) {
  .splide__arrow.splide__arrow--next {
    right: 3.5rem;
  }
}
@media only screen and (min-width: 1024px) {
  .splide__arrow.splide__arrow--next {
    right: 1.5rem;
  }
}
@media only screen and (min-width: 1620px) {
  .splide__arrow.splide__arrow--next {
    right: 3.5rem;
  }
}
@media only screen and (min-width: 2540px) {
  .splide__arrow.splide__arrow--next {
    right: 6.5rem;
  }
}
.splide__slide a {
  text-decoration: none;
  color: inherit;
}
.splide__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.splide__figure img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

.menu {
  background: transparent;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 64px;
  width: 30px;
  top: 0;
  right: 20px;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .menu {
    height: 77px;
  }
}
@media only screen and (min-width: 1024px) {
  .menu {
    align-items: flex-start;
    background-color: var(--white);
    z-index: 9;
    right: 0;
    width: 63px;
    position: fixed;
    height: 100%;
  }
}
.menu__img {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}
@media only screen and (min-width: 1024px) {
  .menu__img {
    height: 77px;
    width: 50%;
    cursor: pointer;
  }
}

.navbar {
  position: relative;
}
.navbar__wrapper {
  overflow: scroll;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  height: 100vh;
  background-color: var(--white);
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  width: 100%;
  padding-block: 70px;
}
.navbar__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100dvh;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-inline: 2rem;
  padding-bottom: 2rem;
}
.navbar__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.navbar__item {
  width: 100%;
  text-align: start !important;
}
.navbar__item:first-child, .navbar__item:nth-child(2), .navbar__item:nth-child(3), .navbar__item:nth-child(4), .navbar__item:nth-child(5) {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--navy-primary);
}
@media only screen and (min-width: 1024px) {
  .navbar__item:first-child, .navbar__item:nth-child(2), .navbar__item:nth-child(3), .navbar__item:nth-child(4), .navbar__item:nth-child(5) {
    padding-bottom: 1.5rem;
  }
}
.navbar__item .navbar__sublist {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.navbar__sublist--last {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.navbar__item a {
  text-decoration: none;
  color: inherit;
  width: 100%;
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .navbar__item a:hover {
    color: var(--coral-tertiary);
  }
}
.navbar__list, .navbar__sublist {
  list-style-type: none;
}
.navbar__open {
  transform: translateX(0);
  cursor: pointer;
  z-index: 9;
}
@media only screen and (min-width: 1024px) {
  .navbar__open {
    transform: translateX(50%);
  }
}
.navbar__login {
  margin-block: 1rem;
}
.navbar__figcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.navbar__figimage {
  height: 100%;
  width: 40px;
  object-position: right;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(45, 40, 80, 0.3);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

@media (min-width: 1024px) {
  body:has(.navbar__open)::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.chat {
  position: relative;
}
.chat__logo {
  position: fixed;
  background: transparent;
  border: transparent;
  right: 20px;
  top: 80px;
  cursor: pointer;
  z-index: 3;
}
.chat__logo svg {
  width: 50px;
  height: 50px;
}
@media only screen and (min-width: 1024px) {
  .chat__logo {
    right: 9%;
    top: 10%;
  }
  .chat__logo svg {
    width: 68px;
    height: 68px;
  }
  .chat__logo:hover svg circle {
    fill: var(--navy-primary);
  }
}
@media only screen and (min-width: 768px) {
  .chat__logo {
    top: 90px;
  }
}
@media only screen and (min-width: 1440px) {
  .chat__logo {
    right: 90px;
  }
}
.chat__box {
  margin: auto;
  border-radius: 1.25rem;
  border: transparent;
  padding: 2rem;
  width: 85%;
  height: 75vh;
  min-height: 555px;
  position: fixed;
  flex-direction: column;
  overflow-y: hidden;
  box-shadow: var(--shadow);
}
@media only screen and (min-width: 1024px) {
  .chat__box {
    height: 60vh;
    width: 75%;
    margin: 0 0 0 auto;
    top: 160px;
    right: 175px;
  }
}
@media only screen and (min-width: 1440px) {
  .chat__box {
    width: 700px;
    height: 500px;
  }
}
@media only screen and (min-width: 1620px) {
  .chat__box {
    height: 618px;
  }
}
.chat__box[open] {
  display: flex;
}
.chat__box::backdrop {
  background: transparent;
}
.chat__container {
  min-height: 355px;
  height: calc(75vh - 37px - 90px - 2.75rem);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 1rem;
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .chat__container {
    height: calc(60vh - 37px - 90px - 2.75rem);
  }
}
@media only screen and (min-width: 1440px) {
  .chat__container {
    height: calc(373px - 2.75rem);
  }
}
@media only screen and (min-width: 1620px) {
  .chat__container {
    height: calc(491px - 2.75rem);
  }
}
.chat__close {
  background: transparent;
  border: transparent;
  cursor: pointer;
}
.chat__svg {
  margin-bottom: 1rem !important;
  gap: 0.5rem !important;
}
.chat__svg svg {
  width: 20px;
  height: 16px;
}
.chat__row:not(:last-child) {
  margin-bottom: 1rem;
}
.chat__bubble {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.chat__bubble-texte {
  margin-left: calc(23px + 0.5rem);
}
@media only screen and (min-width: 1024px) {
  .chat__bubble-texte {
    width: 600px;
  }
}
.chat__subrow {
  margin-bottom: 1rem;
}
.chat__retour {
  font-size: 0.875rem !important;
}
.chat__question {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  display: flex;
  gap: 0.5rem;
  padding-block: 1.25rem 1rem;
  padding-inline: 1rem;
  border-top: 3px solid var(--light-gray);
  width: 100%;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .chat__question {
    gap: 1rem;
  }
}
.chat__button {
  background: transparent;
  border: transparent;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .chat__button:hover svg circle {
    fill: var(--navy-primary);
  }
}
@media only screen and (min-width: 768px) {
  .chat__input {
    max-width: 75%;
  }
}

.reponse {
  margin-left: calc(23px + 0.5rem);
}

.chat-page {
  padding-block: 1.5rem;
  padding-left: 2rem;
}
@media only screen and (min-width: 1024px) {
  .chat-page {
    padding-block: 2rem;
    padding-left: 2.5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .chat-page {
    padding-block: 3rem;
    padding-left: 3rem;
  }
}
@media only screen and (min-width: 1620px) {
  .chat-page {
    padding-left: 6rem;
  }
}
.chat-page__container {
  gap: 1rem;
  display: flex;
  flex-direction: column;
  height: 370px;
  padding-right: 2rem;
  overflow: auto;
}
@media only screen and (min-width: 1024px) {
  .chat-page__container {
    padding-right: 2.5rem;
  }
}
@media only screen and (min-width: 1440px) {
  .chat-page__container {
    padding-right: 3rem;
    height: 450px;
  }
}
@media only screen and (min-width: 1620px) {
  .chat-page__container {
    padding-right: 6rem;
  }
}
@media only screen and (min-width: 1920px) {
  .chat-page__container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 2160px) {
  .chat-page__container {
    max-width: 1600px;
  }
}
@media only screen and (min-width: 2540px) {
  .chat-page__container {
    max-width: 1800px;
  }
}
.chat-page__button {
  background: transparent;
  border: transparent;
  cursor: pointer;
}
@media only screen and (min-width: 1024px) {
  .chat-page__button:hover svg circle {
    fill: var(--navy-primary);
  }
}
@media only screen and (min-width: 768px) {
  .chat-page__input {
    max-width: 75%;
  }
}
.chat-page__question {
  margin-top: 2rem;
  background: var(--white);
  display: flex;
  gap: 0.5rem;
  padding-block: 1.25rem 1rem;
  padding-inline: 1rem;
  border-top: 3px solid var(--light-gray);
  width: 100%;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .chat-page__question {
    gap: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  .chat-page__question {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  .chat-page__question {
    margin-top: 3rem;
  }
}

.textPresentation {
  margin-bottom: 0 !important;
}

.chargement {
  height: 100dvh;
  display: flex;
  background-color: #E6E6E6;
}
@media (prefers-color-scheme: dark) {
  .chargement {
    background-color: #52596E;
  }
}

.showbox {
  margin: auto;
  display: flex;
  justify-content: center;
}

.loader {
  position: relative;
  margin: 0 auto;
  width: 100px;
}
.loader-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.loader-text {
  color: var(--text-navy);
}
@media (prefers-color-scheme: dark) {
  .loader-text {
    color: var(--white);
  }
}

.loader:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@-webkit-keyframes color {
  100%, 0% {
    stroke: var(--peach-tertiary);
  }
  40% {
    stroke: var(--blue-teal);
  }
  66% {
    stroke: var(--blue-secondary);
  }
  80%, 90% {
    stroke: var(--coral-tertiary);
  }
}
@keyframes color {
  100%, 0% {
    stroke: var(--peach-tertiary);
  }
  40% {
    stroke: var(--blue-teal);
  }
  66% {
    stroke: var(--blue-secondary);
  }
  80%, 90% {
    stroke: var(--coral-tertiary);
  }
}
@media only screen and (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

@media only screen and (max-width: 1023px) {
  .hide-mobile {
    display: none;
  }
}

@media only screen and (max-width: 1920px) {
  .show-l {
    display: none;
  }
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1024px) {
  .margin-r-63-l {
    margin-right: 63px;
  }
}

:root {
  --navy-primary: #2D2850;
  --light-gray: #E7F1F4;
  --white: #FFFFFF;
  --blue-teal: #2CA4B2;
  --peach-tertiary: #F5CABB;
  --coral-tertiary: #FF5067;
  --gray: #4C4C4C;
  --blue-secondary: #A9C7E1;
  --medium-blue-secondary: #ECF4F9;
  --light-blue-secondary: #D4E3F0;
  --shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

main {
  position: relative;
  background-color: var(--medium-blue-secondary);
}

@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Medium.eot");
  src: url("../../assets/fonts/Poppins/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Poppins/Poppins-Medium.woff2") format("woff2"), url("../../assets/fonts/Poppins/Poppins-Medium.woff") format("woff"), url("../../assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype"), url("../../assets/fonts/Poppins/Poppins-Medium.svg#Poppins-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Bold.eot");
  src: url("../../assets/fonts/Poppins/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Poppins/Poppins-Bold.woff2") format("woff2"), url("../../assets/fonts/Poppins/Poppins-Bold.woff") format("woff"), url("../../assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype"), url("../../assets/fonts/Poppins/Poppins-Bold.svg#Poppins-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../assets/fonts/Poppins/Poppins-Regular.eot");
  src: url("../../assets/fonts/Poppins/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Poppins/Poppins-Regular.woff2") format("woff2"), url("../../assets/fonts/Poppins/Poppins-Regular.woff") format("woff"), url("../../assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype"), url("../../assets/fonts/Poppins/Poppins-Regular.svg#Poppins-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gobold Bold";
  src: url("../../assets/fonts/Gobold/GoboldBold.eot");
  src: url("../../assets/fonts/Gobold/GoboldBold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Gobold/GoboldBold.woff2") format("woff2"), url("../../assets/fonts/Gobold/GoboldBold.woff") format("woff"), url("../../assets/fonts/Gobold/GoboldBold.ttf") format("truetype"), url("../../assets/fonts/Gobold/GoboldBold.svg#GoboldBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gobold";
  src: url("../../assets/fonts/Gobold/Gobold.eot");
  src: url("../../assets/fonts/Gobold/Gobold.eot?#iefix") format("embedded-opentype"), url("../../assets/fonts/Gobold/Gobold.woff2") format("woff2"), url("../../assets/fonts/Gobold/Gobold.woff") format("woff"), url("../../assets/fonts/Gobold/Gobold.ttf") format("truetype"), url("../../assets/fonts/Gobold/Gobold.svg#Gobold") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.title-extra-large {
  font-size: 2.25rem;
  font-family: "Gobold Bold", sans-serif;
  text-transform: uppercase;
}

.title-large {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Gobold Bold", sans-serif;
  text-transform: uppercase;
}

.title-medium-l {
  font-size: 1rem;
  text-align: center;
  font-family: "Gobold", sans-serif;
}
@media only screen and (min-width: 1024px) {
  .title-medium-l {
    font-size: 1.5rem;
  }
}

.title-medium {
  font-size: 1rem;
  text-align: center;
  font-family: "Gobold", sans-serif;
}
@media only screen and (min-width: 1024px) {
  .title-medium {
    font-size: 1.25rem;
  }
}

.title-medium-poppins {
  font-size: 1rem;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 1024px) {
  .title-medium-poppins {
    font-size: 1.25rem;
  }
}

.body-large {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: auto;
}
@media only screen and (min-width: 1024px) {
  .body-large {
    font-size: 1.5rem;
  }
}

.body-medium-l {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: auto;
}
@media only screen and (min-width: 1440px) {
  .body-medium-l {
    font-size: 1.25rem;
  }
}

.body-medium {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: auto;
}
@media only screen and (min-width: 1024px) {
  .body-medium {
    font-size: 1rem;
  }
}

.body-medium-bold {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-wrap: auto;
}
@media only screen and (min-width: 1024px) {
  .body-medium-bold {
    font-size: 1rem;
  }
}

.body-medium-semibold {
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-wrap: auto;
}
@media only screen and (min-width: 1024px) {
  .body-medium-semibold {
    font-size: 1rem;
  }
}

.body-small {
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-wrap: auto;
}

.text-navy {
  color: var(--navy-primary);
}

.text-teal {
  color: var(--blue-teal);
}

.text-grey {
  color: var(--gray);
}

.text-white {
  color: var(--white);
}

.uppercase {
  text-transform: uppercase;
}

.underline {
  text-decoration: underline;
}
@media only screen and (min-width: 1024px) {
  .underline:hover {
    text-decoration: none;
  }
}

p {
  font-family: "Poppins", sans-serif;
}

footer {
  background: var(--blue-teal);
}

.footer {
  padding: 2rem 1.25rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media only screen and (min-width: 1024px) {
  .footer {
    gap: 2rem;
    padding: 3rem 2rem;
    width: calc(85% - 65px);
    padding-inline: 0;
  }
}
.footer__logo {
  max-width: 70%;
}
@media only screen and (min-width: 768px) {
  .footer__logo {
    max-width: 45%;
  }
}
@media only screen and (min-width: 1024px) {
  .footer__logo {
    max-width: 90%;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__logo {
    max-width: 70%;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
}
.footer__info p:last-child {
  margin-top: 1rem;
}
@media only screen and (min-width: 1024px) {
  .footer__info {
    margin: 1.5rem auto 0;
    text-align: center;
    width: 100%;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__info {
    margin: 1.5rem auto 0;
    text-align: center;
    width: 70%;
  }
}
.footer__ol {
  list-style-position: inside;
}
.footer__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 1024px) {
  .footer__container {
    flex-direction: row;
    gap: 3rem;
  }
}
.footer__subcontainer {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .footer__subcontainer {
    width: 25%;
  }
}
@media only screen and (min-width: 1920px) {
  .footer__subcontainer {
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 2160px) {
  .footer__subcontainer {
    padding-right: 4rem;
  }
}

.header {
  position: relative;
  background-color: var(--navy-primary);
  padding-block: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.header__link {
  font-size: 0.5rem;
}
@media only screen and (min-width: 768px) {
  .header__link {
    font-size: 1rem;
  }
}

.titre {
  background-color: var(--peach-tertiary);
  padding-inline: 3rem;
  padding-bottom: 2rem;
  padding-top: calc(64px + 2rem);
}
@media only screen and (min-width: 1024px) {
  .titre {
    padding-inline: 8rem;
    padding-bottom: 3rem;
    padding-top: calc(64px + 3rem);
  }
}
@media only screen and (min-width: 1440px) {
  .titre {
    padding-inline: 8rem;
    padding-bottom: 4rem;
    padding-top: calc(64px + 4rem);
  }
}
.titre__svg {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  margin-bottom: 2rem;
}
.titre__texte {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1440px) {
  .titre__texte {
    margin-bottom: 1.25rem;
  }
}
.titre__lien {
  text-decoration: none;
  color: inherit;
}
.titre__retour {
  color: #000;
}

.agenda {
  padding-block: 2rem;
  padding-inline: 1rem;
}
@media only screen and (min-width: 1440px) {
  .agenda {
    max-width: 85%;
    margin: 0 auto;
    padding-block: 4rem;
  }
}
.agenda__container {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 1440px) {
  .agenda__container {
    overflow-x: auto;
    -webkit-overflow-scrolling: auto;
  }
}
.agenda__table {
  table-layout: fixed;
  border-collapse: collapse;
  min-width: 600px;
  width: 100%;
  padding-right: 1.5rem;
}
.agenda__table td {
  height: 100px;
}
@media only screen and (min-width: 1440px) {
  .agenda__table td {
    height: 125px;
  }
}
.agenda__table th:nth-child(1) {
  width: 275px;
}
@media only screen and (min-width: 1440px) {
  .agenda__table th:nth-child(1) {
    width: 125px;
  }
}
.agenda__table th:nth-child(2) {
  width: 200px;
}
@media only screen and (min-width: 1440px) {
  .agenda__table th:nth-child(2) {
    width: 100px;
  }
}
.agenda__table th:nth-child(3) {
  width: 175px;
}
@media only screen and (min-width: 1440px) {
  .agenda__table th:nth-child(3) {
    width: 50px;
  }
}
.agenda__table th:nth-child(4) {
  width: 250px;
}
@media only screen and (min-width: 1440px) {
  .agenda__table th:nth-child(4) {
    width: 100px;
  }
}
.agenda__th {
  text-align: start;
  opacity: 0;
}
.agenda__row {
  border-bottom: 2px solid var(--navy-primary);
}
.agenda__row:first-child {
  border-top: 2px solid var(--navy-primary);
}
.agenda__row-title {
  padding-left: 1.5rem;
}
.agenda__row-title abbr {
  text-decoration: none;
}
@media only screen and (min-width: 1440px) {
  .agenda__row-actions {
    text-align: center;
  }
}

.home-container--ml {
  background-color: var(--white);
}

.container {
  padding-block: 2rem;
  padding-inline: 1rem calc(1rem + 63px);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 1440px) {
  .container {
    max-width: 85%;
    margin: 0 auto;
    padding-block: 4rem;
    gap: 2rem;
  }
}

.subcontainer h2,
.subcontainer p {
  text-align: left;
}
.subcontainer h2 {
  margin-bottom: 0.5rem;
}
.subcontainer ul {
  list-style-position: inside;
  margin-block: 0.5rem;
}
.subcontainer a {
  color: var(--blue-teal);
}
.subcontainer a.cta-primary {
  color: var(--white);
}

.table-container {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 1440px) {
  .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: auto;
  }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table__header {
  background-color: #e8e8e8;
  border: 1px solid #cccccc;
  padding: 0.5rem;
  text-align: left;
  font-weight: bold;
  color: #333333;
}
.data-table__cell {
  border: 1px solid #cccccc;
  padding: 8px;
  vertical-align: top;
  background-color: #ffffff;
  color: #000000;
  font-weight: normal;
}
.data-table__row--striped-even {
  background-color: #f9f9f9;
}
.data-table__row--striped-odd {
  background-color: #ffffff;
}
.data-table__cell--primary {
  font-weight: normal;
}
.data-table__cell--secondary {
  font-weight: normal;
}
.data-table__cell--description {
  line-height: 1.3;
}
.data-table th:nth-child(1) {
  width: 200px;
}
@media only screen and (min-width: 1440px) {
  .data-table th:nth-child(1) {
    width: auto;
  }
}
.data-table th:nth-child(2) {
  width: 175px;
}
@media only screen and (min-width: 1440px) {
  .data-table th:nth-child(2) {
    width: auto;
  }
}
.data-table th:nth-child(3) {
  width: 125px;
}
@media only screen and (min-width: 1440px) {
  .data-table th:nth-child(3) {
    width: auto;
  }
}
.data-table th:nth-child(4) {
  width: 175px;
}
@media only screen and (min-width: 1440px) {
  .data-table th:nth-child(4) {
    width: auto;
  }
}
.data-table th:nth-child(5) {
  width: 375px;
}
@media only screen and (min-width: 1440px) {
  .data-table th:nth-child(5) {
    width: 500px;
  }
}

.delegue {
  margin-block: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.75rem;
}
.delegue__container {
  display: flex;
  gap: 2rem;
}
.delegue__subcontainer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.delegue__subsubcontainer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.delegue__image {
  width: 100px;
  height: 100px;
}
@media only screen and (min-width: 1440px) {
  .delegue__image {
    width: 120px;
    height: 120px;
  }
}
.delegue__image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}
.delegue hr {
  height: 4px;
  width: 48px;
  background-color: var(--navy-primary);
}

.rdv {
  background-color: var(--white);
}
.rdv__message {
  padding-block: 2rem;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 1440px) {
  .rdv__message {
    max-width: 85%;
    margin: 0 auto;
    padding-block: 4rem;
    gap: 2rem;
  }
}
.rdv__text {
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .rdv__text {
    width: 500px;
  }
}
.rdv__iframe {
  height: 1550px;
}
@media only screen and (min-width: 768px) {
  .rdv__iframe {
    height: 1500px;
  }
}
@media only screen and (min-width: 1024px) {
  .rdv__iframe {
    height: 1500px;
  }
}
@media only screen and (min-width: 1920px) {
  .rdv__iframe {
    height: 1480px;
  }
}
@media only screen and (min-width: 2160px) {
  .rdv__iframe {
    height: 1580px;
  }
}

.flipbook__iframe {
  height: 800px;
}
@media only screen and (min-width: 2160px) {
  .flipbook__iframe {
    height: 1000px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.accueil {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  height: 100vh;
  min-height: 667px;
  padding-top: calc(64px + 1rem);
  background-image: url("../../assets/img/home_bg_mob.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media only screen and (min-width: 768px) {
  .accueil {
    padding: 2rem 1.5rem;
  }
}
@media only screen and (min-width: 768px) {
  .accueil {
    background-image: url("../../assets/img/home_bg_tablet.webp");
    padding-top: calc(76px + 2rem);
    background-position: 10% bottom;
    height: 780px;
  }
}
@media only screen and (min-width: 1024px) {
  .accueil {
    background-image: url("../../assets/img/home_bg_desktop.png");
    height: 581px;
    min-height: auto;
    background-position: 30% bottom;
  }
}
@media only screen and (min-width: 1440px) {
  .accueil {
    background-position: center bottom;
    padding-inline: 4rem;
    height: 681px;
    justify-content: center;
    padding-top: calc(76px + 1.5rem);
  }
}
@media only screen and (min-width: 1620px) {
  .accueil {
    padding-inline: 7rem;
  }
}
@media only screen and (min-width: 2160px) {
  .accueil {
    height: 860px;
  }
}
.accueil__container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media only screen and (min-width: 1620px) {
  .accueil__container {
    gap: 2rem;
  }
}
.accueil__logo img, .accueil__claim img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.accueil__logo {
  width: 185px;
}
@media only screen and (min-width: 1024px) {
  .accueil__logo {
    width: 200px;
  }
}
@media only screen and (min-width: 1440px) {
  .accueil__logo {
    width: 301px;
  }
}
@media only screen and (min-width: 768px) {
  .accueil__claim {
    width: 434px;
  }
}
@media only screen and (min-width: 1440px) {
  .accueil__claim {
    width: 534px;
  }
}
.accueil__texte {
  font-weight: 700;
  font-size: 0.75rem;
}
@media only screen and (min-width: 768px) {
  .accueil__texte {
    width: 70%;
  }
}
@media only screen and (min-width: 1024px) {
  .accueil__texte {
    width: 45%;
  }
}
@media only screen and (min-width: 1440px) {
  .accueil__texte {
    width: 35%;
    font-size: 1rem;
  }
}

.login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  height: 100vh;
  min-height: 667px;
  background: linear-gradient(rgba(45, 40, 80, 0.3), rgba(45, 40, 80, 0.3)), url("../../assets/img/home_bg_mob.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
}
@media only screen and (min-width: 1024px) {
  .login {
    background: linear-gradient(rgba(45, 40, 80, 0.3), rgba(45, 40, 80, 0.3)), url("../../assets/img/home_bg_desk.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
  }
}
.login__logo-doccheck {
  width: 65%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .login__logo-doccheck {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .login__logo-doccheck {
    width: 200px;
  }
}
.login__logo-doccheck img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login__container {
  background-color: var(--white);
  margin: auto;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .login__container {
    width: 75%;
  }
}
@media only screen and (min-width: 1024px) {
  .login__container {
    width: 668px;
    padding-block: 4.5rem;
  }
}
.login__subcontainer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.login__subcontainer--rp {
  margin-block: 1rem 1.5rem;
}
.login__subcontainer--lg {
  gap: 1.5rem;
}
.login__row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.login__label {
  text-align: center;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

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