@keyframes slideInFromRight {
    0% {
        transform: translateX(200%);
    }

    100% {
        transform: translateX(0);
    }
}


p {
    font-family: Nunito;
}



.location-separator {
    height: 32px;
}

.pusher {
    padding-left: 8%;
    padding-right: 8%;
}

.spacer-top {
    margin-top: 25px;
}

.spacer-bottom {
    margin-bottom: 25px;
}

.para {
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    margin-top: 25px;
    margin-bottom: 25px;
}

.para-forest {
    background-image: url("../img/image-000.png");
    min-height: 200px;
}

.om-testimonials .card-text{
    font-style: italic;
}

.om-testimonials .card-text::before{
    content:"“";
}

.om-testimonials .card-text::after{
    content:"”";
}

.om-testimonials .card-subtitle::before{
    content:"— ";
}

/* */
/* header */
/* */
.overlayButton {
    /* styling */
    width: 100px;
    height: 100px;
    border-radius: 50px;
    padding-top: 25px;
    background-color: #0275d8;
    opacity: 0.75;
    color: white;
    /* positioning */
    position: fixed;
    top: 10%;
    right: 2%;
    z-index: 50;
    animation: 1s ease-out 0s 1 slideInFromRight;
    /* Remove if weird */
    /* text */
    text-align: center;
    text-decoration: none;
}

.overlayButton:hover {
    background-color: #e87511;
    color: white;
}

.logoTop img {
    width: 50%;
    height: auto;
}

/* Ensure card top images are of same height */

.desktop-nav .card-img-top {
    width: 100%;
    min-height: 250px;
    height: 15vw;
    object-fit: cover;
}

/* */
/* Bootstrap: navbar (burger) */
/* */
.navbar {
    box-shadow: 0px 4px 10px grey;
}

.nav-link {
    font-size: 1.2em;
}

.nav-link::before {
    content: "▸ ";
}

/* */
/* article */
/* */

.article a {
    color: #e87511;
    text-decoration: none;
}

.article h1 {
    font-size: 1.5em;
}

.article h2 {
    font-size: 1.1em;
    font-weight: bold;
}

/* */
/* form */
/* */
.formBox {
    border-radius: 3px;
    border: 1px solid darkgray;
    background-color: lightgray;
    padding: 10px 0 10px 0;
    width: 55%;
    min-width: 260px;
}

.formBox h1 {
    font-size: 1.3em;
}

/* */
/* Mobile view */
/* */
@media only screen and (max-width: 992px) {

    /* Add padding for fixed top navbar*/
    .article {
        padding-top: 65px;
    }

    .overlayButton {
        opacity: 0.6;
    }
}

@media only screen and (max-width: 767px) {
    .spacer-top {
        margin-top: 20px;
    }

    .spacer-bottom {
        margin-bottom: 20px;
    }
}