body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-color: #edfcf4;
    background-position-x: center;
    background-position-y: center;
    background-position: center center;
    background-repeat: repeat;
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}

#body-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

#main-header {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    clear: both;
}

#logo {
    text-align: center;
}

#fb-widget-holder {
    text-align: right;
    margin-top: 35px;
    margin-bottom: 10px;
}

.fb_iframe_widget {
    border-radius: 12px;
    overflow: hidden;
}

nav#main-nav {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

nav#main-nav div.nav-link {
    background-color: #7f007f;
    text-align: center;
    padding: 18px;
}

nav#main-nav div:hover {
    background-color: #00bf00;
}

nav#main-nav div.current {
    background-color: #000;
}

nav#main-nav .nav-link a {
    font-family: 'Times New Roman', 'Noto Serif Display', serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}


#home-slideshow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 25px 0;
    padding-bottom: 10px;
    border-bottom: 2px #000 solid;
}

.big-bold-centered {
    font-size: 1.8rem;
    text-align: center;
    display: flex;
    justify-content: center;
    justify-items: center;
}

.big-bold-centered div {}


/* -- slideshow stuff -- */
#slideshow-holder {
    margin: 0 auto;
    overflow: hidden;
    min-height: 300px;
}

* {
    box-sizing: border-box;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
}

.mySlides {
    display: none;
}

.mySlides img {
    max-height: 300px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transform: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.info-grid-child {
    padding: 0 25px;
}

.info-grid-child h3 {
    text-align: center;
    font-size: 1.4rem;
}

.info-grid-child h4 {
    text-decoration: underline;
    margin: 15px 1px 1px 1px;
}

.info-grid-child p.lead-image {
    text-align: center;
}

.info-grid-child img {
    width: 100%;
    max-width: 220px;
    max-height: 160px;
    overflow: hidden;
    padding-bottom: 8px;
}

#company-info,
#contact-information {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#company-info div {
    padding: 5%;
}

#biz-refs {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

#biz-refs p {
    margin-bottom: 18px;
}

.greenheader {
    color: #008000;
    text-align: center;
}

.purpleheader {
    color: #800080;
    text-align: center;
}

.extralarge {
    font-size: 2.5rem;
}

.top-spacer {
    margin-top: 5%;
}

#our-services {
    max-width: 980px;
    margin: 0 auto;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    border: 1px #ddd solid;
    border-radius: 4px;
}

#contact-form input {
    padding: 15px;
}

#contact-form textarea {
    padding: 10px;
}

#contact-form input[type=submit] {
    width: 25%;
}

span.required {
    color: red;
    font-size: 0.6rem;
}

.address {
    text-align: center;
}

#testimonial {
    text-align: center;
}

footer#site-footer {
    text-align: center;
    margin-top: 25px;
    padding: 15px 0;
    border-top: 1px #000 solid;
    background-color: #d4cec6;
    color: #000;
    width: 100%;
}

@media all and (max-width: 1279px) {}

@media all and (max-width: 800px) {
    #body-content {
        max-width: 95%;
    }
}

@media all and (max-width: 680px) {
    #main-header {
        grid-template-columns: 1fr;
    }

    #logo {
        margin-bottom: 15px;
    }

    nav#main-nav {
        grid-template-columns: 1fr 1fr;
    }

    #fb-widget-holder {
        display: none;
    }

    #home-slideshow {
        grid-template-columns: 1fr;
    }

    #slideshow-holder {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    #company-info,
    #contact-information {
        grid-template-columns: 1fr;
    }
}