header{
    background-color: var(--mcolor);
    padding: 20px;
    box-shadow: 0px 0px 30px -5px var(--txtcolor);
}


.menu-items_wrapper{
    padding: 20px 35px;
}


.social_menu{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social_menu li{
    margin-right: 25px;
}

.social_menu i {
    border-radius: 4px;
}


.social_menu i.fa-facebook-f {
    background-color: #3b5a9a;
    padding: 15px 18px;
}

.social_menu i.fa-twitter {
    background-color: #1aa9e1;
    padding: 15px;
}

.social_menu i.fa-instagram {
    background-color: #7c4a3a;
    padding: 15px 16.5px;
}


.menu-items_wrapper ul{
    list-style: none;
}


.menu-items_wrapper ul li{
    padding: 8% 0px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
}


.menu-items_wrapper ul li a{
    text-decoration: none;
    color: var(--white);
    display: flex;
    justify-content: space-between;
}


.menu_items{
    display: inline-block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    transition: 0.5s;
    background-color: var(--mcolor);
    z-index: 1;
    height: 100%;
    width: 290px;
    box-shadow: 0px 0px 20px 5px #484848;
}


.menu_items:hover{
    overflow-y: scroll;
}


.menu_items::-webkit-scrollbar{
    width: 5px;
}


.menu_items::-webkit-scrollbar-thumb{
    background-color: #9a9a9a;
    border-radius: 5px;
}



.top_menu{
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: var(--white);
}


.top_menu div p{
    font-weight: 550;
}


i.cross{
    font-size: 25px;
    z-index: 2;
    transform: translate(-7px);
    cursor: pointer;
    display: none;
}


i{
    cursor: pointer;
}

.overlay{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    left: 0;
    transition: 0.5s;
    background-color: #000000;
    opacity: 0.6;
    z-index: 1;
}





main{
    height: calc(100vh - 124px);
}


main div{
    padding: 5px 10px;
    padding-bottom: 10px;
    height: 98%;
    overflow-x: hidden;
    overflow-y: scroll;
}

main div::-webkit-scrollbar{
    width: 0px;
}


footer{
    background-color: var(--white);
    padding: 12px 20px;
    position: absolute;
    bottom: 0vh;
    width: 100%;
    box-shadow: 0px 0px 30px -15px var(--txtcolor);
}


.option a{
    text-decoration: none;
    color: var(--txtcolor);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 15px;
    text-transform: capitalize;
}

.option a:hover{
    color: var(--mcolor);
}

.bottom_menu_wrapper{
    display: flex;
    justify-content: space-between;
}


.bottom_menu_wrapper>div:hover{
    color: var(--mcolor);
}


.bottom_menu_wrapper .active a{
    color: var(--mcolor);
}
