.quik_report {
   display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
   margin-top: 30px;
}

@media (max-width: 599px) {
   .quik_report {
      grid-template-columns: 1fr;
      margin: 0;
   }
}

.quik_report a {
   color: #000;
   text-align: center;
   font-family: var(--font-poppins);
   font-size: 20px;
   font-style: normal;
   font-weight: 500;
   line-height: normal;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 10px;
}

.quik_report a:focus {
   border: none;
   outline: none;
   box-shadow: none;
}




.quik_report a i {
   width: 98px;
   height: 98px;
   background-color: var(--bacground);
   border-radius: 50%;
   color: #0088C5;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 30px;
   box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.15);
}

.quik_report a.active i {
   background-color: var(--blue);
   color: #fff;
}