.parent {
     display: flex;
     flex-wrap: wrap;
 }
.child {
    display: inline-block;
    margin: 0px 10px 100px 10px;
    width: calc(100% * (1/3) - 20px - 1px);
}

.fj-title {
    border-bottom: 1px dashed black;
    min-height: 56px;
}

.fj-description {
    border-bottom: 1px dashed black;
    min-height: 100px;
}

.fj-client {
    margin: 10px 0;
    line-height: 1.2;
    min-height: 55px;
}

.fj-location {
    line-height: 1.2;
}

.fj-footer {
    min-height: 36px;
}

.fj-footer p {
    font-weight: bold;
    margin-top: 10px;
}

@media screen and (max-width: 1330px) {
    .fj-title {
        min-height: 79px;
    }

    .fj-client {
        padding-bottom: 0px;
    }

}

@media screen and (max-width: 980px) {
    .child {
        display: inline-block;
        margin: 0px 10px 50px 10px;
        width: calc(100% * (1/2) - 20px - 1px);
    }

    .fj-title {
        min-height: 56px;
    }

    .fj-description {
        min-height: 80px;
    }

    .fj-client {
        min-height: 40px;
    }

    .fj-location {
        min-height: 19px;
        margin-bottom: 10px;
    }

    .fj-description p, .fj-location p {
        padding-bottom: 0px;
    }

    .fj-footer {
        min-height: 19px;
    }
}

@media screen and (max-width: 890px) {
    .fj-title {
        min-height: 80px;
    }

    .fj-client {
        min-height: 58px;
    }
}

@media screen and (max-width: 768px) {
    .child {
        display: inline-block;
        margin: 0px 10px 75px 10px;
        width: calc(100% - 20px - 1px);
    }

    .fj-title, .fj-description, .fj-client, .fj-location, .fj-footer {
        min-height: unset;
    }

    .fj-location {
        margin-bottom: 10px;
    }

    .fj-location p {
        padding-bottom: 0px;
    }

}