* {
    font-family: 'Merriweather Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Slab', serif;
}

body, html {
    overflow-x: hidden;
}

/** header **/
header {
    text-align: center;
    padding-bottom: 15px;
}

header img {
    height: 200px;
    width: auto;
}

#header-img {
    background-image: url("../img/header-img.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

#header-img h1,
#header-img p {
    color: #fff;
}

/** full color divider **/
#fullColorDivider {
    padding: 0;
}

#fullColorDivider .row {
    padding: 0;
}

#fullColorDivider .col {
    display: inline-block;
    height: 2px;
}

#fullColorDivider .blue {
    background: var(--bs-primary);
}

#fullColorDivider .orange {
    background: var(--bs-warning);
}

#fullColorDivider .red {
    background: var(--bs-danger);
}

#fullColorDivider .green {
    background: var(--bs-success);
}

/** nav **/
.nav-item .nav-link {
    font-size: 16px;
    font-family: 'Roboto Slab', serif;
    transition: all 1s;
    color: var(--bs-body-color);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1rem;
}

.nav-item.active > .nav-link {
    color: var(--bs-warning);
}

.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
    background-color: #eee;
}

/** cards **/
.card-hover {
    transition: transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}
.card-hover:hover {
    transform: scale(1.02);
    box-shadow: var(--bs-box-shadow);
}
.card-footer {
    background: transparent;
    border: none;
    padding-bottom: 1rem;
}

/* Call2Action */
.call2Action {

}

.call2Action h4 {
    font-size: 38px;
    margin-bottom: 5px;
}

.call2Action p {
    margin-bottom: 0px;
    font-size: 20px;
}

.call2Action .btn {
    float: right;
    font-size: 24px;
    margin-top: 15px;
}

/* footer */

footer  {
    background-color: #333;
    text-align:center;
    padding-top: 25px;
    padding-bottom: 50px;
}

footer p, footer a {
    color: #aaa;
}

footer a {
    transition: all 0.2s;
}

footer a:hover,
footer a:focus,
footer a:active {
    color: #2980B9;
    text-decoration: none;
}