/* ========================================
   Fixed Header
   ======================================== */

.cyber-desktop-head {
  /* position: fixed; */
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  /* max-width: 1200px; */
  max-width: 1500px;
  z-index: 999;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.head-page {
  height: 500px;
}

.head-page .site-max80 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.head-page .site-max80 h1 {
  padding-top: 124px !important;
  color: #fff;
}

@media (min-width: 1600px) {
  .cyber-desktop-head {
    border-left: solid rgba(255, 255, 255, 0) 24px !important;
    border-right: solid rgba(255, 255, 255, 0) 24px !important;
  }
}

@media (max-width: 980px) {
  #head-main {
    top: 8px;
    width: calc(100% - 24px);
  }

  .head-page {
    height: 250px;
  }

  .head-page .site-max80 h1 {
    padding-top: 70px !important;
  }

  .mobile-main-menu .menu-item {
    padding: 12px 0;
    text-align: center;
  }

  .menu-main-menu-container {
    height: fit-content !important;
  }
}

/* ========================================
   Fixed Header Scroll
   ======================================== */

.head-main-scroll-fixed.active {
  position: fixed;
  top: 0;
  left: 50%;
  max-width: 100%;
  border-radius: 0;
  transform: translateX(-50%);
  z-index: 999;
  animation: headerSlideDown 0.35s ease forwards;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
