#about{
    padding-top: 0px !important;
}

.item.header-text h6{
    font-size: calc(2rem + 2vw);
    font-weight: bold;
}

.item.header-text h2{
    font-size: calc(1rem + 2vw);
    line-height: 40px;
    margin-bottom: 20px;
}

.accordion-collapse{
  background-color: #19621924 !important;
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 320px ) and (max-width: 768px) {
    .item.header-text h6{
        font-size: calc(2rem + 2vw);
        font-weight: bold;
    }

    .item.header-text h2{
        font-size: calc(1rem + 2vw);
        line-height: 40px;
        margin-bottom: 20px;
    }
}


/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) {}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }


/* modifiction de la taile des prix */
@media (min-width: 768px ) and (max-width: 1200px) {
   .count-digit{
    font-size: calc(1rem + 2vw) !important;
   }
}


/* design de la gallery */

.gallery {
    column-count: 4;
    --webkit-column-count: 4;
    --moz-column-count: 4;
    gap: 1rem;
    padding: 4rem;
  }
  
  .image img {
    height: auto;
    width: 100%;
  }
  
  /* Responsive-ness for different screen-sizes */
  @media screen and (max-width: 810px) {
    .gallery {
      column-count: 3;
      --webkit-column-count: 3;
      --moz-column-count: 3;
    }
  }
  
  @media screen and (max-width: 500px) {
    .gallery {
      column-count: 2;
      --webkit-column-count: 2;
      --moz-column-count: 2;
    }
  }
  
  @media screen and (max-width: 400px) {
    .gallery {
      column-count: 1;
      --webkit-column-count: 1;
      --moz-column-count: 1;
    }
  }
  


