
.hotline-fixed {
  animation: ring 2s infinite ease-in-out, glow 1.5s infinite ease-in-out;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0657c1;
  padding: 5px 5px;
  position: relative;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  padding: 8px;
}

.menu-toggle {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 66.66%;
  height: 100%;
  background: rgb(255, 255, 255);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  padding: 20px;
  transition: left 0.3s ease;
}

.side-menu ul {
  list-style: none;
  padding: 0;
}

.side-menu li {
  margin: 15px 0;
}

.side-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}

.close-btn {
  font-size: 24px;
  background: none;
  border: none;
  float: right;
  cursor: pointer;
  margin-bottom: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  display: none;
}

.side-menu.show {
  left: 0;
}

.overlay.show {
  display: block;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}

.hide-on-mobile {
  display: list-item;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none;
  }
}