.ly_header_attention {
  background-color: #56ABBA;
  color: #FFFFFF;
  padding: 0.5em 30px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  transition: height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.ly_header_attention.is-hidden {
  height: 0;
  padding: 0 30px;
  opacity: 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: transparent;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: hsla(0, 0%, 100%, 0.5);

}

header.header-visible {
  transform: translateY(0);
  background-color: hsla(0, 0%, 100%, 0.5);
}


header.active {
  background-color: hsla(0, 0%, 100%, 0.5);
}

.header-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 81px;
}

.header-container .logo {
  width:120px;
  display: inline-block;
}

.header-btn-group {
  display: flex;
  align-items: center;
  gap: 100px;
}

.header-btn-group .h-nav {
  display: none;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header-btn-group .h-nav.h-nav-visible {
  display: flex;
  opacity: 1;
  animation: fadein 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header-btn-group .h-nav a {
  font-size: 12px;
  font-weight: bolder;
  /* color: #ffffff; */
}

.header-btn-group .h-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-btn-group .h-btns a {
  font-size: 12px;
  font-weight: bold;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 100px;
  background-color: #58B3C4;
  line-height: 1.2;
}

.ham-button {
  display: none;
  width: 32px;
  height: 25px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.ham-button img {
  width: 100%;
  height: 100%;
  display: block;
}

.ham-list {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding: 80px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 6;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.ham-list.active {
  transform: translateX(0);
}

.ham-list a {
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  text-decoration: none;
  width: 100%;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.ham-list a:hover {
  color: #969696;
}

.ham-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 90;
}

.ham-overlay.active {
  opacity: 1;
  visibility: visible;
}

.black-btn {
  display: none !important;
}

.white-btn {
  display: block !important;
}

.white-logo {
  display: block !important;
}

.black-logo {
  display: none !important;
}

.black-logo-visible {
  display: block !important;
}

.white-logo-visible {
  display: none !important;
}

@media (max-width: 1280px) {
  .header-btn-group {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .ly_header_attention {
    font-size: 12px;
    padding: 0.5em 15px;
  }

  .header-container {
    padding: 15px;
  }

  .header-container .logo {
    width: 100px;
  }

  .header-btn-group {
    display: none;
  }

  .ham-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .black-ham-btn-visible {
    display: block !important;
  }

  .white-ham-btn-visible {
    display: none !important;
  }

  .logo {
    display: flex;
  }
}