/*
 * Theme Name: Fullerton Markets
 * Theme URI: https://fmcn.asia
 * Auther: Chan Hae Loong
 * Description: Custom theme for Fullerton Markets 
 * Version: 1.0
 */
body {
  background-color: #000;
  color: #fff;
}
.navbar-nav .nav-link {
  color: #fff;
}
.navbar-nav .nav-link:hover {
  color: #ffc107;
}
.carousel-item img {
  width: 100%;
  height: auto;
}
.section-title {
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}
.trade-icon {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
}
.btn-warning:hover {
  background-color: #fff;
  color: #212529;
  border-color: #fff;
}
.btn-outline-light.custom-hover:hover {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}
.btn {
  font-size: 16px;
  font-weight: 500;
}
.scroll {
  overflow: hidden;
  white-space: nowrap;
  background: black;
  color: white;
}
.scroll div {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 30s linear infinite;
}
@keyframes ticker {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scroll img.symbol {
  height: 20px;
  vertical-align: middle;
  margin-right: 5px;
}
.scroll span.down {
  color: #ff4d4d;
  font-weight: bold;
  margin-right: 15px;
}
.scroll img.down {
  height: 10px;
  margin-right: 15px;
  vertical-align: middle;
}
.footer-nav a {
  text-decoration: none;
  color: white;
}
.footer-nav a:hover {
  color: #ffc107 !important;
}
.footer-link {
  color: white;
  text-decoration: none;
  font-size: 12px;
}
.footer-link:hover {
  color: #ffc107; !important;
}
.hero-area-v5 {
  padding: 4rem 0;
  background-color: #f8f9fa;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
}
.breadcrumb--classic {
  background: none;
  padding: 0;
  margin-bottom: 1rem;
}
.breadcrumb--classic .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
}
.hero-img img {
  max-width: 100%;
  height: 17rem;
}
.nav-tabs .nav-link {
  color: #6c757d;
  font-weight: bold;
}
.nav-tabs .nav-link.active {
  color: #000000;
}
.list-group-item {
  background-color: transparent;
  color: #000;
  transition: color 0.3s ease;
}
.list-group-item:hover {
  color: #ffbe09;
  background-color: transparent;
}
.list-group-item.active {
  background-color: #ffbe10;
  border: none;
  color: #fff;
}
.custom-active {
  background-color: #ffbe09 !important;
  color: #000 !important;
}    
.tnc-btn {
  background-color: #ffbe10;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}
.tnc-btn:hover {
  background-color: #000;
  color: #fff;
}
.custom-career-img {
  max-height: 580px;
  object-fit: contain;
  box-shadow: none;
  border: none;
  outline: none;
}
.btn-golden {
  background-color: #ffc107;
  color: black;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-golden:hover {
  background-color: black;
  color: white;
}
.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  transition: background-color 0.3s, color 0.3s;
}
.btn-black:hover {
  background-color: #333;
  color: #ffc107;
}
.scroll-wrapper {
  overflow: hidden;
  white-space: nowrap;
  background-color: white;
}
.scroll-track {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
}
.scroll-track img {
  width: 238px;
  height: 238px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .scroll-track img {
    width: 180px;
    height: 180px;
  }
}

