.ss-item-img {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}
 
.ss-item-img {
    display: grid;
    place-items: center;
    height: 100px;
}    

.ss-item-img img {
   max-height: 120px;
   min-height: 120px;
   height: 100%;
}

.ss-title {
    font-weight: bold;
    height: 50px;
    color: #03234b;
    text-align: center;
}
 
.ss-item {
    width: 25%;
}
 
.ss-container {
    display: flex;
    flex-wrap: wrap;
}
 
@media only screen and (max-width: 768px) {
    .ss-item {
        width: 100%;
        margin-bottom: 0px;
    }
}
 
@media only screen and (min-width: 768px) {
    .ss-item {
        width: 33%;
        margin-bottom: 0px;
    }
}
 
@media only screen and (min-width: 1083px) {
    .ss-item {
        width: 25%;
        margin-bottom: 0px;
    }
}