@media (max-width: 992px) {
  .fs-6 {
    font-size: 0.5rem !important;
  }

  .fs-4 {
    font-size: calc(1.1rem + -1.7vw) !important;
  }
}

.our_clients {
  column-gap: 1.4vw
}

.card-title {
  text-align: center;
}

/* CIPEM WHO WE ARE SECTION */
.cipem-acronym div {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-direction: column;

}

.cipem-acronym {
  gap: 1.1vw !important
}

.cipem-letter {
  font-weight: 700;
  font-size: 3.8rem;
  color: #050588;
  margin-right: 0.5rem;
}

.cipem-text {
  font-weight: 730;
  font-size: 1.1rem;
  color: #e5a90b;
  /* dark blue */
}

.Bandorel img {
  width: 100%;
  height: 9vw;
}

/* p{
  text-align: justify;
} */
@media (max-width: 991px) {
  .cipem-acronym {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 6.1vw !important;
  }

  .cipem-letter {
    font-size: 2.4rem;
    font-weight: bold;
  }

  .cipem-text {
    font-size: 1rem;
  }

  .d-flex {
    justify-content: center;
  }

  .Bandorel img {
    height: 19vw;
  }

  #carouselExampleCaptions {
    margin-top: 13vw;
  }
}

.carousel-caption {
  margin-bottom: 2%;
  background-color: rgba(0, 0, 0, 0.692);
  padding: 0.25rem;
  padding-top: 0.25rem !important;
  padding-bottom: 0rem !important;
}

.carousel-caption>p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

h1 {
  font-size: 2.8rem;
  color: var(--bs-primary);
  margin-bottom: 3.5rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: var(--bs-secondary);
  border-radius: 3px;
}

/* Main Loader */
#main-loader {
  transition: opacity 0.5s ease-out;
}

/* Loader Icon Animation */
.loader-icon {
  animation: bounce-logo 2s infinite ease-in-out;
}

@keyframes bounce-logo {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-10px);
  }
}