.tigh-header {
  background: #fff;
  color: #0b2a4a;
  width: 100%;
  font-family: sans-serif;
}

/* Container */
.tigh-header .tigh-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.social-link{
  color: #000 !important;
  background-color: white;
  padding: 5px;
  width: 24px;
  border-radius: 50%;
}

/* Layout */
.tigh-header .tigh-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.tigh-header .tigh-logo {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
}

.tigh-header .tigh-logo span {
  font-weight: 300;
}

.tigh-header .tigh-logo .tigh-accent {
  color: orange;
}

/* Nav */
.tigh-header .tigh-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.tigh-header .tigh-nav a {
  color: #212020;
  text-decoration: none;
  font-size: 14px;
}

/* Dropdown */
.tigh-header .tigh-dropdown {
  position: relative;
}

.tigh-header .tigh-dropbtn {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.tigh-header .tigh-dropdown-content {
  display: none;
  position: absolute;
  top: 30px;
  background: #fff;
  color: #000;
  min-width: 150px;
  z-index: 999;
}

.tigh-header .tigh-dropdown-content a {
  display: block;
  padding: 10px;
  color: #000;
}

.tigh-header .tigh-dropdown:hover .tigh-dropdown-content {
  display: block;
}

/* Right side */
.tigh-header .tigh-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tigh-header .tigh-btn {
  background: orange;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: bold;
}

.tigh-header .tigh-socials {
  display: flex;
  gap: 10px;
  font-size: 12px;
}

/* Mobile toggle */
.tigh-header .tigh-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile menu */
.tigh-header .tigh-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  background: #fff;
}

.tigh-header .tigh-mobile-menu a {
  padding: 10px 0;
  color: #040404;
  text-decoration: none;
}

.tigh-header .tigh-mobile-menu.active {
  display: flex;
}

/* Responsive */
@media (max-width: 900px) {
  .tigh-header .tigh-nav,
  .tigh-header .tigh-right {
    display: none;
  }

  .tigh-header .tigh-menu-toggle {
    display: block;
  }
}
  /* END OF CUSTOM HEADER CSS */