.investment-goal{
    background: #59BF6226;
}
.goal-card{
    background: #fff;
    padding: 24px;
    border-radius: 5px;
}
.fs-card-title{
    font-size: 20px;
}
.cities-grid {
     columns: 3;           /* number of columns */
     column-gap: 30px;     /* spacing between columns */
     list-style: none;     /* optional: removes default bullets */
     padding: 0;
     margin: 0;
 }
.color-light-grey{
    color: #6A6A6A;
}
.investment-description-btn{
    margin-top: 28px;
    margin-bottom: 40px;
}
@media (max-width: 992px) {

    .investment-description-btn{
        margin-top: 12px;
        margin-bottom: 0;
    }

    .investment-goal .col-md-4{
        width: 100%;
    }
}
@media (max-width: 768px) {
    .fs-card-title{
        font-size: 16px;
    }
    .cities-grid {
        padding-left: 10px;
        columns: 2;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .cities-grid {
        padding-left: 10px;
        columns: 2;
    }
}
@media (min-width: 1025px) {
    .cities-grid {
        columns: 3;
    }
}