:root {
  --hf-bg: #031b44;
  --hf-accent: #3fdcef;
  --hf-text: #ffffff;
  --hf-dark: #0a042c;
  --hf-nav: #1c3258;
}

.cnt-w2-mx {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.lp-h9-hdr {
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  background-color: var(--hf-bg);
}

.hf-hdr-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.lg-x1-ico {
  width: 108px;
  height: 93px;
  object-fit: contain;
}

.nv-r3-lst {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lk-q7-itm {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  color: var(--hf-text);
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 10px 15px;
}

.lk-q7-itm.highlight {
  background-color: var(--hf-nav);
  padding: 12px 24px;
  border-radius: 56px;
  font-weight: 700;
}

.lk-q7-itm:hover {
  color: var(--hf-accent);
}

.br-m1-tgl {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 10px;
}

.br-m1-tgl span {
  width: 32px;
  height: 3px;
  background-color: var(--hf-text);
  transition: 0.3s;
}

.br-m1-tgl.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.br-m1-tgl.active span:nth-child(2) {
  opacity: 0;
}

.br-m1-tgl.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.ft-y4-sec {
  background-color: var(--hf-bg);
  border-top: 1px solid var(--hf-accent);
  padding: 64px 0;
}

.ft-r8-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.ft-i2-logo {
  width: 108px;
  height: 93px;
  object-fit: contain;
}

.ft-n6-nav {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 32px;
  row-gap: 24px;
  justify-content: end;
}

.ft-a1-lnk {
  color: var(--hf-text);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.ft-a1-lnk:hover {
  color: var(--hf-accent);
}

.ft-p5-dis {
  max-width: 1520px;
  margin: 0 auto 40px;
  color: var(--hf-text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  opacity: 0.9;
}

.ft-c3-copy {
  color: var(--hf-text);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
}

@media (max-width: 1100px) {
  .ft-r8-top {
    flex-direction: column;
    align-items: center;
  }

  .ft-n6-nav {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .lp-h9-hdr {
    height: 90px;
  }

  .br-m1-tgl {
    display: flex;
  }

  .nv-r3-lst {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background-color: var(--hf-bg);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s;
    z-index: 999;
  }

  .nv-r3-lst.active {
    left: 0;
  }

  .lg-x1-ico {
    width: 80px;
    height: 70px;
  }

  .ft-y4-sec {
    padding: 48px 0;
  }

  .ft-n6-nav {
    grid-template-columns: repeat(2, max-content);
    column-gap: 24px;
    row-gap: 16px;
  }

  .ft-a1-lnk {
    font-size: 18px;
    line-height: 1.3;
  }
}
