.Menu_container{
    display: flex;
    flex-direction: column;

}
.LeftMenu{
    height: auto;
}
.LeftContainer{
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-left: 1.0em;
    flex-wrap: wrap;
}

.LeftContainer_image{
    width: 11%;
    height: auto;
}
.LeftContainer_title{
    width: 60%;
    height: auto;
    margin-left: 10%;

    /* background-color: white; */

    cursor: pointer;

    font-family: 'Verdana';
    font-style: normal;
    font-weight: 400;
    font-size: 1.3em;
    line-height: 17px;


    color: #AFAFAF;
}

.sub_menu{

    width: 70%;
    /* background-color: #301A4B; */
    box-shadow: 1px 2px 2px #9266c7;

    padding: 0.2em;
    margin-top: 0.3em;
    margin-left: 15%;

    border-radius: 0em;

    justify-content: center;

    font-size: 1.5em;
    color: #EDFFEC;
    cursor: pointer;


    align-items: center;
    display: block;

}
.drop_down_icon{
    width: 10%;
}

.sub_menu_close {
    opacity: 0;
    display: none;
}

.LeftContainer:hover{
    background-color: #051130;
}
.sub_menu:hover{
    background-color: rgb(80, 58, 131);
}




/* ---------------------------------------------------> 
------ for animated dropdown menu --------------------- */

.Menu{
    position: relative;
    margin: 2em 3em;
}

.m-item{
    position: absolute;
    top: 0;

    width: 5.5em;
    background-color: #301A4B;
    box-shadow: 1px 2px 2px #301A4B;

    padding: 0.2em;

    border-radius: 1em;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.5em;
    color: #EDFFEC;
    cursor: pointer;

    transition: 1s;
}

.m-item:hover{
    border: 1px solid black;
}

.m-logo{
    z-index: 1;
}

.open-1{
    top: 1.8em;
    background-color: #9b5de5;
}
.open-2{
    top: 3.6em;
    background-color: #f15bb5;
}
.open-3{
    top: 5.4em;
    background-color: #00BBF9;
}