.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: transparent;
  transition: all 0.3s;
}
.header.fixed {
  background: var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header.fixed .header-logo .logo-img {
  width: 60px;
  margin: 0 auto;
}
.header.fixed .header-logo .logo-txt {
  opacity: 0;
  pointer-events: none;
  transition-delay: 500ms;
  display: none;
}
@media (min-width: 1200px) {
  .header.fixed .header-nav .header-nav-left,
.header.fixed .header-nav .header-nav-right {
    padding: 22px 0;
  }
}
.header.show {
  background: var(--white);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.header.show .header-logo .logo-img {
  width: 60px;
  margin: 0 auto;
}
.header.show .header-logo .logo-txt {
  opacity: 0;
  pointer-events: none;
  transition-delay: 500ms;
  display: none;
}
@media (min-width: 1200px) {
  .header.show .header-nav .header-nav-left,
.header.show .header-nav .header-nav-right {
    padding: 22px 0;
  }
}

.header-logo {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 3;
}
.header-logo .logo-img {
  width: 70px;
  margin: 0 auto 8px;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .header-logo .logo-img {
    width: 80px;
  }
}
.header-logo .logo-txt {
  display: block;
  width: 233px;
  max-width: 233px;
  text-align: center;
  font-family: var(--font-clarendon);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: var(--red);
  text-transform: uppercase;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .header-logo .logo-txt {
    font-size: 16px;
  }
}

.header-nav {
  display: block;
  position: fixed;
  top: 82px;
  left: -100%;
  width: 100%;
  max-width: 375px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
  padding: 40px 0;
  transition: all 0.3s;
  z-index: 2;
}
.header-nav.show {
  left: 0;
  transition: all 0.3s;
}
@media (min-width: 1200px) {
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
    position: relative;
    gap: 32px;
    margin-left: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    top: unset;
    left: unset;
    bottom: unset;
    right: unset;
    max-width: 100%;
    overflow: unset;
    height: auto;
    width: auto;
  }
  .header-nav .header-nav-left,
.header-nav .header-nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 34px 0;
    transition: all 0.3s;
  }
}

.header-nav-link {
  position: relative;
  display: block;
  padding: 8px 16px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
.header-nav-link:hover {
  color: var(--red);
}

.header-widget {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 24px 0;
}
@media (min-width: 1200px) {
  .header-widget {
    margin-left: 24px;
    padding: 0;
  }
}

.hamburger-menu {
  cursor: pointer;
}
@media (min-width: 1199.99px) {
  .hamburger-menu {
    display: none;
  }
}
.hamburger-menu .bar {
  height: 2px;
  background: var(--black);
  margin: 7px 0;
  transition: all 0.55s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 30px;
}
.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);
}
.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);
}

.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;
}

/*# sourceMappingURL=header.css.map */
