.icon-show{
    display: flex;
}
.icon-hidden{
    display:none;
}
.mobile_menu_open_icon{
    position: relative;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: opacity ease-in-out .2s;
    margin: 1rem;
}

.menuburger {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 14px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    align-self: center;
    z-index: 999;
}
.menuburger span{
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #9BA0CB;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menuburger span:nth-child(1){
    top:0px;
}
.menuburger span:nth-child(2){
    top:7px;
}
.menuburger span:nth-child(3){
    top:14px;
}
div.mobile_menu_close_icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: opacity ease-in-out .2s;
    margin: 1rem;
}
.menuclose{
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 14px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    align-self: center;
    z-index: 999;
}
.mobile_menu_close_icon span{
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #9BA0CB;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}
.mobile_menu_close_icon span:nth-child(1){
    transform: rotate(45deg);
}
.mobile_menu_close_icon span:nth-child(2){
    transform: rotate(-45deg);
}