.partner-card {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.partner-card .logo-container {
    width: 100%;
    height: 150px;
}

.partner-card .logo-container .logo {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

/********** Media Queries ************/

/* Large laptop */
@media screen and (max-width:1400px) {}

/* Small laptop */
@media screen and (max-width:1200px) {}

/* Tablet */
@media screen and (max-width:992px) {}

@media screen and (max-width:768px) {}

/* Large mobile */
@media screen and (max-width:576px) {
    .partner-card .logo-container {
        height: 100px;
    }
}

/* Small mobile */
@media screen and (max-width:375px) {}

@media screen and (max-width:320px) {}

/********** Media Queries END **********/