/* @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;1,400&display=swap"); */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: #fff;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  height: 100%;
}

.nav-item {
  position: relative;
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: row;
}

/* 
.nav-item::before {
  position: absolute;
  width: 1px;
  height: 14px;
  background: #363636;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: " ";
} */

/* .nav-item:first-child::before {
  display: none;
} */

.nav-link {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  color: #000000;
  padding: 0;
  text-decoration: none;
}


.nav-cur {
  color: #1D3F94;
}

.nav-cur .nav-link {
  color: #1D3F94;
  font-weight: 600;
}

.nav-cur::after,
.nav-item:hover::after {
  position: absolute;
  content: " ";
  width: 29px;
  height: 2px;
  background: rgb(1, 64, 153);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.nav-item dl {
  display: none;
  position: absolute;
  top: 100%;
  width: 100%;
  background: #014099;
  padding: 5px;

}

.nav-item dl>dd {
  font-size: 14px;
  width: 100%;
  text-align: center;
  /* border-bottom: 1px solid #EEEEEE; */
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.nav-item dl>dd:last-child {
  border-bottom: 0;
}

.nav-item dl>dd a {
  color: #fff;
}

.nav-item dl>dd:hover,
.nav-item dl>dd.nav-sub-cur {
  /* background: rgb(1, 64, 153); */
  background: #003683;
}

.nav-item dl>dd:hover a,
.nav-item dl>dd.nav-sub-cur a {
  color: #fff;
}

.nav-item:hover dl {
  display: block;
}

.tel {
  font-weight: 300;
  font-size: 16px;
  color: #363636;
  display: inline-flex;
  align-items: center;
}

.tel-num {
  text-decoration: none;
  color: #363636;
  padding: 0 3px;
}

.tel-num:hover {
  color: #1D3F94;
}

.lan .cur {
  display: inline-flex;
  width: 30px;
  height: 30px;
  background: #1D3F94;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-item:hover>.nav-link {
  color: #1D3F94;
  font-weight: 600;
}

.nav-item:hover .nav-sub-link:hover {
  color: #fff !important;
}

.nav-logo {
  font-size: 0px;
}

/* Large devices (desktops, 992px and up) */
/* @media (max-width: 1299.98px) {
  .nav-item {
    width: auto;
    padding: 20px;
    margin: 0;
  }

  .nav-item::before {
    display: none;
  }

  .nav-item dl {
    display: block;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 5rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 0px;
    text-align: center;
    transition: 0.3s;
    height: auto;
    padding-bottom: 30px;
  }

  .nav-mask {
    position: fixed;
    left: -100%;
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 10;
  }

  .nav-mask.active {
    left: 0;
  }

  .nav-menu.active {
    left: 0;

  }

  .nav-item {}

  .nav-link {
    color: #333;

  }

  .nav-cur .nav-link {
    color: #1D3F94;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }


}

@media (max-width: 575.98px) {
  .tel {
    font-size: 10px;
  }
} */