.quick-links {
    margin-top: 200px;
    .new-classs{
      overflow: scroll;
      &::-webkit-scrollbar{
        display: none;
      }
    }
    @media(max-width:1200px){
      margin-top: 200px;
    }
  }
  
  .quick-links .boxes {
    display: flex;
    gap: 20px;
    /* overflow: hidden; */
    width: 120%;
    justify-content: start;
    flex-wrap: wrap;

  }
  .quick-links .boxes .box {
    height: 130px;
    width: 237px;
    background-color: var(--main-color);
    border-radius: 20px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    @media (max-width:991px){
      width: 160px;
    }
  
  }
  
  .quick-links .boxes .box i {
    color: #fff;
    font-size: 42px;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }
  
  .quick-links .boxes .box a {
    text-decoration: none;
  }
  
  .quick-links .boxes .box p {
    color: #fff;
    font-size: 18px;
    z-index: 2;
    margin: 0;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    .quick-links {
      margin-top: 50px;
    }
  }

  @media (max-width: 767.98px) {
    .quick-links .boxes {
    overflow-x: auto;
    /* scrollbar-width: thin; */
  }
  .quick-links .boxes {
    flex: 0 0 auto;
  }
  }