.container_actualite {
  max-width: 100%;
  margin: 0 auto;
  margin-left: 10%;
  margin-right: 10%;
}

.carousel-main {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}

.carousel-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}

.carousel-slide.active {
  display: flex;
}

.carousel-slide img,
.carousel-slide video {
  max-width: 100%;
  max-height: 100%;
}

.carousel-thumbnails {
  display: flex;
  overflow-x: auto;
  margin-top: 10px;
  gap: 10px;
  width: 100%;
}

.thumbnail {
  flex: 0 0 auto;
  width: 100px;
  height: 80px;
  cursor: pointer;
}

.thumbnail img,
.thumbnail video {
  width: 100%;
  height: calc(100% - 10px);
  object-fit: cover;
  border: 2px solid transparent;
}

.thumbnail.active img,
.thumbnail.active video {
  border-color: #007BFF;
}


  .info-text{
    max-width: 1200px;
    display: block;
    margin: 20px 10%;
    margin-top: 30px;
    
  }

  .info-text p{
    text-align: justify;
  }

  
@media screen and (max-width: 481px) {
  .container_actualite {
    width: 100%;
    margin: 0px;
  } 
  .container_actualite h2{
    font-size: 1.2rem;
  }
  .info-text{
    margin: 20px 5px;
  }
  .info-text p{
    text-align: justify;
    font-size: 1rem;
  }
}
