.nav__menu a{
    color: black;
}
.program__right{
    display: grid;
    width: 100%;
    /* background: var(--color-bg1); */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) ;
    gap: 2rem;
}
.program__page__container{
    padding-top: 2rem;
}
.program__page{
    background: var(--color-bg1);

}



/* ============================ gallery section ======================= */
.img-gallery__container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 15px;
    padding-bottom: 38px;
}

.img-gallery__container img{
    width: 100%;
    cursor: pointer;
    transition: var(--transition);
}
.img-gallery__container img:hover{
    transform: scale(0.8) rotate(-15deg);
    border-radius: 20px;
    box-shadow: 0 32px 75px rgba(68,77,136, 0.2);
}

.full-img{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;

    /* padding: 25% 0; */
}

.full-img img{
    width: 80%;
    max-width: 500px;
}

.full-img span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 30px;
    color: white;
    cursor: pointer;
}