ul.megamenu {
  position: relative;
  text-align: right;
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Atlas Typewriter';
  display: flex;
  flex-flow: row wrap;
}
ul.megamenu > li {
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media all and (max-width: 768px) {
  ul.megamenu > li {
    width: 100%;
  }
}
ul.megamenu > li > a {
  color: black;
  margin: 0 15px;
  padding: 8px 0;
  font-size: 14px;
  text-decoration: none;
  font-weight: normal;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-bottom: 9px solid transparent;
}
@media all and (max-width: 980px) {
  ul.megamenu > li > a {
    padding: 10px 15px;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
    display: block;
  }
}
ul.megamenu > li > a.current {
  color: #000;
  border-bottom: 9px solid #000;
}
ul.megamenu > li .sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  animation: showshow 0.3s;
  min-width: 200px;
  padding: 10px;
  box-sizing: border-box;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.06);
}
ul.megamenu > li:hover > a {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  color: #000;
  border-bottom: 9px solid #000;
}
ul.megamenu > li:hover .sub {
  display: block;
}
ul.megasubmenu {
  position: relative;
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: initial;
}
ul.megasubmenu a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
ul.megasubmenu a:hover {
  color: #91c6d8;
}
ul.megasubmenu a:hover img {
  transform: scale(1.2);
}
ul.megasubmenu img {
  width: 200px;
  transition: transform 0.5s;
}
ul.megasubmenu .submenu-complete {
  padding: 10px;
  text-align: center;
}
ul.megasubmenu .submenu-complete span {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #000;
}
ul.megasubmenu .submenu-complete {
  padding: 10px;
}
ul.megasubmenu .submenu-complete .submenu-image {
  overflow: hidden;
}
ul.megasubmenu .submenu-complete span {
  display: block;
  padding: 5px 0;
  border-bottom: 1px solid #000;
}
ul.megasubmenu .submenu-simple {
  padding: 0;
}
ul.megasubmenu .submenu-simple span {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #000;
}
@keyframes showshow {
  0% {
    display: block;
    opacity: 0;
    top: 0;
  }
  100% {
    opacity: 1;
    top: 100%;
  }
}
