@media only screen and (min-width: 1023px) {
    #view-header #h2 .logo img {
        object-fit: contain;
        position: relative;
        z-index: 2;
        height: 190px;
        max-height: 190px;
        -webkit-filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
        filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.4));
        transition: all .25s linear;
    }
}

/* START School name image on header */
#cms-header {
    --school-name-image: var(--custom-school-name-img, url(https://cmsv2-shared-assets.apptegy.net/Schools/Brandywine-Heights-Area-School-District-2091/images/DistrictName.png));
}

@media only screen and (min-width: 1024px) {
    #h2 .left .school-info {
        display: block;
        width: 300px;
        height: 25px;
        background-image: var(--school-name-image);
        background-repeat: no-repeat;
        background-size: contain;
        padding-bottom: 10px;
    }

    #h2 .left .school-info .name,
    #h2 .left .school-info .slogan {
        display: none;
    }
}

@media only screen and (min-width: 1280px) {
    #cms-header #h2 .logo {
        top: 25px;
        height: 124px;
    }

    #h2 .left .school-info {
        width: 575px;
        height: 70px;
        padding-bottom: 0;
    }
}

/* END School name image on header */