header {
  width: 100%;
  background: #none;
  color: #FFF;
  display: flex;
  justify-content: space-between;
  padding: 2%;
  position: absolute;
  z-index: 1000;
}

#btn-menu {
  display: none;
}

header label {
  font-size: 30px;
  cursor: pointer;
  display: none;
  position: absolute;
}

.menu ul {
  background: #none;
  display: flex;
  list-style: none;
}

.menu ul ul {
  display: none;
}

.menu a {
  display: block;
  padding: 5px 20px;
  color: #FFF;
  text-decoration: none;
  line-height: 5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.menu a:hover {
  background: #none;
  border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #7573c0;
}

.submenu2 {
  background: #fff;
  font-size: 12px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
}
.submenu-largo {
  background: #fff;
  font-size: 12px;
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2; */
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.5);
}

a.text-submenu {
  color: #363636;
  font-weight: 300;  
  line-height: 30px;
  font-size: 1.2em;
}
a:hover.text-submenu {
  color: #fff;
  border: none;
  background: #7573c0;
}

a.text-submenu2 {
  color: #363636;
  font-weight: 300;  
  line-height: 20px;
  text-indent: -10px;
}
a:hover.text-submenu2 {
  color: #fff;
  border: none;
  background: #7573c0;
}

a.text-menu-responsive {
  line-height: 22px;
}

.menu-responsive {
  background: #none;
}


@charset "UTF-8";
.menu a i {
  margin-left: 10px;
}

/* Responsive  */

.menu ul li:hover ul {
  transition: all 0.3s ease;
  display: block;
  position: absolute;
}

@media (max-width: 870px) {
  header label {
    display: block;
    padding-top: 16px;
    padding-right: 16px;
    transition: all 0.4s ease;
    position: relative;
  }
  
  .menu {
    position: absolute;
    left: 0;
    width: 85%;
    transform: translateX(-100%);
    transition: all 0.3s;
  }

  .menu ul {
    flex-direction: column;
    //display: block;
  }
  
  .menu ul li:hover ul {
    display: none;
    position: static;
  }
  
  .menu a i {
    position: absolute;
    right: 16px;
    line-height: 32px;
  }

  .submenu-largo {
    -webkit-column-count: 1; /* Chrome, Safari, Opera */
    -moz-column-count: 1; /* Firefox */
    column-count: 1; */
  }

  a.text-submenu2 {
    text-indent: 0px;
  }
  
  #btn-menu:checked ~ .menu {
    transform: translateX(0%);
  }
  
  .menu-responsive {
    background: #fff;
  }

  a.text-menu-responsive {
    color: #363636;
    font-weight: 400;
    padding: 10px 20px;
    line-height: 22px;
  }

  a:hover.text-menu-responsive {
    background: #7573c0;
    color: #FFF;
  }

}
