@charset "UTF-8";

html, body {
    height: 100%;
}

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

main {
    min-height: 100%;
}

.container {
    max-width: 1260px !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: #002c66;
    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: #2d6680;
    font-family: ubuntu, sans-serif;
    font-weight: 700;
    font-style: normal;
}

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

h2 {
    font-size: 2.5em;
    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;
}

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

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

.lt-blue-text {
    color: #00A7CC;
}

.blue-text {
    color: #0C3954 !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: 81px;
    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: 330px;
}

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

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

.bg-blue {
    background-color: #0C3954 !important;
}


.border-blue {
    border: solid 1px #0C3954;
}

.lt-title {
    background-color: #00A7CC;
}

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

.news-text {
    font-weight: 400;
}

.sm-caption {
    font-weight: 400;
    font-size: .9em;
    color: #2d6680;
}
.video-text {
    font-weight: 400;
    font-size: 1.4em;
    color: #00A7CC;
}
.star {
    text-align: center;
    position: relative;
    width: 22%;
    margin: auto;
    top: -59px;
    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: #2b627C !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: #00A7CC;
}

.navbar-collapse {
    position: absolute;
    background-color: #2b627c;
    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: #00A7CC;
    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: #a8d3e6 !important;
    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: #00A7CC !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: #2d6680 !important;
    color: #FFFFFF;
}


.topsociallinks a:hover, .topsociallinks a:active {
    background-color: #00A7CC;
    color: #FFFFFF;
}

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

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


/*Nav Stuff*/
.navbar {
    margin-top: 5px;
    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: #0C3954 !important;
    border-color: #acaeb9 !important;
}

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

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

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

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

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

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

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

.detail-link {
    font-size: 1.2em;
    color: black;
    border-radius: 0;
    margin-top: -32px;
    background-color: #00A7CC;
    position: relative;
}

.arrow-button {
    display: flex; /* Aligns content and arrow horizontally */
    align-items: center; /* Centers content and arrow vertically */
    padding: 10px 20px;
    background-color: #00A7CC;
    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: 0px;
    width: 100%;
    overflow: hidden;
}

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

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

.carousel-caption {
    font-family: ubuntu, sans-serif;
    width: 100%;
    font-size: 1em;
    line-height: 1.2em;
    padding: 20px;
    background-color: rgba(12, 57, 84, 1);
    right: 0px !important;
    margin-top: -74px;
    left: 0px !important;
    bottom: 0px !important;
}


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

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

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

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

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

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

.image-wrap {
    top: 61px;
    width: 140%;
    height: 126vw;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    max-height: 960px;
}

.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 */
    }
}

.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: 10px;
}

.blurb-bg {
    background-size: 100%;
    background-position-x: center;
    background-position-y: -7px;
    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: 1.7em;
    color: #2d6680;
    padding-top: 49px;
    padding-bottom: 10px;
    min-height: 122px;
    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: #0C3954 !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;
}

.bg-news {
    background-color: #00A7CC;
    margin-top: 140px;
}
.news-container {
    min-height: 735px;
}

.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.1em;
    min-height: 115px;
    padding-bottom: 20px;
}

.blurb-header-bg {
    height: 173px;
}

.page-blurb-title {
    position: relative;
    padding-left: 28px;
    padding-right: 30px;
    padding-bottom: 38px;
    font-size: 2.3em;
    font-weight: 700;
    width: 100%;
}

.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: #2d6680;
    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: #2d6680;
}

.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-top: 3.2rem;
    position: relative;
    z-index: 4000;
    right: 85px;
    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;
}

.home-text {
    font-size: 1em;
    padding: 20px;
}

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

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

.testimonial-heading {
    padding-top: 50px;
    font-size: 2.6em;
    padding-bottom: 33px;
}

.testimonial-padding {
    padding-left: 10px;
    padding-right: 10px;
    top: 0px;
    padding-bottom: 100px;
}

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

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

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

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

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

.footer-bg {
    background-color: #0C3954;
}

footer {
    position: relative;
    height: 150px;
    margin-top: -140px;
    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: #7bc1db;
}


.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 {
    margin-top: 2rem;
}

.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;
}
.sponsor-logo {
    max-height: 130px;
    max-width: 85%;
    padding-bottom: 45px;
}

.sponsor-container {
    display: flex; /* Make the container a flex container */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally within the container (optional) */
    justify-content: center; /* Center items vertically within the container (optional) */
}

.sponsor-container img {
  display: inline-block; /* Or inline */
  vertical-align: middle;
}

.video-container {
    display: flex;
    justify-content: center;
}

.simply-countdown > .simply-section {
    width: 65px;
    height: 68px;
    padding: 30px;
}


iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}
.simply-countdown > .simply-section {
    box-shadow: none;
}

/*
    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) {

    h1 {
        font-size: 2.8em;
    }

    h2 {
        font-size: 2.5em;
    }

    h3 {
        font-size: 1.9em;
    }
    .page-blurb-title {
       padding-top: 0px;
       font-size:3em;
    }
    .simply-countdown > .simply-section {
        width: 140px;
        height: 140px;
    }
    .top-bar {
        min-height: 130px;
    }

    .image-wrap {
        height: 136vw;
    }

    .blurb-header-bg {
        height: 200px;
    }
    
    .form-control {
        width: 100%;
    }

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

    .logo-size {
        width: 91%;
    }

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

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

    .carousel-inner {
    }
    .carousel-caption {
        background-color: rgba(12, 57, 84, 0.80);
    }

    .image-wrap {
        width: 100%;
        height: 55vw;
        top:0px;
    }

    .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;
    }

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

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

    .home-text {
        font-size: 1.3em;
        padding: 68px;
    }

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

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

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

    }
    .carousel-caption p {
        font-size: 2em;
        font-weight: 100;
        line-height: 1.4em;
    }

    .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: #0C3954 !important;
    }
    
    .caption-overlay {
        padding: 20px;
    }
    .sponsor-logo {
        max-width: 100%;
        padding-bottom: 5px;
    }
    .testimonial-text p {
        font-size: 2em !important;
        margin-left: 16vw;
        margin-right: 16vw;
    }
    .testimonial-padding {
        top: 30px;
    }

}

/* 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.4em;
        line-height: 1.4em;
    }

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

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

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

    .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: 100%;
    }
}