/* ===============================
   FONT
================================ */
:root {
  --nx-font: 'FONT_NAME_HERE', sans-serif;
  --nx-accent: #ff4d2d;
  --nx-border: #eaeaea;
}
html,body{
    overflow-x: hidden;
}
a{
}
* ===============================
   HEADER BASE
================================ */
/* ===== MAIN MENU ===== */
.nx-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nx-menu li {
    position: relative;
}

.nx-menu > li > a {
    display: block;
    padding: 10px 0;
    font-family: 'Karla', sans-serif;
    font-weight: 600;
    color: #111;
    text-decoration: none;
}

/* ===== SUB MENU ===== */
.nx-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    border-radius: 8px;
    padding: 8px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 999;
}

.nx-menu li ul li a {
    padding: 10px 16px;
    display: block;
    color: #222;
    font-weight: 500;
}

.nx-menu li ul li a:hover {
    background: #f5f5f5;
}

/* ===== SHOW DROPDOWN ON HOVER ===== */
.nx-menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== DROPDOWN ARROW ===== */
.menu-item-has-children > a::after {
    content: "▾";
    margin-left: 6px;
    font-size: 12px;
}

.nx-header {
  position: relative;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--nx-border);
  z-index: 999;
  transition: all 0.3s ease;
}

.nx-header-inner {
  max-width: 1462px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--nx-font);
}

/* Sticky */
.nx-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    width: 100%;
    background: #fff;
    z-index: 2222222;
}

/* ===============================
   LOGO
================================ */
.nx-logo img {
  height:53px;
  object-fit: contain;
  height: 53px;
    object-fit: contain;
    max-width: 190px;
}

/* ===============================
   NAVIGATION
================================ */
.nx-nav {
  flex: 1;
  text-align: center;
}

.nx-menu {
  display: inline-flex;
  gap: 28px;
  padding: 0;
}

.nx-menu li {
  list-style: none;
}

.nx-menu a {
  font-size: 16px;
  font-weight:600;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: color 0.3s ease;
font-family: 'Karla';
}

.nx-menu .current-menu-item > a,
.nx-menu a:hover {
  color:#A31B00;
}

/* ===============================
   ACTIONS
================================ */
.nx-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search */
.nx-search {
  position: relative;
}

.nx-search input {
  border: 1px solid var(--nx-border);
  border-radius: 24px;
  padding: 8px 36px 8px 14px;
  font-size: 13px;
}
.nx-search-icon{
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.nx-search-icon  svg{
      fill: none;
    width: 19px;
    color: gray;
    margin-bottom: -4px;
}

/* Search Results */
.nx-search-results {
  position: absolute;
  top: 110%;
  left: 0;
  width: 280px;
  background: #fff;
  border: 1px solid var(--nx-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  display: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 999;
}

.nx-search-results a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #111;
}

.nx-search-results a:hover {
  background: #f7f7f7;
}

/* ===============================
   HAMBURGER
================================ */
.nx-hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.nx-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  margin: 5px 0;
}

/* ===============================
   MOBILE MENU
================================ */
.nx-mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--nx-border);
}

.nx-mobile-menu-list li {
  border-bottom: 1px solid var(--nx-border);
}

.nx-mobile-menu-list a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .nx-nav {
    display: none;
  }

  .nx-hamburger {
    display: block;
  }
      .nx-mobile-menu-list a {
    font-size: 15px;
    font-family: 'Karla';
    font-weight: 600;
}
#menu-main-1{
        list-style: none;
        padding: 0px!important;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #FF5722;
    color: #fff;
    text-decoration: none;
}
.nx-hamburger:hover span{
    background: #ffffff;
}
}
@media (max-width:786px){
    .nx-search{
        display: none;
    }
    .nx-logo img{
            width: 200px;
    }
    .nx-mobile-menu-list a {
    font-size: 15px;
    font-family: 'Karla';
    font-weight: 600;
}
#menu-main-1{
        list-style: none;
        padding: 0px!important;
}


}
.footer {
  background: radial-gradient(circle at top, #1a1d21, #0b0c0e);
  color: #fff;
  padding: 60px 20px 20px;
}
.footer-col ul {
    list-style: none;
    padding: 0px;
}
.footer-container {
  max-width: 1290px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col img {
  max-width: 220px;
  margin-bottom: 20px;
}

.footer-col p {
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 15px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li{
  color: #bdbdbd;
  margin-bottom: 14px;
  cursor: pointer;
}
.footer-col ul li a{
  color: #bdbdbd!important;
  margin-bottom: 14px;
  cursor: pointer;
}


.footer-col ul li:hover {
  color: #fff;
}

.newsletter-box {
  display: flex;
  border: 1px solid #fff;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 20px;
}

.newsletter-box input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: #fff;
  outline: none;
}

.newsletter-box button {
  background:#A8290B;
  border: none;
  padding: 0 28px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 40px;
  padding-top: 20px;
  text-align: left;
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .accordion-title {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }

  .accordion-content {
    display: none;
    margin-top: 15px;
  }

  .accordion-content.active {
    display: block;
  }
}
[type=button], [type=submit], button {
    border: 1px solid #000000;
    color: #000000;
    border-radius:3px;
}
[type=button]:focus, [type=button]:hover, [type=submit]:focus, [type=submit]:hover, button:focus, button:hover {
    background-color: #000000;
    color: #fff;
}