/* Layout */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

header {
    border-bottom: 1px solid #c7c7c7;
    background: #fff;
    width: 100%;
    transition: all 0.5s ease-out 0s;
    top: -100px;
    z-index: 1000;
}

header.shrink {
    opacity: 0.9;
    position: fixed;
    top: 0;
    left: 0;
}

.title a {
    font-weight: 600;
    font-size: 1.8em;
    color: #c7c7c7;
    text-decoration: none;
}

.btnBackToTop {
    background: none;
    border: none;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 70px;
    height: 70px;
    z-index: 100;
    cursor: pointer;
}

.btnBackToTop i {
    font-size: 60px;
    color: #c7c7c7;
}

.btnBackToTop i:hover {
    color: #e0e0e0;
}

.footerUp {
    padding-top: 20px;
    padding-bottom: 26px;
    background: rgb(58, 145, 183);
}

.footerDown {
    background: #525252;
}

.footerDown p {
    margin: 16px 0;
}

.wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.content {
    flex: 1 0 auto;
    margin-bottom: 40px;
}

footer {
    flex: none;
    color: white;
}

footer a {
    color: white;
}

footer a:hover, footer a:focus {
    color: #fff;
}

footer h4 {
    margin-top: 32px;
}

.latestPosts li:not(:last-child) {
    border-bottom: 1px dotted #fff;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

/* Home */
.mainText {
    margin: 0 auto;
    max-width: 650px;
}

.features {
    margin-top: 40px;
}

.features .media {
    margin-top: 20px;
}

.marginTop20 {
    margin-top: 20px;
}

.marginTop40 {
    margin-top: 40px;
}

.staff .media {
    margin-top: 5px;
}

/* Contact */
.map {
    height: 300px;
}

/* Carousel */
.carousel-img {
    max-width: 100%;
    object-fit: contain;
    margin: 0 auto;
}

/* Nav menu */
.navbar-nav .nav-item + .nav-item {
    border-left: 1px solid #ccc;
}

.navbar-nav .nav-link {
    padding: 6px 22px !important;
    color: #333 !important;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(58, 145, 183, 0.15);
    color: #111 !important;
}

.navbar-nav .nav-link.active {
    background-color: rgb(58, 145, 183);
    color: #fff !important;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .navbar-nav {
        border: none;
        margin-top: 8px;
    }
    .navbar-nav .nav-item + .nav-item {
        border-left: none;
        border-top: 1px solid rgb(58, 145, 183);
    }
}

/* Blog */
.blogImage {
    width: 100%;
}

.blogNavBar {
    margin-top: 20px;
}

/* Buttons */
a {
    color: rgb(58, 145, 183);
}

.btn-primary {
    background: rgb(99, 174, 216);
    border-color: rgb(99, 174, 216);
}

.btn-primary:hover, .btn-primary:focus {
    background: rgb(58, 145, 183);
    border-color: rgb(58, 145, 183);
}

.btn-donate {
    background-color: #F75200;
    border-color: darkgray;
    color: white;
}

.btn-donate:hover {
    background-color: #d94800;
    color: white;
}

.info {
    font-size: 80%;
    font-style: italic;
}

/* Staff */
.staff-card {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.staff-card img {
    width: 110px;
    margin-right: 1rem;
    flex-shrink: 0;
}

