@charset "UTF-8";
:root {
  --font-size: 16px;
  --font-family: "Bricolage Grotesque", sans-serif;
  --blanc: #FFFFFF;
  --blanc2: #F2F2F2;
  --blanc3: #D9D9D9;
  --gris: #A1A1A1;
  --gris2: #6B6B70;
  --jaune: #FFB200;
  --violet: #5900EB;
  --rouge: #ed0000;
  --violetT: #6100FF;
  --noir: #0B0A09;
  --noir2: #181817;
  --noir3: #262626;
  --transition: 0.5s all ease-in-out;
  --smalltransition: 0.25s all ease-in-out;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  color: var(--blanc);
  background-color: var(--noir);
}

* {
  box-sizing: border-box;
}

.no-scroll {
  height: 100vh;
  overscroll-behavior: none !important;
  position: relative !important;
  overflow: hidden !important;
}
@media (width < 992px) {
  .no-scroll .header-nav-bloc .header-nav-bloc-cache {
    background: rgba(11, 10, 9, 0.5);
  }
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb {
  background: var(--violet);
  border-radius: 30px;
}

:-webkit-autofill {
  background-color: var(--noir3) !important;
  color: var(--blanc) !important;
}

main {
  position: relative;
}
main section {
  position: relative;
}
main section:first-child {
  margin-top: 40px;
}
@media (width < 768px) {
  main section:first-child {
    margin-top: 20px;
  }
}

.container {
  position: relative;
  width: min(100vw - 48px, 1600px);
  margin: 0 auto;
}
.container--flex {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}
@media (width < 992px) {
  .container--flex {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (width < 992px) {
  .container {
    width: min(100vw - 24px, 1600px);
  }
}

.flex {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (width < 992px) {
  .flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

p {
  font-size: var(--font-size);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

.slick-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.slick-dots li {
  line-height: 0;
}
.slick-dots li button {
  width: 10px;
  height: 10px;
  background: #474748;
  border-radius: 22px;
  transition: var(--smalltransition);
  font-size: 0;
  padding: 0;
  border: none !important;
}
.slick-dots li.slick-active button {
  width: 22px;
  background: var(--violet);
}
@media (width < 768px) {
  .slick-dots {
    bottom: -30px;
  }
}

.header {
  position: sticky;
  top: 0;
  padding: 20px 0;
  background: var(--noir);
  z-index: 9;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 565px) {
  .header-content > span {
    display: none;
  }
}
.header-left {
  display: flex;
  align-items: center;
  gap: 80px;
}
.header-left-container {
  display: flex;
  align-items: center;
  column-gap: 12px;
  z-index: 9;
}
.header-left-container .header-user {
  display: none;
}
@media (width < 992px) {
  .header-left-container .header-user {
    display: flex;
  }
}
.header-logo {
  display: flex;
  align-items: center;
}
@media (width < 992px) {
  .header-logo svg {
    margin-top: 3px;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  column-gap: 18px;
}
.header-nav ul li a {
  color: var(--gris);
  letter-spacing: -0.28px;
  transition: var(--smalltransition);
}
@media (991px < width) {
  .header-nav ul li a:hover, .header-nav ul li a:focus, .header-nav ul li a:focus-visible, .header-nav ul li a.active {
    color: var(--blanc);
  }
}
@media (width < 992px) {
  .header-nav ul li a {
    transition: none;
  }
}
@media (width < 992px) {
  .header-nav-bloc {
    position: fixed;
    top: 0;
    right: 0;
    left: -100vw;
    z-index: 8;
    height: 100vh;
    width: 100vw;
    transition: var(--smalltransition);
    scrollbar-width: thin;
    pointer-events: none;
    overflow: hidden;
  }
  .header-nav-bloc .header-nav {
    background: var(--noir);
    margin-top: 76px;
    padding: 30px 10px;
    height: 100vh;
    overflow: hidden;
    width: 80vw;
    position: relative;
    z-index: 2;
    border-right: 1px solid var(--noir3);
  }
  .header-nav-bloc .header-nav ul {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    row-gap: 30px;
  }
  .header-nav-bloc .header-nav-bloc-cache {
    content: "";
    position: absolute;
    inset: 0;
    overflow: visible;
    background: transparent;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    transition: var(--smalltransition);
  }
  .header-nav-bloc::after {
    content: "";
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background: var(--violet);
    z-index: 10;
  }
}
@media (width < 992px) {
  .header-nav-bloc.open {
    z-index: 8;
    pointer-events: auto;
    left: 0;
  }
}
.header-right {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.header-user {
  width: 34px;
  height: 34px;
  background: var(--noir3);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.header-user svg {
  width: 18px;
  aspect-ratio: 1;
}
.header #btn-close {
  display: none;
}
.header #btn-close svg {
  width: 15px;
  aspect-ratio: 1;
}
.header-btn {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 14px;
  color: var(--blanc2);
  padding: 12px 20px;
  background-color: var(--violet);
  border-radius: 18px;
  letter-spacing: -0.25px;
}
@media (width < 768px) {
  .header-btn span {
    display: none;
  }
}

.footer {
  margin-top: 64px;
}
.footer-top {
  border-top: 1px solid var(--noir3);
  padding: 32px 0;
}
.footer-top-content {
  display: grid;
  align-items: center;
  grid-template-columns: 3fr 5fr;
  gap: 20px 40px;
}
@media (width < 992px) {
  .footer-top-content {
    grid-template-columns: 1fr;
  }
}
@media (width < 768px) {
  .footer-top-content {
    row-gap: 40px;
  }
}
.footer-top-rs {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.footer-top-rs a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--noir3);
}
.footer-top-rs a svg {
  max-width: 16px;
}
.footer-top-left p {
  margin: 20px 0;
  font-size: 16px;
  color: var(--gris);
  letter-spacing: -0.08px;
}
@media (width < 992px) {
  .footer-top-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .footer-top-left p {
    text-align: center;
  }
}
@media (width < 768px) {
  .footer-top-left {
    flex-direction: column;
  }
}
.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (width < 768px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    text-align: center;
  }
}
.footer-top-list {
  display: flex;
  flex-direction: column;
  row-gap: 22px;
}
@media (width < 992px) {
  .footer-top-list {
    row-gap: 12px;
  }
}
.footer-top-list span {
  font-size: 15px;
  color: var(--blanc);
  letter-spacing: -0.07px;
  text-decoration: none;
}
.footer-top-list ul {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}
@media (width < 768px) {
  .footer-top-list ul {
    row-gap: 10px;
  }
}
.footer-top-list ul li, .footer-top-list ul li a {
  font-size: 14px;
  color: var(--gris);
  letter-spacing: -0.07px;
  text-decoration: none;
  transition: var(--smalltransition);
}
@media (991px < width) {
  .footer-top-list ul li:hover, .footer-top-list ul li:focus, .footer-top-list ul li:focus-visible, .footer-top-list ul li.active, .footer-top-list ul li a:hover, .footer-top-list ul li a:focus, .footer-top-list ul li a:focus-visible, .footer-top-list ul li a.active {
    color: var(--gris2);
  }
}
.footer-bottom {
  border-top: 1px solid var(--noir3);
  padding: 26px 0;
  color: var(--gris);
  font-size: 14px;
  letter-spacing: -0.07px;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width < 768px) {
  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
    row-gap: 6px;
  }
}

.page-reveal {
  position: fixed;
  inset: 0;
  z-index: 12;
  pointer-events: none;
}

.page-reveal-none {
  pointer-events: all;
}

.page-reveal .element {
  position: absolute;
  height: 100%;
  width: 100%;
  transform-origin: left;
}

.page-reveal .element-1 {
  background: var(--violet);
  transform: scaleX(0);
  animation: revealAnim 2500ms ease-in-out;
}

.page-reveal .element-2 {
  background: var(--noir);
  transform: scaleX(0);
  animation: revealAnim 1600ms ease-in-out;
  animation-delay: 450ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-reveal .element-2 svg {
  width: 300px;
  min-width: 100px;
  max-width: 50%;
  height: auto;
}

.page-reveal .element-3 {
  background: var(--noir);
  animation: revealContentAnim forwards;
  animation-delay: 1200ms;
}

@keyframes revealAnim {
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes revealContentAnim {
  to {
    transform: scale(0);
  }
}
h1 {
  margin: 60px 0 34px;
  text-align: center;
  font-size: clamp(32px, 3.33vw, 64px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.84px;
}
@media (width < 768px) {
  h1 {
    line-height: 1.15;
  }
}
h1 span {
  color: var(--violet);
}

.home-page h2 {
  margin: 0;
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--violetT);
}
@media (width < 992px) {
  .home-page h2 {
    justify-content: center;
  }
}
.home-page .sec-une {
  margin-bottom: 54px;
}
@media (width < 768px) {
  .home-page .sec-une {
    margin-top: 44px;
  }
}
.home-page .sec-une__top-tag {
  text-align: center;
  border: 1px solid var(--noir3);
  border-radius: 34px;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
  font-size: 14px;
  color: var(--blanc);
  width: fit-content;
  margin: 0 auto;
  letter-spacing: -0.07px;
}
@media (width < 992px) {
  .home-page .sec-une__top-tag {
    padding: 8px 14px;
    font-size: 13px;
  }
}
@media (width < 768px) {
  .home-page .sec-une__top-tag {
    padding: 6px 11px;
    font-size: 13px;
  }
}
.home-page .sec-une__top h1 {
  margin: 30px 0 34px;
}
@media (width < 768px) {
  .home-page .sec-une__top h1 {
    margin: 30px 0 20px;
  }
}
.home-page .sec-une__top-chapo {
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  color: var(--gris);
  letter-spacing: -0.35px;
  max-width: 880px;
  margin: 34px auto;
}
@media (width < 1400px) {
  .home-page .sec-une__top-chapo {
    font-size: 18px;
    line-height: 28px;
    margin: 20px auto;
  }
}
@media (width < 992px) {
  .home-page .sec-une__top-chapo {
    font-size: 16px;
    line-height: 24px;
    margin: 16px auto;
  }
}
.home-page .sec-une__top-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}
.home-page .sec-une__top-buttons .btn {
  padding: 12px 30px;
}
@media (width < 768px) {
  .home-page .sec-une__top-buttons {
    margin-top: 120px;
  }
  .home-page .sec-une__top-buttons .btn {
    padding: 10px 26px;
  }
}
@media (width < 565px) {
  .home-page .sec-une__top-buttons {
    flex-direction: column;
    row-gap: 10px;
  }
  .home-page .sec-une__top-buttons .btn {
    padding: 10px 26px;
    width: 100%;
    justify-content: center;
  }
}
.home-page .sec-une__bottom {
  margin-top: 54px;
  display: grid;
  column-gap: 24px;
  grid-template-columns: 7fr 4fr;
}
@media (width < 1200px) {
  .home-page .sec-une__bottom {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}
.home-page .sec-une__bottom .sec-une__bb {
  border: 1px solid var(--noir3);
  border-radius: 12px;
  height: 100%;
}
.home-page .sec-une__bottom .sec-une__bb__header {
  height: 8vw;
  max-height: 112px;
  min-height: 64px;
  border-radius: 12px 12px 0 0;
  padding: 24px;
  background: var(--noir2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width < 768px) {
  .home-page .sec-une__bottom .sec-une__bb__header {
    padding: 16px;
  }
}
.home-page .sec-une__bottom .sec-une__bb_hl {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  font-size: clamp(16px, 1.67vw, 34px);
  line-height: 1.21;
  font-weight: 600;
  letter-spacing: 0.54px;
  text-transform: uppercase;
}
.home-page .sec-une__bottom .sec-une__bb_hl span {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: var(--gris);
  letter-spacing: 0.315px;
  text-transform: none;
}
.home-page .sec-une__bottom .sec-une__bb__content {
  display: flex;
  flex-direction: column;
  padding: 34px;
  height: calc(100% - 112px);
  row-gap: 32px;
}
@media (width < 1200px) {
  .home-page .sec-une__bottom .sec-une__bb__content {
    height: auto;
  }
}
.home-page .sec-une__bottom .sec-une__bb__content p {
  margin: 0;
  line-height: 24px;
}
@media (width < 768px) {
  .home-page .sec-une__bottom .sec-une__bb__content p {
    font-size: 15px;
    line-height: 21px;
  }
}
.home-page .sec-une__bottom .sec-une__bb__content ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding-left: 24px;
}
.home-page .sec-une__bottom .sec-une__bb__content ul li {
  position: relative;
  font-size: 14px;
  line-height: 17px;
}
.home-page .sec-une__bottom .sec-une__bb__content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  width: 10px;
  height: 2px;
  background: var(--violet);
}
.home-page .sec-une__bottom .sec-une__bb__content ul li span.gris {
  color: var(--gris);
}
.home-page .sec-une__bottom .sec-une__bb__content ul li span.nowrap {
  white-space: nowrap;
}
.home-page .sec-une__bottom .sec-une__bb__content .btn {
  margin: auto 14px 0;
  border-radius: 24px;
  font-weight: 400;
  letter-spacing: 0;
  justify-content: center;
  background: var(--noir);
}
@media (width < 768px) {
  .home-page .sec-une__bottom .sec-une__bb__content {
    padding: 16px;
  }
}
.home-page .sec-une__bottom .sec-une__bottom-right .sec-une__bb__header .sec-une__bb_hr {
  height: 100%;
}
.home-page .sec-une__bottom .sec-une__bottom-right .sec-une__bb__header .sec-une__bb_hr img {
  height: 100%;
  max-height: 60px;
  max-width: 60px;
}
@media (width < 768px) {
  .home-page .sec-une {
    margin-bottom: 48px;
  }
}
.home-page .sec-rea {
  margin-top: 54px;
  margin-bottom: 54px;
}
.home-page .sec-rea__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (width < 1200px) {
  .home-page .sec-rea__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 992px) {
  .home-page .sec-rea__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .home-page .sec-rea__grid {
    margin-top: 16px;
  }
}
@media (width < 565px) {
  .home-page .sec-rea__grid {
    grid-template-columns: 1fr;
  }
}
.home-page .sec-rea__item {
  border: 1px solid var(--noir3);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.home-page .sec-rea__item.visible {
  opacity: 1;
}
.home-page .sec-rea__item-image {
  position: relative;
  line-height: 0;
}
.home-page .sec-rea__item-image img {
  border-radius: 12px 12px 0 0;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 16/9;
  transition: var(--smalltransition);
}
.home-page .sec-rea__item-image .tags {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 8px;
  flex-wrap: wrap;
}
.home-page .sec-rea__item-image .tags .tag {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.home-page .sec-rea__item-image .tags .tag span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.home-page .sec-rea__item-image .tags .tag_1 span {
  background: green;
}
.home-page .sec-rea__item-image .tags .tag_2 span {
  background: orange;
}
.home-page .sec-rea__item-image .tags > span {
  padding: 2px 10px;
  background: var(--noir3);
  border-radius: 28px;
  font-size: 13px;
  line-height: 23px;
}
@media (width < 768px) {
  .home-page .sec-rea__item-image .tags > span {
    font-size: 12px;
  }
}
.home-page .sec-rea__item-content {
  padding: 15px 17px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.home-page .sec-rea__item-content h3 {
  color: var(--violetT);
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.55px;
  margin: 0;
}
@media (width < 768px) {
  .home-page .sec-rea__item-content h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
.home-page .sec-rea__item-content p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
@media (width < 768px) {
  .home-page .sec-rea__item-content p {
    font-size: 14px;
    line-height: 19px;
  }
}
@media (991px < width) {
  .home-page .sec-rea__item:hover .sec-rea__item-image img, .home-page .sec-rea__item:focus .sec-rea__item-image img, .home-page .sec-rea__item:focus-visible .sec-rea__item-image img, .home-page .sec-rea__item.active .sec-rea__item-image img {
    opacity: 0.65;
  }
}
.home-page .sec-rea .btn {
  width: fit-content;
  margin: 32px auto 0;
}
@media (width < 768px) {
  .home-page .sec-rea {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.home-page .sec-serv {
  margin-top: 54px;
  margin-bottom: 54px;
}
.home-page .sec-serv__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (width < 1200px) {
  .home-page .sec-serv__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 992px) {
  .home-page .sec-serv__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .home-page .sec-serv__grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
  }
}
.home-page .sec-serv__item {
  border: 1px solid var(--noir3);
  border-radius: 16px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  height: 100%;
}
.home-page .sec-serv__item-header {
  display: flex;
  align-items: center;
  column-gap: 16px;
}
.home-page .sec-serv__item h3 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
@media (width < 992px) {
  .home-page .sec-serv__item h3 {
    font-size: 18px;
    line-height: 21px;
  }
}
@media (width < 768px) {
  .home-page .sec-serv__item h3 {
    font-size: 16px;
    line-height: 19px;
  }
}
.home-page .sec-serv__item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--violet);
}
.home-page .sec-serv__item-image img {
  max-width: 16px;
  max-height: 16px;
}
.home-page .sec-serv__item-content p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
@media (width < 992px) {
  .home-page .sec-serv__item {
    padding: 20px;
  }
}
@media (width < 768px) {
  .home-page .sec-serv__item {
    padding: 16px;
    margin: 0 10px;
  }
}
.home-page .sec-serv .btn {
  width: fit-content;
  margin: 32px auto 0;
}
@media (width < 768px) {
  .home-page .sec-serv {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.home-page .sec-avis {
  margin-top: 54px;
  margin-bottom: 54px;
}
.home-page .sec-avis h2 {
  margin: 0 auto;
  width: fit-content;
}
.home-page .sec-avis__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}
.home-page .sec-avis__grid > :nth-child(1) {
  grid-area: 1/1/2/2;
}
.home-page .sec-avis__grid > :nth-child(2) {
  grid-area: 2/1/3/2;
}
.home-page .sec-avis__grid > :nth-child(3) {
  grid-area: 1/2/3/3;
}
.home-page .sec-avis__grid > :nth-child(4) {
  grid-area: 1/3/2/4;
}
.home-page .sec-avis__grid > :nth-child(5) {
  grid-area: 1/4/2/5;
}
.home-page .sec-avis__grid > :nth-child(6) {
  grid-area: 2/3/3/5;
}
@media (width < 1200px) {
  .home-page .sec-avis__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-page .sec-avis__grid > :nth-child(n) {
    grid-area: auto;
  }
}
@media (width < 992px) {
  .home-page .sec-avis__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .home-page .sec-avis__grid {
    margin-top: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: initial;
  }
  .home-page .sec-avis__grid > :nth-child(n) {
    grid-area: none;
  }
}
.home-page .sec-avis__item {
  border: 1px solid var(--noir3);
  border-radius: 12px;
  height: 100%;
}
.home-page .sec-avis__item-header {
  border-radius: 12px 12px 0 0;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--noir2);
  border-bottom: 1px solid var(--noir3);
}
.home-page .sec-avis__item-header h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}
.home-page .sec-avis__item-content {
  padding: 15px;
}
.home-page .sec-avis__item-content p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}
.home-page .sec-avis__item-stars {
  display: flex;
  align-items: center;
  column-gap: 3px;
}
@media (width < 768px) {
  .home-page .sec-avis__item {
    margin: 0 10px;
  }
}
@media (width < 768px) {
  .home-page .sec-avis {
    margin-top: 78px;
    margin-bottom: 78px;
  }
}
.home-page .sec-actus {
  margin-top: 54px;
  margin-bottom: 54px;
}
.home-page .sec-actus__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (width < 1200px) {
  .home-page .sec-actus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (width < 992px) {
  .home-page .sec-actus__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width < 768px) {
  .home-page .sec-actus__grid {
    margin-top: 16px;
  }
}
@media (width < 565px) {
  .home-page .sec-actus__grid {
    grid-template-columns: 1fr;
  }
}
.home-page .sec-actus__item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.home-page .sec-actus__item-image {
  position: relative;
  line-height: 0;
}
.home-page .sec-actus__item-image img {
  border-radius: 16px;
}
.home-page .sec-actus__item-image span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 2px 10px;
  background: var(--noir3);
  border-radius: 28px;
  font-size: 13px;
  line-height: 23px;
}
.home-page .sec-actus__item-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.home-page .sec-actus__item-content h3 {
  color: var(--blanc);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.1px;
  margin: 0;
}
.home-page .sec-actus__item-cf {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page .sec-actus__item-cfl {
  display: flex;
  align-items: center;
  column-gap: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: var(--gris2);
}
.home-page .sec-actus__item-cfl img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.home-page .sec-actus__item-cfr {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.6px;
  color: var(--gris2);
}
.home-page .sec-actus__item.visible {
  opacity: 1;
}
@media (width < 768px) {
  .home-page .sec-actus__item {
    margin: 0 10px;
  }
}
.home-page .sec-actus .btn {
  width: fit-content;
  margin: 32px auto 0;
}
@media (width < 768px) {
  .home-page .sec-actus {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.home-page .sec-contact {
  margin-top: 54px;
  margin-bottom: 54px;
}
.home-page .sec-contact__content {
  position: relative;
  padding: 48px 0;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--noir3);
}
@media (width < 992px) {
  .home-page .sec-contact__content {
    padding: 24px 0;
  }
}
.home-page .sec-contact__content h3 {
  margin: 25px 0 0;
  font-size: clamp(20px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 23px;
}
@media (width < 992px) {
  .home-page .sec-contact__content h3 {
    margin: 20px 0 0;
  }
}
.home-page .sec-contact__content p {
  margin: 35px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.04px;
  text-align: center;
  color: var(--gris);
}
@media (width < 992px) {
  .home-page .sec-contact__content p {
    margin: 25px 12px 0;
    font-size: 16px;
    line-height: 21px;
  }
}
@media (width < 768px) {
  .home-page .sec-contact__content p {
    margin: 20px 12px 0;
    font-size: 15px;
    line-height: 19px;
  }
}
.home-page .sec-contact__content .container-form {
  position: relative;
  margin: 34px 0 0;
}
@media (width < 992px) {
  .home-page .sec-contact__content .container-form {
    margin: 24px 0 0;
  }
}
.home-page .sec-contact__content .container-form form {
  display: flex;
  align-items: center;
  column-gap: 0;
}
.home-page .sec-contact__content .container-form form input {
  background: var(--noir);
  border-radius: 12px 0 0 12px;
  padding: 12px;
  height: 47px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--blanc);
  min-width: 360px;
}
@media (width < 565px) {
  .home-page .sec-contact__content .container-form form input {
    min-width: 240px;
  }
}
.home-page .sec-contact__content .container-form form input ::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--gris2);
}
.home-page .sec-contact__content .container-form form input:focus, .home-page .sec-contact__content .container-form form input:focus-visible, .home-page .sec-contact__content .container-form form input:focus-within {
  outline: none;
}
.home-page .sec-contact__content .container-form form button {
  width: 47px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--violet);
  border-radius: 0 12px 12px 0;
}
.home-page .sec-contact__content .container-form .confirmform {
  position: absolute;
  top: 0;
  right: 0;
  left: 100%;
  bottom: 0;
  height: 47px;
  border-radius: 12px;
  background: var(--violet);
  display: flex;
  column-gap: 8px;
  justify-content: center;
  align-items: center;
  transition: var(--smalltransition);
  font-size: 0;
}
.home-page .sec-contact__content .container-form .confirmform-active {
  z-index: 1;
  font-size: 14px;
  left: 0;
}
@media (width < 768px) {
  .home-page .sec-contact {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}

.single-actu .sec-une__bb {
  border: none;
}
@media (width < 1200px) {
  .single-actu .sec-une__bottom {
    display: flex;
    flex-direction: column-reverse;
  }
  .single-actu .sec-une__bottom .sec-une__bottom-right {
    row-gap: 12px;
  }
}
.single-actu .sec-une__bottom-right {
  border: none !important;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  justify-content: space-between;
}
.single-actu .sec-une__bottom-right .sec-une__bb__content {
  padding: 0;
  height: auto;
}
.single-actu .sec-une__bottom-right .sec-une__bb__content img {
  border-radius: 12px;
  border: 1px solid var(--noir3);
}
.single-actu .sec-une__bottom-right .sec-une__bb__header {
  border: 1px solid var(--noir3);
}
.single-actu .sec-une__bottom .sec-une__bb__header {
  border-radius: 12px;
}

.contact-page .sec-une__top-chapo {
  font-size: 18px;
  line-height: 1.35;
  font-style: italic;
  max-width: 1100px;
}
@media (width < 565px) {
  .contact-page .sec-une__top-chapo {
    font-size: 16px;
  }
}
.contact-page .sec-une__bottom {
  grid-template-columns: 4fr 7fr;
}
@media (width < 1400px) {
  .contact-page .sec-une__bottom {
    grid-template-columns: 1fr 2fr;
  }
}
@media (width < 1200px) {
  .contact-page .sec-une__bottom {
    grid-template-columns: 3fr 5fr;
  }
}
@media (width < 768px) {
  .contact-page .sec-une__bottom {
    grid-template-columns: 1fr;
  }
}
.contact-page .sec-une__bottom .sec-une__bb img {
  width: calc(100% - 100px);
  margin: 25px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100% - 100px);
}
@media (width < 768px) {
  .contact-page .sec-une__bottom .sec-une__bb img {
    width: calc(100% - 300px);
    min-width: 200px;
    max-width: 300px;
    aspect-ratio: 1;
    margin: 25px auto;
    height: calc(100% - 50px);
  }
}
@media (width < 565px) {
  .contact-page .sec-une__bottom .sec-une__bb img {
    min-width: 150px;
    margin: 15px auto;
    height: calc(100% - 30px);
  }
}
.contact-page .sec-une__bottom .sec-une__bb__content form {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.contact-page .sec-une__bottom .sec-une__bb__content form .form-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 8px;
}
.contact-page .sec-une__bottom .sec-une__bb__content form input, .contact-page .sec-une__bottom .sec-une__bb__content form textarea, .contact-page .sec-une__bottom .sec-une__bb__content form select {
  background: var(--noir2);
  border: 1px solid var(--noir3);
  border-radius: 8px;
  padding: 12px;
  height: 47px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--blanc);
  width: 100%;
}
.contact-page .sec-une__bottom .sec-une__bb__content form input ::placeholder, .contact-page .sec-une__bottom .sec-une__bb__content form textarea ::placeholder, .contact-page .sec-une__bottom .sec-une__bb__content form select ::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--gris2);
}
.contact-page .sec-une__bottom .sec-une__bb__content form input:focus, .contact-page .sec-une__bottom .sec-une__bb__content form input:focus-visible, .contact-page .sec-une__bottom .sec-une__bb__content form input:focus-within, .contact-page .sec-une__bottom .sec-une__bb__content form textarea:focus, .contact-page .sec-une__bottom .sec-une__bb__content form textarea:focus-visible, .contact-page .sec-une__bottom .sec-une__bb__content form textarea:focus-within, .contact-page .sec-une__bottom .sec-une__bb__content form select:focus, .contact-page .sec-une__bottom .sec-une__bb__content form select:focus-visible, .contact-page .sec-une__bottom .sec-une__bb__content form select:focus-within {
  outline: none;
}
.contact-page .sec-une__bottom .sec-une__bb__content form textarea {
  font-family: var(--font-family);
  min-height: 150px;
  max-height: 300px;
  resize: vertical;
}
.contact-page .sec-une__bottom .sec-une__bb__content form button {
  margin: 0 0 0 auto;
  width: fit-content;
  padding: 10px 30px;
  border: 1px solid var(--violet);
  background: var(--violet);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: var(--blanc);
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.contact-page .sec-une__bottom .sec-une__bb__content form .contactmodal {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  background: var(--noir2);
  border-radius: 8px;
  transition: var(--smalltransition);
  display: flex;
  justify-content: center;
  flex-direction: column;
  row-gap: 24px;
  align-items: center;
}
.contact-page .sec-une__bottom .sec-une__bb__content form .contactmodal p {
  transition: var(--smalltransition);
  font-size: 0;
}
.contact-page .sec-une__bottom .sec-une__bb__content form .contactmodal img {
  transition: var(--smalltransition);
  width: 0;
}
.contact-page .sec-une__bottom .sec-une__bb__content .contactform-hide .contactmodal {
  bottom: 0;
}
.contact-page .sec-une__bottom .sec-une__bb__content .contactform-hide .contactmodal p {
  text-align: center;
  font-size: 16px;
  margin: 0 20px;
}
.contact-page .sec-une__bottom .sec-une__bb__content .contactform-hide .contactmodal img {
  width: 100px;
  min-width: auto;
  max-width: 30%;
  height: auto;
}

.project-page__btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width < 1200px) {
  .project-page .sec-une__bottom {
    grid-template-columns: 1fr;
  }
}
@media (width < 565px) {
  .project-page .sec-une__bottom {
    margin-top: 0;
  }
}
@media (width < 1200px) {
  .project-page .sec-une__bottom .sec-une__bb img {
    width: calc(100% - 300px);
    min-width: 200px;
    max-width: 300px;
    aspect-ratio: 1;
    margin: 25px auto;
    height: calc(100% - 50px);
  }
}
.project-page .sec-une__bottom .sec-une__bb__content .step {
  display: none;
  position: relative;
  flex-direction: column;
  row-gap: 16px;
}
.project-page .sec-une__bottom .sec-une__bb__content .form-btn-left {
  margin: 0;
}
.project-page .sec-une__bottom .sec-une__bb__content .step.active {
  display: flex;
}
.project-page .sec-une__bottom .sec-une__bb__content .error {
  border-color: red;
}
.project-page .sec-une__bottom .sec-une__bb__content form .form-group {
  align-items: stretch;
}
@media (width < 565px) {
  .project-page .sec-une__bottom .sec-une__bb__content form .form-group {
    flex-direction: column;
    row-gap: 16px;
  }
}
.project-page .sec-une__bottom .sec-une__bb__content form .form-group .input-group, .project-page .sec-une__bottom .sec-une__bb__content form .form-group .budget-group {
  width: 100%;
}
.project-page .sec-une__bottom .sec-une__bb__content form .form-group .input-group .budget, .project-page .sec-une__bottom .sec-une__bb__content form .form-group .budget-group .budget {
  width: 100%;
}
.project-page .sec-une__bottom .sec-une__bb__content form .form-group .budget-group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-page .sec-une__bottom .sec-une__bb__content form .form-group div:not([class]) {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  width: calc(100% + 24px);
}
@media (width < 565px) {
  .project-page .sec-une__bottom .sec-une__bb__content form .form-group div:not([class]) {
    width: 100%;
  }
}

.hub-page input, .hub-page textarea, .hub-page select {
  background: var(--noir);
  border: 1px solid var(--noir3);
  border-radius: 8px;
  padding: 12px;
  height: 47px;
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--blanc);
}
.hub-page input ::placeholder, .hub-page textarea ::placeholder, .hub-page select ::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 23px;
  color: var(--gris2);
}
.hub-page input:focus, .hub-page input:focus-visible, .hub-page input:focus-within, .hub-page textarea:focus, .hub-page textarea:focus-visible, .hub-page textarea:focus-within, .hub-page select:focus, .hub-page select:focus-visible, .hub-page select:focus-within {
  outline: none;
}
.hub-page .container {
  display: grid;
  grid-template-columns: 1fr 5fr;
  column-gap: 24px;
}
.hub-page .container .sec-dashboard-nav nav ul {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.hub-page .container .sec-dashboard-nav nav ul li a {
  display: flex;
  column-gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid var(--noir3);
  transition: var(--smalltransition);
  text-wrap: nowrap;
}
.hub-page .container .sec-dashboard-nav nav ul li a svg {
  width: 16px;
  height: 16px;
}
@media (991px < width) {
  .hub-page .container .sec-dashboard-nav nav ul li a:hover, .hub-page .container .sec-dashboard-nav nav ul li a:focus, .hub-page .container .sec-dashboard-nav nav ul li a:focus-visible, .hub-page .container .sec-dashboard-nav nav ul li a.active {
    background: var(--noir3);
  }
}
.hub-page .container .sec-dashboard-nav nav ul li a.active {
  background: var(--noir3);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-flex h1 {
  margin: 0;
  font-size: 30px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, auto);
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 16px;
  background: var(--noir2);
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div.active {
  background: var(--noir3);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div .h2-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div .h2-flex .todo-list-add {
  display: flex;
  align-items: center;
  column-gap: 4px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div h2 {
  color: var(--blanc2);
  font-weight: 600;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > div .big_h2 {
  font-size: 20px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) {
  grid-area: 1/1/3/7;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) .progress-dash-bar {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--noir3);
  border-radius: 12px;
  width: 100%;
  height: 16px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) .progress-dash-bar span {
  z-index: 1;
  font-size: 13px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) .progress-dash-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--violet);
  border-radius: 12px;
  transition: var(--smalltransition);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) {
  grid-area: 1/7/4/10;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) .last-documents {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) .last-documents .document-item {
  border: 1px solid var(--noir3);
  border-radius: 8px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) .last-documents .document-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 8px 16px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) {
  grid-area: 1/10/4/13;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) {
  grid-area: 3/1/6/7;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) input {
  height: auto;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) #todo-list {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) #todo-list .todo-item {
  display: flex;
  align-items: center;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) #todo-list .todo-item input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--violet);
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  padding: 0;
  border-radius: 0;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) #todo-list .todo-item input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 5px;
  width: 4px;
  height: 8px;
  z-index: 1;
  border: solid var(--gris);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) #todo-list .todo-item label {
  font-size: 14px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(5) {
  grid-area: 4/7/7/13;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) {
  grid-area: 6/1/9/7;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-height: 255px;
  overflow-y: auto;
  padding: 0 10px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--noir3);
  cursor: pointer;
  transition: var(--smalltransition);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket.active {
  background: var(--violet);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket .ticket-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--blanc2);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket .ticket-date {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket .ticket-date span {
  font-size: 12px;
  color: var(--gris);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket .close-ticket-btn {
  position: absolute;
  top: 8px;
  line-height: 12px;
  right: 26px;
  color: var(--gris);
  font-size: 12px;
  padding: 0;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket .tag {
  position: absolute;
  padding: 0;
  top: 10px;
  right: 12px;
  display: block;
  width: 8px;
  height: 8px;
  z-index: 1;
  background: green;
  border-radius: 50%;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket > span {
  padding: 2px 10px;
  background: var(--noir3);
  border-radius: 28px;
  font-size: 13px;
  line-height: 23px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket-close .ticket-name {
  text-decoration: line-through;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(6) #tickets-container .ticket-close .tag {
  background: var(--rouge);
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) {
  grid-area: 7/7/9/11;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .idd-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .idd-form input, .hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .idd-form select {
  width: 100%;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .identifiant-quick {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .identifiant-quick-item {
  position: relative;
  border: 1px solid var(--noir3);
  border-radius: 8px;
  padding: 12px 16px 8px;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(7) .identifiant-quick-item span {
  position: absolute;
  top: -6px;
  font-size: 10px;
  left: 8px;
  padding: 0 6px;
  color: var(--gris);
  background: var(--noir2);
  display: block;
}
.hub-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(8) {
  grid-area: 7/11/9/13;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid > div {
  padding: 32px 16px;
  cursor: pointer;
  transition: var(--smalltransition);
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1), .hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2), .hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3), .hub-doc-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(4) {
  grid-area: auto;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid {
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 16px;
  background: var(--noir2);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 16px;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid h2 {
  color: var(--blanc2);
  font-weight: 600;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item p {
  margin: 8px 0 0;
  text-align: center;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item span {
  display: block;
  margin: 2px 0 0;
  text-align: center;
  font-size: 14px;
  color: var(--gris);
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  margin-top: 8px;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons a, .hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons button {
  padding: 10px 20px;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons a svg, .hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons button svg {
  width: 16px;
  height: auto;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons a.btn-delete, .hub-doc-page .container .sec-dashboard-content .sec-dashboard-big-grid .doc-item .doc-buttons button.btn-delete {
  color: var(--blanc);
  background: var(--rouge);
  border: 1px solid var(--rouge);
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-upload-form {
  margin-bottom: 20px;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-upload-form .doc-upload-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 8px;
}
.hub-doc-page .container .sec-dashboard-content .sec-dashboard-upload-form .doc-upload-form input, .hub-doc-page .container .sec-dashboard-content .sec-dashboard-upload-form .doc-upload-form select {
  width: 100%;
}

.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) {
  grid-area: 1/1/2/2;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-height: 255px;
  overflow-y: auto;
  padding: 0 10px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container .ticket {
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--noir3);
  cursor: pointer;
  transition: var(--smalltransition);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container .ticket.active {
  background: var(--violet);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container .ticket .ticket-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--blanc2);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container .ticket .ticket-date {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(1) #exchanges-container .ticket .ticket-date span {
  font-size: 12px;
  color: var(--gris);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) {
  grid-area: 2/1/4/2;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  max-height: 255px;
  overflow-y: auto;
  padding: 0 10px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--noir3);
  cursor: pointer;
  transition: var(--smalltransition);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket.active {
  background: var(--violet);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket .ticket-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--blanc2);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket .ticket-date {
  margin-top: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket .ticket-date span {
  font-size: 12px;
  color: var(--gris);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket .close-ticket-btn {
  position: absolute;
  top: 8px;
  line-height: 12px;
  right: 26px;
  color: var(--gris);
  font-size: 12px;
  padding: 0;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket .tag {
  position: absolute;
  padding: 0;
  top: 10px;
  right: 12px;
  display: block;
  width: 8px;
  height: 8px;
  z-index: 1;
  background: green;
  border-radius: 50%;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket > span {
  padding: 2px 10px;
  background: var(--noir3);
  border-radius: 28px;
  font-size: 13px;
  line-height: 23px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket-close .ticket-name {
  text-decoration: line-through;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(2) #tickets-container .ticket-close .tag {
  background: var(--rouge);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) {
  grid-area: 1/2/4/3;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #closed-ticket-message {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: auto;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 14px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  max-height: 255px;
  overflow-y: auto;
  padding: 0 10px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container > :nth-child(1) {
  margin-top: 16px !important;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .message {
  position: relative;
  display: block;
  padding: 5px 8px;
  width: fit-content;
  border-radius: 8px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .message .user-info {
  position: absolute;
  top: -16px;
  font-size: 12px;
  color: var(--gris);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .message .message-content {
  font-size: 14px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .message .message-date {
  font-size: 12px;
  font-style: italic;
  color: var(--gris);
  text-align: right;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-me {
  margin: 0 0 0 auto;
  background: var(--violet);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-me .message-date, .hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-me .user-info {
  right: 8px;
  text-align: right;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-other {
  margin: 0 auto 0 0;
  background: var(--noir3);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-other .message-date, .hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) #messages-container .msg-other .user-info {
  left: 8px;
  text-align: left;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) .messages-container-add {
  margin-top: auto;
  padding-top: 8px;
  align-items: center;
  flex-direction: column;
  row-gap: 4px;
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) .messages-container-add textarea {
  height: 100px;
  resize: none;
  width: 100%;
  font-family: var(--font-family);
}
.hub-support-page .container .sec-dashboard-content .sec-dashboard-grid > :nth-child(3) .messages-container-add .btn {
  margin: 0 0 0 auto;
}

.hub-account .container .sec-dashboard-content .sec-dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid > div {
  grid-area: auto !important;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid > div input, .hub-account .container .sec-dashboard-content .sec-dashboard-grid > div select, .hub-account .container .sec-dashboard-content .sec-dashboard-grid > div textarea {
  width: 100%;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-select {
  display: flex;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-select input {
  padding: 0;
  height: auto;
  width: auto;
  line-height: normal;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-bloc {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-bloc .hub-account-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 8px;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-bloc .hub-account-line .hub-account-label {
  position: relative;
  width: 100%;
}
.hub-account .container .sec-dashboard-content .sec-dashboard-grid .hub-account-bloc .hub-account-line .hub-account-label label {
  position: absolute;
  top: -6px;
  font-size: 10px;
  left: 8px;
  padding: 0 6px;
  color: var(--gris);
  background: var(--noir2);
  display: block;
}

.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid {
  grid-template-columns: repeat(2, 1fr);
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid > div {
  grid-area: auto !important;
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid .hub-echeance-bloc {
  margin-top: 16px;
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid .hub-echeance-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid .hub-echeance-list .hub-echeance-item {
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
  background: var(--noir3);
  cursor: pointer;
  transition: var(--smalltransition);
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid .hub-echeance-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid > :first-child {
  height: fit-content;
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid > :first-child .hub-echeance-bloc .echeance-prix {
  font-size: 48px;
  font-weight: 600;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2px;
  border-radius: 8px;
  background: var(--noir);
}
.hub-payment-page .container .sec-dashboard-content .sec-dashboard-grid > :first-child .hub-echeance-bloc .echeance-prix span {
  font-size: 16px;
  font-weight: 400;
  color: var(--gris2);
  margin-bottom: 8px;
}

.hub-timeline .container .sec-dashboard-content {
  position: relative;
  margin: 0 auto;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.hub-timeline .timeline {
  position: relative;
  margin: 0 auto;
  display: flex;
  width: 100%;
  overflow-x: auto;
  height: 130px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hub-timeline .timeline::-webkit-scrollbar {
  display: none;
}
.hub-timeline .timeline-child {
  position: relative;
  display: block;
  width: 300px;
  height: 130px;
  flex-shrink: 0;
  color: var(--blanc);
  text-align: center;
}
.hub-timeline .timeline-child > div {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 40px;
  z-index: -1;
  background: var(--blanc);
}
.hub-timeline .timeline-child::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 100%;
  background-color: var(--blanc);
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hub-timeline .timeline-child::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: var(--smalltransition);
  background-color: var(--blanc);
  border: 5px solid var(--violetT);
  border-radius: 50%;
  z-index: 1;
}
.hub-timeline .timeline-child span {
  display: block;
  width: fit-content;
  margin: auto;
  padding: 4px 8px;
  transition: var(--smalltransition);
  background: transparent;
}
.hub-timeline .timeline .active > div {
  background: var(--violet);
}
.hub-timeline .timeline .active span {
  background: var(--violet);
  color: var(--blanc);
}
.hub-timeline .timeline .active::after {
  background-color: var(--violet);
}
.hub-timeline .timeline .top > div {
  top: 26px;
}
.hub-timeline .timeline .bottom > div {
  bottom: 26px;
}
.hub-timeline .timeline .bottom span {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hub-timeline .timeline .old::after, .hub-timeline .timeline .old > div, .hub-timeline .timeline .today::after, .hub-timeline .timeline .today > div {
  background-color: var(--violetT);
}
.hub-timeline .timeline .cursor {
  position: absolute;
  height: 6px;
  background-color: var(--violetT);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 0;
  transition: width 0.5s ease;
}
@media (991px < width) {
  .hub-timeline .timeline .cursor:hover, .hub-timeline .timeline .cursor:focus, .hub-timeline .timeline .cursor:focus-visible, .hub-timeline .timeline .cursor.active {
    z-index: 3;
  }
}
.hub-timeline .timeline .cursor::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 24px;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--violet);
}
.hub-timeline .timeline .cursor::after {
  content: "Nous sommes ici";
  position: absolute;
  right: -66px;
  bottom: -40px;
  background-color: var(--blanc);
  color: var(--noir);
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 14px;
  white-space: nowrap;
}
.hub-timeline .timeline .cursor-active::after {
  content: "Projet terminé";
}
.hub-timeline .timeline .before-cursor::before {
  background-color: var(--violetT);
}
.hub-timeline #texte-container {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--noir);
  color: var(--blanc);
  border-radius: 5px;
  text-align: center;
}
.hub-timeline #titre-container {
  margin: 60px auto 0;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--blanc);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 10, 9, 0.7333333333);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--smalltransition);
}
.modal.active {
  opacity: 1;
  pointer-events: all;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-header button {
  background: transparent;
  border: none;
  cursor: pointer;
}
.modal-header button svg {
  width: 15px;
  height: 15px;
  color: var(--blanc);
}
.modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  padding: 16px;
  background: var(--noir2);
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 800px;
}
.modal-content h2 {
  margin: 0;
  font-size: 18px;
  color: var(--blanc2);
}
.modal-content .hub-modal-bloc {
  padding: 24px 16px;
  border-radius: 8px;
  background: var(--noir);
}
.modal-content .hub-modal-bloc .hub-modal-bloc-virement {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.modal-content .hub-modal-bloc .hub-modal-bloc-virement h3 {
  font-size: 17px;
  margin: 0;
  color: var(--blanc);
}
.modal-content .hub-modal-bloc .hub-modal-bloc-virement p {
  margin: 0 0 14px;
  color: var(--gris);
  font-size: 14px;
  font-style: italic;
}
.modal-content .hub-modal-bloc .hub-modal-bloc-virement div span {
  font-weight: 600;
}
.modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}

.wysiwyg a:not([class]) {
  text-decoration: underline;
}
.wysiwyg > * {
  margin-bottom: 30px;
}
.wysiwyg ul:not([class]) {
  padding-left: 0;
}
.wysiwyg ul:not([class]) li {
  position: relative;
  margin-top: 20px;
  padding-left: 28px;
  font-size: 16px;
  line-height: 25px;
}
.wysiwyg ul:not([class]) li::before {
  position: absolute;
  content: "";
  display: block;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 12px;
  background: url("../img/svg/puce.svg");
}
.wysiwyg ul:not([class]) ul li {
  padding-left: 20px;
  color: var(--vertF);
}
.wysiwyg ul:not([class]) ul li::before {
  position: absolute;
  content: "";
  display: block;
  top: 9px;
  left: -2px;
  width: 6px;
  height: 6px;
  background: none;
  border-radius: 50%;
  border: 1px solid var(--rouge);
}
.wysiwyg ol:not([class]) {
  padding-left: 28px;
}
.wysiwyg ol:not([class]) li {
  list-style: decimal;
}
.wysiwyg ol:not([class]) li::marker {
  font-weight: 500;
  color: var(--rouge);
}
.wysiwyg ol:not([class]) > li {
  margin-top: 20px;
}
.wysiwyg ol:not([class]) ol > li {
  font-weight: 400;
}
.wysiwyg iframe {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 960px;
}
.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
}
.wysiwyg table thead {
  background: var(--rouge);
}
.wysiwyg table thead td, .wysiwyg table thead th {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  color: var(--blanc);
  line-height: 23px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-left: 1px solid var(--rouge);
}
.wysiwyg table thead td:first-child, .wysiwyg table thead th:first-child {
  border-left: none;
}
.wysiwyg table tbody {
  position: relative;
}
.wysiwyg table tbody tr:first-child {
  padding-top: 45px;
}
.wysiwyg table tbody tr td {
  font-weight: 400;
  min-width: 230px;
  font-size: 16px;
  line-height: 1.5;
  padding: 15px 21px;
  border-left: 1px solid var(--rouge);
}
@media (width < 992px) {
  .wysiwyg table tbody tr td {
    padding: 8px 12px;
  }
}
.wysiwyg table tbody tr td:first-child {
  border-left: none;
}
.wysiwyg table tbody > :nth-child(odd) {
  background-color: var(--violet-41);
}
.wysiwyg table tbody > :nth-child(odd) td {
  border-left: 1px solid var(--blanc);
}

.chapo {
  text-align: center;
  color: var(--noir);
  font-size: 18px;
  margin: 20px 0;
}
@media (width < 992px) {
  .chapo {
    font-size: 16px;
  }
}

.table-responsive {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border-spacing: 0;
}

input[type=submit], button {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
}

input[type=checkbox], input[type=radio] {
  accent-color: var(--violet);
}

.btn {
  padding: 10px 30px;
  border: 1px solid var(--violet);
  background: var(--violet);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  color: var(--blanc);
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.btn-secondary {
  color: var(--blanc);
  background: var(--noir3);
  border: 1px solid var(--noir3);
}

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