/*
CTC Separate Stylesheet
Updated: 2023-02-06 11:27:11
*/

:root {
  --color-text: navy;
  --color-bg: papayawhip;
  --color-bg-accent: #ecdcc0;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 45s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));

  --nb_Cards: 27;

  scroll-behavior: smooth;
}


@media screen and (max-width: 1025px) {
  .slider__cartes__offres .slick-track{
    display: flex;
    gap: 25px;
  }

  .slider__cartes__offres .slick-dots{
    bottom: -40px;
    height: 24px;
    color :#E66725;
  }
}

/*
* CARTES AVIS
*/ 
.slider_cartes_avis .slick-dots{
  bottom: -60px;
 }
 

.slider_cartes_avis .slick-dots button:before{
  content: none;
}  

.slider_cartes_avis .slick-dots li button{
  border: 2px solid #E66725;
}

.slider_cartes_avis .slick-dots li.slick-active button{
  background-color: #E66725;
  border: none;
}  


#page .slider_cartes_avis .slick-list{
  width: 1440px;
  overflow: hidden;
}

#page .slider_cartes_avis .slick-track{
  display: flex; 
  gap: 0 40px;
}

#page .slider_cartes_avis .slick-slide{
 max-width: 414px;
}

 
/*
* FIN CARTES AVIS
*/ 

/*  CSS pour le slider de logo defilant  */

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  mask-image: linear-gradient(
     to right ,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
 
.marquee svg {
  display: grid;
  place-items: center;
  width: var(--size);
  background: var(--color-bg-accent);
  border-radius: 0.5rem;
}

.marquee--vertical svg {
  aspect-ratio: 1;
  width: calc(var(--size) / 1.5);
  padding: calc(var(--size) / 6);
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  margin: auto;
  max-width: 100vw;
}

 /* FIN CSS pour le slider de logo defilant  */

/* Animation de la fleche de la HOMEPAGE */
.down-arrow a {
  width: 40px;
  height: 40px;
}

.down-arrow a {
  border: none;
  outline: none;
}

.down-arrow a>span {
  position: relative;
  animation: jumpInfinite 1.5s infinite;
}

@keyframes jumpInfinite {
  0% {
    top: 0;
  }

  50% {
    top: 20px;
  }

  100% {
    top: 0;
  }
}

/* FIN Animation de la fleche de la HOMEPAGE */

/*
* FOOTER 
*/

.footer__contact__column p {
  margin: 0;
}

/*
* FIN FOOTER 
*/

