/* Minification failed. Returning unminified contents.
(157,12): run-time error CSS1038: Expected hex color, found '#ffff'
 */
@keyframes slideFromLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideFromRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
.member-image {
    opacity: 0;
    animation-duration: 2s;
}

.member-quote {
    opacity: 0;
    animation-duration: 2s;
}

.company-title {
    opacity: 0;
    animation-duration: 2s;
}

.company-caption {
    opacity: 0;
    animation-duration: 2s;
}

.company-list {
    opacity: 0;
    animation-duration: 2s;
}

.news-image {
    opacity: 0;
    animation-duration: 2s;
}

.news-content {
    opacity: 0;
    animation-duration: 2s;
} 
.slide-in-left {
    animation-name: slideFromLeft;
    animation-fill-mode: forwards;
}
.slide-in-right {
    animation-name: slideFromRight;
    animation-fill-mode: forwards;
}
#advocacy {
    padding-top: 50px;
    padding-bottom: 50px;
}

.dummy-column2 {
    padding: 30px;
    background-color: white;
    border: 2px solid;
    border-radius: 30px;
    opacity: 0; 
    animation-duration: 2s;
}

.event-section {
    opacity: 0;
    animation-duration: 1s;
}
.stat-section {
    opacity: 0;
    animation-duration: 1s;
}

.sub-about {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px); 
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeBottom {
    animation-name: fadeInFromBottom;
    animation-fill-mode: forwards;
}

@keyframes fadeInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px); /* Change translateY to negative value */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeTop {
    animation-name: fadeInFromTop;
    animation-fill-mode: forwards;
}

.green-text {
    font-family: Verdana, sans-serif;
    font-size: 5em;
    color: #3B7432;
    opacity: 0;
    animation-duration: 1s;
}

.quote-text {
    font-size: 3.5em;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.contact-section {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.front-text {
    font-size: 1em;
    opacity: 0;
    animation-duration: 1s;
}

.fadeIn {
    opacity: 1;
}

nav a {
    color: #ffff;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s ease;
    font-size: 1.5em;
    position: relative;
}

    nav a:hover {
        /*background-color: #70AF66;*/
        color: white;
        text-decoration: none;
    }

        nav a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #ffffff;
            bottom: 0;
            left: 50%; /* Changed to start from the middle */
            transform: translateX(-50%); /* Center the underline horizontally */
            transition: width 0.3s ease;
        }

        nav a:hover::before {
            width: 100%; /* increase width to create the underline */
        }
        /* Splash Screen */


.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure splash screen is above other content */
}

.progress-container {
    position: absolute;
    top: calc(50% + 50px); /* Adjust the position as needed */
    width: 50%;
    height: 20px;
    background-color: #ddd;
    z-index: 10000; /* Ensure progress bar is above other content */
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #4caf50;
}

.container-fluid.header {
    background: linear-gradient(rgba(0, 30, 0, 0.5), rgba(0, 30, 0, 0.5)), url('@Url.Content("~/Content/Images/Home/homepage.jpg")') center center no-repeat;
    background-size: cover;
    position: relative; /* Ensure proper stacking order */
    z-index: 9998; /* Ensure header image is above the splash screen */
}
