.light-bg {
    background-color: #f8f9fa;
    /* Light background color */
    padding: 20px;
    /* Adjust padding as needed */
}

.dark-bg {
    background-color: #343a40;
    /* Dark background color */
    color: #ffffff;
    /* Text color for dark background */
    padding: 20px;
    /* Adjust padding as needed */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 1;
}

.text-xxl {
    font-size: 5rem;
    /* You can adjust the value as needed */
}

.text-xl {
    font-size: 2rem;
}

.text-l {
    font-size: 1.7rem;
}
@media (max-width: 764px) {
    .text-xxl {
            font-size: 4rem;
            /* You can adjust the value as needed */
        }

        .text-xl {
            font-size: 1rem;
        }

        .text-l {
            font-size: 0.7rem;
        }
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust opacity as needed */
    z-index: 1;
}

h1,
.subhead {
    text-align: center;
}

.process {
    background: #e9eef4;
    color: #191919;
    line-height: 1.3;
    max-width: 100%;
    margin: 0 auto;
}

.process-chart {
    list-style-type: none;
    margin: 1rem 0;
    padding: 0;
    border: 1px solid;
    counter-reset: step;
}

.process-chart>li {
    padding: 1rem;
    display: flex;
    counter-increment: step;

    border: 1px solid;

    h3 {
        flex: 1 0 0;
        margin-right: 1rem;

        &:before {
            display: block;
            content: 'Step ' counter(step);
            font-size: 1.5rem;
            font-weight: 900;
            text-transform: uppercase;
            margin: 0 0 0.5rem 0;
        }
    }

    .details {
        flex: 2 0 0;
    }

    &.after {
        color: #777;
    }

    &.before {
        background-color: #007b97;
        color: #f8f9fa;
        border-color: #000;

        &:not(:first-of-type) {
            border-top: none;
        }

        &:not(:last-of-type) {
            border-bottom: none;
            position: relative;

            .details:after {
                display: block;
                content: '';
                width: 80%;
                height: 0;
                border-bottom: solid 2px #000;
                position: absolute;
                bottom: 0;
                left: 10%;

            }

        }
    }

    &.current {
        background-color: #00adc9;
        color: #f8f9fa;
        border-color: #000;
        position: relative;
        box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.8);

        &:not(:first-of-type) {
            border-top: none;
        }

        &:not(:last-of-type):after {
            display: block;
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-top: 15px solid #00adc9;
            border-right: 60px solid transparent;
            border-bottom: none;
            border-left: 60px solid transparent;
            filter: drop-shadow(0px 2px 0px #000) drop-shadow(0px 4px 2px rgba(0, 0, 0, 0.2));
        }
    }
}

.modern-card {
    background-color: #e2e6ea;
    /* Slightly darker grey/blue background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
    flex: 1;
    /* Make cards flexible to fit side by side */
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modern-card h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.modern-card h2 {
    font-size: 1.5rem;
    color: #6c757d;
    /* Grey color for h2 */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.modern-card h2::after {
    content: "";
    display: block;
    width: 50%;
    margin: 10px auto 0;
    height: 2px;
    background-color: #6c757d;
}

.modern-card ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.1rem;
    color: #2c3e50;
}

.modern-card ul li {
    margin: 5px 0;
}



#list-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    /* Wrap cards if there isn't enough space */
}

.list img {
    max-width: 50%;
    max-height: 80%;


}
