@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
}

.font-heading {
  font-family: "Merriweather", serif;
}

a {
  text-decoration: none;
  color: #222;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-notice {
  background-color: #a6e3ff;
}

.navbar-custom {
  background-color: #16a34a;
  /* green-600 */
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #e5e7eb !important;
}

.nav-link.active-link {
  border-bottom: 2px solid #fff;
}

/* Mobile active */
.mobile-active {
  background-color: #15803d;
  font-weight: bold;
  padding-left: 10px;
}

.notice-button:hover {
  background-color: #f3f3f3
}

.blink {
  animation: blink-animation 1s infinite;
}

@keyframes blink-animation {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

footer {
  background-color: #013a44;
  color: #fff;
}

/* Perfect box shadow for cards */
.card {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04) !important;
  border: none;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06) !important;
}

/* heading  */
.heading {
  font-size: calc(16px + 0.5vw);
}

.sub-heading {
  font-size: calc(12px + 0.3vw);
}

/* @media screen and (min-width:576px) {
  
}

@media screen and (min-width:768px) {
  .heading{
    font-size: 22px;
  }
}

@media screen and (min-width:992px) {
  .heading{
    font-size: 22px;
  }
}

@media screen and (min-width:1200px) {
  .heading{
    font-size: 20px;
  }
}

@media screen and (min-width:1440px) {
  .heading{
    font-size: 24px;
  }
} */