.org-hero {
    width: 100%;
    box-sizing: border-box;
    color: var(--color-text);
    display: grid;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5%;
    grid-template-columns: 47.5% 47.5%;
    padding-top: 50px;
}

.box {
    border-radius: 10px;
    background-color: var(--color-primary);
    padding: 200px 60px;
    box-sizing: border-box;
}

.org-hero-title {
    font-weight: 700;
    font-size: 3.5rem;
}

.org-hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.org-hero img {
    width: 100%;
}


.org-hero-buttons {
    display: flex;
    gap: 20px;
}

.org-hero-tag {
    font-size: var(--fs-lg);
    font-weight: 600;
}

.svg-text {
    fill: var(--color-primary);
}


span.org-hero-highlight {
    color: var(--color-primary);
}

.org-hero-description {
    line-height: 1.4;
    font-size: var(--fs-base);
    color: var(--color-text-light);
}

.org-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
    padding: 0.5rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
    width: fit-content;
}

main {
    gap: 100px;
}

#main-background {
    position: absolute;
    right: 0px;
    top: 0px;
}

.card-content {
    padding: 60px;
}

.card-image {
    width: fit-content;
    height: fit-content;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    max-width: 100%;
    object-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 80%;

}

.mid {
    display: grid;
    grid-template-columns: calc(50% - 25px) calc(50% - 25px);
    padding-top: 50px;
    gap: 50px;
    width: 100%; /* or max-width: 100% or like max-width: 1200px; */
    box-sizing: border-box;
    justify-items: center;
    align-items: center;
}

.mid .card-content.gallery-description {
    display: flex;
    align-items: center;
    padding: 0px;
}


@media (max-width: 1024px) {
    .org-hero {
        grid-template-columns: 100% 0%;
        padding-top: 50px;
    }

    .org-hero img {
        display: none;
    }

    .org-hero-title, .org-hero-description {
        text-align: center;
    }

    .org-hero-buttons {
        justify-content: center;
    }

    .mid {
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 50px;
    }

    .org-hero-left.reveal.active {
        align-items: center;
    }


    #our-mission .mid {
        display: flex;
        flex-direction: column-reverse;
    }
}


@media (min-width: 1024px) {
    .fro [id] {
        scroll-margin-top: calc(var(--nav-height) + 4rem);
    }
}


@media (max-width: 768px) {
    .org-hero-title {
        font-size: 3rem;
    }

    .org-hero-buttons {
        flex-wrap: wrap;
    }
    
    .org-hero-buttons .button {
        width: 100%;
    }

    .mid {
        padding: 0px;
    }

    .sponsors {
        width: 100%;
    }
}