#program{
    padding: 40px 24px;
    margin-top: 100px;
}

@media (min-width: 992px) {
    #program{
        padding: 64px 100px 100px 100px;
    }
}

#program .title{
    font-size: 28px;
    line-height: 36px;
}

@media (min-width: 992px) {
    #program .title{
        font-size: 56px;
        line-height: 64px;
    }
    
}

/* accordion */
#program .accordion {
    background-color: transparent;
    color: black;
    cursor: pointer;
    padding-bottom: 8px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: all 0.5s ease-in-out;
    border-bottom: 1px solid var(--Neutral200);
}

#program .accordion span img{
    transition: all 0.5s ease-in-out;
}

#program .accordion.active{
    border-bottom: 0px;
    transition: all 0.5s ease-in-out;
}
  
#program .panel {
    padding-bottom: 8px;
    display: none;
    background-color: white;
    overflow: hidden;
    border-bottom: 1px solid var(--Neutral200);
}

#program .panel p{
    color: var(--Neutral400);
    font-weight: 500;
    text-align: justify;
}

/* end of accordion */

#program .photo-wrapper{
    height: 322px;
}

@media (min-width: 992px) {
    #program .photo-wrapper{
        height: 636px;
    }
    
}

#program .photo-wrapper .photo-vertical{
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position-x: -200px !important;
}

@media (min-width: 992px) {
    #program .photo-wrapper .photo-vertical{
        width: 100%;
        height: 100%;
        background-size: cover !important;
    }
}

#program .photo-wrapper .photo-horizontal{
    width: 100%;
    height: 100%;
    background-size: cover !important;
}


@media (min-width: 992px) {
    #program .photo-wrapper .photo-horizontal{
        width: 100%;
        height: 50%;
        background-size: cover !important;
    }
}

