p,h1,h2,h3,h4,h5,h6{
    margin: 0;
}
h1{
    font-size: 2.5em;
    line-height: 1.6em;
    letter-spacing: 0.5px;
}
h2{
    font-size: 2em;
    line-height: 1.6em;
    letter-spacing: 0.5px;
}
h3{
    margin: 10px 0;
}
h4{
    font-size: 1.5em;
    line-height: 1.6em;
    letter-spacing: 0.5px;
}
p{
    font-size: 17px;
    line-height: 25px;
}
p.lead{
    margin: 0;
}
a{
    color: #656f7b;
}
a:hover,a:focus{
    text-decoration: none;
    color: #dd3c1a;
    transition: ease color 0.5s;
}

/* Navigation Bar */
.navbar{
    margin: 0;
    background: rgba(0,0,0,0.6);
    border: none;
    box-shadow: 0px 1px 1px 1px #000;
}
.navbar-default .navbar-nav>li>a, .navbar-default .navbar-brand{
    color: #ddd;
}
.navbar-default .navbar-nav>li>a:hover , .navbar-default .navbar-brand:hover,
.navbar-default .navbar-nav>li>a:focus , .navbar-default .navbar-brand:focus{
    color: white;
    transition: ease all 0.3s;
}

/* Header Background Image*/
.feature-image{
    background: url('../imgs/bg-min.jpg') no-repeat;
    background-size: cover;
    height: 300px;
    width: 100%;
    color: white;
    display: table;
    padding-top: 50px;
    margin-bottom: 10px;
}
.feature-image .pageInfo{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px;
}

/* Blog Section */
#blog{
    background: #e7ebf0;
}
.post{
    display: inline-grid;
    width: 31.33333333%;
    padding: 0px 20px;
    margin-bottom: 20px;
}
.post-header{
    box-shadow: 0px 5px 5px 5px #ddd;
}
.post-header h4{
    font-size: 21px;
    font-weight: bold;
    margin: 5px 0;
}
.post-header small{
    font-size: 15px;
    font-weight: light;
    color: #7b858c;
}
.post h4 a{
    color: #656f7b;
}
.post a:hover{
    text-decoration: none;
    color: #dd3c1a;
}
.post-header, .post-excerpt{
    padding: 10px 20px;
    background: white;
}
.post-image{
    background: white;
}
img:hover{
    opacity: 0.8;
    transition: ease all 1s;
}
.post-excerpt{
    line-height: 25px;
    font-size: 15px;
}
.post-footer{
    padding: 5px 10px 10px;
    background: white;
    box-shadow: 0px 6px 5px 1px #ddd;
}
.post-footer .btn-primary{
    background: none;
    color: #8b98a6;
    border: 1px solid #a1aab5;
}
.post-footer .tags{
    margin: 10px 0 0;
}
.post-body{
    box-shadow: 0 0 5px 0 #ddd;
    padding: 10px 30px;
}
.widget{
    box-shadow: 0 0 5px 0 #ddd;
    margin-bottom: 20px;
    padding: 20px;
}
.widget li{
    line-height: 24px;
}
.widget a:hover{
    margin-left: 3px;
    transition: ease all .5s;
}
.widget h4{
    margin-bottom: 3px;
}
footer{
    margin-top: 30px;
    padding: 20px 0 0;
    background: #1E1914;
    color: white;
}
footer a{
    color: white;
    line-height: 25px;
}
footer a:hover{
    text-decoration: none;
    color: #ddd;
}
footer h4{
    margin: 0 0 5px 0;
}
footer .fa{
    font-size: 25px;
    margin-right: 20px;
}
#contact #primary{
    margin-top: 20px;
    min-height: 350px;
}
#contact #primary label{
    font-size: 16px;
    font-weight: bold;
}
@media only screen and (max-width:992px){
    .post{
        width: 100%;
        padding: 0;
    }
}
@media only screen and (max-width: 768px){
    .widget:first-child{
        margin-top: 20px;
    }
}

