.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.header.fixed {
  background: #0d0d0d;
}

.header-main {
  padding: 15px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 1400px) {
  .header-main {
    padding: 20px 0;
  }
}

.header-logo {
  flex: 0 0 auto;
  width: 127px;
}

.header-nav {
  display: block;
  position: fixed;
  top: var(--header);
  right: -100%;
  width: 100%;
  max-width: 375px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  padding: 40px 0;
  transition: all 0.3s;
  z-index: 2;
}
.header-nav.show {
  right: 0;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .header-nav {
    display: flex;
    top: 0;
    flex-wrap: wrap;
    flex-direction: row;
    position: relative;
    gap: 24px;
    margin-left: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    top: unset;
    right: unset;
    max-width: 100%;
    overflow: unset;
    height: auto;
    width: auto;
  }
}

.header-nav-link {
  position: relative;
  padding: 4px 16px;
  border-radius: 80px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
  display: block;
}
@media (min-width: 1200px) {
  .header-nav-link {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
.header-nav-link::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: repeating-conic-gradient(from var(--a), rgba(163, 163, 0, 0.6), rgba(163, 163, 0, 0.2), rgba(163, 163, 0, 0.6), rgba(163, 163, 0, 0.2));
  animation: rotating 4s linear infinite;
  opacity: 0;
  border-radius: 24px;
}
.header-nav-link::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .header-nav-link:hover {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(0);
  }
  .header-nav-link:hover::before {
    opacity: 1;
  }
  .header-nav-link:hover::after {
    opacity: 1;
  }
}

.header-widget {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .header-widget {
    margin-left: 24px;
  }
}

.widget-lang {
  position: relative;
}
.widget-lang--current {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--white);
}
.widget-lang--current::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: repeating-conic-gradient(from var(--a), rgba(163, 163, 0, 0.6), rgba(163, 163, 0, 0.2), rgba(163, 163, 0, 0.6), rgba(163, 163, 0, 0.2));
  animation: rotating 4s linear infinite;
  opacity: 0;
  border-radius: 24px;
}
.widget-lang--current::after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 24px;
  opacity: 0;
}
.widget-lang--option {
  position: absolute;
  padding: 0;
  top: 100%;
  width: 100%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  transition: all 0.2s;
  pointer-events: none;
}
.widget-lang--option-style {
  padding: 20px 10px;
  border-radius: 0px 0px 10px 10px;
  background: #fff;
  backdrop-filter: blur(10px);
  box-shadow: 0px 0px 20px 0px rgba(50, 76, 151, 0.1);
}
.widget-lang--option-style * {
  display: block;
  font-size: 14px;
  line-height: 1.3571428571;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 4px;
  position: relative;
  text-decoration: none;
}
.widget-lang--option-style *:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .widget-lang:hover .widget-lang--current {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(0);
  }
  .widget-lang:hover .widget-lang--current::before {
    opacity: 1;
  }
  .widget-lang:hover .widget-lang--current::after {
    opacity: 1;
  }
}
.widget-lang.show .widget-lang--option {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition: all 0.2s;
  z-index: 1;
}

.hamburger-menu {
  cursor: pointer;
  margin-left: 27px;
}
@media (min-width: 1199.99px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu .bar {
  height: 2px;
  background: var(--white);
  margin: 7px 0;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 30px;
}
.hamburger-menu .bar:nth-child(1) {
  width: 16px;
}
.hamburger-menu .bar:nth-child(3) {
  width: 22px;
}
.hamburger-menu.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .bar:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
  width: 30px;
}
.hamburger-menu.active .bar:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
  width: 30px;
}

.header-overlay {
  position: fixed;
  top: var(--header);
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.3s;
}
.header-overlay.show {
  display: block;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
/* Custom property for the rotation angle */
@property --a {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
/* Keyframes for the rotating animation */
@keyframes rotating {
  0% {
    --a: 0deg;
  }
  100% {
    --a: 360deg;
  }
}

/*# sourceMappingURL=header.css.map */
