﻿
/* General Stuff */

html {
    height: 100%;
    min-height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    margin: 0 0;
    padding: 0 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 175%;
    color: #FFFFFF;
    background-color: #052915;
}

}

/* Mobile Header */

.header-mobile {
    position: relative;
    color: #E5E4E2;
    background-color: #09111a;
}

    .header-mobile .logo-mobile {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .header-mobile .header-contact {
        padding-top: 30px;
        padding-bottom: 30px;
        font-size: 24px;
        line-height: 150%;
        background-color: #052915;
        font-weight:bold;
    }

        .header-mobile .header-contact a,
        .header-mobile .header-contact a:visited {
            color: #FFFFFF;
            text-decoration:none !important;
        }

            .header-mobile .header-contact a:hover {
                color: #FFFFFF;
                text-decoration: none;
            }

    .header-mobile .menu {
        z-index: 99990;
        padding-top: 8px;
        padding-bottom: 8px;
        border-top: 4px solid #1be475;
        border-bottom: 4px solid #1be475;
        background-color: #f6fef9;
    }

        .header-mobile .menu hr {
            border-color: rgba(255,255,255,0.25);
        }

/* Desktop Header */

.header-desktop {
    position: relative;
    color: #E5E4E2;
    background-color: #09111a;
}

    .header-desktop .header-contact {
        margin: 0 0;
        padding: 20px 0;
        color: #f6fef9;
        font-size: 20px;
        font-weight: bold;
        line-height: 150%;
        background-color: #052915;
    }

        .header-desktop .header-contact a:not(.btn),
        .header-desktop .header-contact a:not(.btn):visited {
            color: #f6fef9;
            text-decoration: none;
        }

            .header-desktop .header-contact a:not(.btn):hover {
                color: #FFFF00;
                text-decoration: none;
            }

    .header-desktop .logo-desktop {
        position: absolute;
        z-index: 99990;
        top: 15px;
        left: 50%;
        margin: 0 0 0 -169px;
        z-index: 100;
    }

    /* Desktop Menu */

    .header-desktop .menu {
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 20px;
        font-weight: bold;
        border-top: 4px solid #1be475;
        border-bottom: 4px solid #1be475;
        background-color: #f6fef9;
    }

        .header-desktop .menu .menu-left {
            padding-right: 205px;
        }

        .header-desktop .menu .menu-right {
            padding-left: 205px;
        }


/* Main */

main {
    margin: 0 0;
    padding: 0 0;
    color: #000000;
    background-color: #f6fef9;
}

    main a {
        color: #CC0000 !important;
    }

/* Footer */

footer {
    margin: 0 0;
    padding: 40px 30px;
    font-size: 16px;
    line-height: 150%;
    color: #FFFFFF;
    background-color: #052915;
    border-top: 4px solid #1be475;
}

    footer h2 {
        margin: 0 0;
        padding: 0 0 4px 0;
        font-size: 125%;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 100%;
    }

footer hr {
    margin: 0 0 1.0rem 0;
    padding: 0 0;
    border-color: #FFFFFF;
}

footer p {
    margin-bottom: 1.0rem;
}

footer a,
footer a:visited {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #FFFF00;
    text-decoration: none;
}

footer ul.fa-ul {
    margin-left: 2rem;
}

footer ul.fa-ul li {
    margin-bottom: 1rem;
}

footer ul.fa-ul li span.fa-li i {
    position: relative;
    top: 1px;
    padding-right: 8px;
    color: #FFFFFF;
}

footer .copyright {
    padding-top: 20px;
    font-size: 16px;
    line-height: 150%;
}

@media (max-width : 767px) {

    footer {
        padding-left: 15px;
        padding-right: 15px;
    }

}



/* Back To Top Button */

.back-to-top {
    z-index: 99999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    color: #000000;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
}

/* Swiper */

.swiper-container {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #666666;
}

.swiper-slide {
    text-align: center;
}

    .swiper-slide .img-fluid {
        width: 100%;
        height: auto;
    }

    .swiper-slide .slide-title {
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
        font-size: 175%;
        font-weight: bold;
        color: #FFFFFF;
        line-height: 150%;
        text-align: right;
    }

        .swiper-slide .slide-title .slide-title-text {
            align-self: flex-end;
            padding: 1rem 2rem 1rem 2rem;
            background-color: rgba(0,0,0,0.6);
            -webkit-border-top-left-radius: 8px;
            -webkit-border-bottom-left-radius: 8px;
            -moz-border-radius-topleft: 8px;
            -moz-border-radius-bottomleft: 8px;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

.swiper-button-next,
.swiper-button-prev {
    color: rgba(255,255,255,0.66);
}

.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #000000;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background-color: #FFFFFF;
    opacity: 0.9;
}

@media (max-width : 767px) {

    .swiper-button-next,
    .swiper-button-prev,
    .swiper-pagination {
        display: none;
    }

    .swiper-slide .slide-title {
        position: absolute;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.66);
    }

        .swiper-slide .slide-title .slide-title-text {
            margin-bottom: 0;
            padding: 16px 8px;
            font-size: 16px;
            line-height: 24px;
            background-color: transparent;
            -webkit-border-radius: 0px;
            -moz-border-radius: 0px;
            border-radius: 0px;
        }
}

/* Big Photo */

.big-photo {
    width: 100%;
}

.big-photo img,
.big-photo picture {
    width: 100%;
    height: auto
}

.big-photo .img-fluid {
    width: 100%;
    height: auto;
}

/* Photo Group 100% width w/no gutters */

.photo-group-100 {
    border-top: 4px solid #0e2612;
    border-bottom: 4px solid #0e2612;
}

.photo-group-100 .container-fluid {
    margin: 0 0;
    padding: 0 0;
}

.photo-group-100 .row,
.photo-group-100 .col,
.photo-group-100 .col-4,
.photo-group-100 .col-12 {
    margin: 0 0;
    padding: 0 0;
}

.photo-group-100 img {
    width: 100%;
}

/* Marquee */

.marquee-bg {
    position: relative;
    z-index: 999;
    background-color: #1c4d25;
    background: rgb(28,77,37);
    background: -moz-linear-gradient(180deg, rgba(28,77,37,1) 0%, rgba(37,102,49,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(28,77,37,1) 0%, rgba(37,102,49,1) 100%);
    background: linear-gradient(180deg, rgba(28,77,37,1) 0%, rgba(37,102,49,1) 100%);
    border-bottom: 4px solid #0e2612;
}

    .marquee-bg .container-xl .col-12 {
        padding-left: 0;
        padding-right: 0;
    }

.marquee-wrapper {
    overflow: hidden;
    display: none;
    width: 100%;
    height: 72px;
    background-color: transparent;
}

.marquee {
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 72px;
}

.marquee-background > .container-xl {
    padding-left: 0;
    padding-right: 0;
}

    .marquee-background > .container-xl > .row {
        margin-left: 0;
        margin-right: 0;
    }

        .marquee-background > .container-xl > .row > .col-12 {
            padding-left: 5px;
            padding-right: 5px;
        }

@media only screen and (max-width : 991px) {

    .marquee-background {
        top: 0;
        margin-bottom: 0;
    }

        .marquee-background .container-xl {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
        }

        .marquee-background > .container-xl > .row > .col-12 {
            width: 100%;
        }

    .marquee-wrapper {
        border: 0 none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }
}

/* Content Blocks */

.content {
    padding-top: 40px;
    padding-bottom: 40px;
    color: #000000;
}

    .content h1,
    .content h2,
    .content h3,
    .content h4,
    .content h5 {
        margin-bottom: 1.5rem;
        color: #052915;
        line-height: 125%;
        text-wrap:balance;
    }

.content h1 {
    font-size: 175%;
    font-weight: bold;
    line-height: 125%;
}

    .content h2 {
        font-size: 150%;
        font-weight: bold;
        line-height: 125%;
    }

h2.home-subtitle {
    color: #326a4b !important;
}

    .content h3 {
        font-size: 125%;
        font-weight: bold;
        line-height: 125%;
    }

.content h4,
.content h5 {
    font-size: 100%;
    line-height: 125%;
}

.content p {
    margin-bottom: 1.5rem;
}

.content ul {
    margin-bottom: 1.5rem;
}

.content hr {
    border-width: 2px;
    border-color: #5e39a8;
}

.content .card {
    background-color: #FDFDFD;
}

.content .card-body ul {
    padding-left: 1.5rem;
}

.content .card-body ul.fa-ul {
    margin-left: 0.5rem;
}

.content .card-body ul.fa-ul .fa-li {
    left: -2.5rem;
    width: 2.5rem;
}

.content .photo {
    border: 1px solid #111029;
}

.content .font-size-16 {
    font-size: 16px;
    line-height: 175%;
}

.content .shadow {
    box-shadow: 0px 10px 15px -5px rgba(0,0,0,0.5) !important;
}

/* Border Helpers */
.border-top {
    border-top: 4px solid #1be475 !important;
}

.border-bottom {
    border-bottom: 4px solid #1be475 !important;
}

/* Colored Sections */

.content.gradient-bg {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#052915+0,0c5e2f+100 */
    background: linear-gradient(to bottom, #052915 0%,#0c5e2f 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    background-color: #052915;
}

    .content.gradient-bg .card {
        overflow: hidden !important;
        border: 2px solid #fff;
    }

/* Google Map */

.map .container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.embed-google-map {
    padding-bottom: 33%;
    color: #000000;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

@media only screen and (max-width: 1199px) {

    .embed-google-map {
        padding-bottom: 42%;
    }
}

@media only screen and (max-width: 991px) {

    .embed-google-map {
        padding-bottom: 56%;
    }
}

@media only screen and (max-width: 767px) {

    .embed-google-map {
        padding-bottom: 75%;
    }
}

/* ADA Skip Links */

.skip_links {
    text-align: left;
}

.skip_links a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip_links a:focus, .skip_links a:active {
    position: static;
    left: 5px;
    top: 5px;
    width: auto;
    height: auto;
    padding: 10px 10px;
    overflow: visible;
    text-decoration: none;
    color: #000000;
    border: 1px solid #FFFFFF;
    background-color: #FCFCFC;
} 

/* Form Stuff */

textarea.form-control {
    resize: none;
}

/* Multi-Column Lists */

.two-col-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
}

.three-col-list {
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
}

.four-col-list {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

@media (max-width : 767px) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        columns: initial;
        -webkit-columns: initial;
        -moz-columns: initial;
    }
}

@media (min-width : 768px) And (max-width : 991px) {

    .two-col-list {
        columns: initial;
        -webkit-columns: initial;
        -moz-columns: initial;
    }

    .three-col-list,
    .four-col-list {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .content img.img-fluid {
        width: 100%;
        max-width: 100%;
    }

    .two-col-list,
    .three-col-list,
    .four-col-list {
        margin-left: 0;
    }

        .two-col-list .fa-li,
        .three-col-list .fa-li,
        .four-col-list .fa-li {
            position: relative;
            display: inline-block;
            left: 0;
        }
}

@media (max-width : 767px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

@supports (-ms-ime-align: auto) {

    .two-col-list,
    .three-col-list,
    .four-col-list {
        margin-left: 0;
    }

        .two-col-list .fa-li,
        .three-col-list .fa-li,
        .four-col-list .fa-li {
            position: relative;
            display: inline-block;
            left: 0;
        }
}
/* Contact Page */

.ratio.google-map {
    padding-bottom: 33%;
}

@media (max-width : 767px) {

    .ratio.google-map {
        padding-bottom: 66%;
    }
}

/* Separator Graphics */

.separator {
    width: 100%;
    height: 24px;
    margin: 1.5rem 0;
    background-repeat: no-repeat;
    background-position: center center;
}

    .separator.separator-concrete {
        background-image: url('/Images/Layout/concrete-dark.png');
    }

    .separator.separator-contractor {
        background-image: url('/Images/Layout/contractor-dark.png');
    }

    .separator.separator-whyus {
        background-image: url('/Images/Layout/whyus-dark.png');
    }