/*SPECIALL MENU*/
  .special {
    background: #ffffff;
    padding: 50px 0;
  }
  .special_title{
    text-align: center;
    font-family: 'Anton', sans-serif;
    font-size: 2em;
    margin-bottom: 5px;
    color: #000000;
  }
  .head_title {
    margin-bottom: 50px;
  }
  
  .single_special_img {
    position: relative;
    overflow: hidden;
  }
  
  .single_special_img img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .single_special_img:hover img {
    transform: scale(1.1);
  }
  
  .single_special_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .single_special_img:hover .single_special_overlay {
    opacity: 1;
  }
  
  .overlay_separetor {
    border-bottom: 2px solid #fff;
    width: 50%;
    margin: 10px 0;
  }
  
  .single_special_overlay h3 {
    font-family: 'League Gothic', sans-serif;
    text-transform: uppercase;
    font-size: 18px;
    margin: 0;
  }
  
  .single_special_overlay p {
    font-size: 14px;
  }
  
  .no-gutters {
    margin-right: 0;
    margin-left: 0;
  }
  
  .no-gutters > .col,
  .no-gutters > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
  }



@media (max-width: 768px) {
.mobile {
  display: none;
}

}
@media (min-width: 768px) {
.screen {
  display: none;
}
}

.carousel{
  margin-bottom: 10px;
}
.carousel-item {
  position: relative;
}
.carousel-caption {
  position: absolute;
  bottom: 10%;
  left: 20%;
  background-color: #000000;
  padding: 5px;
  border-radius: 5px;
  text-align: center;
}
.carousel-caption p {
  font-family: 'League Gothic', sans-serif;
  text-transform: uppercase;
  color: white; /* Texte blanc pour une meilleure lisibilité */
  text-shadow: #000000;
  font-size: 1.5em;
  margin: 0;
}