* {
    /* font-family: 'Open Sans', sans-serif; */
    font-family: 'Poppins', sans-serif;
  }

  h5 {
    font-weight: bold !important;
  }

  .logo img {
    height: 55px;
  }

  .card img {
    width: 50%;
    height: auto;
  }

  .card {
    flex-direction: row !important;
    width: 100%;
    /* box-shadow: none !important; */
    justify-content: center;
    align-items: center;
    box-shadow: none;
    border: none !important;
  }

  .card-title {
    font-weight: bold;
  }

  /* Client section CSS code starts */
  h2 {
    /* text-align: center; */
    padding: 1rem;
    font-weight: bold !important;
  }

  .company-name h2 {
    font-size: 2.6rem;
  }

  /* Fade on scroll code */

  .scrollFade {
    opacity: 1;
    pointer-events: all;
  }

  .scrollFade--hidden {
    opacity: 0;
    pointer-events: none;
  }

  .scrollFade--visible {
    opacity: 1;
    pointer-events: all;
  }

  .scrollFade--animate {
    transition: opacity 0.4s ease-in-out;
  }

  /*------*/
  /* Client section CSS code ends */
  @media (max-width:766px) {
    .carousel {
      margin-top: 8%;
    }

    .logo img {
      height: 45px;
    }

    .card img {
      width: 100%;
    }

    .card {
      flex-direction: column !important;
    }

    .company-name h2 {
      font-size: 1.5rem;
    }
  }
body::-webkit-scrollbar {
width: 5px;
}

body::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}