#section-portal .column .title {
    position: relative;
    width: 100%;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
}

#section-portal .column ul li {
    margin-top: 2.25rem;
    font-weight: bold;
    font-size: 1.5rem;
    white-space: nowrap;
}
#section-portal .column a {
    color: black;
    text-decoration: none;
}

/* Moblie Style */
@media only screen and (max-width: 768px) {

    #section-portal .portal-container {
        width: 50%;
        margin: 3rem auto 0 auto;
    }

    #section-portal .column {
        margin-bottom: 3rem;
    }

    #section-portal .column .title {
        color: black;
        font-size: 4.2vw;
    }
    #section-portal .column .title::before {
        content: '';
        position: absolute;
        z-index: -1;
        display: block;
        width: 100%;
        height: 7vw;
        background-image: url('../images/portal-title-m.svg');
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }

    #section-portal .column ul {
        text-align: center;
    }
    #section-portal .column ul li {
        position: relative;
        margin-top: 8vw;
        font-size: 4.2vw;
    }
    #section-portal .column ul li::before {
        content: '';
        position: absolute;
        top: -50%;
        z-index: -1;
        display: block;
        width: 100%;
        height: 9vw;
        background-image: url('../images/horizontal-stroke.png');
        background-size: 100%;
        background-repeat: no-repeat;
    }
    #section-portal .column ul li a {
        color: white;
    }

}

/* Desktop Style */
@media screen and (min-width: 769px) {

    #section-portal .portal-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 75%;
        margin: 5rem auto 0 auto;
    }

    #section-portal .column {
        width: 27%;
    }

    #section-portal .column .title::before {
        content: '';
        position: absolute;
        top: -50%;
        z-index: -1;
        display: block;
        width: 100%;
        height: 3rem;
        background-image: url('../images/horizontal-stroke.png');
        background-size: 100%;
        background-repeat: no-repeat;
    }

    #section-portal .column ul {
        width: 80%;
        margin: 5rem auto 0 auto;
    }
    #section-portal .column ul li::before {
        content: '';
        display: inline-block;
        width: 1.3rem;
        height: 0.75rem;
        margin-right: 3.5rem;
        background-image: url('../images/dot.png');
        background-size: 100%;
    }

}
