.logo_text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-left: 12px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 34px;
  color: #384158;
}
.logo_text span {
  font-size: 16px;
  color: #14bdee;
  font-weight: 600;
  margin-top: 4px;
}
.login_button {
  position: relative;
  overflow: hidden;
  animation: blinkButton 1.2s infinite;
  border-radius: 4px;
  z-index: 10;
}
.login_button a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
  background: #fffc3b;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
}
@keyframes blinkButton {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(255,59,59,0); }
  50% { transform: scale(1.05); box-shadow: 0 0 18px rgba(255,59,59,0.7); }
}
.login_button:hover { animation-play-state: paused; }
.login_button:hover a { background: #e60000; color: #fff; }
.home {
  position: relative !important;
  padding-top: 0 !important;
  margin-top: 130px;
}
.top-news-bar.overlay-ticker {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  border-bottom: 3px solid #384158;
  z-index: 99; 
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.ticker-label {
  background: #00224d;
  color: #fff;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  z-index: 100;
}
.ticker-content { flex: 1; overflow: hidden; }
.ticker-scroll {
  display: flex;
  white-space: nowrap;
  animation: marquee-move 25s linear infinite;
}
.ticker-scroll:hover { animation-play-state: paused; }
.ticker-scroll a {
  color: #000 !important;
  text-decoration: none !important;
  padding-right: 50px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
}
@keyframes marquee-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}
@media only screen and (max-width: 991px) {
  .main_nav { display: none !important; }
  .home { margin-top: 90px !important; }
  .hamburger {
    display: block !important;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger i { font-size: 26px; color: #384158; }
  .logo { width: 50px; height: 50px; }
  .logo img { width: 100%; height: 100%; object-fit: contain; }
  .logo_text { font-size: 22px; margin-left: 10px; }
  .logo_text span { font-size: 12px; margin-top: 2px; }
  .menu {
    width: 300px;
    right: -300px;
    z-index: 1000;
  }
  .menu.active { right: 0; }
}

@media only screen and (max-width: 575px) {
  .top_bar { display: none; }
  .top-news-bar.overlay-ticker { height: 38px !important; }
  .ticker-label { font-size: 11px; padding: 0 8px; }  
  .logo { width: 40px; height: 40px; }
  .logo_text { font-size: 16px; margin-left: 8px; }
  .logo_text span { font-size: 10px; }
  .menu { width: 260px; }
}