/*------------------------------------*\
  #BASE
\*------------------------------------*/

html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}


body {
    font-family: 'proxima-nova', 'Arial Narrow', Arial, sans-serif;
    color:rgb(204,204,204);
    background-color: black;
}


p {
    
    font-weight: 100;
    font-size: 1.5rem;
    line-height: 1.5;
}


h3 {
    font-family: 'proxima-nova-extra-condensed', 'Arial Narrow', Arial, sans-serif;
    font-weight: 400;
    font-size: 2.5rem
}


nav {
    background: rgb(54,54,54);
    background: radial-gradient(circle, rgba(54,54,54,1) 0%, rgba(0,0,0,1) 100%);
}


.header-logo {
    height: 40px;
}





/*------------------------------------*\
  #CAROUSEL
\*------------------------------------*/

.carousel {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 69px;
}
    .carousel-caption {
        text-align: left;
        left: inherit;
        right: inherit;
        color: inherit;
        bottom: inherit;
        top: inherit;
    }
    .carousel-control-next {
        right: -49px;
    }

    .carousel-control-prev {
        left: -49px;
    }

    .carousel-item {
        justify-content: center;
    }

        .carousel-item.active {
            display: flex;
        }

        .carousel-item img {
            width: 250px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

    .carousel-veneer {
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: -14px;
        left: -13px;
    }
        .carousel-veneer img {
            width: 277px;
            margin-left: auto;
            margin-right: auto;
            display: block;
        }

.slider-captions {
    height: 350px;
    position: relative;
}
    @media (min-width: 400px) {
        .slider-captions {
            height: 250px;
        }
    }
    @media (min-width: 576px) {
        .slider-captions {
            height: 250px;
        }
    }

    @media (min-width: 992px) {
        .carousel {
            width: 330px;
        }

        .carousel-caption {
            top: 240px;
        }

        .carousel-control-next {
            right: -69px;
        }

        .carousel-control-prev {
            left: -69px;
        }

        .carousel-item img {
            width: 330px;
        }

        .carousel-veneer {
            left: -17px;
        }

            .carousel-veneer img {
                width: 365px;
            }

        .slider-captions {
            height: 786px;
        }
    }





/*------------------------------------*\
  #FEATURE
\*------------------------------------*/

.feature {
    display: flex;
    flex-direction: column;
}
    .feature:hover > .feature__link {
        opacity: 1;
    }

    .feature__icon {
        width: 4rem;
        height: 4rem;
        border-radius: .75rem;
        background-image: linear-gradient(180deg, #10a94c, #007e3a);
    }

    .feature__link {
        opacity: 1;
        transition: opacity .4s ease-in-out;
        margin-top: auto;
    }





    /*------------------------------------*\
  #HERO
\*------------------------------------*/

    .hero {
        color: #fff;
        background-color: #000;
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero__background {
        background-image: url("../images/bg.jpg");
        background-size: cover;
        background-position-x: right;
        background-position-y: center;
        height: 100%;
        width: 100%;
        position: absolute;
        opacity: 0.3;
    }

    .hero__image {
        z-index: 1;
        justify-content: center;
        display: flex;
        padding: 1rem;
        max-height: 50vh;
    }

    @media (min-width: 1200px) {
        .hero__image {
            max-height: 75vh;
        }
    }

    .hero__image img {
        width: auto;
        height: 100%;
        display: block;
        align-self: flex-start;
    }


    .hero__text {
        font-family: 'proxima-nova-extra-condensed', 'Arial Narrow', Arial, sans-serif;
        font-weight: 700;
        font-size: 5rem;
        line-height: 0.95;
        white-space: nowrap;
        text-shadow: 0 0 25px black;
        position: relative;
    }

    @media (min-width: 768px) {
        .hero__text {
            font-size: 8rem;
        }
    }

    @media (min-width: 992px) {
        .hero__text {
            font-size: 8rem;
        }
    }

    .hero__byline {
        font-family: 'proxima-nova-extra-condensed', 'Arial Narrow', Arial, sans-serif;
        font-size: 3rem;
        position: relative;
        text-shadow: 0 0 25px black;
    }

    .text-pd-green {
        color: #10a94c;
    }

    .psllc-theme {
        background-color: #222;
        border-color: #080808;
        color: #fff;
    }

        .psllc-theme a {
            color: #fff;
            text-decoration: none;
        }

            .psllc-theme a:hover,
            .psllc-theme a:focus {
                color: #04955F;
                background-color: transparent;
            }

            .psllc-theme a.dropdown-item {
                color: #212529;
            }

                .psllc-theme a.dropdown-item:hover {
                    color: #212529;
                    background-color: #e9ecef;
                }





    /*------------------------------------*\
  #BUTTONS
\*------------------------------------*/

    @keyframes button-shine {
        0% {
            background-position: 0 0;
        }

        100% {
            background-position: 100% 0;
        }

        100% {
            background-position: 100% 0;
        }
    }


    .btn-primary {
        background-color: #10a94c;
        border-width: 0;
        background-image: linear-gradient(to right, #10a94c, #007e3a, #10a94c, #007e3a);
        box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 0%);
        color: #fff;
        background-size: 300% 100%;
        -moz-transition: background .4s ease-in-out;
        -o-transition: background .4s ease-in-out;
        -webkit-transition: background .4s ease-in-out;
        transition: background .4s ease-in-out;
    }

        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active,
        .btn-primary.active,
        .open .dropdown-toggle.btn-primary {
            color: #fff !important;
            box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%);
            background-position: 100% 0;
            -moz-transition: background .4s ease-in-out, box-shadow 100ms ease-in-out;
            -o-transition: background .4s ease-in-out, box-shadow 100ms ease-in-out;
            -webkit-transition: background .4s ease-in-out, box-shadow 100ms ease-in-out;
            transition: background .4s ease-in-out, box-shadow 100ms ease-in-out;
        }

        .btn-primary:focus {
            color: #fff !important;
            outline: -webkit-focus-ring-color auto;
        }

        .btn-primary:active {
            box-shadow: 0 0.25rem 0.25rem rgb(0 0 0 / 35%) !important;
            -moz-transition: box-shadow 50ms ease-in-out;
            -o-transition: box-shadow 50ms ease-in-out;
            -webkit-transition: box-shadow 50ms ease-in-out;
            transition: box-shadow 50ms ease-in-out;
        }





    /*------------------------------------*\
  #FOOTER
\*------------------------------------*/

    footer .row + .row {
        margin-top: 1rem;
    }

    footer form {
        margin: 0 auto;
    }

    footer p,
    footer ul {
        text-align: center;
        font-size: 1rem;
    }


    @media (max-width: 992px) { /* Display video background at the large breakpoint */
        footer input {
            max-width: 100% !important;
        }
    }



    .google-map {
        border: 0;
        max-width: 100%;
        max-height: 450px;
        width: 100%;
        /*margin: 1.5em auto 0 auto;*/
        height: 450px;
        display: block;
        border-radius: 0.25rem;
    }


    .social-media {
        justify-content: center;
        display: flex;
    }

    .social-media-icons {
        width: 45px;
        height: 45px;
        font-size: 45px;
        text-decoration: none;
        display: inline-flex;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        background-size: contain;
    }

    .footer-list > li > a:hover {
        display: inline;
        color: #04955F;
        text-decoration: none;
    }

    .footer-list-item {
        display: inline;
        padding: 8px 15px;
    }