#investment {
    width: 90vw;
    z-index: 1;
    background-color: transparent;
}

#investment .title {
    font-size: 50px;
    display: flex;
    align-items: center;
    font-family: "Noe Display Regular, -apple-system, BlinkMacSystemFont, Arial, Helvetica, sans-serif" !important;
}

#investment .cardListContainer {
    height: calc(100% - 150px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1400px;
}

#investment .cardTop,
#investment .cardMid {
    border-bottom: 1px solid #ccc;
}

#investment .cardTop,
#investment .cardMid,
#investment .cardBottom {
    display: flex;
    justify-content: space-between;
    padding: 10px 5px;
    background-color: #fff;
}

#investment .cardBottom i {
    color: green;
}

#investment .cardListItem {
    border-radius: 5px;
    width: 25%;
    min-width: 250px;
    /* height: 50%; */
    padding: 10px;

}

#investment .cardListItem .cardItemImage {
    height: 150px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1600px) {
    #investment .title {
        padding-top: 50px;
    }
}

@media screen and (max-width: 768px) {

    #investment {
        width: 100vw;
    }

    #investment .title {
        height: 100px;
        font-size: 35px;
        text-align: center;
    }

    #investment .cardListItem {
        border-radius: 5px;
        max-width: 350px;
        width: 100%;
        padding: 10px 0;

    }

    #investment .title {
        height: 150px;
        font-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}