.header-wrap{}
.header-top {
  height: 63px;
  background: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.header-top-l {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 34px;
}
.header-logo {
  height: 100%;
  padding: 0 10px;
  background: #b10d1d;
  display: flex;
  align-items: center;
}

.header-nav-wrap {
  flex-wrap: wrap;
  min-height: 62px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1em;
  white-space: nowrap;
}
.header-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  column-gap: 2em;
  max-width: 666px;
  flex: 1;
  flex-wrap: wrap;
}
.header-nav > li {
  font-size: 0.875rem;
  position: relative;
  height: 62px;
  padding-top: 20px;
}
.header-nav > li:hover {
  border-bottom: 3px solid #b10d1d;
}
.header-nav .nav-icon{ transform: rotate(90deg); display: inline-block;
    transform: rotate(-90deg);
    margin-left: 8px;
}
.header-nav .nav-suffix {
  color: #b10d1d;
}
.nav-dropdown{ 
	position: absolute; 
	display: none;     
	top: 62px;
    z-index: 2;
    background: white;
    left: 50%;
    transform: translate(-50%);
	padding: 15px 5px;
	border: 1px solid #aeaeae70;
    border-top: none;
	box-shadow: 0px 10px 40px -3px rgba(0,0,0,0.1);
}
.nav-dropdown>li{ padding: 10px 27px; }
.nav-dropdown>li:hover{ color: #b10d1d; }
 
.header-nav > li:hover .nav-icon{ color: #b10d1d; }
.header-nav > li:hover .nav-dropdown{ display: block; }
.header-nav-r {
  display: flex;
  align-items: center;
  gap: 30px;
}
.btn-co {
  height: 38px;
  padding: 0 29px;
  color: white;
  background: black;
  border-radius: 4px;
  cursor: pointer;
}
.btn-search {
  cursor: pointer;
}
@media only screen and (max-width: 1440px) {
	.header-nav{ max-width: 766px; }
}