@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: "poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    overflow-x: hidden;
}

main {
    min-height: 70%;
}

.container {
    max-width: 1300px !important;
}

img, object, embed {
    max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
    width: 100%;
}

img {
    border: none;
    outline: none;
}

hr {
    clear: both;
}

a:active {
    outline: none;
}

a:link, a:visited {
    color: #bbbbbb;
    text-decoration: none;
}

a:hover, a:active {
    color: #686868;
}

/*
a {
	transition: all 0.2s ease-in-out 0s;
	-webkit-transition: all 0.2s ease-in-out 0s;
	-moz-transition: all 0.2s ease-in-out 0s;
}
*/

/* Bounce Stuff */
.bounceit {
    margin-top: 50px;
    width: 100%;
    text-align: center;
    bottom: 0px;
    animation: bounce 1s infinite alternate;
    -webkit-animation: bounce 1s infinite alternate;
    position: absolute;
}

@keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(-15px);
    }
}

/*Page Fade In*/
/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media screen {
    body {
        opacity: 0; /* make things invisible upon start */
        -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
        -moz-animation: fadeIn ease-in 1;
        animation: fadeIn ease-in 1;

        -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
        -moz-animation-fill-mode: forwards;
        animation-fill-mode: forwards;

        -webkit-animation-duration: 1s;
        -moz-animation-duration: 1s;
        animation-duration: 1s;

        -webkit-animation-delay: 0.1s;
        -moz-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }
}

/*Page Fade End*/


/* Site Headers */

h1, h2, h3, h4, h5, h6 {
    color: #FFFFFF;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

h1 {
    font-size: 2.2em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

h2 {
    font-size: 1.9em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
    font-weight: bold;
}

h3 {
    font-size: 1.9em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h4 {
    font-size: 1.7em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h5 {
    font-size: 1.4em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

h6 {
    font-size: 1.1em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.logo-size {
    width: 100%;
    margin-top: 10px;
    margin-left: -10px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

header {
    background-color: #000000;
    height: 175px;
}

.page-header {
    font-size: 4em;
}

.border-3 {
    border-width: 3px !important;
}

.bg-light {
    background-color: #e9ecef !important;
}

.bg-dark {
    background-color: #242424 !important;
}

.lt-green {
    color: #a7d0af;
}

.bg-lt-green {
    background-color: #ecf4f0 !important;
}

.bg-lt-blue {
    background-color: #f3f5f7 !important;
}

.navbar {
    min-height: 45px;
}

.nav-padding {
    padding-left: 1rem;
    right: 50%;
    position: absolute;
    width: 340px;
    background-color: rgba(0, 0, 0, .9);
    top: 73px;
    padding: 25px;
}

.navbar-nav.navbar-center {
    /*position: relative;*/
    /*left: 10%;*/
    /*transform: translatex(-50%);*/
}

.navbar-nav .nav-item {
    font-size: 1.8em;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.nav-item:last-of-type {
    border-right: none;
}

.navbar-nav .nav-item .nav-link:hover {
    margin-top: -2px;
    font-size: 1.1em;
    color: #FFFFFF !important;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.navbar-nav .nav-link {
}

.navbar-dark .navbar-toggler {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

#careers {
    margin-right: 0px;
}

.dropdown-item {
    font-size: 1.3em;
}

.dropdown-item:hover {
    color: #FFFFFF;
    background-color: #36a533;
}

.dropdown-menu {
    margin-top: 30px;
}

.search-bar {
    min-width: 310px;
    margin-bottom: 40px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.mini-basket-w {
    width: 320px;
    font-size: .9em;
}

.form-control {
    width: 75%;
}

.phone-number {
    font-size: 1.4em;
    margin-right: 0px;
    padding-bottom: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sociallinksBox {
    text-align: center;
}

.sociallinksBox img {
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 8px;
}

/* For FontAwesome icons */
.sociallinksBox a, .sociallinksBox a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    color: #FFFFFF !important;
    width: 25px !important;
    height: 25px !important;
    padding: 5px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 14px !important;
}

.sociallinksBox a:last-of-type {
    margin-right: 0px;
}

.sociallinksBox a:first-of-type {
    margin-left: 0px;
}

.sociallinksBox a:link, .sociallinksBox a:visited {
    background-color: #000000;
    color: #FFFFFF;
}

.sociallinksBox a:hover, .sociallinksBox a:active {
    background-color: #999999;
    color: #FFFFFF;
}

.topsociallinks {
}

.topsociallinks a {
    margin-right: 3px !important;
    margin-left: 3px !important;
    text-align: center !important;
    width: 40px !important;
    height: 40px !important;
    padding: 7px 0px 0px 0px !important;
    font-size: 26px !important;
    line-height: 26px !important;
}

.topsociallinks a:link, .topsociallinks a:visited {
    background-color: #bbbbbb;
    color: #FFFFFF;
}

.topsociallinks a:hover, .topsociallinks a:active {
    background-color: #8b8c8d;
    color: #FFFFFF;
}


/*Nav Stuff*/
.navbar {
    position: relative;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0rem 1rem;
    z-index: 2000;
    margin-top: 70px;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.section-padding {
    margin-top: 90px;
}

.btn-primary {
    background-color: #36a533;
    color: #FFFFFF !important;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    border-color: #36a533 !important;
}

.btn-primary:hover {
    background-color: #20bd1c;
    color: #FFFFFF;
}

.btn-padding {
    padding-top: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
}

.button-top-padding {
    padding-top: 5px;
    margin-top: -5px;
}

.btn-group-lg > .btn, .btn-lg {
    font-size: 1rem;
}


.btn-outline-primary {
    color: #dddddd !important;
    border-color: #8b8c8d !important;
}

.btn-outline-primary:hover {
    background-color: #8b8c8d !important;
    color: #FFFFFF !important;
}

.btn-outline-secondary {
    order-radius: 10px;
    color: rgb(54, 165, 51) !important;
    border-color: rgb(54, 165, 51) !important;
}

.btn-outline-secondary:hover {
    background-color: rgb(54, 165, 51) !important;
    color: #FFFFFF !important;
}

.slider-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
}

.slider-spacer {
    min-height: 760px;
}

.carousel-item p {
    font-size: 1.3em;
}

.carousel-inner {
    max-height: 685px;
}

.carousel-caption {
    position: relative !important;
    margin-top: -15rem;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    background-color: rgba(13, 113, 56, 0.80);
    right: 0px !important;
    left: 0px !important;
    bottom: 0px !important;
}

.carousel-caption p {
    color: #FFFFFF;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.3em;
    padding-right: 60px;
    padding-left: 60px;
}

.carousel-control-prev {
    width: 70px !important;
}

.carousel-control-next {
    width: 70px !important;
}

.blurb-border {
    border: 2px solid #fff;
}

.blurb-images {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;

}

.featured-text {
    font-size: 1.14em;
}

.lSSlideOuter .lSPager.lSGallery li {
    max-height: 89px;
    border: 3px solid #FFFFFF;
}

.lSSlideWrapper {
    border: 3px solid #FFFFFF;
}

.scale-up {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
}

.scale-down {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.darken {
    filter: brightness(50%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.lighten {
    filter: brightness(100%);
    overflow: hidden;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.blurb-button {
    margin-bottom: 60px;
}

.blurb-caption {
    margin-top: -204px;
    position: inherit;
}

.blurb-text {
    font-size: 1.3em;
    padding-top: 12px;
    padding-bottom: 4px;
}

.blurb-bg {
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
}

.min-blurb-height {
    min-height: 330px;
}

.img-height {
    height: 370px;
}

.blurb-header-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: center;
    max-height: 320px;
}

.page-blurb-title {
    padding-left: 30px;
    font-size: 3.5em;
    margin-top: -130px;
}

.overlay {
    width: 100%;
    background-color: rgba(74, 102, 131, 0.7);
    height: 320px;
}

.border-2 {
    border-width: 2px !important;
}

.video-margin {
    min-height: 730px;
}

.home-text {
    font-size: 1em;
    margin-top: 225px;
    background-color: rgba(0, 0, 0, .7);
    color: #FFFFFF;
    position: absolute;
    z-index: 1;
    border: 3px solid #fff;
    padding: 50px;
    margin-left: 5%;
    margin-right: 8%;
}

.home-text h1 {
    font-size: 1.8em;
    line-height: 1.5em;
    color: #FFFFFF;
}

.medium-text {
    font-size: 1.2em;
}

.inside-text {
    font-size: 1.2em;
}

.testimonal-heading {
    font-size: 3em;
    font-family: "poppins", sans-serif;
    font-weight: 700;
}

.testimonal-padding {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 100px;
    padding-bottom: 100px;
}

.quote-size {
    width: 4% !important;
}

.quote-left {
    margin-right: 0px;
}

.quote-right {
    margin-left: 0px;
}

.testimonal-bottom {
    margin-bottom: 10px;
}

.footer-bg {
    background-color: #686868;
}

footer {
    position: relative;
    height: 150px;
    clear: both;
}

footer .list-group-item.active, footer .list-group-item {
    padding: 0.2rem 1.25rem;
    background: none;
    border: none;
    color: #FFFFFF;
}

footer .list-group-item a {
    color: #FFFFFF;
}

footer .list-group-item a:hover {
    color: #a1bdac;
}


.star-rating .yellowstar {
    color: #E6CE31 !important;
}

.sticky .navbar {
    margin-top: 50px;
}

.sticky .top-bar {
    max-height: 140px;
    z-index: 4000;
}

.sticky .logo-size {
    width: 65%;
    transition: all 0.2s ease-in-out 0s;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
}

.sticky .fa-phone {
    display: inline-block;
}

.sticky .phone-number {
    display: none;
}

.sticky .search-bar {
    margin-bottom: 10px;
}

.user-panel .card-body {
    padding: 1rem;
}

#message-outer {
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 5000;
}

#message-inner {
    display: inline-block;
    margin: 0 auto;
    width: 45%;
    padding-top: 30px;
}

/*
    X-Small devices (portrait phones, less than 576px)
    No media query for `xs` since this is the default in Bootstrap
*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .logo-size {
        width: 55%;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

    #careers {
        margin-right: 30px;
    }


    .testimonal-padding {
        padding-left: 220px;
        padding-right: 220px;
    }

    .video {
        width: 134%;
        height: 109%;
        margin-top: 61px;
    }

    .logo-size {
        width: 60%;
    }

    .form-control {
        width: 100%;
    }

}

/* Large devices (desktops, 992px and up) */


@media (min-width: 992px) {

    .navbar-nav .nav-item {
        font-size: .9em;
    }

    .nav-padding {
        padding-left: 1rem;
        right: 0;
        position: relative;
        width: 100%;
        background: none;
        top: 0px;
        padding: 0px;
    }

    header {
        background-color: rgba(0, 0, 0);
    }

    .btn-group-lg > .btn, .btn-lg {
        font-size: 1.2rem;
    }

    .video-margin {
        margin-top: -100px;
        min-height: 1000px;
    }

    video {
        width: 129% !important;
        height: 127% !important;
    }


    .home-text {
        font-size: 1.4em;
        height: auto;
        margin-left: 30px;
        margin-right: 10%;
    }

    .home-text h1 {
        font-size: 4vw;
    }

    .logo-size {
        width: 95%;
    }

    .navbar-nav .nav-item {
        font-size: 1em;

    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .1rem;
        padding-left: .1rem;
    }

    .logo-container {
        max-width: none;
    }

    .carousel-caption {
        font-size: 1.4em;
        line-height: 1.4em;
    }
}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    .home-text h1 {
        font-size: 2.8em;
        line-height: 1.4;
    }

    .home-text {
        margin-right: 30%;
    }

    .navbar-nav .nav-item {
        font-size: 1em;
        margin-left: .6rem;
        margin-right: .6rem;
    }

    video {
        width: 110% !important;
        height: 120% !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {

    header {
        background-color: rgba(0, 0, 0, .9);
    }


    .navbar-nav .nav-item {
        font-size: 1.2em;
        margin-left: .9rem;
        margin-right: .9rem;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .3rem;
        padding-left: .3rem;
    }

    .sticky .logo-size {
        width: 60%;
    }

    video {
        width: 107% !important;
        height: 113% !important;
    }

    .logo-size {
        width: 70%;
    }
}