
@media screen and (max-width: 767px) 
{
    .navbar-item {
    margin: 0.4em;
    width: 100%;
    }

    .home-link,
    .navbar-link {
    color: var(--navbar-text-color);
    text-decoration: none;
    display: flex;
    font-weight: 400;
    align-items: center;
    }

    .home-link:is(:focus, :hover) {
    color: var(--navbar-text-color-focus);
    }

    .navbar-link {
    justify-content: center;
    width: 100%;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    }

    .navbar-link:is(:focus, :hover) {
    color: var(--navbar-text-color-focus);
    background-color: var(--navbar-bg-contrast);
    }
    #navbar-toggle {
    cursor: pointer;
    border: none;
    background-color:#333333;
    width: 47px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius:7px;
    padding-top:10px;
    position: absolute;
    top:45px;
    right: 30px;
    }
    .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius:1px;
    background-color: #fff;
    margin:0px 0px 6px 0px;
    }
    #navbar-toggle:is(:focus, :hover) .icon-bar {
    background-color: #fff;
    }

    #navbar-menu {
    top: var(--navbar-height);
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    }
    #navbar-toggle[aria-expanded="true"] + #navbar-menu {
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 1;
    visibility: visible;
    }
    .navbar-links {
    position: absolute;
    background-color: #3f3f3f;
    right: 30px;
    border-radius: 5px;
    width:80%;
    }

    #navbar-toggle[aria-expanded="true"] + #navbar-menu .navbar-links {
    padding: 1em;
    text-align: left !important;
    }
    #navbar-menu .navbar-links > li > a {
        color:#fff;
        padding-top:10px;
        padding-bottom:10px;
        line-height: 20px;
        position: relative;
        display: block;
        padding:10px 15px;
    }
    .feature-h1{
        border-bottom:0px !important;
        background-color: #1976d3;
        color:#fff;
        padding:15px 0px 15px 20px;
    }
    .post-bg h1 > a {
        color:#1976d3;
        font-weight: bold;
    }
    #navbar{
        background-color: #e6e6e6;
        padding-bottom: 20px;
    }
}
@media  only screen  and (max-width: 375px){
    #navbar-toggle {
        top:40px;
        right: 25px;
        }
    }
@media  only screen  and (max-width: 320px){
    #navbar-toggle{
        top:25px;
    }
    .navbar-links {
        left: 14px;
    }
}


.p-0 {
    padding: 0!important;
}


@media only screen  and (max-width:767px){

    .post-img img {
        width: 100%;
        height: auto!important;
    }

}


.desktop-show {
    display: block;
}

.desktop-hide {
    display: none;
}

@media (min-width: 320px) and (max-width: 480px) {

    .mobile-show {
        display: block!important;
    }

    .mobile-hide {
        display: none!important;
    }


}