    .card-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-start;
        align-items: center;
        gap: 20px
    }
    
    .card-session {
        box-shadow: 9px 8px 19px -7px #dadada;
        min-width: 300px;
        width: 30%;
        min-height: 150px;
        border: 1px solid #e4e4e4;
        border-radius: 6px;
        padding: 10px 15px;
        position: relative;
        margin-bottom: 30px;
        background: url(../images/absBg.png) no-repeat right bottom;
        background-size: contain;
        cursor: pointer;
    }
    
    .card-session:hover {
        box-shadow: 5px 5px 10px rgb(0 0 0 / 20%);
    }
    
    .session-start-time {
        font-size: 12px;
        margin: 5px 0 0 0;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        text-align: center;
        border-top: 1px solid #e9e9e9;
        padding-top: 5px;
        background: #fff;
        padding-bottom: 5px;
        border-radius: 0 0 6px 6px;
        color: #196ca0;
    }
    
    .session-start-time i {
        color: #196ca0;
        border: 1px solid #444;
        padding: 5px;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin-right: 5px;
        font-size: 10px;
    }
    
    .session-name {
        display: flex;
        justify-content: left;
        font-size: 16px;
        margin-bottom: 5px;
        margin: 0;
        font-weight: 500;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: 36px;
        position: absolute;
        left: -8px;
        right: -12px;
        top: -20px;
        color: #fff;
        padding: 10px;
        background: url(../images/offerBanner.png) no-repeat left center;
        background-size: cover;
    }
    
    .session-nameDetails {
        display: flex;
        justify-content: left;
        font-size: 16px;
        margin-bottom: 5px;
        margin: 0;
        font-weight: 500;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        line-height: 36px;
        position: absolute;
        left: 5px;
        right: 0;
        top: 0;
        color: #f68b33;
        padding: 0 10px;
    }
    
    .session-des {
        font-size: 12px;
        font-weight: 200;
    }
    
    .session-boardLanding {
        margin: 5px 0;
        line-height: 20px;
        font-size: 14px;
        color: #666;
    }
    
    .session-board {
        margin: 20px 0 10px 0;
        line-height: 20px;
        font-size: 14px;
        color: #666;
    }
    
    .session-board-campaign {
        margin: 20px 0 10px 0;
        line-height: 20px;
        font-size: 14px;
        color: #666;
    }
    
    .campaignImage {
        float: right;
        border-left: 1px solid #e9e9e9;
    }
    
    .campaignImage img {
        width: 50px;
        float: right;
        margin: 0 0 0px 10px;
        border-radius: 50%;
        border: 1px solid #a5a5a5;
        padding: 7px;
        background: #fff;
    }
    
    .course-desc {
        color: #666;
        margin: 25px 0 0 0;
        font-size: 10px;
    }
    
    .course-desc span {
        color: #000;
    }
    
    #bannerImage img {
        max-width: 100%;
    }
    
    .teacher-name {
        font-size: 10px;
        color: #666;
        margin: 0;
    }
    
    .freeIcon {
        position: absolute;
        width: 50px;
        left: -9px;
        top: -26px;
        z-index: 1;
    }
    
    .mode {
        margin: 10px 0;
        line-height: 16px;
        font-size: 12px;
        color: #000;
    }
    
    .mode span {
        color: #000;
    }
    
    .mode span.labelText {
        width: 25px;
        display: inline-block;
        color: #a2a2a2;
    }
    
    @media screen and (max-width: 401px) {
        .footerWrapper {
            display: none;
        }
        .footerWrapperMobile {
            display: block;
            min-height: 400px;
            background: #076ca0 url(../images/curveWhite.png) no-repeat top center;
            background-size: 10%;
            padding: 10px 0 50px 0;
        }
        .downloadApp .btnGoogle {
            margin: 0 auto;
        }
        .downloadApp .btnApple {
            margin: 0 auto;
        }
    }
    
    @media screen and (min-width: 401px) {
        .footerWrapperMobile {
            display: none;
        }
    }