.defult-header {
  display: none !important;
}

/* HEADER */
#header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  max-width: 100%;
  min-width: 100px;

  background: rgba(14, 16, 20, 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);

  z-index: 500;

  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  margin: 3rem 3rem;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  transition: 0.5s ease;
  max-height: 5em;

  position: relative;
  overflow: hidden;
}

/* glossy highlight */
.header-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.08) 20%,
    rgba(255,255,255,0.02) 40%,
    rgba(255,255,255,0.00) 60%
  );
  opacity: 0.8;
}

/* glossy ring */
.header-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.16)
  );

  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.9;
}

.header-sticky {
  transition: .5s ease;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid #414141;
  border-radius: 0;
  margin: 0;
  box-shadow: 0rem 0rem 1.5rem 0rem var(--navbar-color);
  background: var(--main-bg-color);
  border: none;
}

.header-sticky .circle-btn {
  border-radius: 5px;
  transition: 0.5s ease;
}

.logo {
  display: block;
  margin: auto 0;
}

.logo img {
  max-width: 350px;
}

#header .logo {
  min-width: 150px;
}

.mail-icon {
  max-width: 40px;
  margin: 1.5rem;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
}

.navbar-contents {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  width: 100%;
  height: 100%;
}

.navbar-contents li {
  list-style: none;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.navbar-a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  margin: 10px;
  transition: .5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.navbar-a:hover {
  opacity: 100%;
  transition: .1s;
  color: #09ffdd;
}

/* MOBILE MENU */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  z-index: 500;
  background: var(--main-bg-accent);
}

@media (min-width: 1161px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-nav .logo {
  margin: auto;
}

.burger {
  display: none;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.burger-topping {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all .2s;
  transition: all .2s;
  background-color: white;
}

@media (max-width: 1160px) {
  .burger {
    display: block;
    padding: 1rem;
    right: 10%;
    bottom: 4%;
  }

  .burger.active .burger-topping:nth-child(2) {
    opacity: 0;
  }

  .burger.active .burger-topping:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger.active .burger-topping:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-wrapper {
    position: fixed;
    left: -100%;
    box-shadow: none;
    height: 100%;
    max-height: 100%;
    top: 0;
    margin: 0;
  }

  .header-wrapper.active {
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    width: 100%;
  }

  .header-wrapper .logo {
    display: none;
  }

  .navbar-contents {
    position: fixed;
    left: -100%;
    top: 0;
    gap: 0;
    padding: 61px 0 0 0;
    flex-direction: column;
    background-color: var(--main-bg-color);
    width: 100%;
    text-align: center;
    transition: .3s;
  }

  .navbar-contents.active .circle-btn {
    display: none;
  }

  .navbar-a {
    background: var(--main-bg-color);
    overflow: hidden;
    width: 80%;
    height: 80%;
    border-radius: 10px;
    font-size: 1.5em;
  }

  .navbar-contents li {
    width: 100%;
  }

  .navbar-contents.active {
    left: 0;
  }

  .mobile-nav .logo {
    margin: 0 1rem;
  }

  .logo img {
    max-width: 250px;
  }
}
