/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 01 2026 | 10:37:52 */
.sf-menu-toggle {
  cursor: pointer;
  display: none;
}

#sf-offcanvas {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100%;
  background: #0b1c2d;
  color: #fff;
  padding: 20px;
  transition: 0.4s ease;
  z-index: 9999;
}

#sf-offcanvas.active {
  left: 0;
}

.sf-menu-head {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 20px;
}

.sf-menu {
  list-style: none;
  padding: 0;
}

.sf-menu li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
	margin-left: 20px;
}

.sf-menu li a {
  display: block;
  padding: 14px 0;
  color: #fff;
  text-decoration: none;
}

.sf-menu li a:hover {
  color: #ffd400;
}

.sf-cta {
  display: block;
  margin-top: 20px;
  background: #ffd400;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

#sf-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
/* Active Menu Item */
.sf-menu li a.active {
  color: #ffd400;
  font-weight: 600;
  position: relative;
}

.sf-menu li a.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #ffd400;
  border-radius: 50%;
}



/* Submenu default hidden */
.sf-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 16px;
}

/* Open submenu */
.has-submenu.open > .sf-submenu {
  max-height: 500px; /* enough for items */
}

/* Arrow */
.sf-arrow {
  float: right;
  transition: transform 0.3s ease;
  font-size: 14px;
}

/* Rotate arrow when open OR active */
.has-submenu.open > a .sf-arrow,
.has-submenu > a.active .sf-arrow {
  transform: rotate(180deg);
}

/* Submenu links */
.sf-submenu a {
  font-size: 14px;
  padding: 10px 0;
}

sf-menu,
.sf-submenu {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.sf-menu li,
.sf-submenu li {
  list-style: none;
}
/* Mobile Only */
@media (max-width: 1080px) {
  .sf-menu-toggle {
    display: block;
  }
}