* {
    box-sizing: border-box;
}

body {
    background: #f6f6f6;
    margin: 0px;
    padding: 0px;
    font-family: 'Raleway', sans-serif;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Quattrocento', serif;
    color: #444;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    background: #355929;
    height: 66px;
    margin: 0px;
}

header * {
    color: white;
}

header .logo {
    float: left;
    height: inherit;
    margin-left: 2em;
}

header.logo-text {
    margin: 9px;
    font-family: 'Quattrocento', serif;
}

header.logo-text span {
    color: #000080;
}
header ul {
    float: right;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

header ul li {
    float: left;
    position: relative;
}

header ul li a:hover {
    background: #1b2d15;
    color: #fff;
}
header ul li ul {
    position: absolute;
    top: 66px;
    right: 0px;
    width: 180px;
    display: none;
    z-index: 999;
}

header ul li:hover ul {
    display: block;
}


header ul li ul li {
    width: 100%;
}

header ul li ul li a {
    padding: 10px;
    background: white;
    color: #444;
}

header ul li a {
    display: block;
    padding: 21px;
    font-size: 1.1em;
    text-decoration: none;
}

header .menu-toggle {
    display: none;
}


.page-wrapper a:hover {
    color: #355929 ;
}

/* page slider */
.post-slider {
    position: relative;
}

.slider-title {
    text-align: center;
    margin: 30px auto;
}

.post-slider .post-wrapper {
    height: 350px;
    width: 84%;
    margin: 0px auto;
    padding: 10px 0px 10px 0px;
    overflow: hidden;
}

.post-slider .next {
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 2em;
}

.post-slider .prev {
    position: absolute;
    top: 50%;
    left: 30px;
    font-size: 2em;
}

.post {
    display: inline-block;
    height: 350px;
    width: 330px;
    margin: 0px 10px;
    background: #f6f6f6;
    border-radius: 5px;
    box-shadow: 1rem 1rem 1rem -1rem #a0a0a033;
}

.post .slider-image {
    width: 100%;
    height: 200px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.post-info {
    margin-top: 0px;
    height: 130px;
    padding: 0px 5px;
}

.post-info h4 {
    margin: 5px;
}

.post-author {
    padding-right: 4px;
}

.post-date {
    padding-right: 4px;
}
/*-- media queries--*/

@media only screen and (max-width: 750px) {
    header {
        border-bottom: 1px solid white;
        position: relative;
    }

    .show {
        max-height: 100em;
    }

    header ul {
        width: 100%;
        background: #355929;
        max-height: 0px;
        overflow: hidden;
    }

    header ul li {
        width: 100%;
    }

    header ul li ul {
        position: static;
        width: 100%;
        display: block;
    }

    header ul li ul li a {
        background: #417330;
        color: white;
        padding-left: 50px;
    }

    header .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 1.9em;
    }

    header .logo {
        margin-left: .5em;
    }
}