a.btn:focus {
    outline: none;
    box-shadow: none;
}
  
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease, transform 1.5s ease;
}
  
.fade-in-on-scroll.fade-in {
    opacity: 1;
    transform: translateY(0);
}
  
.gap-2 {
    gap: .5rem;
}
  
  @media (max-width: 992px) {
    .heading {
      font-size: 36px !important;
    }
    .custom-description {
      font-size: 16px !important;
      line-height: 1.5 !important;
    }
  }
  
  @media (max-width: 768px) {
    .heading {
      font-size: 30px !important;
    }
    .custom-description {
      font-size: 14px !important;
      line-height: 1.4 !important;
    }
  }
  
  @media (max-width: 480px) {
    .heading {
      font-size: 24px !important;
    }
    .custom-description {
      font-size: 14px !important;
      line-height: 1.3 !important;
    }