

a {
  text-decoration: none;
  color: inherit;
}

* {
  box-sizing: border-box;
}

.menu {
  display: block;
  position: relative;
  cursor: pointer;
}

.menu-title {
  display: block;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s background-color;
}



.menu:hover a{
  color: #000;
}





.menu-dropdown {
  min-width: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  top: 60px;
  background: #ebebeb;
  z-index: 100;
  transition: 0.5s padding, 0.5s background;
}



.menu:not(:hover) > .menu-dropdown {
  background: #dddddd;
  z-index: 99;
  height: 0;
  visibility: hidden;
}

.menu:hover> .menu-dropdown {
  background: #dddddd;
  z-index: 99;
}

.menu-dropdown > * {
  overflow: hidden;
  padding: 10px;
  background: transparent;
  white-space: nowrap;
  transition: 0.5s height cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s padding cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s margin cubic-bezier(0.73, 0.32, 0.34, 1.5), 0.5s 0.2s color, 0.2s background-color;
}

.menu-dropdown > *:hover {
  background: #1e2470;
}
.menu-dropdown > *:hover a{
  color: #fff;
}

.menu-dropdown a{
  
  padding: 0 !important;
}
.menu-dropdown a:hover{
  
  padding: 0 !important;
}


.menu:not(:hover) > .menu-dropdown > * a{
  margin: 0;
  color: rgba(25, 25, 25, 0) !important;
  transition: 0.5s 0.1s height, 0.5s 0.1s padding, 0.5s 0.1s margin, 0.3s color, 0.6s visibility;
  z-index: 99;
  opacity: 1;
  padding: 0;
}
.menu:not(:hover) > .menu-dropdown > * {
  

  margin: 0;
  color: rgba(25, 25, 25, 0) !important;
  transition: 0.5s 0.1s height, 0.5s 0.1s padding, 0.5s 0.1s margin, 0.3s color, 0.6s visibility;
  z-index: 99;
  opacity: 1;
  padding: 0;
}

.hList > * {
  float: left;
}

.hList > * + * {
  margin-left: 0;
}
