@charset "UTF-8";

html, body {
    height: 100%;
}

body {
    background-color: #FFFFFF !important;
    font-family: source-sans-3, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

main {
    min-height: 100%;
}

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

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

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 57.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 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: #044434;
    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: #044434;
    font-family: barlow-condensed, sans-serif;
    font-weight: 600;
    font-style: normal;
}

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

h2 {
    font-size: 2em;
    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.3em;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 5px;
    margin-left: 0px;
}

.logo-container {
    margin-left: 2vw;
    width: 30vw;
    min-width: 300px;
    padding-left: 30px;
    padding-top: 25px;
}

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

.corian-advantage-hdr {
    font-size: 3em;
    text-transform: uppercase;
    color: #FFFFFF !important;
    font-family: barlow-condensed, sans-serif;
}

.lt-blue-text {
    color: #5bbbdb;
}

.corian-blue-text {
    color: #0592cb;
}

.blue-text {
    color: #002c66 !important;
}

.green-text {
    color: #24938a !important;
}

.logo-size {
    width: 75%;
    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;
}

.top-bar {
    min-height: 90px;
    background: none;
    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;
}

#top_page .nav-item .nav-link:hover {
    color: #dddddd !important;
    background-color: #FFFFFF !important;
}

.content-margin-top {
    margin-top: 30px;
}

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

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

.bg-blue {
    background-color: #054e3f !important;
}

.bg-green {
    background-color: #24938a !important;
}

.bg-drk-green {
    min-height: 30px;
    background-color: #054e3f !important;
}

.border-blue {
    border: solid 1px #002c66;
}

.lt-title {
    background-color: #5bbbdb;
}

.blurb-bg-top {
    background-color: #f6f6f6;
}

.star {
    text-align: center;
    position: relative;
    width: 22%;
    margin: auto;
    top: -47px;
    bottom: 0px;
    z-index: 1000;
}

.navbar {
    min-height: 45px;
}

.nav-padding {
    padding-left: 1rem;
}

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

.navbar-nav .nav-item {
    font-size: 1.9em;
    color: #FFF;
}

.navbar-nav .nav-link {
    padding-left: 30px;
}

.navbar-toggler {
    margin-top: 18px;
    border: 3px solid #ffffff;
}

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

.navbar-dark .navbar-nav .nav-link {
    color: #FFFFFF !important;
    transition: all 0.2s ease-in-out 0.2s;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    -moz-transition: all 0.2s ease-in-out 0.2s;
}

.navbar-nav .nav-item .nav-link:hover {
    color: #135847 !important;
    transition: all 0.2s ease-in-out 0.2s;
    -webkit-transition: all 0.2s ease-in-out 0.2s;
    -moz-transition: all 0.2s ease-in-out 0.2s;
}

.navbar-nav .nav-link {
}

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

.navbar-collapse {
    position: absolute;
    background-color: #135847;
    top: 81px;
    right: 10px;
    padding-right: 20px;
    text-align: right;
    width: 300px;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
}

.search-bar {
    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 {
    padding-left: 80px;
    color: #FFFFFF !important;
    font-size: 1.2em;
    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;
}

.phone-number a:link, .phone-number a:active {
    color: #FFFFFF !important;
}


.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: #5bbbdb;
    color: #FFFFFF;
    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 a:hover, .sociallinksBox a:active {
    background-color: #fdc709;
    color: #FFFFFF;
}

.topsociallinks {
}

.topsociallinks a {
    margin-right: 2px !important;
    margin-left: 2px !important;
    text-align: center !important;
    width: 30px !important;
    height: 30px !important;
    padding: 7px 0px 0px 0px !important;
    font-size: 16px !important;
    line-height: 18px !important;
}

.bottomsociallinks a:link, .bottomsociallinks a:visited {
    background-color: #c9c6ad !important;
    color: #FFFFFF;
}

.bottomsociallinks a {
    display: inline-block !important;
    border-radius: 50% !important;
    margin-right: 9px !important;
    margin-left: 9px !important;
    text-align: center !important;
    width: 50px !important;
    height: 50px !important;
    padding: 10px 0px 0px 0px !important;
    font-size: 30px !important;
    line-height: 18px !important;
}

.bottomsociallinks a:hover, .bottomsociallinks a:active {
    background-color: #054e3f !important;
    color: #FFFFFF;
}


.topsociallinks a:hover, .topsociallinks a:active {
    background-color: #054e3f;
    color: #FFFFFF;
}

.footer-link {
    color: #FFFFFF !important;
    font-size: 1.5em;
    line-height: 4em;
}

.footer-link:hover {
    color: #fdc709 !important;
}


/*Nav Stuff*/
.navbar {
    margin-top: 8px;
    position: relative;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem;
    z-index: 2000;
    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;
}

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

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

.btn-outline-secondary {
    color: #9c9c9c !important;
    border-color: #9c9c9c !important;
}

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

.btn-secondary {
    color: #FFFFFF !important;
    background-color: #acaba1;
    border-radius: 0px;
}

.btn-secondary:hover {
    color: #FFFFFF !important;
    border-color: #054e3f !important;
    background-color: #054e3f;
}

.btn-primary {
    color: #FFFFFF !important;
    border-color: #24938a !important;
    background-color: #24938a;
    border-radius: 0px;
}

.btn-primary:hover {
    color: #FFFFFF !important;
    border-color: #054e3f !important;
    background-color: #054e3f;
}

.detail-link {
    font-size: 1.2em;
    color: black;
    border-radius: 0;
}

.arrow-button {
    display: flex; /* Aligns content and arrow horizontally */
    align-items: center; /* Centers content and arrow vertically */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    position: relative; /* For positioning the arrow */
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white; /* Creates the arrow head */
    margin-left: 8px; /* Spacing between text and arrow */
}

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

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

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

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

.carousel-inner {
    top: 125px;
    width: 100%;
    overflow: hidden;
    max-height: 959px;
}


.image-wrap {
    width: 100%;
    height: 90vw;
}

header {
    background: #FFFFFF;
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 0) 10%, rgba(0, 0, 0, 1) 84%); */
}

.carousel-caption {
    font-family: barlow-condensed, sans-serif;
    font-style: normal;
    position: absolute;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 20px;
    background-color: rgba(4, 78, 65, 1);
    right: 0px !important;
    left: 0px !important;
    bottom: 80px !important;
}

.carousel-caption h1 {
    color: #FFFFFF;
}

.carousel-caption h2 {
    color: #FFFFFF;
}

.carousel-caption .thin {
    font-weight: 100 !important;
}

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

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

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


.image-wrap img {
    width: 100%;
    animation: move 40s ease;
    /* Add infinite to loop. */

    -ms-animation: move 40s ease;
    -webkit-animation: move 40s ease;
    -o-animation: move 40s ease;
    -moz-animation: move 40s ease;
    position: absolute;
}

@-webkit-keyframes move {
    0% {
        -webkit-transform-origin: bottom left;
        -moz-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        -o-transform-origin: bottom left;
        transform-origin: bottom left;
        transform: scale(1.0);
        -ms-transform: scale(1.0);
        /* IE 9 */

        -webkit-transform: scale(1.0);
        /* Safari and Chrome */

        -o-transform: scale(1.0);
        /* Opera */

        -moz-transform: scale(1.0);
        /* Firefox */
    }
    100% {
        transform: scale(1.2);
        -ms-transform: scale(1.2);
        /* IE 9 */

        -webkit-transform: scale(1.2);
        /* Safari and Chrome */

        -o-transform: scale(1.2);
        /* Opera */

        -moz-transform: scale(1.2);
        /* Firefox */
    }
}

.sidebar {
    background-color: #e6e5db;
    padding: 25px;
}

.list-group-item {
    border: none;
}

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

.blurb-images {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    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;
}

.caption-overlay {
    background: #FFFFFF;
    position: relative;
    margin-top: -105px;
    padding: 30px;
    max-height: 325px;
}

.blurb-bg {
    min-height: 330px;
    background-size: 100%;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    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;
}

.blurb-title {
    font-size: 2.8em;
    color: #24938a;
    padding-top: 50px;
    padding-bottom: 10px;
    font-weight: 900;
    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;
}

.blurb-col {
    padding-right: 10px;
    padding-left: 10px;
}

.blurb-link {
    color: #0f1640 !important;
}

.blurb-link:hover .blurb-bg {
    background-size: 120%;
    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;
}

.home-text {
    margin-top: 5px;
    font-size: 1.2em;
    padding: 50px;
}

.bg-news {
    background-color: #B28D6F;
    margin-top: 140px;
}

.blog-bg {
    margin-top: 20px;
    max-height: 320px;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    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;
}


.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-header-bg {
    margin-top: 160px;
    height: 151px;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-blurb-title {
    position: relative;
    padding-left: 48px;
    padding-right: 30px;
    padding-bottom: 0px;
    font-size: 3.6em;
    line-height: 1em;
    font-weight: 700;
    width: 100%;
    margin-top: -110px;
}

.page-blurb-title h3 {
    color: #FFFFFF;
}

.inside-blurb {
    margin-top: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}

.blurb-btn-div {
    position: absolute;
    top: 200px;
}

.event-container {
    min-height: 460px;
}

.event-date {
    font-size: 2.6em;
    background-color: #24938a;
    color: #FFFFFF;
    font-weight: 700;
}

.event-title {
    font-size: 2.3em;
    color: #000000;
    font-weight: 700;
}


.event-time {
    font-size: 2em;
    color: #f16024;
    font-weight: 700;
    line-height: 1em;
}

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

.event-text {
    font-size: 1.4em;
    line-height: 1.6em;
    padding-top: 12px;
    padding-bottom: 4px;
}

.event-padding {
    padding-top: 10px;
    padding-left: 53px;
    padding-right: 53px;
}

.event-link {
    bottom: 50px;
    position: absolute;
    font-size: 1.4em;
    color: #24938a;
}

.numbers-container {
    margin-top: 140px;
    min-height: 300px;
}

.bg-numbers {
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
}

.numbers-title {
    font-size: 2.6em;
    text-align: center;
    margin-top: -340px;
    font-weight: 600;
    display: block;
}

.numbers-boxes {
    margin-top: -150px;
    margin-left: 40px;
    margin-right: 40px;
}

.number-text {
    padding: 20px;
    font-size: 4.6em;
    text-align: center;
    background-color: #FFFFFF;
    font-weight: 700;
    line-height: 1.8em;
    color: #24938a;
}

.sub-number {
    padding: 20px;
    font-size: 1.4em;
    line-height: .6em;
    text-align: center;
    background-color: #FFFFFF;
}

.btn-outline-blurb {
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    background: none !important;
}

.btn-outline-blurb:hover {
    background-color: rgb(255, 255, 255, .5) !important;
}

.donate-button {
    margin-left: 5rem;
    z-index: 4000;
    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;
}

.arrow-box {
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 50%);
    font-size: 1.2em;
    padding-right: 30px;
    text-transform: uppercase;
    border: none;
    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;
}

.event-button {
    margin-top: 2.5rem;
    position: absolute;
    z-index: 1000;
    right: 120px;
    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;
}

.event-arrow-box {
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 0% 50%);
    font-size: 1.4em;
    padding-right: 30px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    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;
}


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

.inside-text {
    font-size: 1.5em;
    padding: 10px;
}

.testimonial-top-padding {
    height: 790px;
}

.testimonial-heading {
    font-size: 2.6em;
    font-family: source-sans-3, sans-serif;
    font-weight: 700;
    padding-bottom: 12px;
}

.testimonial-padding {
    top: 40px !important;
    padding-left: 10px;
    padding-right: 10px;
    top: 30px;
    padding-bottom: 100px;
}

.testimonial-text p {
    font-size: 1.2em !important;
    margin-left: 4vw;
    margin-right: 4vw;
}

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

.quote-left {
    position: absolute;
    left: 5px;
}

.quote-right {
    position: absolute;
    right: 5px;
}

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

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

footer {
    position: relative;
    /* height: 60px; */
    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 .top-bar {
    /* max-height: 100px; */
    z-index: 4000;
}

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

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

.sticky .nav-link {
    color: #002855 !important;
}

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

.sticky .phone-number {
    font-size: 1em;
    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 .search-bar {
    margin-bottom: 10px;
}

.sticky {
    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 .topsociallinks a {
    margin-right: 2px !important;
    margin-left: 2px !important;
    text-align: center !important;
    width: 26px !important;
    height: 26px !important;
    padding: 3px 0px 0px 0px !important;
    font-size: 14px !important;
    line-height: 22px !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;
}

.sticky .donate-button {
}

.sticky .arrow-box {
    font-size: 1em;
}

.sticky .top-bar {
    background-color: #f6f6f6;
    min-height: 110px;
}

.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) {

}

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

    .carousel-item {
        top: 0px;
    }

    .home-text {
        margin-top: 80px;
    }

    .testimonial-text p {
        margin-left: 11vw;
        margin-right: 11vw;
    }


    .carousel-caption {
        background-color: rgba(4, 78, 65, 0.80);
    }

    .image-wrap {
        height: 45vw;
    }

    .carousel-inner {
        top: 58px;
    }

    .carousel-inner {
        top: 90px;
    }

    .carousel-caption p {
        font-size: 2.2em;
    }

    .top-bar {
        min-height: 90px;
    }

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2.1em;
    }

    h3 {
        font-size: 1.9em;
    }

    .form-control {
        width: 100%;
    }

    .logo-container {
        min-width: 274px;
    }

    .logo-size {
        width: 91%;
    }

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

    .content-margin-top {
        margin-top: 0;
    }


    .carousel-inner {
        top: 140px;
    }

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

    .navbar-nav .nav-link {
        padding-left: 0;
    }

    /*Nav Stuff*/
    .navbar {
        padding: 1rem 1rem;
        background: none;
    }

    .testimonal-padding {

        padding-left: 220px;
        padding-right: 220px;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .testimonial-top-padding {
        height: 490px;
    }

    .page-blurb-title {
        padding-left: 120px;
        padding-right: 30px;
        padding-bottom: 34px;
        font-size: 4.6em;
        line-height: 1em;
        font-weight: 700;
        width: 100%;
        margin-top: -110px;
    }

    .blurb-header-bg {
        margin-top: 160px;
        height: 252px;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .blurb-title {
        font-size: 1.8em;
    }

    .blurb-col {
        padding-right: 30px;
        padding-left: 30px;
    }

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

    .event-title {
        font-size: 2.8em;
    }

    .event-time {
        font-size: 2.3em;

    }

    .navbar-collapse {
        position: relative;
        background: none;
        top: 0px;
        right: 0px;
        padding-right: 0px;
        text-align: center;
        width: auto;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-align: center;
        align-items: center;
    }

    .numbers-title {
        font-size: 4.8em;

    }

    .navbar-dark .navbar-nav .nav-link {
        color: #004b3a !important;
    }

}

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


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

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

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

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

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .nav-padding {
        padding-left: 10rem;
    }

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

    .navbar-nav .nav-link {
        padding-right: .8rem !important;
        padding-left: .8rem !important;
    }
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
    .logo-size {
        width: 73%;
    }
}