* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Merriweather', serif; */
    font-family: 'Poppins', sans-serif;
  }

  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .logos {
    overflow: hidden;
    padding: 25px;
    margin: 20px 0px 40px 0px;
    background-color: #9ec2f9;
    white-space: nowrap;
    position: relative;
  }
  
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
  }
  
  .logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  
  .logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-flex;
    animation: 100s slide infinite linear;
  }
  
  .logos-slide img {
    height: 100px;
    margin: 0 50px;
  }
  

  /* X-Small devices (portrait phones, less than 576px)
  No media query for `xs` since this is the default in Bootstrap */

  /* Small devices (landscape phones, 320px and up) */
@media (min-width: 320px) {
 .myquicklink{
    display: none;
 }
 .About img{
    margin-top: 0px;
 }
}

 /* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .myquicklink{
    display: block;
  } 
 }

  /* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { }

  /* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}

  /* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  }

  /* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) { }
  