.topHeader {
    /* margin-top: 20px; */
    padding: 20px 0 15px 0;
    text-align: center;
}

.bodyIcon {
    font-size: 5rem;
    color: #bc4848;
}

.blockIcon {
    font-size: 3rem;
    color: #ff8800;
}

.bodyImage {
    width: 80%;
    margin: 10px 0;
}

.simpleContainer {
    padding: 0 13px 10px 13px !important;
    text-align: center;
    margin: 10px 5px;
}

.bottomLine1 {
    border-bottom: #ac7038 4px dashed;
}

.bottomLine2 {
    border-bottom: #ac3838 6px solid;
}

.headerImage {
    width: 100%;
    max-height: 300px;
}

.textSlide {
    opacity: 0;
    transform: translateX(-30px);
    animation: slide 1s ease-out forwards;
}

@keyframes slide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.viewSlide {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1s ease-out;
}

.viewSlide.visible {
    opacity: 1;
    transform: translateX(0);
}

.popIn {
    opacity: 0;
    animation: pop 1s ease-out forwards;
}

@keyframes pop {
    to {
        opacity: 1;
    }
}

.inlineImage {
    height: 100%;
}

.blockImage {
    width: 100%;
    padding: 20px;
}

@media (max-width: 991px) {
    .inlineImage {
        width: 100%;
        padding: 15px;
    }
}

.verticalMargin {
    margin: 25px 0;
}

.stretch {
    align-items: stretch;
}

.fitImage {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
}

.circle {
    border-radius: 50%;
    border: #000000 solid 2px;
}

.nav-tabs .nav-link {
    background-color: #ffffff !important;
    color: #000000 !important;
}

.nav-tabs .nav-link.active {
    background-color: #cccccc !important;
    color: #000000 !important;
}

.scrollButton {
    background: black;
    color: #ffffff;
    border-radius: 15px;
    margin: 5px 15px 50px 5px;
    height: 75px;
    width: 75px;
    font-weight: bold;
    border: medium;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 50;
    font-size: 2.5rem;
}

.titleLink {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.titleLink:hover {
    font-size: 1.3em;
    color: #75aad8;
}