* {
  font-family: 'Poppins', sans-serif;
}

.small-fort {
  font-size: 14.5px !important;
}

.actu-small-description {
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limite à 3 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  cursor: pointer;
}

.contact-name {
  font-weight: 400;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1; /* Limite à 3 lignes */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  cursor: pointer;
}

.image-actu {
  height: 300px;
  object-fit: cover;
  cursor: pointer;
}

.feature-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.carousel.slide.vertical .carousel-inner {
  height: 100%;
}

.carousel.slide.vertical .carousel-inner > .item {
  transition: 0.6s ease-in-out top;
  transform: translateY(100%);
  position: absolute;
}

.carousel.slide.vertical .carousel-inner > .active {
  transform: translateY(0%);
}

.carousel.slide.vertical .carousel-inner > .next,
.carousel.slide.vertical .carousel-inner > .prev {
  transform: translateY(0%);
  top: 0;
  position: absolute;
}

.carousel-zoom .carousel-item {
    transition: transform 0.6s ease;
    transform: scale(0.8);
    opacity: 0;
}

.carousel-zoom .carousel-item.active {
    transform: scale(1);
    opacity: 1;
}

#hero {
    width: 100%;
    /* background: url("/assets/img/hero-bg.jpg"); */
    position: relative;
    padding: 40px 0 40px 0;
  }
  
  #hero:before {
    /* content: ""; */
    /* background: rgba(2, 5, 161, 0.91); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #2a4b9a;
  }
  
  #hero h1 span {
    /* color: #fff; */
    border-bottom: 4px solid #2a4b9a;
  }
  
  #hero h2 {
    /* color: rgba(255, 255, 255, 0.8); */
    margin-bottom: 40px;
    font-size: 24px;
  }
  
  #hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #2a4b9a;
  }
  
  #hero .btn-get-started:hover {
    background: #0328FA;
  }
  
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 991px) {  
    #hero .hero-img {
      text-align: center;
    }
  
    #hero .hero-img img {
      max-width: 50%;
    }
  
    #hero h1 {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 10px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }

  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 80%;
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  .wave1 use {
    animation: move-forever1 10s linear infinite;
    animation-delay: -2s;
  }
  
  .wave2 use {
    animation: move-forever2 8s linear infinite;
    animation-delay: -2s;
  }
  
  .wave3 use {
    animation: move-forever3 6s linear infinite;
    animation-delay: -2s;
  }
  
  @keyframes move-forever1 {
    0% {
      transform: translate(85px, 0%);
    }
  
    100% {
      transform: translate(-90px, 0%);
    }
  }
  
  @keyframes move-forever2 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }
  
  @keyframes move-forever3 {
    0% {
      transform: translate(-90px, 0%);
    }
  
    100% {
      transform: translate(85px, 0%);
    }
  }