nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

nav li {
  margin: auto;
}

/* Top Nav */

.top-nav-container {
  background: white;
  position: relative;
  z-index: 104;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 80px;
}

.nav-logo-container {
  width: 300px;
}

.nav-cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-socials i {
  font-size: 25px;
  margin: 0 10px;
}

.nav-cta-buttons button {
  margin: 0 5px;
}

.nav-cta-buttons .btn-red,
.nav-cta-buttons .btn-white {
  font-size: 16px ;
  padding: 4px 16px !important;
}

.nav-cta-buttons i {
  font-size: 20px;
}

.mobile-nav-grid {
  display: none;
}

/* Bottom Nav */

.bottom-nav-container {
  background: var(--dark-red);
  color: white;
  z-index: 101;
  transition: all 600ms ease;
}

.nav-list {
  list-style: none;
  padding: 0px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-item {
  display: inline-block;
  padding: 15px 20px;
  white-space: nowrap;
  color: white;
}

.nav-item a {
  color: white;
}

.nav-item:hover a {
  background: white;
  color: var(--dark-red) !important;
}

.nav-item:hover {
  background: white;
  color: var(--dark-red) !important;
}

.nav-item.active {
  font-weight: 500 !important;
}

.dropdown-content {
  transition: all 200ms ease;
  transform-origin: top;
  transform: scaleY(0) translateX(-20px);
  margin-top: 15px;
  position: absolute;
  background-color: #f9f9f9;
  color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-btn i {
  font-size: 15px;
  margin-left: 5px;
}

.gg-chevron-down {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  transform: scale(var(--ggs, 1));
  width: 10px;
  height: 15px;
  border: 2px solid transparent;
  transition: 200ms all ease;
}
.gg-chevron-down::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  /* left: 4px;
  top: 2px */
}

.gg-chevron-down.spin {
  transform: rotate(180deg) translateY(-5px);
} 

.dropdown-content .nav-link {
  display: block;
  width: 100%;
  padding: 20px;
  font-weight: lighter !important;
}

.dropdown-content .nav-link:hover {
  background: var(--dark-red);
  color: white !important;
}

.dropdown:hover .dropdown-content {
  transform: scale(1) translateX(-20px);
}

.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: var(--charcoal);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: 100;
}

/* Mobile */

.mobile-navbar-slider {
  display: none;
}
