.image-container {
    /* width: 577px;
    height: 475px; */

    width: 100%;
    height: 100%;

    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-container img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

.image-title {
    color: #fff;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    background-color: #2020B3;
    padding: 6px 12px;
    border-radius: 4px 0 0 4px;
    width: fit-content;
    position: absolute;
    bottom: 26px;

}

@media (max-width: 768px) {
    

    .image-title {
        padding: 4.028px 8.055px;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 20.139px;
        bottom: 16px;
    }

    .image {
        max-width: 310px;
        max-height: 319px;
        object-fit: cover;
    }
}










/* desktop resolutions */

/* 1599 */
@media screen and (min-width: 1024px) and (max-width: 1599px) {

}

/* 1499 */
@media screen and (min-width: 1024px) and (max-width: 1499px) {

}

/* 1399 */
@media screen and (min-width: 1024px) and (max-width: 1399px) {

    .image-title {
        font-size: 24px;
        line-height: 28px;
    }

}

/* 1299 */
@media screen and (min-width: 1024px) and (max-width: 1299px) {
    .image-title {
        font-size: 22px;
        line-height: 26px;
    }

}

/* 1199 */
@media screen and (min-width: 1024px) and (max-width: 1199px) {
    .image-title {
        font-size: 20px;
        line-height: 24px;
    }

}