.mother-container {
    margin-top: 1%;
    margin-bottom: 1%;
    height: unset !important;
}

.row-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-between;
    align-items: center;
    justify-items: center;
}

.media {
    flex: 0 0 calc(12.5% - 10px);
    margin: 2%;
    max-width: 200px;
    align-items: center;
    justify-content: center;
    display: flex;
}

.media img {
    display: block;
    max-height: 200px;
    max-width: 200px;

    /*transition: transform 0.5s ease;*/
}

@keyframes mediaSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.media-animate {
    animation: mediaSlideIn 0.4s ease-out both;
}

/*.media img:hover {*/
/*    transform: scale(1.3);*/
/*}*/

@media (max-width: 1140px) {
    .mother-container {
        margin-top: 10%;
        margin-bottom: 10%;
    }
}

@media (max-width: 768px) {
    .media {
        flex: 0 0 calc(33.33% - 10px);
        max-width: 150px;
    }

    .media img {
        max-height: 150px;
        max-width: 130px;
    }

    .mother-container {
        height: unset !important;
    }
}

@media (max-width: 376px) {
    .media {
        max-width: 120px;
    }

    .media img {
        display: block;
        max-height: 120px;
        max-width: 120px;
    }
}

@media (max-width: 321px) {
    .media {
        max-width: 100px;
    }

    .media img {
        display: block;
        max-height: 100px;
        max-width: 100px;
    }
}