.MENU {
    width: 100%;
    background: #ff5216;
    z-index: 100;
}

.MENU_WEB_DESIGN {
    width: 100%;
    display: block;
}
.BOTON {
    display: none;
}
.MENU_BTN {
    width: 55px;
    display: none;
    padding: 5px;
    
}
.MENU_BTN:hover {
    cursor: pointer;
    background:  rgb(32, 176, 255);
}
.MENU_LIST {
    width: 100%;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
}
.MENU_LIST li {
    padding: 5px;
    transition: all 0.1s ease-in;
}
.MENU_LIST li:hover {
    cursor: pointer;
    background:  rgb(32, 176, 255);
    scale: 1.1;
}

.MENU_LIST li a:hover {
    color: rgb(255, 255, 255);
    font-weight: bolder;
}

.MENU_LIST li a {
    text-decoration: none;
    color: white;
    padding: 5px 20px;
    display: block;
}
.FIXED {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
@media (max-width:768px) {
    .MENU {
        width: 100%;
        height: 45px;
    }

    .MENU_BTN {
        width: 50px;
        height: 45px;
        display: block;
        padding: 2px;
        border-right: 3px solid #ffffff;
    }
    .MENU_ICONO {
        width: 40px;
    }

    .MENU_LIST {
        width: 50%;
        margin-left: -50%;
        position: absolute;
        background: #ff5216;
        flex-direction: column;
        transition: all 0.5s;
    }
    .BOTON:checked ~ .MENU_LIST {
        margin: 0;
    }
    .MENU_LIST li a {
        text-decoration: none;
        color: white;
        padding: 3px 10px;
        display: block;
    }
   
}