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

body {
    background: #fdfefe;
}

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;
}
/* -- Mobile Menu Button ----*/
.navbar-toggler {
    border-color: transparent;
    width: 35px;
    height: 45px;
}

.line span,
.line span:before,
.line span:after {
    border-radius: 2px;
    height: 5px;
    width: 35px;
    background: #1b67ec;
    position: absolute;
    display: block;
    right: 10px;
    content: '';
}

.line span:before {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
}
.line span:after {
    -webkit-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
}

/* -- Mobile Menu Overlay ---- */
aside {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #30363d;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    z-index: 2;
}
.open {
    opacity: 1;
    visibility: visible;
}

/* -- Mobile Menu "X" Close Button ---- */
.close-btn {
    position: fixed;
    top: 40px;
    right: 60px;
    color: white;
    z-index: 3;
    cursor: pointer;
    font-family: sans-serif;
}

.close-btn span,
.close-btn span:before,
.close-btn span:after {
    border-radius: 2px;
    height: 5px;
    width: 35px;
    background: white;
    position: absolute;
    display: block;
    content: '';
}
.close-btn span {
    background: transparent;
}
.close-btn span:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-btn span:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* -- Mobile Menu Style ---- */
.mobile-nav {
    text-align: center;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mobile-nav ul {
    padding: 0;
    list-style: none;
}
.mobile-nav li {
    align-items: center;
    flex: 1;
    line-height: 10vh;
}

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

.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;
}

.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;
}