.carousel img {
    width: 70px;
    max-height: 70px;
    border-radius: 50%;
    margin-right: 1rem;
    overflow: hidden;
  }
  .carousel-inner {
    padding: 1em;
  }
  
  @media screen and (min-width: 576px) {
    .carousel-inner {
      display: flex;
      width: 90%;
      margin-inline: auto;
      padding: 1em 0;
      overflow: hidden;
    }
    .carousel-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 2);
    }
  }
  @media screen and (min-width: 768px) {
    .carousel-item {
      display: block;
      margin-right: 0;
      flex: 0 0 calc(100% / 3);
    }
  }
  .carousel .card {
    margin: 0 0.5em;
    border: 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 3rem;
    height: 3rem;
    background-color: grey;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
  }
 
  



  /*feature card for what we do
  @import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');

body {
  font-family: 'Maven Pro', sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.content {
  text-align: center;
}

.headTitle {
  margin-bottom: 4rem;
  font-size: 2rem;
  letter-spacing: 1px;
  text-shadow: 2px 1px 5px rgba(0, 0, 0, .5);
}
/* ABOVE THIS IS JUST FOR DEMO DON'T COPY IT */


/* CSS Features Cards - START */
/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
  
  .feature-card {
    background-color: #f2f2f4;
    color: #060606;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(249, 250, 250, 0.93);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  .feature-card1 {
    background-color: #4a4a78;
    color: #dfb314;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 10px rgba(249, 250, 250, 0.93);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  .feature-card:hover {
    background: linear-gradient(135deg, #f2f4f7 0%, #fafafb 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
    filter: none;
  }
  
  .feature-card1:hover {
    background: linear-gradient(135deg, #212428 0%, #303034 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .3);
    filter: none;
  }
  
  /* enable blur others onHover
  .feature-cards:hover .feature-card:not(:hover) {
    filter: blur(3px);
  }
  */
  
  .feature-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .feature-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .7);
  }
  
  .feature-card__icon {
    background: #201a50;
    color: #d6dade;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 5px;
  }

  .feature-card__icon1 {
    background: #0e0e0d;
    color: #f9de14;
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    margin-right: 5px;
  }
  
  .feature-card:hover .feature-card__icon {
    animation: rotate 1s linear infinite;
  }
  
  @keyframes rotate {
    0% {
      transform: rotate(0);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  
  @media (max-width: 1024px) {
    .feature-cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 425px) {
    .feature-cards {
      grid-template-columns: repeat(1, 1fr);
    }
  }






  