.mobile-menu {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  transition: 0.3s ease-in-out;
}

.mobile-menu.active {
  display: block;
}
.main-header {
  top:0px;
}
.custom-footer-bottom {
 
  padding: 15px 0;
  color: #fff;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-row .left {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
}

.footer-row .right {
  display: flex;
  gap: 16px;
}

.footer-link {
  font-family: Montserrat, Arial, sans-serif;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  padding: 0 12px;
  border-left: 2px solid #fff;
}

.footer-link:first-child {
  border-left: none;
}
	
			.footer-action-link {
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 500;
}

.footer-action-link:hover {
  text-decoration: underline;
}

.footer-widget h4 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-widget hr {
  border: 0;
  border-top: 2px solid #fff;
  width: 30px;
  margin: 0 0 10px;
}

.footer-widget .list-link li {
  margin-bottom: 5px;
}

.footer-widget .list-link a {
  color: #ccc;
  text-decoration: none;
}

.footer-widget .list-link a:hover {
  text-decoration: underline;
}
.footer-style-two .list-link li a{
	font-size: 12px;
}


/* -------- SHOW / HIDE -------- */
.desktop-header {
  display: block;
}
.mobile-header {
  display: none;
}

@media (max-width: 768px) {
  .desktop-header {
    display: none !important;
  }
  .mobile-header {
    display: flex !important;
  }
}

/* -------- MOBILE FULLSCREEN MENU -------- */

.mobile-fullmenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 99999;
  padding: 30px;
  transform: translateY(-100%);
  transition: 0.35s ease-in-out;
  overflow-y: auto;
}

.mobile-fullmenu.active {
  transform: translateY(0);
}

.close-button {
  font-size: 30px;
  text-align: right;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
}

.mobile-nav-list > li {
  padding: 14px 0;
  font-size: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-submenu {
  padding-left: 15px;
  margin-top: 10px;
}

.mobile-submenu li {
  padding: 8px 0;
  font-size: 18px;
}

.mobile-btn {
  display: inline-block;
  background: #ff6a00;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 18px;
}

/* Hide mobile header on PC */
.mobile-header {
  display: none;
}

@media (max-width: 768px) {

  .desktop-header {
    display: none !important;
  }

  .mobile-header {
    display: block !important;
    background: #fff;
    border-bottom: 1px solid #eee;
  }

  .mobile-topbar {
    background: #007bff;
    color: #fff;
    padding: 8px;
    text-align: center;
    font-size: 14px;
  }

  .mobile-topbar a {
    color: yellow;
    font-weight: bold;
  }

  .mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
  }

  .mobile-logo {
    width: 130px;
  }

  .mobile-hamburger {
    font-size: 28px;
    cursor: pointer;
  }

  /* Full screen mobile menu */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: white;
    z-index: 9999;
    transform: translateY(-100%);
    transition: 0.3s ease-in-out;
    padding: 20px;
    overflow-y: auto;
  }

  .mobile-menu-overlay.active {
    transform: translateY(0);
  }

  .close-mobile-btn {
    font-size: 28px;
    text-align: right;
    margin-bottom: 20px;
    cursor: pointer;
  }

  .mobile-menu-list li {
    font-size: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  /* Dropdown fix */
  .dropdown-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .dropdown-content li {
    font-size: 16px;
    padding: 8px 0 8px 10px;
    border-bottom: none;
  }
}


@media (max-width: 1023px) {
  .mobile-header {
    display: flex !important;
  }
}