@charset "UTF-8";
/* COULEURS */
/*ALERT COULEURS*/
header {
  position: absolute;
  z-index: 1;
  width: 230px;
  height: 100%;
  min-height: 900px;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
  color: #202020;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 175%; /* MAQUETTE = 150% */
}
header #logo {
  display: block;
  width: fit-content;
  margin-left: 31px;
  margin-top: 8px;
}
header #nav-menu #nav-button {
  display: none;
}
header #nav-menu ul {
  margin: 1em 0;
  padding: 0;
}
header #nav-menu ul li {
  display: flex;
  width: 192px;
  height: 43px;
  border-left: 4px #202020 solid;
}
header #nav-menu ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  color: #202020;
  text-decoration: none;
}
header #nav-menu ul li a img {
  padding-right: 1rem;
}
header #nav-menu ul li a:hover, header #nav-menu ul li a:focus {
  text-decoration: underline;
}
header #nav-menu ul li.active {
  background-color: #EFDDFF;
  border-left: 4px #9200FA solid;
}
header #nav-menu ul li.active a {
  font-weight: 600;
  color: #9200FA;
}
header #nav-menu ul li.active a img {
  filter: sepia(75%) saturate(10000%) hue-rotate(275deg) contrast(93%);
}

/* MOBILE & TABLETTE */
@media (max-width: 1023px) {
  header {
    width: 100%;
    height: 155px;
    min-height: 155px;
    background: #FFFFFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header #nav-menu #nav-button {
    display: flex;
    margin-right: 31px;
    padding: 0;
    align-items: center;
    border: 0;
    background: transparent;
  }
  header #nav-menu #nav-button .open-msg,
  header #nav-menu #nav-button .close-msg,
  header #nav-menu #nav-button img {
    height: 23px;
    width: 28px;
  }
  header #nav-menu #nav-button .close-msg {
    display: none;
  }
  header #nav-menu #nav-button .open-msg {
    display: block;
  }
  header #nav-menu ul {
    display: none;
    position: absolute;
    top: 90px;
    right: 0;
    z-index: 1;
    box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.1);
    background-color: #FFF;
    padding: 1em 0;
    transform: translateX(196px);
  }
  header #nav-menu ul li {
    border-left: 0;
    border-right: 4px #202020 solid;
  }
  header #nav-menu ul li.active {
    border-left: 0;
    border-right: 4px #9200FA solid;
  }
  header #nav-menu.open #nav-button .close-msg {
    display: block;
  }
  header #nav-menu.open #nav-button .open-msg {
    display: none;
  }
  header #nav-menu.open ul {
    display: block;
    animation: 1s ease-in menuSlide;
    transform: translateX(0px);
  }
}
@keyframes menuSlide {
  from {
    transform: translateX(196px);
  }
  to {
    transform: translateX(0px);
  }
}
footer {
  /* BACKGROUND */
  /* FONTS */
  color: #FFF;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  /*  LISTES */
  /* LIENS */
  /**/
}
footer .container {
  background-color: #6000B8;
  overflow: hidden;
  margin: 0 auto;
}
footer ul {
  padding: 0;
}
footer ul li {
  list-style: none;
  height: 1.75em;
}
footer a {
  text-decoration: none;
  color: #FFF;
}
footer a:hover {
  text-decoration: underline;
}
footer .phoneSign {
  font-size: 14px;
  margin: 0 0 1em 0;
}
footer .phoneSign .info {
  height: auto;
  color: #FFF;
  font-weight: normal;
  font-family: "Poppins";
}
footer .phoneSign:hover {
  text-decoration: none;
}
footer #phoneSign {
  background-color: #6000B8;
  width: 300px;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 700;
  padding-bottom: 6px;
}
footer #phoneSign #info {
  color: #FFF;
  font-size: 9.3px;
  width: max-content;
}
footer #phoneSign #phoneNumber {
  background-color: #FFF;
  border: 1px solid #C9C9C9;
  display: flex;
  align-items: center;
  padding-right: 5px;
}
footer #phoneSign #phoneNumber a {
  text-decoration: none;
  color: #A00084;
  font-size: 18px;
  width: 85%;
  text-align: center;
}
footer #phoneSign #phoneNumber a:hover, footer #phoneSign #phoneNumber a:focus {
  text-decoration: underline;
}
footer #phoneSign #phoneNumber #price {
  color: #FFF;
  background-color: #A00084;
  padding: 0 5px 0 10px;
  margin: 0;
}

@media (max-width: 518px) {
  footer {
    position: relative;
  }
  footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }
  footer div p {
    z-index: 1;
  }
  footer #dogDiv {
    padding-top: 0;
    width: 100%;
    height: 269px;
    overflow: hidden;
  }
  footer #dogDiv img {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
}
/* MOBILE & TABLETTE */
@media (max-width: 1023px) {
  footer {
    position: relative;
  }
  footer div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    text-align: center;
  }
  footer div p {
    z-index: 1;
  }
  footer #dogDiv {
    padding-top: 4rem;
    width: 100%;
    height: 269px;
    overflow: hidden;
  }
  footer #dogDiv img {
    position: absolute;
    bottom: 0;
  }
}
/* DESKTOP */
@media (min-width: 1024px) {
  footer {
    /* IMG Dog Footer */
    position: relative;
  }
  footer div {
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
  footer #dogDiv {
    width: 517.28px;
    height: 269px;
  }
  footer #dogDiv img {
    position: absolute;
    bottom: 0;
  }
}
q::before {
  content: "« ";
}
q::after {
  content: " »";
}

body {
  /* pour satisfaire le critère 10.5 */
  font-size: 16px;
  color: #000;
  background-color: #FFF;
  min-width: 320px;
  margin: 0;
}
body #global {
  display: flex;
  position: relative;
  padding-bottom: 100px;
  min-height: calc(100vh - 369px);
  overflow-x: hidden;
}
body #global #quick_access {
  float: left;
  z-index: 3;
  height: 0;
}
body #global #quick_access a {
  border-radius: 4px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  padding: 11px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #6000B8;
  margin-top: 0 !important;
  position: absolute;
  left: -2000px;
  top: -2000px;
}
body #global #quick_access a:focus {
  text-decoration: underline;
  outline: #202020 3px solid;
  left: 0px;
  top: 0px;
}
body #global * [disabled=disabled], body #global * [disabled-href] {
  cursor: text !important;
}
body #global * [disabled=disabled]:hover, body #global * [disabled-href]:hover {
  pointer-events: none !important;
}

.alert-stack {
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 10px;
  display: flex;
  flex-flow: column;
  align-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  z-index: 9;
}
.alert-stack .alert {
  border-radius: 0.25rem;
  font-size: 16px;
  font-weight: 700;
  width: fit-content;
  padding: 12px;
}
.alert-stack .alert.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}
.alert-stack .alert.spawning {
  transform: translateX(0);
  animation: 0.5s alert-spawn;
}
.alert-stack .alert.despawning {
  transform: translateX(100%);
  animation: 0.5s alert-despawn;
}

@keyframes alert-spawn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes alert-despawn {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
.noInteractions {
  height: 100% !important;
}

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

button {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.phoneSign {
  margin: 1em;
  display: flex;
  flex-direction: column;
  font-family: "Archivo";
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
}
.phoneSign .info {
  height: 1.8em;
  color: #6F6F6F;
  font-size: 0.8em;
  font-weight: 800;
}
.phoneSign .phoneNumber {
  background-color: #FFF;
  border: 1px solid #C8C8C8;
  display: flex;
  align-items: center;
  padding-right: 0.5em;
}
.phoneSign .phoneNumber .tel {
  padding: 0.1em 0.3em;
  color: #A50D7A;
  font-size: 1.8em;
  font-weight: 600;
}
.phoneSign .phoneNumber .price {
  position: relative;
  color: #FFF;
  background-color: #A50D7A;
  padding: 0.2em 0.4em 0.2em 1em;
  margin: 0;
  font-size: 0.9em;
  font-weight: 500;
  font-family: "Exo 2";
  text-align: left;
}
.phoneSign .phoneNumber .price .triangle {
  position: absolute;
  left: 0;
  top: calc(50% - 0.7em);
  height: 0;
  width: 0;
  border-top: 0.7em solid transparent;
  border-bottom: 0.7em solid transparent;
  border-left: 0.7em solid #FFF;
}
.phoneSign .phoneNumber .price .bold {
  font-weight: 600;
}
.phoneSign:hover .phoneNumber .tel, .phoneSign:focus .phoneNumber .tel {
  text-decoration: underline;
}

/* MOBILE & TABLETTE */
@media only screen and (max-width: 1023px) {
  body #global {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 100px;
  }
}
main {
  margin-left: 230px;
  width: 100%;
  min-height: 900px;
  background-color: #FFF;
  font-family: "Poppins";
}
main button, main select {
  font-family: "Poppins";
}
main .container {
  margin: 0 auto;
}

@media (max-width: 1023px) {
  main {
    margin-left: 0;
    margin-top: 155px;
  }
}
#homePage #articles {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
#homePage #articles .article {
  width: 275px;
  background-color: #FFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 5px 20px;
  margin-top: 80px;
  transition: transform 0.2s ease-in-out;
}
#homePage #articles .article h3 {
  color: #6000B8;
  text-transform: uppercase;
}
#homePage #articles .article p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
}
#homePage #articles .article a {
  text-decoration: none;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #202020;
}
#homePage #articles .article a:hover {
  text-decoration: underline;
}
#homePage #articles .article .arrow {
  padding-left: 5px;
}
#homePage #articles .article div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
#homePage #articles .article div img {
  width: 90px;
  text-align: center;
  filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(7480%) hue-rotate(277deg) brightness(98%) contrast(120%);
}
#homePage #articles .article div p:not(:first-of-type) {
  text-transform: uppercase;
}
#homePage #articles .article div p {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
}
#homePage #articles .article div:first-of-type {
  flex-direction: row;
}

@keyframes slidein {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(5px);
  }
}
/* TABLETTE */
@media (max-width: 1023px) {
  #homePage #articles {
    padding: 40px 40px 80px 40px;
  }
  #homePage #articles .article {
    width: 100%;
    background-color: #FFF;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 20px;
  }
}
#homePage {
  /* BOUTON PANIER */
}
#homePage #basket-section {
  background-color: #6000B8;
  display: flex;
  justify-content: end;
  padding-top: 26px;
  padding-right: 40px;
}
#homePage #basket-section #btn-basket {
  text-decoration: none;
  width: 217px;
  height: 50px;
  background: #FFFFFF;
  border: #FFF;
  border-radius: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #6000B8;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
  transition: transform 0.2s ease-in-out;
}
#homePage #basket-section #btn-basket img {
  filter: brightness(0) saturate(100%) invert(10%) sepia(90%) saturate(4600%) hue-rotate(273deg) brightness(97%) contrast(117%);
  width: 33px;
  height: 33px;
}
#homePage #basket-section #btn-basket:hover, #homePage #basket-section #btn-basket:focus {
  transform: scale(1.1);
}

/* TABLETTE */
@media (max-width: 1023px) {
  #homePage #basket-section {
    display: none;
  }
}
#homePage #jumbotron {
  background-color: #6000B8;
  margin-bottom: 40px;
  padding: 0 5vw;
  color: #FFF;
  display: flex;
  justify-content: space-around;
  position: relative;
}
#homePage #jumbotron h1 {
  margin: 0;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 4.3rem;
}
#homePage #jumbotron #text-content {
  width: 50%;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 2.4rem;
}
#homePage #jumbotron #illustration {
  width: 50%;
  text-align: center;
}
#homePage #jumbotron #illustration img {
  max-width: 438px;
  width: 100%;
}

/* TABLETTE */
@media (max-width: 1023px) {
  #homePage #jumbotron {
    display: block;
    margin-bottom: 150px;
    padding: 25px 40px 250px 40px;
  }
  #homePage #jumbotron h1 {
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 5.5rem;
  }
  #homePage #jumbotron #text-content, #homePage #jumbotron #illustration, #homePage #jumbotron #illustration img {
    width: 100%;
  }
  #homePage #jumbotron #illustration {
    position: absolute;
    bottom: -170px;
    left: 0;
  }
}
/* MOBILE */
@media (max-width: 480px) {
  #homePage #jumbotron {
    padding-bottom: 52vw;
  }
  #homePage #jumbotron h1 {
    font-size: 14vw;
    line-height: 18vw;
    text-align: left;
  }
}
#homePage {
  /* TABLEAUX */
}
#homePage h3 {
  text-align: center;
}
#homePage .tables {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}
#homePage .tables table {
  min-width: 340px;
  margin: 40px 0;
  border-collapse: collapse;
}
#homePage .tables caption {
  background: #EFDDFF;
  color: #9200FA;
  font-style: normal;
  font-weight: 500;
}
#homePage .tables thead tr, #homePage .tables thead td, #homePage .tables thead th, #homePage .tables tbody tr, #homePage .tables tbody td, #homePage .tables tbody th {
  border: 1px solid rgba(135, 135, 135, 0.4);
  box-sizing: border-box;
  background-color: #FFF;
  text-align: center;
}
#homePage .tables caption span, #homePage .tables tr {
  height: 3rem;
}
#homePage .tables caption span, #homePage .tables th, #homePage .tables td {
  padding: 13px 16px;
}
#homePage .tables caption span {
  display: table-cell;
  vertical-align: middle;
}
#homePage .tables #desktop-table-assurances {
  display: block;
}
#homePage .tables .mobile-table-assurance {
  display: none;
}

/* TABLETTE */
@media (max-width: 1023px) {
  #homePage table {
    width: 100%;
  }
}
#homePage {
  /* TABPANEL */
}
#homePage button[role=tab] {
  border: 0;
  border-left: #696969 solid;
  min-height: 48px;
  margin-right: 24px;
  text-align: left;
  color: #202020;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  background-color: #FFF;
}
#homePage button[role=tab][aria-selected=true] {
  border-left: #6000B8 solid;
  color: #6000B8;
  font-weight: 600;
  background-color: #FBFAFC;
}
#homePage button[role=tab]:hover {
  text-decoration: underline;
}

/* VIDEO */
/* fullscreen */
html:-ms-fullscreen {
  width: 100%;
}

:-webkit-full-screen {
  background-color: transparent;
}

#homePage #video-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  /* hide controls on fullscreen with WebKit */
  /* controls */
}
#homePage #video-section video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: fill;
}
#homePage #video-section .subtitles-menu {
  display: none;
}
#homePage #video-section figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 64rem;
  width: 100%;
}
#homePage #video-section figure legend {
  order: 3;
}
#homePage #video-section figure button {
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#homePage #video-section figure button img {
  width: 12px;
  height: 12px;
}
#homePage #video-section figure[data-fullscreen=true] video::-webkit-media-controls {
  display: none !important;
}
#homePage #video-section figure[data-fullscreen=true] {
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
#homePage #video-section figure[data-fullscreen=true] video {
  height: auto;
}
#homePage #video-section figure[data-fullscreen=true] figcaption {
  display: none;
}
#homePage #video-section figure[data-fullscreen=true] .controls {
  position: absolute;
  bottom: 2%;
  width: 100%;
  z-index: 2147483647;
}
#homePage #video-section figure[data-fullscreen=true] .controls li {
  width: 5%;
}
#homePage #video-section figure[data-fullscreen=true] .controls .progress {
  width: 68%;
}
#homePage #video-section .controls {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: auto;
  list-style-type: none;
  overflow: hidden;
  background: transparent;
  width: 100%;
  max-width: 700px;
}
#homePage #video-section .controls li {
  padding: 0;
  margin: 0;
  float: left;
  width: 10%;
  margin-left: 0.3%;
}
#homePage #video-section .controls li button {
  height: 17.6px;
}
#homePage #video-section .controls li:first-child {
  margin-left: 0;
}
#homePage #video-section .controls .progress {
  width: 35%;
  cursor: pointer;
  margin: 0;
}
#homePage #video-section .controls .progress #progress {
  height: 0px;
  width: 100%;
  padding: 4.8px 0 !important;
  margin: 4px 2px;
  top: 2px;
}
#homePage #video-section .controls .progress input[type=range] {
  display: block;
  accent-color: #202020;
}
#homePage #video-section .controls #volumeRange {
  width: 100%;
  display: block;
  accent-color: #202020;
}
#homePage #video-section .controls #currentVol {
  font-size: 12px;
  cursor: default;
  color: #202020;
}
#homePage #video-section .controls button {
  width: 100%;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  outline-offset: -2px;
  border-radius: 5px;
}
#homePage #video-section .controls #ad[disabled=disabled] {
  cursor: not-allowed !important;
}
#homePage #video-section .controls #ad[disabled=disabled] img {
  filter: brightness(0) saturate(100%) invert(96%) sepia(2%) saturate(523%) hue-rotate(216deg) brightness(77%) contrast(90%) !important;
}
#homePage #video-section .controls #ad[aria-pressed=false] img {
  transform: scale(1.3);
}
#homePage #video-section .controls #ad[aria-pressed=true] img {
  transform: scale(1.5);
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6677%) hue-rotate(277deg) brightness(119%) contrast(116%);
}
#homePage #video-section .controls #subtitles[aria-pressed=false] img {
  transform: scale(1.1);
}
#homePage #video-section .controls #subtitles[aria-pressed=true] {
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6677%) hue-rotate(277deg) brightness(119%) contrast(116%);
}
#homePage #video-section .controls #subtitles[aria-pressed=true] img {
  transform: scale(1.3);
  filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6677%) hue-rotate(277deg) brightness(119%) contrast(116%);
}
#homePage #video-section .controls .subtitles-menu {
  display: none;
}

/*SOUS TITRES*/
video::cue {
  background: #232323;
  font-family: "Poppins";
}

video::cue(.red) {
  color: red;
}

video::cue(.magenta) {
  color: magenta;
}

/* TABLETTE */
@media screen and (max-width: 1023px) and (orientation: landscape) {
  #homePage #video-section {
    padding: 40px;
  }
}
@media screen and (max-width: 1023px) and (orientation: portrait) {
  #homePage #video-section {
    padding: 40px 0;
  }
}
#accordionGroup {
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.2);
}

.accordion {
  margin: 0;
  padding: 0;
  border: 1px solid hsl(0, 0%, 52%);
  border-radius: 0 0 7px 7px;
  max-width: 64rem;
  width: calc(100% - 2px);
}

.accordion h3 {
  margin: 0;
  padding: 0;
}

.accordion:focus-within {
  border-color: #9200FA;
}

.accordion:focus-within h3 {
  background-color: hsl(0, 0%, 97%);
}

.accordion > * + * {
  border-top: 1px solid hsl(0, 0%, 52%);
}

.accordion-trigger {
  background: none;
  color: hsl(0, 0%, 13%);
  display: block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  padding: 1em 1.5em;
  position: relative;
  text-align: left;
  width: 100%;
  outline: none;
}

.accordion-trigger:focus,
.accordion-trigger:hover {
  background: #EFDDFF;
}

.accordion-trigger:focus {
  outline: 4px solid transparent;
}

.accordion > *:first-child .accordion-trigger,
.accordion > *:first-child {
  border-radius: 5px 5px 0 0;
}

.accordion > *:last-child .accordion-trigger,
.accordion > *:last-child {
  border-radius: 0 0 5px 5px;
}

button {
  border-style: none;
}

.accordion button::-moz-focus-inner {
  border: 0;
}

.accordion-title {
  display: block;
  pointer-events: none;
  border: transparent 2px solid;
  border-radius: 5px;
  padding: 0.25em;
  outline: none;
  font-size: 1.17em;
  font-weight: bold;
}

.accordion-trigger:focus .accordion-title {
  border-color: #9200FA;
}

.accordion-icon {
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}

.accordion-trigger:focus .accordion-icon,
.accordion-trigger:hover .accordion-icon {
  border-color: #202020;
}

.accordion-trigger[aria-expanded=true] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-panel {
  margin: 0;
  padding: 1em 1.5em;
}

/* For Edge bug https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/4806035/ */
.accordion-panel[hidden] {
  display: none;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

#homePage #renseignements #sav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}
#homePage #renseignements * {
  z-index: 1;
}

#contactPage #jumbotron {
  background-color: #FFF;
  padding-top: 30px;
  padding-left: 2.5em;
  padding-right: 2.5em;
  color: #202020;
  display: flex;
  justify-content: space-around;
  position: relative;
}
#contactPage #jumbotron h1 {
  margin: 0;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: 0em;
  text-align: left;
}
#contactPage #jumbotron #text-content {
  width: 30%;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}
#contactPage #jumbotron #illustration {
  width: 50%;
  text-align: center;
}
#contactPage #jumbotron #illustration img {
  max-width: 438px;
  width: 100%;
}

@media (max-width: 480px) {
  #contactPage #jumbotron h1 {
    margin: 0;
    font-weight: 700;
    line-height: 18vw;
    letter-spacing: 0em;
    text-align: left;
  }
}
@media (min-width: 481px) and (max-width: 1023px) {
  #contactPage #jumbotron h1 {
    margin: 0;
    font-weight: 700;
    line-height: 13vw;
    letter-spacing: 0em;
    text-align: left;
  }
}
@media (max-width: 1023px) {
  #contactPage #jumbotron {
    background-color: #FFF;
    color: #202020;
    display: block;
    padding: 25px 2.5em 0 2.5em;
  }
  #contactPage #jumbotron #carrousel {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
  }
  #contactPage #jumbotron #text-content {
    width: 100%;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
  }
}
#contactPage #basket-section {
  background-color: #FFF;
  display: flex;
  justify-content: end;
  padding-top: 26px;
  padding-right: 40px;
}
#contactPage #basket-section #btn-basket {
  text-decoration: none;
  width: 217px;
  height: 50px;
  background: #6000B8;
  border: #6000B8;
  border-radius: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #FFF;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
  transition: transform 0.2s ease-in-out;
}
#contactPage #basket-section #btn-basket img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(7490%) hue-rotate(178deg) brightness(103%) contrast(107%);
  width: 33px;
  height: 33px;
}
#contactPage #basket-section #btn-basket:hover, #contactPage #basket-section #btn-basket:focus {
  transform: scale(1.1);
}

@media (max-width: 1023px) {
  #contactPage #basket-section {
    display: none;
  }
}
#contactPage #formulaire {
  background: #FAFAFA;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  padding: 80px 5vw 40px 5vw;
  margin-top: 40px;
}
#contactPage #formulaire h2 {
  text-align: center;
}
#contactPage #formulaire h2 span {
  color: #9200FA;
}
#contactPage #formulaire p {
  font-style: italic;
  text-align: center;
}
#contactPage #formulaire span.required {
  font-weight: 700;
  color: #9200FA;
}
#contactPage #formulaire form {
  max-width: 40em;
  font-size: 14px;
  margin: auto;
}
#contactPage #formulaire form > div, #contactPage #formulaire form > fieldset, #contactPage #formulaire form > fieldset > div {
  margin-bottom: 20px;
}
#contactPage #formulaire form legend {
  font-weight: 700;
  text-align: center;
}
#contactPage #formulaire form div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#contactPage #formulaire form span.alert {
  display: none;
  font-weight: 700;
}
#contactPage #formulaire form span.alert.error {
  color: #E80900;
}
#contactPage #formulaire form span.alert.success {
  color: #008000;
}
#contactPage #formulaire form span.hint {
  color: #696969;
  font-style: italic;
}
#contactPage #formulaire form input[type=date],
#contactPage #formulaire form input[type=email],
#contactPage #formulaire form input[type=file] + .overlay,
#contactPage #formulaire form input[type=number],
#contactPage #formulaire form input[type=range],
#contactPage #formulaire form input[type=text],
#contactPage #formulaire form select,
#contactPage #formulaire form textarea {
  background: #FBFAFC;
  border: 1px solid #696969;
  box-sizing: border-box;
  border-radius: 4px;
  height: 50px;
  width: 296px;
  color: #696969;
  padding: 10px;
}
#contactPage #formulaire form input[type=date]:focus,
#contactPage #formulaire form input[type=email]:focus,
#contactPage #formulaire form input[type=file] + .overlay:focus,
#contactPage #formulaire form input[type=number]:focus,
#contactPage #formulaire form input[type=range]:focus,
#contactPage #formulaire form input[type=text]:focus,
#contactPage #formulaire form select:focus,
#contactPage #formulaire form textarea:focus {
  background: #EFDDFF;
  border: 3px solid #9200FA;
  box-shadow: 0 0 5px 0 #9200FA;
  box-sizing: border-box;
  color: #9200FA;
  font-weight: 700;
  outline: 0;
}
#contactPage #formulaire form input[type=date]:hover,
#contactPage #formulaire form input[type=email]:hover,
#contactPage #formulaire form input[type=file] + .overlay:hover,
#contactPage #formulaire form input[type=number]:hover,
#contactPage #formulaire form input[type=range]:hover,
#contactPage #formulaire form input[type=text]:hover,
#contactPage #formulaire form select:hover,
#contactPage #formulaire form textarea:hover {
  border: 3px solid #9200FA;
  box-sizing: border-box;
  color: #9200FA;
  font-weight: 700;
  outline: 0;
}
#contactPage #formulaire form input[type=date][data-touched]:valid,
#contactPage #formulaire form input[type=email][data-touched]:valid,
#contactPage #formulaire form input[type=number][data-touched]:valid,
#contactPage #formulaire form input[type=text][data-touched]:valid,
#contactPage #formulaire form select[data-touched]:valid,
#contactPage #formulaire form textarea[data-touched]:valid {
  background: #EFDDFF;
  color: #9200FA;
  font-weight: 700;
}
#contactPage #formulaire form input[type=date] {
  font-family: "Poppins";
  text-transform: uppercase;
}
#contactPage #formulaire form input[type=date]::-webkit-calendar-picker-indicator {
  color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: block;
  background: url("pictures/Icon calendar.png") no-repeat;
  width: 20px;
  height: 20px;
  border-width: thin;
}
#contactPage #formulaire form input[type=date]:hover::-webkit-calendar-picker-indicator, #contactPage #formulaire form input[type=date]:focus::-webkit-calendar-picker-indicator, #contactPage #formulaire form input[type=date][data-touched]:valid::-webkit-calendar-picker-indicator, #contactPage #formulaire form input[type=date]::-webkit-calendar-picker-indicator:focus {
  filter: brightness(0) saturate(100%) invert(19%) sepia(80%) saturate(7450%) hue-rotate(275deg) brightness(94%) contrast(127%);
}
#contactPage #formulaire form input[type=date]::-webkit-calendar-picker-indicator:focus {
  outline: solid 3px #9200FA;
  outline-offset: 3px;
  border-radius: 3px;
}
#contactPage #formulaire form input[type=range] {
  border: 3px solid transparent;
  background: transparent;
  /* Firefox */
}
#contactPage #formulaire form input[type=range]:hover, #contactPage #formulaire form input[type=range]:focus {
  border: 3px solid #9200FA;
}
#contactPage #formulaire form input[type=range], #contactPage #formulaire form input[type=range]::-webkit-slider-runnable-track, #contactPage #formulaire form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
#contactPage #formulaire form input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(to right, #9200FA, #9200FA), #755790;
  background-size: var(--background-size, 0%) 100%;
  background-repeat: no-repeat;
  border-radius: 99px;
}
#contactPage #formulaire form input[type=range]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: #fff;
  border: solid #9200FA 3px;
  border-radius: 50%;
  margin-top: -8px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}
#contactPage #formulaire form input[type=range]::-moz-range-progress {
  background-color: #9200FA;
  border-radius: 99px;
}
#contactPage #formulaire form input[type=range]::-moz-range-track {
  background-color: #755790;
  border-radius: 99px;
}
#contactPage #formulaire form input[type=range]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  cursor: pointer;
  background: #9200FA;
  border: solid white 1px;
  border-radius: 50%;
  margin-top: -6px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
}
#contactPage #formulaire form input[type=submit] {
  cursor: pointer;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  height: 48px;
  background: #9200FA;
  border: 3px solid #9200FA;
  border-color: #9200FA;
  box-sizing: border-box;
  border-radius: 4px;
  color: #FFF;
  width: 100%;
  transition: transform 0.2s ease-in-out;
  margin: 20px 0;
}
#contactPage #formulaire form input[type=submit]:hover, #contactPage #formulaire form input[type=submit]:focus {
  transform: scale(1.1);
  outline: 0;
}
#contactPage #formulaire form select {
  width: 385px;
  white-space: pre-wrap;
}
#contactPage #formulaire form textarea {
  height: 8em;
  line-height: 1.5em;
  resize: none;
}
#contactPage #formulaire form .combobox div {
  position: relative;
}
#contactPage #formulaire form .combobox div button {
  position: absolute;
  right: 2px;
  top: 42px;
  border: 0;
  background: transparent;
}
#contactPage #formulaire form .combobox ul[role=listbox] {
  width: 296px;
  z-index: 9;
}
#contactPage #formulaire form .checkbox {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
#contactPage #formulaire form .checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
  min-height: 36px;
  height: 100%;
  width: 100%;
}
#contactPage #formulaire form .checkbox input[type=checkbox] ~ div {
  flex-direction: row;
  gap: 1em;
  align-items: center;
}
#contactPage #formulaire form .checkbox input[type=checkbox] ~ div label {
  font-weight: 700;
  text-align: center;
}
#contactPage #formulaire form .checkbox input[type=checkbox] ~ div .checkmark {
  position: relative;
  height: 30px;
  width: 30px;
  background-color: #fafafa;
  border: solid 3px #696969;
  border-radius: 5px;
}
#contactPage #formulaire form .checkbox input[type=checkbox] ~ div .checkmark:after {
  display: none;
  position: absolute;
  content: "";
  left: 11px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid #9200FA;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#contactPage #formulaire form .checkbox input[type=checkbox]:hover ~ div {
  transition: transform 0.1s ease-in-out;
  transform: scale(1.1);
  color: #9200FA;
}
#contactPage #formulaire form .checkbox input[type=checkbox]:hover ~ div .checkmark {
  border: solid 3px #9200FA;
}
#contactPage #formulaire form .checkbox input[type=checkbox]:focus ~ div {
  outline: solid 3px #9200FA;
  outline-offset: 9px;
  border-radius: 3px;
  color: #9200FA;
}
#contactPage #formulaire form .checkbox input[type=checkbox]:focus ~ div .checkmark {
  background-color: #EFDDFF;
  border: solid 3px #9200FA;
}
#contactPage #formulaire form .checkbox input[type=checkbox]:checked ~ div .checkmark {
  background-color: #EFDDFF;
}
#contactPage #formulaire form .checkbox input[type=checkbox]:checked ~ div .checkmark:after {
  display: block;
}
#contactPage #formulaire form fieldset[role=radiogroup] {
  border: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  margin: 20px 0;
}
#contactPage #formulaire form fieldset[role=radiogroup] legend {
  float: left;
  flex-basis: 9em;
  flex-shrink: 0;
  font-weight: 500;
}
#contactPage #formulaire form fieldset[role=radiogroup] legend span {
  height: 100%;
  display: flex;
  align-items: center;
}
#contactPage #formulaire form fieldset[role=radiogroup] div {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-basis: calc(33.33% - 30px - 3em);
  flex-basis: calc(33.33% - 5em);
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio] {
  position: absolute;
  opacity: 0;
  z-index: 1;
  cursor: pointer;
  min-height: 36px;
  height: 100%;
  width: 100%;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio] ~ label {
  padding-left: 46px;
  align-items: center;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio] ~ .radio {
  position: absolute;
  height: 30px;
  width: 30px;
  background-color: #fafafa;
  border: solid 3px #696969;
  border-radius: 99px;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio] ~ .radio:after {
  display: none;
  position: absolute;
  content: "";
  left: 9px;
  top: 9px;
  width: 10px;
  height: 10px;
  background-color: #9200FA;
  border: solid 3px #9200FA;
  border-width: 1px;
  border-radius: 99px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:hover ~ .radio {
  border: solid 3px #9200FA;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:hover ~ label {
  color: #9200FA;
  transition: transform 0.1s ease-in-out;
  transform: scale(1.1);
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:focus ~ .radio {
  background-color: #EFDDFF;
  border: solid 3px #9200FA;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:focus ~ label {
  color: #9200FA;
  font-weight: 700;
  outline: solid 3px #9200FA;
  outline-offset: 9px;
  border-radius: 3px;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:checked ~ .radio {
  background-color: #EFDDFF;
}
#contactPage #formulaire form fieldset[role=radiogroup] div input[type=radio]:checked ~ .radio:after {
  display: block;
}
#contactPage #formulaire form .file-upload {
  position: relative;
}
#contactPage #formulaire form .file-upload input[type=file] {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay {
  position: relative;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 22px 12px;
  z-index: 3;
  background: #FBFAFC;
  border: 1px solid #696969;
  box-sizing: border-box;
  border-radius: 4px;
  color: #696969;
  text-align: center;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div.with-file {
  display: none;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview {
  flex-direction: row;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview .img-square {
  width: 300px;
  height: 300px;
  margin: 20px;
  object-fit: cover;
  border: 1px solid #B9B7BD;
  object-position: 50% 0;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview .img-round {
  width: 70px;
  height: 70px;
  margin: 20px;
  object-fit: cover;
  border: 1px solid #B9B7BD;
  object-position: 50% 0;
  border-radius: 50%;
}
#contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview .img-flat {
  width: 100px;
  aspect-ratio: 16/9;
  margin: 20px;
  object-fit: cover;
  border: 1px solid #B9B7BD;
}
#contactPage #formulaire form .file-upload input[type=file]:focus + .overlay {
  background: #EFDDFF;
  border: 3px solid #9200FA;
  box-shadow: 0 0 5px 0 #9200FA;
  box-sizing: border-box;
  padding: 20px 10px;
  color: #9200FA;
  font-weight: 700;
  outline: 0;
}
#contactPage #formulaire form .file-upload input[type=file]:hover + .overlay {
  border: 3px solid #9200FA;
  box-sizing: border-box;
  padding: 20px 10px;
  color: #9200FA;
  font-weight: 700;
  outline: 0;
}
#contactPage #formulaire form .file-upload input[type=file][data-touched]:valid + .overlay {
  background: #EFDDFF;
  color: #9200FA;
  font-weight: 700;
}
#contactPage #formulaire form .flex-range {
  flex-direction: row;
}
#contactPage #formulaire form .flex-range input[type=number] {
  margin-top: 2px;
  width: 100px;
  text-align: center;
  /* Firefox */
  -moz-appearance: textfield;
  /* Chrome, Safari, Edge, Opera */
}
#contactPage #formulaire form .flex-range input[type=number]::-webkit-outer-spin-button, #contactPage #formulaire form .flex-range input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media (max-width: 1023px) {
  #contactPage #formulaire form input,
  #contactPage #formulaire form select,
  #contactPage #formulaire form textarea,
  #contactPage #formulaire form .combobox ul[role=listbox],
  #contactPage #formulaire form .overlay,
  #contactPage #formulaire form .file-upload input[type=file] + .overlay div {
    max-width: 80vw;
  }
  #contactPage #formulaire form .checkbox input[type=checkbox] ~ div .checkmark {
    min-width: 30px;
  }
  #contactPage #formulaire form fieldset[role=radiogroup] {
    flex-direction: column;
    margin-bottom: 1em;
  }
  #contactPage #formulaire form fieldset[role=radiogroup] legend {
    flex-basis: auto;
  }
  #contactPage #formulaire form fieldset[role=radiogroup] legend span {
    height: auto;
  }
  #contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview {
    flex-direction: column;
  }
  #contactPage #formulaire form .file-upload input[type=file] + .overlay div.preview .img-square {
    max-width: 70vw;
    max-height: 70vw;
  }
}
@media (max-width: 500px) {
  #contactPage #formulaire form select {
    height: 65px;
  }
  #contactPage #formulaire form .flex-range {
    flex-direction: column;
    align-items: center;
  }
}
@keyframes car_1 {
  0% {
    transform: translateX(-4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
  100% {
    transform: translateX(0) translateZ(0);
    filter: grayscale(0) blur(0);
  }
}
@keyframes car_2 {
  0% {
    transform: translateX(0) translateZ(0);
    filter: grayscale(0) blur(0);
  }
  100% {
    transform: translateX(4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
}
@keyframes car_3 {
  0% {
    transform: translateX(4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
  100% {
    transform: translateX(8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
}
@keyframes car_4 {
  0% {
    transform: translateX(8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
  100% {
    transform: translateX(-8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
}
@keyframes car_5 {
  0% {
    transform: translateX(-8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
  100% {
    transform: translateX(-4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
}
@keyframes car_reverse_1 {
  0% {
    transform: translateX(0) translateZ(0);
    filter: grayscale(0) blur(0);
  }
  100% {
    transform: translateX(-4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
}
@keyframes car_reverse_2 {
  0% {
    transform: translateX(4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
  100% {
    transform: translateX(0) translateZ(0);
    filter: grayscale(0) blur(0);
  }
}
@keyframes car_reverse_3 {
  0% {
    transform: translateX(8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
  100% {
    transform: translateX(4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
}
@keyframes car_reverse_4 {
  0% {
    transform: translateX(-8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
  100% {
    transform: translateX(8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
}
@keyframes car_reverse_5 {
  0% {
    transform: translateX(-4vw) translateZ(-5vw);
    filter: grayscale(0.8) blur(2px);
  }
  100% {
    transform: translateX(-8vw) translateZ(-10vw);
    filter: grayscale(0.8) blur(4px);
  }
}
#contactPage #control-order-display {
  display: flex;
  flex-direction: column;
}
#contactPage #carrousel {
  margin-bottom: 200px;
  padding-right: 40px;
  display: flex;
  align-items: flex-start;
  width: 40vw;
  height: 26.25rem;
  position: relative;
}
#contactPage #carrousel.no-animation .icon-cards__item {
  animation-duration: 0s !important;
}
#contactPage #carrousel .icon-cards__item:nth-child(1) {
  animation: 1s car_1 forwards;
}
#contactPage #carrousel .icon-cards__item:nth-child(2) {
  animation: 1s car_2 forwards;
}
#contactPage #carrousel .icon-cards__item:nth-child(3) {
  animation: 1s car_3 forwards;
}
#contactPage #carrousel .icon-cards__item:nth-child(4) {
  animation: 1s car_4 forwards;
}
#contactPage #carrousel .icon-cards__item:nth-child(5) {
  animation: 1s car_5 forwards;
}
#contactPage #carrousel.forwards .icon-cards__item:nth-child(1) {
  animation: 1s car_reverse_1 forwards;
}
#contactPage #carrousel.forwards .icon-cards__item:nth-child(2) {
  animation: 1s car_reverse_2 forwards;
}
#contactPage #carrousel.forwards .icon-cards__item:nth-child(3) {
  animation: 1s car_reverse_3 forwards;
}
#contactPage #carrousel.forwards .icon-cards__item:nth-child(4) {
  animation: 1s car_reverse_4 forwards;
}
#contactPage #carrousel.forwards .icon-cards__item:nth-child(5) {
  animation: 1s car_reverse_5 forwards;
}
#contactPage #carrousel .icon-cards {
  position: relative;
  width: 40vw;
  height: 80vw;
  max-width: 380px;
  max-height: 250px;
  color: #fff;
  perspective: 1000px;
  transform-origin: center;
  left: calc(20vw - 11.25rem);
}
#contactPage #carrousel .icon-cards .icon-cards__content {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-origin: center;
  transform-style: preserve-3d;
}
#contactPage #carrousel .icon-cards .icon-cards__content .icon-cards__item {
  top: 0.1rem;
  position: absolute;
}
#contactPage #carrousel .icon-cards .icon-cards__content .icon-cards__item img {
  height: 15.625rem;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#contactPage #controlsCarrousel {
  display: flex;
  justify-content: center;
  padding-right: 30px;
  order: 1;
}
#contactPage .slidenav {
  display: flex;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  width: 50%;
}
#contactPage .slidenav div {
  width: 10%;
}
#contactPage .slidenav div.tabs {
  display: flex;
  justify-content: space-around;
  width: 80%;
  align-items: center;
  position: relative;
  top: 4px;
}
#contactPage .slidenav button[data-slide] {
  width: 12px;
  height: 12px;
  border-radius: 99px;
  border: 0;
  background-color: #696969;
  transition: transform 0.2s ease-in-out;
}
#contactPage .slidenav button[data-slide]:hover, #contactPage .slidenav button[data-slide]:focus {
  transform: scale(1.3);
}
#contactPage .slidenav button.current {
  background-color: #6000B8;
  transform: scale(1.3);
}
#contactPage .slidenav .btn-arrow:hover, #contactPage .slidenav .btn-arrow:focus {
  filter: brightness(0) saturate(100%) invert(19%) sepia(80%) saturate(7450%) hue-rotate(275deg) brightness(94%) contrast(127%);
}
#contactPage .slidenav .btn-arrow#prev {
  background-color: transparent;
  background-image: url("contact/pictures/icon_arrow_carrousel.png");
  border: 0;
  width: 18px;
  height: 18px;
}
#contactPage .slidenav .btn-arrow#next {
  background-color: transparent;
  background-image: url("contact/pictures/icon_arrow_carrousel.png");
  border: 0;
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
}
#contactPage .icon-cards {
  position: relative;
  margin: 0;
  color: white;
  perspective: 1000px;
  transform-origin: center;
}
#contactPage .icon-cards__content {
  position: relative;
  transform-origin: center;
  transform-style: preserve-3d;
}
#contactPage .icon-cards__item {
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  transform-origin: center;
}
#contactPage .icon-cards__item img {
  position: relative;
  border-radius: 4px 4px 0px 0px;
}
#contactPage .icon-cards__item .pres {
  position: absolute;
  background-color: white;
  padding: 1rem;
  box-sizing: border-box;
  border: solid 1px #696969;
  border-radius: 0px 0px 4px 4px;
  border-top: 0;
  box-shadow: 0 -20px 8px rgba(0, 0, 0, 0.2);
  top: calc(100% - 10px);
  width: 100%;
  height: 330px;
  overflow: hidden;
}
#contactPage .icon-cards__item .pres div {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
#contactPage .icon-cards__item .pres h3 {
  color: #6000B8;
  margin-top: 0;
}
#contactPage .icon-cards__item .pres p {
  display: none;
  color: #696969;
}
#contactPage .icon-cards__item .pres span {
  color: #202020;
  display: flex;
  align-items: center;
}
#contactPage .icon-cards__item .pres span img {
  max-width: 30px;
  max-height: 30px;
  padding: 10px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(100%) saturate(7480%) hue-rotate(277deg) brightness(98%) contrast(120%);
}
#contactPage .reverse {
  animation-direction: reverse !important;
}
#contactPage .icon-cards__item img {
  width: 100%;
}

@media (max-width: 480px) {
  #contactPage .slidenav {
    width: 90%;
  }
}
@media (min-width: 481px) and (max-width: 1023px) {
  #contactPage .slidenav {
    width: 360px;
  }
}
@media (max-width: 1023px) {
  @keyframes car1 {
    0% {
      transform: translateX(-4vw) translateZ(-5vw);
      filter: grayscale(0.8) blur(2px);
    }
    100% {
      transform: translateX(0) translateZ(0);
      filter: grayscale(0) blur(0);
    }
  }
  @keyframes car2 {
    0% {
      transform: translateX(0) translateZ(0);
      filter: grayscale(0) blur(0);
    }
    100% {
      transform: translateX(4vw) translateZ(-5vw);
      filter: grayscale(0.8) blur(2px);
    }
  }
  @keyframes car3 {
    0% {
      transform: translateX(4vw) translateZ(-5vw);
      filter: grayscale(0.8) blur(2px);
    }
    100% {
      transform: translateX(8vw) translateZ(-10vw);
      filter: grayscale(0.8) blur(4px);
    }
  }
  @keyframes car4 {
    0% {
      transform: translateX(8vw) translateZ(-10vw);
      filter: grayscale(0.8) blur(4px);
    }
    100% {
      transform: translateX(-8vw) translateZ(-10vw);
      filter: grayscale(0.8) blur(4px);
    }
  }
  @keyframes car5 {
    0% {
      transform: translateX(-8vw) translateZ(-10vw);
      filter: grayscale(0.8) blur(4px);
    }
    100% {
      transform: translateX(-4vw) translateZ(-5vw);
      filter: grayscale(0.8) blur(2px);
    }
  }
  #contactPage #carrousel {
    height: inherit;
    margin-bottom: 350px;
  }
  #contactPage #carrousel figure {
    width: 100vw !important;
    left: 0 !important;
  }
  #contactPage #controlsCarrousel {
    padding-right: 0;
  }
}
#contactPage #overlayModal.open {
  display: flex;
}
#contactPage #overlayModal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(32, 32, 32, 0.3);
}
#contactPage #overlayModal .modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 4px;
  position: absolute;
  max-width: 833px;
  height: 446px;
  background: #FFFFFF;
  padding: 60px;
}
#contactPage #overlayModal .modal h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 31px;
  line-height: 46px;
  text-align: center;
  color: #202020;
}
#contactPage #overlayModal .modal p {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #202020;
}
#contactPage #overlayModal .modal div:first-of-type {
  display: flex;
  justify-content: end;
}
#contactPage #overlayModal .modal div:first-of-type button {
  background: transparent;
  border: 0;
}
#contactPage #overlayModal .modal div:first-of-type button * {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(1%) saturate(412%) hue-rotate(35deg) brightness(84%) contrast(92%);
}
#contactPage #overlayModal .modal div:nth-child(2) {
  display: flex;
  flex-direction: column;
  padding: 0 5vw;
}
#contactPage #overlayModal .modal div:last-of-type {
  display: flex;
  justify-content: center;
}
#contactPage #overlayModal .modal div:last-of-type button {
  width: 174px;
  height: 48px;
  background: #FFFFFF;
  border: 3px solid #9200FA;
  box-sizing: border-box;
  border-radius: 4px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #9200FA;
}
#contactPage #overlayModal .modal div:last-of-type button:hover, #contactPage #overlayModal .modal div:last-of-type button:focus {
  color: #FFF;
  background: #9200FA;
}
#contactPage #overlayModal .modal button {
  cursor: pointer;
}

.combobox {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}

.combobox-list {
  position: relative;
}

.combobox .group {
  display: inline-flex;
  padding: 4px;
  cursor: pointer;
}

.combobox input,
.combobox button {
  background-color: white;
  color: black;
  box-sizing: border-box;
  height: 24px;
  padding: 0;
  margin: 0;
  vertical-align: bottom;
  border: 1px solid gray;
  position: relative;
  cursor: pointer;
}

.combobox input {
  width: 150px;
  border-right: none;
  outline: none;
  font-size: 87.5%;
  padding: 1px 3px;
}

.combobox button {
  width: 19px;
  border-left: none;
  outline: none;
  color: #696969;
}

.combobox input[role=combobox]:hover, .combobox input[role=combobox]:hover + button {
  color: #9200FA;
}

.combobox button[aria-expanded=true] svg {
  transform: rotate(180deg) translate(0, -3px);
}

ul[role=listbox] {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  list-style: none;
  background-color: white;
  display: none;
  box-sizing: border-box;
  border: 2px currentColor solid;
  max-height: 250px;
  width: 100%;
  overflow: scroll;
  overflow-x: hidden;
  font-size: 87.5%;
  cursor: pointer;
  background: #fbfafc;
  border: 1px solid #696969;
  box-sizing: border-box;
  border-radius: 4px;
  color: #696969;
  padding: 10px;
}

ul[role=listbox] li[role=option] {
  margin: 0;
  display: block;
  padding-left: 3px;
  padding-top: 2px;
  padding-bottom: 2px;
}

/* focus and hover styling */
.combobox .group.focus,
.combobox .group:hover {
  padding: 2px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.combobox .group.focus polygon,
.combobox .group:hover polygon {
  fill-opacity: 1;
}

.combobox .group.focus input,
.combobox .group.focus button,
.combobox .group input:hover,
.combobox .group button:hover {
  background-color: #def;
}

.combobox ul.listbox.focus li[aria-selected=true],
.combobox ul.listbox li:hover {
  background-color: #def;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

#contactPage #main-content {
  margin-top: 100px;
}

@media (max-width: 1023px) {
  #contactPage .icon-cards__item .pres p {
    display: none;
  }
}
#searchPage #jumbotron {
  box-sizing: border-box;
  background-color: #FFF;
  max-height: 525px;
  padding-top: 30px;
  padding-left: 5vw;
  padding-right: 5vw;
  color: #202020;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}
#searchPage #jumbotron h1 {
  color: #6000B8;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 31px;
  line-height: 46px;
}
#searchPage #jumbotron #text-content {
  width: 70%;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}
#searchPage #jumbotron #illustration {
  width: 50%;
  text-align: center;
}
#searchPage #jumbotron #illustration img {
  max-width: 438px;
  width: 100%;
}

@media (min-width: 481px) and (max-width: 1023px) {
  #searchPage #jumbotron h1 {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0em;
    text-align: left;
  }
}
@media (max-width: 1023px) {
  #searchPage #jumbotron {
    background-color: #FFF;
    max-height: 607px;
    color: #202020;
    display: block;
    padding: 25px 40px 0 40px;
  }
  #searchPage #jumbotron #text-content {
    width: 100%;
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 0em;
    text-align: left;
  }
}
#searchPage #basket-section {
  background-color: #FFF;
  display: flex;
  justify-content: end;
  padding-top: 26px;
  padding-right: 40px;
  box-sizing: border-box;
}
#searchPage #basket-section #btn-basket {
  text-decoration: none;
  width: 217px;
  height: 50px;
  background: #6000B8;
  border: #6000B8;
  border-radius: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  color: #FFF;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 1;
  transition: transform 0.2s ease-in-out;
}
#searchPage #basket-section #btn-basket img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(7%) saturate(7490%) hue-rotate(178deg) brightness(103%) contrast(107%);
  width: 33px;
  height: 33px;
}
#searchPage #basket-section #btn-basket:hover, #searchPage #basket-section #btn-basket:focus {
  transform: scale(1.1);
}

@media (max-width: 1023px) {
  #searchPage #basket-section {
    display: none;
  }
}
#searchPage #searchForm {
  padding-top: 50px;
}
#searchPage #searchForm form {
  display: flex;
  position: relative;
}
#searchPage #searchForm form input[type=search] {
  width: 462px;
  height: 50px;
  background: #FFFFFF;
  border: 1px solid #9200FA;
  box-sizing: border-box;
  border-radius: 4px 0px 0px 4px;
  padding: 0px 10px 0px 50px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #9200FA;
}
#searchPage #searchForm form input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 1em;
  width: 1em;
  border-radius: 50em;
  background: url("pictures/icon cross.png") no-repeat 50% 50%;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}
#searchPage #searchForm form input[type=search]:focus::-webkit-search-cancel-button {
  opacity: 1;
  pointer-events: all;
}
#searchPage #searchForm form input[type=search]:-moz-placeholder, #searchPage #searchForm form input[type=search]::-moz-placeholder {
  color: #9200FA;
  font-style: italic;
}
#searchPage #searchForm form input[type=search]:-ms-input-placeholder {
  color: #9200FA;
  font-style: italic;
}
#searchPage #searchForm form input[type=search]::-webkit-input-placeholder, #searchPage #searchForm form input[type=search]::placeholder {
  color: #9200FA;
  font-style: italic;
}
#searchPage #searchForm form button {
  width: 236.5px;
  height: 50px;
  background: #9200FA;
  border: 1px solid #9200FA;
  border-radius: 0px 4px 4px 0px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  white-space: nowrap;
  cursor: pointer;
}
#searchPage #searchForm form img {
  position: absolute;
  width: 18px;
  height: 18px;
  left: 16px;
  top: 16px;
}

@media (max-width: 480px) {
  #searchPage #searchForm form {
    flex-direction: column;
  }
  #searchPage #searchForm form input[type=search] {
    border-radius: 4px;
    width: 100%;
  }
  #searchPage #searchForm form button {
    margin-top: 9px;
    border-radius: 4px;
    width: 100%;
  }
}
#searchPage #results {
  margin: 0;
  padding: 0;
}
#searchPage #results .result {
  display: flex;
  background: #FFFFFF;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  align-items: center;
  justify-content: space-around;
  padding: 20px 50px;
  margin: 66px 0;
}
#searchPage #results .result > *, #searchPage #results .result .resultContent > * {
  margin: 20px 0;
}
#searchPage #results .result div:first-of-type img.avatar {
  object-fit: cover;
  width: 65px;
  height: 48px;
}
#searchPage #results .result .resultContent {
  margin: 20px 30px;
}
#searchPage #results .result .resultContent h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 25px;
  line-height: 38px;
  color: #9200FA;
  margin: 0;
}
#searchPage #results .result .resultContent p {
  margin: 0;
}
#searchPage #results .result .resultContent .resultLabels ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  gap: 20px;
  justify-content: flex-start;
}
#searchPage #results .result .resultContent .resultLabels ul li {
  border-radius: 99px;
  color: #FFFFFF;
  text-align: center;
  min-height: 38px;
  height: max-content;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  padding: 0 10px;
  top: calc(50% - 10.5px);
  display: flex;
  justify-content: center;
  align-items: center;
}
#searchPage #results .result .resultContent .resultLabels ul li span {
  display: flex;
  align-items: center;
}
#searchPage #results .result .resultContent .resultLabels ul li span img {
  max-height: 18px;
  padding: 10px;
}
#searchPage #results .result .resultContent .resultLabels ul li:nth-child(odd) {
  background: #FFF;
  color: #9200FA;
  border: #9200FA 3px solid;
}
#searchPage #results .result .resultContent .resultLabels ul li:nth-child(odd) span img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(83%) saturate(7373%) hue-rotate(277deg) brightness(97%) contrast(121%);
}
#searchPage #results .result .resultContent .resultLabels ul li:nth-child(even) {
  background: #9200FA;
  color: #FFFFFF;
  border: #9200FA 3px solid;
}
#searchPage #results .result .resultContent .resultLabels ul li:nth-child(even) span img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(307deg) brightness(104%) contrast(101%);
}
#searchPage #results .result .resultOptions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
#searchPage #results .result .resultOptions a {
  background: #9200FA;
  border-radius: 4px;
  color: #FFFFFF;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  border: 0;
  height: 48px;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
#searchPage #results .result .resultOptions a:first-of-type {
  border: #6000B8 3px solid;
  background-color: #FFFFFF;
  color: #6000B8;
  width: 234px;
}
#searchPage #results .result .resultOptions a:hover, #searchPage #results .result .resultOptions a:focus {
  text-decoration: underline;
  outline-offset: 3px;
}
#searchPage #results .result .resultOptions a[id^=contact-profil-] {
  text-align: center;
  width: 234px;
  font-size: 14px;
  line-height: 16px;
  border: #9200FA 3px solid;
}
#searchPage #results .result .resultOptions a[id^=contact-profil-] .text-active {
  display: none;
}
#searchPage #results .result .resultOptions a[id^=contact-profil-] .text-inactive {
  display: inline;
}
#searchPage #results .result .resultOptions a[id^=contact-profil-].active .text-active {
  display: inline;
}
#searchPage #results .result .resultOptions a[id^=contact-profil-].active .text-inactive {
  display: none;
}

@media (max-width: 1023px) {
  #searchPage #results .result .resultContent .resultLabels ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  #searchPage #results .result {
    padding: 5vw 5vw;
    flex-wrap: wrap;
  }
  #searchPage #results .result .resultContent {
    margin: 0px 5vw 0px 5vw;
  }
  #searchPage #results .result .resultOptions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#searchPage #pagination {
  filter: drop-shadow(0px 0px 40px rgba(0, 0, 0, 0.1));
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
#searchPage #pagination ul {
  padding: 0;
  margin: 0;
  display: flex;
  list-style: none;
}
#searchPage #pagination ul li {
  background: #FFFFFF;
  border-radius: 4px;
  color: #696969;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  font-weight: 900;
  line-height: 28px;
  margin: 0 1px;
  font-size: 18px;
}
#searchPage #pagination ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #696969;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
#searchPage #pagination ul li a[aria-current=page] {
  text-decoration: underline;
  color: #9200FA;
}
#searchPage #pagination ul li:first-of-type, #searchPage #pagination ul li:last-of-type {
  font-size: 24px;
}
#searchPage #pagination ul li:hover a:hover, #searchPage #pagination ul li a:focus {
  background: #EFDDFF;
  border: 1px solid #9200FA;
  outline: #9200FA;
  box-sizing: border-box;
  border-radius: 4px;
  color: #9200FA;
}

#searchPage main {
  width: calc(100% - 230px);
}
#searchPage #main-content {
  padding-top: 100px;
}

@media (max-width: 1023px) {
  #searchPage main {
    width: 100%;
  }
}
#othersPage #jumbotron {
  background-color: #6000B8;
  max-height: 525px;
  padding: 40px 5vw;
  color: #FFF;
  display: flex;
  justify-content: space-around;
  position: relative;
}
#othersPage #jumbotron h1 {
  margin: 0;
  font-size: 69px;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: 0em;
  text-align: left;
}
#othersPage #jumbotron #text-content {
  width: 100%;
  font-size: 25px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}
#othersPage #jumbotron #illustration {
  width: 50%;
  text-align: center;
}
#othersPage #jumbotron #illustration img {
  max-width: 438px;
  width: 100%;
}

/* MOBILE */
@media (max-width: 480px) {
  #othersPage #jumbotron h1 {
    margin: 0;
    font-size: 14vw;
    font-weight: 700;
    line-height: 18vw;
    letter-spacing: 0em;
    text-align: left;
  }
}
/* MOBILE & TABLETTE */
@media (min-width: 481px) and (max-width: 1023px) {
  #othersPage #jumbotron h1 {
    margin: 0;
    font-size: 13vw;
    font-weight: 700;
    line-height: 13vw;
    letter-spacing: 0em;
    text-align: left;
  }
}
/* TABLETTE */
@media (max-width: 1023px) {
  #othersPage #jumbotron {
    padding: 40px 5vw;
    background-color: #6000B8;
    max-height: 607px;
    color: #FFF;
    display: block;
  }
  #othersPage #jumbotron #illustration {
    width: 100%;
  }
  #othersPage #jumbotron #illustration img {
    width: 100%;
  }
  #othersPage #jumbotron #text-content {
    width: 100%;
    font-size: 25px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0em;
    text-align: left;
  }
}
#othersPage #section #sav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#othersPage #section #sav img {
  height: 50px;
}

/* MOBILE */
/* MOBILE & TABLETTE */
/* TABLETTE */
@media (max-width: 1023px) {
  #othersPage #section {
    padding: 0 5vw;
  }
}
#othersPage #ariane nav ol {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-left: 0;
}
#othersPage #ariane nav ol li a {
  text-decoration: none;
  color: #202020;
}
#othersPage #ariane nav ol li + li a {
  text-decoration: underline !important;
}
#othersPage #ariane nav ol li + li::before {
  display: inline-block;
  margin: 0 0.25em;
  transform: rotate(15deg);
  border-right: 0.1em solid currentcolor;
  height: 0.8em;
  content: "";
  padding-left: 5px;
}

/* MOBILE */
/* MOBILE & TABLETTE */
/* TABLETTE */
@media (max-width: 1023px) {
  #othersPage #ariane, #othersPage #section {
    padding: 0 5vw;
  }
}
#othersPage #section table[role=presentation] {
  display: flex;
  justify-content: center;
}
#othersPage #section table[role=presentation] tr td:first-child {
  text-align: center;
}
#othersPage #section table[role=presentation] tr td:first-child img {
  max-width: 90vw;
}

/* MOBILE */
/* MOBILE & TABLETTE */
/* TABLETTE */
@media (max-width: 1023px) {
  #othersPage #section {
    padding: 0 5vw;
  }
}
#othersPage #section #sitemap li {
  line-height: 3em;
}

/* MOBILE */
/* MOBILE & TABLETTE */
/* TABLETTE */
#othersPage #main-content {
  padding-left: 40px;
}
#othersPage #section a {
  line-break: anywhere;
}
#othersPage #section a, #othersPage .front {
  color: #6000B8;
  font-weight: 700;
}

/* devanagari */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJbecmNE.woff2) format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF6, U+1CF8-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FB;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJnecmNE.woff2) format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrJJfecg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/archivo/v19/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 900;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/archivo/v19/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v21/7cHmv4okm5zmbtYmK-4W4nIppT4.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Exo 2";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/exo2/v21/7cHmv4okm5zmbtYoK-4W4nIp.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
#main-content {
  padding: 0 5vw;
}

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