
.gnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  width: 100%;
}
.downMenu {
  position: absolute;
  left: auto;
}
.gnav-list__item {
  text-align: center;
  list-style: none;



}
.gnav-list__item a {
  background-color: #cacaccdc;
  color: #000000;
  transition: 0.4s ease;
  text-decoration: none;


  
}
.gnav-list__item > a {
  position: relative;
  display: block;
  padding: 15px 0 0;
  font-size: 18px;
  font-weight: bold;
  width: 150px;
  height: 80px;
  box-sizing: border-box;;
  transition: 0.4s ease;
  border: 1px solid transparent;
  background-position: top 25px center;
  background-repeat: no-repeat;
  background-size: auto;
}
.gnav-list__item > a span {
  color: #000000;
  display: block;
}

.gnav-list__item > a:hover {
  border-bottom: 3px solid yellow;
  background-color: #000000;
  color: #ffffff;
}
.gnav-list__item > a.border-hover {
  border-bottom: 3px solid yellow;
}
.downMenu-list{
  list-style: none;
  padding: 0;
}
.downMenu-list__item a {
  display: block;
  padding: 10px 0 0;
  width: 250px;
  height: 56px;
  font-size: 14px;
  box-sizing: border-box;
  border-top: 1px solid #000000;
  border-bottom: 0px solid transparent;
  transition: 0.2s ease;
  background-position: bottom 10px center;
  background-repeat: no-repeat;
  background-size: auto;
}


.downMenu-list__item > a:hover {
  background-color: #000000;
  color: #ffffff; 
}









