body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

header {
    color: #fefae0;
    background-color: #3F5866;
    position: fixed;
    top: 0;
    z-index: 90;
}

hr.divider {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: #125B80;
}

hr.light {
    max-width: 3.25rem;
    border-width: 0.2rem;
    border-color: white;
}

h1 {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    font-family: 'aclonica', sans-serif;
    line-height: 1.5;
    letter-spacing: 2px;
    color: white;
    font-size: 4em;
}

h2 {
    font-weight: normal;
    width: 90%;
    line-height: 2;
    letter-spacing: 2px;
    color: white;
    font-size: 1.4em;
    text-align: center;
}

h3 {
    margin-top: 5%;
    font-size: 3em;
}

h5 {
    font-size: 1.2em;
}

.btn {
    background-color: #125B80;
    color: white;
    border-radius: 50px 50px 0px 50px;
    margin-top: 5%;
}

.btn a {
    color: white;
    transition: 0.5s;
}

.btn:hover {
    background-color: white;
}

.btn a:hover {
    color: #125B80;
    transition: 0.5s;
}

.read-more {
    background-color: white;
    color: #125B80;
}

section#hero {
    background: linear-gradient(to bottom, rgba(92, 77, 66, 0.6) 0%, rgba(92, 77, 66, 0.6) 100%), url("images/bg6.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
    padding-top: 10rem;
    padding-bottom: calc(10rem - 4.5rem);
    min-height: 50vh;
    margin-bottom: 20px;
}

#hero2 {
    background-color: #125B80!important;
}

.navbar-brand img {
    width: 50px;
    height: 50px;
}

.nav-link {
    color: white!important;
    font-size: 1.2em;
}

.nav-link.active {
    border-bottom: 4px solid #125B80;
}

.navbar-default {
    transition: 500ms ease;
    background: transparent;
}

.navbar.scrolled {
    background: #092a3a;
}


/*CARDS*/

.card-columns {
    column-count: 3;
}

.card {
    font-size: 0.8em;
    font-family: 'roboto', sans-serif;
    max-height: 500px;
    max-width: 30%;
    min-width: 25%;
    margin-top: 5%;
}

.card img {
    width: 100%;
    height: 250px;
}


/* .card img {
    max-width: 300px;
    max-height: 200px;
} */


/*SIDEBAR*/

ul li {
    list-style: none;
}

#sidebar {
    padding-right: 1%;
}


/**SINGLE*/

.single_title {
    text-align: center;
    text-transform: uppercase;
    font-size: 2em;
}

.post_body {
    border: 1px solid black;
    padding: 2%;
}

.post-body img{
  margin:30px;
}
  

.post_body h3 {
    font-size: 1.5em;
}

.read-more {
    text-align: left;
    font-size: 1em;
}


/*FOOTER*/

footer {
    margin-top: 5%;
    background-color: #092a3a;
    color: gray;
}

footer a {
    color: gray;
}

footer a:hover {
    color: #125B80;
}

footer .fas {
    color: white;
    visibility: visible;
}

footer img {
    width: 100px;
}

footer p {
    font-size: 0.9em;
}


/******MEDIA QUERIES*******/

@media (max-width:994px) {
    .navbar {
        background-color: #092a3a!important;
    }
    .navbar-toggler {
        border: 2px solid white!important;
    }
    h1 {
        font-size: 1.8em;
        width: 90%;
        line-height: 2;
        border: 1px solid white;
    }
    h2 {
        width: 90%;
        font-size: 1.3em;
    }
    h3 {
        font-size: 2em;
    }
    section#hero {
        height: 90vh;
    }
    .card {
        max-height: 500px;
        max-width: 100%;
        min-width: 25%;
        margin-top: 5%;
    }
    #sidebar {
        padding-left: 10%!important;
    }
}