/* SIDEMENU TERANGASKILLS */
body.ts-menu-open {
  overflow: hidden;
}

.ws-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(2, 6, 23, .62);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.ws-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ws-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(520px, 92vw);
  height: 100%;
  background: #ffffff;
  color: #0f172a;
  box-shadow: 30px 0 90px rgba(15, 23, 42, .28);
  transform: translateX(-105%);
  transition: transform .42s cubic-bezier(.22, 1, .36, 1);
  overflow-y: auto;
}

.ws-menu-overlay.is-open .ws-menu-panel {
  transform: translateX(0);
}

.ws-menu-colorbar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 7px;
}

.ws-menu-colorbar .green { background: #067545; }
.ws-menu-colorbar .yellow { background: #F0B443; }
.ws-menu-colorbar .red { background: #D93A34; }
.ws-menu-colorbar .blue { background: #0386A9; }
.ws-menu-colorbar .purple { background: #402966; }

.ws-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 30px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ws-menu-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ws-menu-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.ws-menu-brand strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  color: #0f172a;
}

.ws-menu-brand span {
  display: block;
  margin-top: 6px;
  max-width: 260px;
  font-size: 12px;
  line-height: 1.35;
  color: #64748b;
  font-weight: 700;
}

.ws-menu-close {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease;
}

.ws-menu-close:hover {
  transform: rotate(90deg);
  background: #402966;
}

.ws-menu-body {
  padding: 34px 30px 28px;
}

.ws-menu-intro span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(3, 134, 169, .10);
  color: #0386A9;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ws-menu-intro h2 {
  margin: 18px 0 0;
  font-size: 54px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -.05em;
  color: #0f172a;
}

.ws-menu-intro p {
  margin: 16px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.ws-menu-nav {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.ws-menu-nav a {
  display: grid;
  grid-template-columns: 46px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
  color: #0f172a;
  text-decoration: none;
  transition: all .28s ease;
}

.ws-menu-nav a:hover,
.ws-menu-nav a.active {
  background: #0f172a;
  color: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
}

.ws-menu-number {
  color: #0386A9;
  font-size: 12px;
  font-weight: 950;
}

.ws-menu-nav a:hover .ws-menu-number,
.ws-menu-nav a.active .ws-menu-number {
  color: #F0B443;
}

.ws-menu-label {
  font-size: 22px;
  font-weight: 950;
}

.ws-menu-arrow {
  font-size: 24px;
  justify-self: end;
}

.ws-menu-footer {
  padding: 26px 30px 34px;
  border-top: 1px solid rgba(15, 23, 42, .08);
}

.ws-menu-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ws-menu-socials a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #0f172a;
  text-decoration: none;
  font-weight: 950;
  transition: all .25s ease;
}

.ws-menu-socials a:hover {
  background: #0386A9;
  color: #ffffff;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .ws-menu-header,
  .ws-menu-body,
  .ws-menu-footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .ws-menu-intro h2 {
    font-size: 42px;
  }

  .ws-menu-label {
    font-size: 19px;
  }
}
