    /* Features Section */
    #features-section {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;

        .demo-box {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

        .row {
            display: flex;
            flex-wrap: wrap;

            >div {
                display: flex;
                flex: 1 0 auto;
                flex-direction: column;
            }
        }

        .feature.demo-box img {
            height: 150px;
            width: auto;
            margin: 0 auto;
        }
    }
