.premium-tabs-section {
  /* ========== Premium Tab Buttons ========== */
  /* Hover Effect */
  /* Active Tab */
  /* ========== Tab Content Animation ========== */
}
.premium-tabs-section .premium-tabs .nav-link {
  border-radius: 50px;
  padding: 10px 22px;
  background: #f7f7f7;
  color: #333;
  font-weight: 600;
  border: 2px solid transparent;
  transition: 0.35s ease;
}
.premium-tabs-section .premium-tabs .nav-link:hover {
  background: #ffffff;
  border-color: #0d6efd;
  color: #0d6efd;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.35);
}
.premium-tabs-section .premium-tabs .nav-link.active {
  background: #0d6efd;
  color: #fff !important;
  box-shadow: 0 0 14px rgba(13, 110, 253, 0.45);
}
.premium-tabs-section .tab-animate {
  animation: fadeInUp 0.6s ease both;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.premium-tabs-section .tab-content {
  border: 1px solid lightgrey;
  padding: 20px;
}/*# sourceMappingURL=tabs-navigation-section.css.map */