body {
    min-width: 320px !important;
    padding: 0 !important;
    border-top: 0 !important;
}

.postbody .content a.postlink {
    background-color: #e1e1e1;
    text-decoration: underline !important;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header .strip {
    background-color: #333;
    width: 100%;
	font-size: 14px;
	border: none;
}

header .strip a {
    color: #ccc;
}

header .strip .stripsocial {
    float: left;
}

header .strip .stripbar {
    float: right;
}

header .strip .stripbar ul, .strip .stripsocial ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

header .strip .stripbar ul li, .strip .stripsocial ul li {
    padding: 0 20px;
}

header .strip .stripbar ul li a, .strip .stripsocial ul li a {
    text-decoration: none;
	line-height: 28px;
}

header .logo {
	background-color: #fff;
}

header .logo h1 {
    margin: 0;
    float: left;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
header .navbar {
    float: right;
    padding: 0;
    padding-top: 1.5rem;
    display: block;
	clear: none;
	border-width: inherit;
	border-radius: inherit;
	background: #fff;
}

header .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    justify-content: space-evenly;
}

header .navbar ul li.dropdown ul:not(.show) {
    display: none;
}
    
header .navbar li {
    position: relative;
}

header .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 8px 20px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    transition: 0.3s;
	text-shadow: 0 0 2px #ffffff;
}

header .navbar a i, .navbar a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
}

header .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    background-color: #000000;
    color: #fff;
	text-shadow: none;
}

/**
* Mobile Navigation 
*/
header .mobile-nav-toggle {
    color: #012970;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
    position: relative;
    text-align: right;
    right: 10px;
    top: 30px;
    float: right;
    width: 25px;
}

header .mobile-nav-toggle.bi-x {
    color: #fff;
    z-index: 100;
}

header .navbar.navbar-mobile a, .navbar.navbar-mobile a:focus {
    justify-content: start;
}

@media (max-width: 768px) {
    header .mobile-nav-toggle {
        display: block;
    }
    header .navbar ul {
        display: none;
    }
}

@media (max-width: 1365px) {
    header .mobile-nav-toggle {
        display: block;
    }
    header .navbar ul {
        display: none;
    }
    header .logo img {
        width: 300px;
    }
}

header .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #333333;
    transition: 0.3s;
    z-index: 10;
}

header .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

header .navbar-mobile ul {
    display: block;
    position: relative;
    top: 55px;
    bottom: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

header .navbar-mobile a {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

header .navbar-mobile a:hover, .navbar-mobile .active#dropdownMenuLink, .navbar-mobile li:hover > a {
    color: #fff;
}

/*--------------------------------------------------------------
# Footer Menu
--------------------------------------------------------------*/
/**
* Desktop Footer 
*/
footer {
    font-family: "Trebuchet MS", Arial, Tahoma, Verdana;
    text-align: center;
}

footer.footer {
    margin-top: 20px;
    padding: 5px 0px 5px 0px;
    width: 100%;
    background: #F5F5F5;
    font-size: 12px;
    color: #767C79;
    line-height: 2em;
}

footer.footer a {
    color: #0056AF;
}

footer.footer a:hover {
    text-decoration: none;
}

footer.footer .footerWrapper {
    display: flex;
    justify-content: space-around;
}

footer.footer .footerBlock {
    width: 20%;
    height: inherit;
    text-align: left;
    padding: 10px 0 10px 20px;
    color: #000000;
}

@media (max-width: 576px) {
    footer.footer .footerBlock {
        width: 100%;
    }

    footer.footer .footerWrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    footer.footer .footerBlock {
        width: inherit;
        padding: 10px 0 10px 10px;
    }
}
