.active .menu_ctn .menu_items .home {
    color: #2862eb;
}


/** banner section styles **/

.banner_section {
    padding: 0;
    background-color: #e2e2e2;
    height: 53vw;
}

.banner_box {
    height: 100%;
    display: grid;
    grid-template-columns: 45% 55%;
}

.banner_box .logo_ctn {
    display: flex;
    height: 100%;
    gap: 2vw;
    justify-content: flex-start;
    flex-direction: column;
    padding: 5% 10%;
}

.banner_box .logo_ctn h1 {
    color: var(--blue);
    font-size: 2vw;
}

.banner_box .logo_ctn p {
    color: var(--gray);
    font-size: 1.2vw;
    font-weight: inherit;
}

.banner_box .logo_ctn a {
    background-color: var(--blue);
    padding: 1vw;
    width: 45%;
    border: 0.2vw solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.4s all;
    font-weight: 500;
    font-size: 1.5vw;
    border-radius: 2vw;
}

.banner_box .logo_ctn a:hover {
    background-color: white;
    color: var(--blue);
}

.banner_box .logo_box img {
    width: 30%;
    align-self: center;
}

.banner_box .img_box img {
    object-fit: cover;
    height: 100%;
    border-radius: 25vw 0 0 25vw;
    padding: 10% 0 10% 5%;
}

@media (max-width: 996px) {
    .banner_section {
        padding: 0;
        background-color: #e2e2e2;
        height: 100%;
    }
    .banner_box .logo_ctn {
        gap: 5vw;
    }
    .banner_box .logo_ctn h1 {
        font-size: 6vw;
    }
    .banner_box .logo_ctn p {
        font-size: 3.5vw;
        text-align: center;
    }
    .banner_box {
        grid-template-columns: 100%;
    }
    .banner_box .logo_ctn {
        align-items: center;
    }
    .banner_box .logo_ctn a {
        padding: 3vw;
        font-size: 3.5vw;
        text-align: center;
    }
    .banner_box .logo_box img {
        width: 50%;
    }
    .banner_box .img_box img {
        object-fit: cover;
        height: 90%;
        border-radius: 60vw 0 0 60vw;
        padding: 5% 0 5% 10%;
    }
}


/** second_section **/

.second_section {
    padding: 10% 10% 10% 0;
}

.section_box {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4vw;
}

.section_box .txt_ctn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.section_box h1 {
    color: var(--blue);
}

.section_box span {
    color: var(--blue);
    font-weight: 600;
}

.section_box h2 {
    color: var(--blue);
}

.section_box a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    border: 0.2vw solid var(--blue);
    padding: 0.5vw;
    transition: all 0.4s;
    border-radius: 2vw;
    background-color: var(--blue);
}

.section_box a:hover {
    background-color: white;
}

.section_box a:hover i {
    color: var(--blue);
}

.section_box i {
    font-size: 2vw;
}

.section_box .img_ctn {
    display: flex;
    border-radius: 0 25vw 25vw 0;
    padding: 5% 5% 5% 0;
    background-color: var(--blue);
    justify-content: flex-end;
}

.section_box .img_ctn img {
    display: flex;
    width: 30vw;
    height: 30vw;
    border: white solid 1vw;
    object-fit: cover;
    border-radius: 50%;
    transform: translateY(6vw);
}

@media (max-width: 996px) {
    .section_box {
        gap: 6vw;
        grid-template-columns: 100%;
    }
    .section_box .img_ctn img {
        width: 60vw;
        height: 60vw;
        transform: translate(9vw, 6vw);
    }
    .section_box .img_ctn {
        display: flex;
        border-radius: 0 50vw 50vw 0;
        padding: 5% 5% 5% 0;
        background-color: var(--blue);
        justify-content: flex-end;
    }
    .section_box .txt_ctn {
        padding: 0 0 0 10%;
        gap: 4vw;
        align-items: center;
    }
    .section_box p {
        text-align: center;
    }
    .section_box a {
        padding: 3vw 8vw;
    }
    .section_box i {
        font-size: 6vw;
    }
}


/* ---GOAL STYLES--- */

.goal_section {
    display: flex;
    flex-direction: column;
    gap: 10vw;
    padding: 5% 0;
}

.goal_section .goal_box {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.goal_section .info_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vw;
}

.goal_section .info_box h2 {
    color: var(--blue);
    text-align: center;
}

.goal_section .info_box p {
    width: 80%;
    text-align: center;
}

.goal_section .media_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vw;
}

.goal_section .bar_box {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.goal_section .bar_item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 2vw;
    border: .25vw solid var(--blue);
    border-radius: 20vw;
    background: linear-gradient(to right, var(--blue) 71%, white 71%);
}

.goal_section .bar_item::before {
    content: "$5,000.00";
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translate(-50%, 0);
    color: var(--blue);
    font-size: 1vw;
    font-weight: 500;
}

.goal_section .bar_item::after {
    content: "$7,500.00";
    position: absolute;
    bottom: -50%;
    left: 75%;
    transform: translate(-50%, 0);
    color: var(--blue);
    font-size: 1vw;
    font-weight: 500;
}

.goal_section .bar_item h2 {
    font-size: 1.5vw;
}

.goal_section .bar_item h2:nth-child(1) {
    color: white;
}

.goal_section .bar_item h2:nth-child(2) {
    color: var(--blue);
}

.goal_section .bar_data {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.goal_section .bar_data::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: .15vw;
    height: 100%;
    background: white;
}

.goal_section .bar_data::after {
    content: "";
    position: absolute;
    top: 0;
    left: 75%;
    transform: translate(-50%, 0);
    width: .15vw;
    height: 100%;
    background: var(--blue);
}

.goal_section .donate_btn {
    background-color: var(--blue);
    padding: 1vw;
    width: 45%;
    border: 0.2vw solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: 0.4s all;
    font-weight: 500;
    font-size: 1.5vw;
    border-radius: 2vw;
}

.goal_section .donate_btn:hover {
    background-color: white;
    color: var(--blue);
}

@media (max-width: 996px) {
    .goal_section {
        gap: 10vw;
        padding: 10%;
    }
    .goal_section .goal_box {
        gap: 5vw;
    }
    .goal_section .info_box {
        gap: 5vw;
    }
    .goal_section .info_box h2 {
        font-size: 5vw;
    }
    .goal_section .info_box p {
        width: 100%;
        text-align: center;
    }
    .goal_section .media_box {
        gap: 10vw;
    }
    .goal_section .bar_box {
        width: 100%;
    }
    .goal_section .bar_item {
        position: relative;
        padding: 2vw;
        border: .25vw solid var(--blue);
    }
    .goal_section .bar_item::before {
        bottom: -90%;
        font-size: 2.5vw;
    }
    .goal_section .bar_item::after {
        bottom: -90%;
        font-size: 2.5vw;
    }
    .goal_section .bar_item h2 {
        font-size: 3.5vw;
    }
    .goal_section .bar_data::before {
        width: .25vw;
    }
    .goal_section .bar_data::after {
        width: .25vw;
    }
    .goal_section .donate_btn {
        padding: 3vw;
        font-size: 3.5vw;
        text-align: center;
    }
}


/* ---META STYLES--- */

.meta_section {
    padding: 5% 0;
}

.meta_section .meta_box {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4vw;
}

.meta_section .meta_box .txt_ctn {
    display: flex;
    gap: 2vw;
    flex-direction: column;
    justify-content: center;
    padding-left: 10vw;
}

.meta_section .meta_box .txt_ctn h2 {
    color: var(--blue);
}

.meta_section .meta_box .img_ctn {
    display: flex;
    border-radius: 25vw 0 0 25vw;
    padding: 5% 5% 5% 0;
    background-color: var(--blue);
    justify-content: flex-start;
}

.meta_section .meta_box .img_ctn img {
    display: flex;
    width: 30vw;
    height: 30vw;
    border: white solid 1vw;
    object-fit: cover;
    border-radius: 50%;
    transform: translateY(6vw);
}

@media (max-width: 996px) {
    .meta_section {
        padding: 10% 0 10% 10%;
    }
    .meta_section .meta_box {
        grid-template-columns: 100%;
        gap: 5vw;
    }
    .meta_section .meta_box .img_ctn {
        order: 1;
        border-radius: 50vw 0 0 50vw;
    }
    .meta_section .meta_box .txt_ctn {
        order: 2;
        gap: 3vw;
        padding: 0 10% 0 0;
    }
    .meta_section .meta_box .txt_ctn p {
        text-align: center;
    }
    .meta_section .meta_box .img_ctn img {
        width: 60vw;
        transform: translate(-5vw, 6vw);
        height: 60vw;
    }
}


/** vision_section **/

.vision_section {
    padding: 5% 10%;
}

.vision_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
}

.vision_box h2 {
    color: var(--blue);
}

.vision_box a {
    color: white;
    background-color: var(--blue);
    padding: 1vw 4vw;
    transition: all 0.4s;
    border: 0.2vw solid var(--blue);
    font-weight: 600;
    border-radius: 10vw;
}

.vision_box a:hover {
    background-color: white;
    color: var(--blue);
}

.vision_box p {
    width: 70%;
    text-align: center;
}

.vision_box li {
    text-align: center;
}

.vision_box ul {
    list-style: none;
}

@media (max-width: 996px) {
    .vision_section {
        padding: 5% 10%;
    }
    .vision_box {
        gap: 4vw;
    }
    .vision_box p {
        width: 100%;
    }
    .vision_box a {
        padding: 3vw 8vw;
    }
}


/* ---GALLERY STYLES--- */

.gallery_section {
    padding: 5% 10%;
}

.gallery_section .gallery_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
}

.gallery_section .gallery_item {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    background: var(--blue);
}

.gallery_section .gallery_item img {
    transition: .25s;
}

.gallery_section .gallery_item:hover img {
    transform: scale(1.05);
    opacity: .8;
}

@media (max-width: 996px) {
    .gallery_section .gallery_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }
}


/* ---LIGHTBOX STYLES--- */

.lightbox_section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
}

.lightbox_section.active {
    opacity: 1;
    pointer-events: inherit;
}

.lightbox_section .media_box {
    width: 70%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow: hidden;
}

.lightbox_section .media_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox_section .backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00000090;
    backdrop-filter: blur(.2vw);
    -webkit-backdrop-filter: blur(.2vw);
    cursor: pointer;
}

@media (max-width: 996px) {
    .lightbox_section .media_box {
        width: 90%;
    }
}