.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 110px;
    overflow: visible;
    z-index: 999;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2)
}

.site-header a {
    text-decoration: none;
}

.top-bar {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--top-bar-bg);
    color: var(--light-text);
    font-size: 25px;
}

.top-bar-socials {
    display: flex;
    gap: 10px;
    padding-top: 5px;
}

.top-bar a {
    color: var(--light-text);
}

.top-bar a:hover {
    filter: brightness(0.7);
    transition: 0.25s;
}

.top-bar-call-us {
    font-size: 20px;
}

.navigation-bar {
    position: absolute;
    top: 50px;
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    font-size: 16px;
}

.navigation-bar nav {
  margin-right: 25px;
}


nav a {
    color: var(--link-text);
    text-decoration: none;
    padding: 10px;
}

nav a:hover {
    background: var(--link-hover-bg);
    transition: 0.25s;
    transform: scale(1.025);
}

.logo {
    padding-top: 5px;
    padding-left: 10px;
}

.logo:hover {
  transform: scale(1.025);
  transition: 0.25s;
}

.logo-img {
    height: 40px;
    width: auto;
    padding: 15px;
}

#main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 99909;
}

/* Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    margin-left: 65px;
    padding: 10px;
    background-color: white;
    overflow: hidden;
}

.nav-dropdown li a {

}

.nav-dropdown.show {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.nav-dropdown li {
  list-style-type: none;
}

.nav-dropdown li a:hover {
  background-size: 100%;
}

#what-we-offer-link {
  display: flex;
  gap: 5px;
}

#dropdown-icon {
  display: inline-block;
  transition: transform .25s ease;
}

#dropdown-icon-div {
  padding-top: 1px;
}

.hamburger {
  /* opacity: 0; */
  display: none;
  /* background: none; */
  /* border: none; */
  font-size: 28px;
  padding: 10px;
  padding-bottom: 0;
  cursor: pointer;
  color: var(--link-text);
}

/*  Which page you're on will be underlined */
#main-nav a.active {
    text-decoration: underline;
}

/* ------ */
/* Mobile */
/* ------ */

@media (max-width: 500px) {
    .top-bar-socials {
      display: none;
    }
}

@media (max-width: 1125px) {

  /* show hamburger */
  .hamburger {
    /* opacity: 1; */
    display: block;
  }

  /* hide desktop nav by default */
  .navigation-bar nav {
    position: absolute;
    top: 60px;          /* below header */
    left: 0;
    width: 100%;
    background: white;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .navigation-bar nav a {
    padding: 12px 0;
    display: block;
  }

  /* when open */
  .navigation-bar nav.open {
    opacity: 1;
    visibility: visible;
  }

  .site-header {
    overflow: visible;
    height: auto;
  }
}

