header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(359.6000061035156px);

  position: sticky;
  top: 0;
  left: 0;

  width: 100%;
  height: 100px;
  z-index: 1000;

  transition: all ease 250ms;
}

header.scrolled {
  background-color: #00000d;
}

header .menu {
  display: flex;
  align-items: center;
  height: 100px;
}

header img {
  height: 62px;
  object-fit: contain;

  margin-right: 20px;
}

header .menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;

  margin-bottom: 0 !important;
}

@media (max-width: 1200px) {
  header .menu ul {
    gap: 10px;
  }
}

header .menu ul li a {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;

  color: var(--FONT-REGULAR, #808080);
  font-family: Epilogue;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 111.111% */

  margin-bottom: 0 !important;
}

header .menu ul li a.active {
  color: var(--FONT-BOLD, #ebebeb);
  font-family: Epilogue;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 111.111% */
}

header .btn-contact {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 100px;
  background: #fff;

  color: var(--BG2, #040612);
  font-family: Epilogue;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22.95px; /* 143.438% */
  letter-spacing: -0.17px;
  text-decoration: none;
}

@media (max-width: 992px) {
  header .menu ul {
    display: none;
  }
  header .btn-contact {
    display: none;
  }
}

/* End of header */

.offcanvas img {
  padding: 40px;
  filter: invert(1);
}

.offcanvas ul,
.offcanvas li {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.offcanvas a {
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

@media (min-width: 992px) {
  header button {
    display: none;
  }
}
