.container{
    max-width: 960px;
    margin: 0 auto;
    padding-left: 10px;
    padding-right: 10px;
}
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.justify-content-between{
    justify-content: space-between;
}
.align-item-center{
    align-items: center;
}
body{
    font-size: 16px;
    line-height: 1.15;
    color: #111;
}
#header{
    height: 60px;
    position: relative;
}
nav{
    background-color: #2c2c32;
    position: fixed;
    width: 100%;
}
#navbar-brand{
    color: #fff;
    font-size: 20px;
    padding: 10px 0px;
    text-decoration: none;
}
#navbar-brand #logo{
    max-height: 40px;
    width: auto;
}
ul#main-menu{
    display: none;
    list-style: none;
    padding: 10px;
    margin-bottom: 0px;

}
ul#main-menu a{
    color: #9d9d9d;
    display: block;
    padding: 0 5px;
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}
ul#main-menu li:hover a{
    color: antiquewhite;
}
ul#responsive-menu{
    position: absolute;
    padding-left: 0px;
    padding-top: 10px;
    padding-bottom: 20px;
    list-style: none;
    top:60px;
    left: 0px;
    background-color: #3c3c43;
    width: 100%;
    display: none;
}
ul#responsive-menu a{
    color: #9d9d9d;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    transition: all 0.25s ease-in-out;
}
ul#responsive-menu li:hover a{
    color: #fff;
}
#download{
    background-color:#0e47d3;
    text-decoration: none;
    color: #fff;
    padding: 20px;
    padding-left: 40px;
    position: relative;
    display: none;
}
#download:hover{
    background: #005ba4;
}
#download::before{
    font: var(--fa-font-solid);
    /* Set the Unicode value for the "fa-ghost" icon */
    /* https://fontawesome.com/icons/circle-chevron-down?f=classic&s=regular */
    content: '\f13a';
    position: absolute;
    left: 10px;
    font-size: 18px;

}
#navbar-toggle{
    cursor: pointer;
    padding-right: 20px;
    color: #fff;
    font-size: 24px;

}
#wp-content{
    padding: 40px 10px;    
}
#wp-content h1{
    margin-bottom: 20px;
}

@media (min-width:576px) {           
}      
@media (min-width:768px) {
    ul#main-menu{
         display: flex;
    }
    ul#main-menu a{
        padding: 0 5px;
    }
    #download{
        display: block;
    }  
    #navbar-toggle{
        display: none;
    }          
}       
@media (min-width: 992px) {    
     ul#main-menu a{
        padding: 0 10px;
    }
}      
@media (min-width: 1280px) {           
}