/* Add padding to body to account for fixed header */


.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
  height: 90px;
  padding: 0;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* @media (min-width: 768px) {
  .main-header {
    height: 90px;
    padding: 0;
  }
} */
.main-header.scrolled {
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
}

.header-logo {
  flex-shrink: 0;
}
.header-logo img {
  width: 156px;
  height: auto;
}
@media (min-width: 768px) {
  .header-logo img {
    width: 161px;
  }
}

.desktop-nav {
  gap: 3px;
}

.nav-dropdown {
  position: relative;
}
  .nav-dropdown.active .nav-link-btn .nav-link-inner {
    background-color: rgba(255, 111, 60, 0.1);
    color: #EB1E13;
  }
.nav-dropdown.active .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0);
  pointer-events: auto !important;
}

.nav-link-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  /* padding: 21px 12px; */
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  cursor: pointer;
  transition: color 300ms ease;
}
.nav-link-btn .nav-link-inner {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 300ms ease;
}
  .nav-link-btn:hover .nav-link-inner {
    background-color: rgba(255, 111, 60, 0.1);
    color: #EB1E13;
  }
.nav-link-btn .dropdown-icon {
  width: 16px;
  height: 16px;
  margin-top: -2px;
}

.nav-link-direct {
  padding: 33px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  text-decoration: none;
  transition: color 300ms ease;
}
  .nav-link-direct:hover {
    color: #EB1E13;
  }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 16px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 300ms ease;
  pointer-events: none;
  z-index: 1000;
  display: block;
}
.dropdown-menu.products-dropdown {
  left: 0;
  transform: translateY(-8px);
  width: auto;
  min-width: 650px;
}
.nav-dropdown.active .dropdown-menu.products-dropdown {
  transform: translateY(0) !important;
}
.dropdown-menu.solutions-dropdown {
  left: 50%;
  transform: translate(-50%, -8px);
  width: 814px;
}
.nav-dropdown.active .dropdown-menu.solutions-dropdown {
  transform: translate(-50%, 0) !important;
}
.dropdown-menu.resources-dropdown {
  left: 50%;
  transform: translate(-50%, -8px);
  width: 598px;
}
.nav-dropdown.active .dropdown-menu.resources-dropdown {
  transform: translate(-50%, 0) !important;
}

.dropdown-content {
  display: flex;
  gap: 24px;
}

.dropdown-col {
  flex: 1;
  width: 255px;
}
.dropdown-col.dropdown-col-left {
  min-width: 255px;
  max-width: 255px;
}
.dropdown-col.dropdown-col-middle {
  padding-left: 16px;
  border-left: 1px solid #E5E7EB;
  width: 225px;
}
.dropdown-col.dropdown-col-right {
  background-color: #F6F7F9;
  border-radius: 8px;
  padding: 8px;
  width: 300px;
  min-width: 300px;
  max-width: 300px;
}

.dropdown-section {
  margin-bottom: 16px;
}
.dropdown-section:last-child {
  margin-bottom: 0;
}

.dropdown-category {
  font-size: 18px;
  font-weight: 600;
  color: #1A1B23;
  padding: 8px 12px 12px 12px;
  margin: 0;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dropdown-list li {
  padding-bottom: 0 !important;
}
.dropdown-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  font-size: 16px;
  color: #1A1B23;
  text-decoration: none;
  border-radius: 6px;
  transition: all 300ms ease;
}
  .dropdown-list a .chevron-right {
    opacity: 1;
    stroke: #1A1B23;
    transition: all 300ms ease;
    margin-left: auto;
    flex-shrink: 0;
  }
  .dropdown-list a:hover {
    font-weight: 500;
    color: #EB1E13;
  }
  .dropdown-list a:hover .chevron-right {
    stroke: #EB1E13;
  }
.dropdown-list.player-list li{
  margin-bottom: 6px;
}
.dropdown-list.player-list a {
  background-color: #ffffff;
}
  .dropdown-list.player-list a .chevron-right {
    opacity: 1;
    stroke: #1A1B23;
    transition: all 300ms ease;
  }
  .dropdown-list.player-list a:hover {
    color: #EB1E13;
  }
  .dropdown-list.player-list a:hover .chevron-right {
    stroke: #EB1E13;
  }
.dropdown-list.player-list a.view-all-link {
  background-color: transparent !important;
}

.view-all-link {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
  gap: 16px;
  font-weight: 700;
}
.view-all-link:hover {
  font-weight: 700;
}
.view-all-link svg {
  flex-shrink: 0;
}

.promo-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px;
  padding-bottom: 8px;
  text-align: center;
  overflow: hidden;
  margin-bottom: 8px;
  width: 100%;
  max-width: 100%;
}
.promo-card .promo-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  object-fit: cover;
}
.promo-card .promo-link-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  justify-content: flex-start;
}
.promo-card .promo-link {
  display: inline-block;
  text-decoration: underline;
  max-width: 80%;
  text-align: left;
  font-size: 14px;
  color: #1A1B23;
}
  .promo-card .promo-link:hover {
    color: #EB1E13;
  }
.promo-card .promo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  flex-shrink: 0;
}

.header-actions {
  gap: 16px;
}
.header-actions .btn {
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 300ms ease;
}
.header-actions .btn-link {
  color: #1A1B23;
  background-color: #ffffff;
  border: none;
}
  .header-actions .btn-link:hover {
    color: #EB1E13;
  }
  .header-actions .btn-outline-primary {
    color: #EB1E13;
    border: 1px solid #EB1E13;
    background-color: #ffffff;
  }
.header-actions .btn-outline-primary:hover {
  box-shadow: 0 4px 12px rgba(255, 111, 60, 0.2);
}
  .header-actions .btn-primary {
    color: #ffffff;
    background-color: #EB1E13;
    border: 1px solid #EB1E13;
  }
.header-actions .btn-primary:hover {
  background-color: #e55a2a;
  border-color: #e55a2a;
}

.mobile-menu-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
}
.hamburger-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1A1B23;
  border-radius: 2px;
  transition: all 300ms ease;
}

.mobile-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 0 32px 12px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 300ms ease;
  z-index: 999;
}
/* @media (min-width: 768px) {
  .mobile-menu {
    top: 90px;
  }
} */
.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 68px);
}
@media (min-width: 768px) {
  .mobile-menu-content {
    min-height: calc(100vh - 90px);
  }
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.mobile-menu-list .mobile-menu-item {
  border-bottom: 1px solid #E5E7EB;
}

.mobile-menu-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px;
  background-color: #ffffff;
  border: none;
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  text-align: left;
  cursor: pointer;
  transition: all 300ms ease;
}
  .mobile-menu-toggle:hover, .mobile-menu-toggle.active {
    background-color: #FFF2EB;
    color: #EB1E13;
  }
  .mobile-menu-toggle.active .mobile-chevron {
    transform: rotate(180deg);
    stroke: #EB1E13;
  }

.mobile-menu-link {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 20px 16px;
  background-color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  text-decoration: none;
  transition: all 300ms ease;
}
  .mobile-menu-link:hover {
    background-color: #FFF2EB;
    color: #EB1E13;
  }

.mobile-chevron {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
  stroke: #9CA3AF;
}

.mobile-submenu {
  display: none;
  padding: 16px;
  background-color: #F9FAFB;
}
.mobile-submenu.active {
  display: block;
}

.mobile-submenu-section {
  margin-bottom: 24px;
}
.mobile-submenu-section:last-child {
  margin-bottom: 0;
}
.mobile-submenu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-submenu-section ul li {
  margin-bottom: 0;
}
.mobile-submenu-section ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  text-decoration: none;
  transition: color 300ms ease;
}
  .mobile-submenu-section ul a:hover {
    color: #EB1E13;
  }
.mobile-submenu-section ul a.view-all-link {
  gap: 16px;
  justify-content: flex-start !important;
  font-weight: 700;
}

.mobile-submenu-title {
  font-size: 18px;
  font-weight: 600;
  color: #1A1B23;
  margin-bottom: 0;
  padding: 12px;
}

.mobile-submenu-title-link {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: #1A1B23;
  padding: 12px;
  text-decoration: none;
}
  .mobile-submenu-title-link:hover {
    color: #EB1E13;
  }

body.menu-open {
  overflow: hidden;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*# sourceMappingURL=header.css.map */
