.blog_nav {
    padding: 1em;
    background-color: black;
}

.blog_logo {
    width: 50px;
    height: 50px;
}

.blog_logo img {
    width: 100%;

}

.nav_wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_wrapper .a_wrapper {
    display: flex;
}


.nav_wrapper .color_white {
    color: white !important;
    padding: 1em;
    font-size: 1em;

}

.mobile_header.modal {
    background-color: black;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1000;
    display: none;

}

.mobile_header.modal.show {
    display: block;

}

.nav_wrap {
    width: 70%;
    margin: 0 auto;
}

.nav_wrap a {
    margin-left: 2em;
    color: white;
}

.blog_header_close {
    color: white;
    font-weight: bold;
    font-size: 2em;
    text-align: right;
    margin-top: 10%;
    cursor: pointer;

}

.mobile_header.modal ul {
    list-style: none;
    margin: 0;

}

.mobile_header.modal a {
    margin: 0;
    padding: 1em;

}

.mobile_header.modal .a_wrapper.nav {
    margin-top: 7%;
}

.mobile_header.modal .a_wrapper.nav {
    display: flex;
    flex-direction: column;

}

.header_menu {
    color: white;
    display: none;
}

.btn_style{
    padding: .3em 1em;
    background-color: rgba(149, 149, 149, 0.2);
    border-radius: 5px;
    margin: 10px 0;
}


@media screen and (max-width: 768px) {

    .blog_logo {
        width: 30px;
        height: 40px;
    }

    .nav_wrapper .a_wrapper {
        display: none;
    }

    .header_menu {


        display: block;
    }

    .blog_nav {
        padding: .8em;
        background-color: black;
    }

}