@import 'https://fonts.googleapis.com/css?family=Roboto:400,500';
body{
    height: 100%;
}
.ancla{
    position: absolute;
    top: -200px;
    padding-top: 200px;
}
.cont_menu_servicios{
    width: 100%;
    background: #4f0a59;
    position: fixed;
    top: 118px;
    z-index: 1;
}
.container {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: 1280px !important;
}
.mega-menu {
    opacity:0;
    visibility:hidden;
    /*z-index: -900;*/
    left: 0;
    top: 49px;
    position: absolute;
    text-align: left;
    width: 100%;
    transition: all 0.15s linear 0s;
    background: #6d107a;
    padding: 10px 0;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.colu{
    width: 25%;
}
.colu2{
    width: 100%;
}
.menu_level_2{
    padding-right: 30px;
}
.menu_level_2 li{
    margin-bottom: 0.7em;
    line-height: 95%;
}
.menu_level_2 li::marker {
    color: #fff;
}
.menu_level_2 li a{
    color: #e0a8f2;
    font-size: .8em;
    text-decoration: none;
    transition: color 0.3s ease;
    transition-property: all;
    transition-duration: 0.4s;
}
.menu_level_2 li a:hover{
    color: #fff;
}

.menu_level_3{
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.menu_level_3 li{
    width: 20%;
    padding:5px;
    line-height: 100%;
    list-style: none;
}
.menu_level_3 li::marker {
    color: #fff;
}
.menu_level_3 li a{
    color: #fff;
    font-size: .8em;
    text-decoration: none;
    transition: color 0.3s ease;
    transition-property: all;
    transition-duration: 0.4s;
    background: #861a95;
    /*display: block;*/
    display: flex;
    height: 100%;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}
.menu_level_3 li a:hover{
    color: #fff;
    background: #000;
}
/* #hoverable Class Styles */
.hoverable {
    width: 200px;
    position: static;
}
.hoverable > a{
    font-family: 'DM Serif Display', serif;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
    display: block;
    width: 200px;
}
.hoverable > a:hover{
    color: #ff00ff;
}
.hoverable > a:after {
    content: "\25BC";
    font-size: 10px;
    padding-left: 6px;
    position: relative;
    top: -1px;
}
.hoverable:hover .mega-menu {
    opacity:1;
    visibility:visible;
    z-index: 900;
}






  .toggleable > label:after {
    content: "\25BC";
    font-size: 10px;
    padding-left: 6px;
    position: relative;
    top: -1px;
  }

  .toggle-input {
    display: none;
  }
  .toggle-input:not(checked) ~ .mega-menu {
    opacity:0;
    visibility:hidden;
    z-index: -900;
  }

  .toggle-input:checked ~ .mega-menu {
    opacity:1;
    visibility:visible;
    z-index: 900;
  }

  .toggle-input:checked + label {
    color: white;
    background: rgb(3, 102, 114); /*@apply bg-teal-700 */
  }

  .toggle-input:checked ~ label:after {
    content: "\25B2";
    font-size: 10px;
    padding-left: 6px;
    position: relative;
    top: -1px;
  }