/* CSS Document */
/*------------------------------------*\
  #GENERAL HOME PAGE
\*------------------------------------*/

/*------------------------------------*\
  #SLIDER
\*------------------------------------*/
div.down-arrow {
    width: 100%;
    background: #111;
    z-index: 99;
    cursor: pointer;
}

div.down-arrow::before {
    content: "╲╱";
    color: #fff;
    position: absolute;
    opacity: 1;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
    font-size: 20px;
    width: 60px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px;
    bottom: 125px;
    left: 50%;
    margin-left: -30px;
    z-index: 999;
    animation: bounce 1s ease infinite;
}

#slideshow-main .carousel-indicators {
    display: none;
    /* bottom: 90px; */
}

@keyframes bounce {
    50% {
        transform: translateY(-30%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bounce2 {
    50% {
        transform: translateY(-30%);
    }

    100% {
        transform: translateY(0);
    }
}

#slideshow-main .carousel-caption {
    top: unset;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;

    background: var(--blue-md);

    color: white;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

#slideshow-main .carousel-caption .slider-header {
    display: block;
    margin: 0;
    padding: 0 35px;
    color: white;
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
}

#slideshow-main .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#slideshow-main .overlay {
    background-color: #00000070;
}

#slideshow-main .overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

button#slideshow-main-toggle {
    position: absolute;
    z-index: 10;
    bottom: 120px;
    right: 15px;

    padding: 15px;
    border-radius: 100px;
}

.carousel-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-toggle svg {
    width: 1rem;
    height: 1rem;
    display: block;
    fill: currentColor;
}

.carousel-toggle__play,
.carousel-toggle__pause {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.carousel-toggle__play {
    display: none;
}

.carousel-toggle__pause {
    display: inline-flex;
}

.carousel-toggle.is-paused .carousel-toggle__play {
    display: inline-flex;
}

.carousel-toggle.is-paused .carousel-toggle__pause {
    display: none;
}

@media (max-width: 1400px) {
    #slideshow-main .carousel-caption .slider-header {
        font-size: 40px;
    }

    #slideshow-main .carousel-item .btn {
        padding: 5px 40px;
    }

    div.down-arrow::before {
        bottom: 40px;
    }
}

@media (max-width: 1000px) {
    #slideshow-main .carousel-caption .slider-header {
        font-size: 30px;
    }

    #slideshow-main .carousel-item img {
        height: 400px;
    }

    button#slideshow-main-toggle {
        bottom: unset;
        top: 20px;
    }
}

/*------------------------------------*\
  #EVENTS & MISSION SECTION
\*------------------------------------*/

.home__events-mission-wrapper {
    position: relative;
}

.first-home-section {
    flex-wrap: nowrap;

    padding: 0 35px;
}

.home__events-mission__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff66;
}

@media (max-width: 1200px) {
    .first-home-section {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/*------------------------------------*\
  #EVENTS SECTION
\*------------------------------------*/
.home-events .card-body > a {
    display: block;
    background-color: #0060af;
    color: white;
    text-align: center;
    padding: 10px;
}

.home__events-wrapper {
    flex: 0 0 35%;

    padding: 25px 0;
}

.events-top-content img {
    margin-bottom: 3rem;
    border-radius: 5px;
}

.events .events-large-icon {
    align-self: center;
    text-align: center;
}

.events-icon-large .fa-calendar-alt {
    font-size: 65px;
}

.home-events .events .event-title {
    color: var(--blue-dk);
    font-size: 20px;
}

.home-events .events .event-information {
    color: var(--blue-dk);
    font-size: 18px;
    font-family: CachetBookRegular !important;
    font-weight: 200;
    line-height: 20px;
}

.home-events .events .events-icon {
    color: var(--blue-dk);
    font-size: 50px;
}

.home-events .events li {
    border: 1px solid var(--blue-dk);
    margin-bottom: 15px;
    border-radius: 12px;
    padding: 12px;
}

.home-events {
    background-color: var(--white);
    border: 4px solid var(--blue-dk);
    border-radius: 10px;
}

.home-events .no-events {
    text-align: center;
    display: block;
    padding: 50px 10px;
    font-size: 20px;
}

.home-events .events {
    padding: 25px 45px;
}

.home-events .events {
    list-style-type: none;
    margin-bottom: 0;
}

.home-events span {
    color: var(--blue-dk);
    font-size: 18px;
    text-align: left;
}

.home-events .events a {
    display: flex;
}

.home-events .events .events-content {
    display: block;
}

.home-events .events .event-title,
.home-events .events .event-information {
    display: block;
}

.home-events a.view-events-button {
    display: block;
    text-align: center;
    text-transform: uppercase;
    padding: 8px;
    color: var(--blue-dk);
    background-color: var(--purple-md);
    border-radius: 5px;
    font-size: 16px;
}

.home-events a.view-events-button:hover {
    background: #c6168d;
}

@media (max-width: 1200px) {
    .events .events-icon {
        display: none;
    }

    .home__events-wrapper {
        flex: 0 0 100%;
    }
}

/*------------------------------------*\
  #MISSION SECTION
\*------------------------------------*/
.first-home-section .card {
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.home__mission-wrapper {
    flex-grow: 1;
}

.first-home-section .card-body {
    padding: 0;
}

.mission-content {
    padding: 40px 75px;
}

.mission-content h2 {
    color: var(--black);
    font-size: 45px;
}

.mission-content p {
    color: var(--black);
    font-size: 25px;
    font-weight: 700;
}

.mission-content .h4 {
    display: block;
    margin-bottom: 15px;
    color: var(--black);
}

.mission-content h2:after {
    content: "";
    display: block;
    width: 15%;
    margin: 30px auto 30px 0;
    border-bottom: 5px solid var(--purple-lt);
}

@media (max-width: 1200px) {
    .home__mission-wrapper {
        flex: 0 0 100%;
    }
    .mission-content {
        padding: 40px 0px;
    }
}

/*------------------------------------*\
  #IMAGE LINKS
\*------------------------------------*/
.home .related-images img {
    height: 400px;
}

h2.facebook-feed-header {
    font-size: 32px !important;
    margin: 25px 0 0;
}
h2.facebook-feed-header::after {
    display: none !important;
}

/*------------------------------------*\
  #FOOTER SECTION
\*------------------------------------*/
.footer-content-section {
    text-align: center;
}

.footer-content-section .fb_iframe_widget {
    border: 5px solid var(--black);
    border-radius: 5px;
}

.footer-content-section .card {
    background-color: transparent;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
}

.footer-content-section h2 {
    text-transform: uppercase;
    font-size: 50px;
    color: var(--black);
}

.footer-content-section p {
    font-size: 25px;
    color: var(--black);
}

.footer-content-section h2:after {
    content: "";
    display: block;
    width: 15%;
    margin: 20px auto 30px auto;
    border-bottom: 5px solid var(--purple-lt);
}

.home__footer-top {
    position: relative;
}

.home__footer-top__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #ffffff66;
}

@media (max-width: 992px) {
    .home__footer-top__row {
        padding: 60px 0;
        gap: 30px;
    }
}
