/* css colors */
:root {
    --white: #fdfefe;
}
/* Load Custom fonts */
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700|Open+Sans:400,700&display=swap');

body {
    background: var(--white);
}

h1, h2, .name{
    font-family: 'Merriweather', serif;
    font-weight: bold;
}

h4, p {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5rem;
}

h4 {
    font-size: 1rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
}

p {
    font-size: 0.9rem;
}

.name {
    color: #30363d;
}

.blue-hamburger {
    color: #1b67ec;
}

.icon {
    font-size: 2rem;
    color: #1b67ec;
}

.rich-text{
    margin-top: 15px;
    padding-top: 15px;
}

.container-blank {
	padding: 25px;
}

.subheader {
    color: #7a7e84;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.jumbotron, .footer {
    background: #7a7e84;
    color: white;
}

.jumbotron {
    margin-bottom: 0;
}

.services p {  
    color: #7a7e84;
}

.about, .articles {
    background: #f3f4f8;
    color: #30363d;
}

.articles p {  
    color: #7a7e84;
}

.img-container {
    position: relative;
}

.article-image {
    width: 100%;
    height: 100%;
}

.blue-square {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 10px;
    left: 10px;
    border: 3px solid #1b67ec;
}

/* ---- Buttons! ---- */
@media (min-width: 992px) {
    .cbtn {
        display: inline-block;
    }
}

.cbtn {
    
    text-align: center;
    margin: 5px;
    padding: 5px 20px;
    background: none;
    color: #30363d;
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid transparent;
}

.mobile-nav .cbtn{
    color: #1b67ec;
}

.cbtn-outline {
    color: #1b67ec;
    border: 2px solid #1b67ec;
}
.cbtn-outline:hover {
    color: white;
    background: #1b67ec;
}

.cbtn-solid {
    color: white;
    background: #1b67ec;
    border: 2px solid #1b67ec; 
}
.cbtn-solid:hover {
    color: white;
    background: #0f4fbd;
    border: 2px solid #0f4fbd;
}

table, th, td {
    border: 1px solid;
    padding: .4em;
}

/* Header styling */

.navbar {
    border-bottom: .13em solid #7a7e8463;
}
