div.promo-glow {
    display: flex;
    flex-direction: column;
    @media (min-width:992px) {
        flex-direction:row;
    }
    .image, .text {
        @media (min-width:992px) {
            width:50%;
        }
    }
    .image {
        display:flex;
        flex-direction: row;
        justify-content: center;
        @media (min-width:992px) {
            justify-content: end;
        }
        img {
            max-width: 70%;
            width: auto !important;
            height: auto !important;
            align-self: center;
        }
    }
    .text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-left: var(--sp3);
        padding-top:var(--sp2);
        @media (min-width:992px) {
            padding-top:0;
        }
        ul {
            margin-top: 0;}
        p, li {
            font-size: 1.3rem;
        color: white;
        }
        .hdr {
            display: flex;
            flex-direction: row;
            align-items: center;
            img {
                max-height: 7rem;
            }
            h2 {
                font-family: "Begum";
                font-style:italic;
                color: white;
            }
        }
    }
}