.activity-list {
    display: flex;
    flex-wrap: wrap;
    gap:24px;
}
.activity-list-item {
    width: calc(100% / 4 - 18px);
}
/* body.modal-open {
    overflow: auto!important;
    height: auto!important;

} */
.activity-list-item-thumbnail {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}
.activity-list-item-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}
.activity-list-item-title {
    margin-top: 12px;
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color:#09021A;
    margin-bottom: 0;
    transition: .7s;
    position: relative;
    z-index: -1;
}
.activity-list-item:hover .activity-list-item-title {
    transform: translateY(-200%);    
}
.activity-list-item-thumbnail_filter {
    
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #00509E;
    padding:26px 24px;
    transition: .7s;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.activity-list-item:hover .activity-list-item-thumbnail_filter {
    /* transform: translateY(-100%); */
    top: 0%;
}
.activity-list-item-thumbnail_filter .text {
    font-weight: 600;
    font-size: 24px;
    line-height: 130%;
    color:#fff;
    margin: 0;
}
.activity-list-item-thumbnail_filter .btn-white {
    margin-top: auto;
    width: 100%;
}
@media(max-width:1200px) {
    .activity-list-item-title {    
        font-size: 20px;
    }
}
@media(max-width:992px) {
    .activity-list-item {
        width: calc(100% / 3 - 16px);
    }
}
@media(max-width:768px) {
    .activity-list-item {
        width: calc(100% / 2 - 8px);
    }
    .activity-list-item-title {
        font-size: 16px;
    }
    .activity-list {
        gap:16px;
    }
    .activity-list-item-thumbnail_filter {
        padding: 24px 12px;
    }
    .activity-list-item-thumbnail_filter .text {
        font-size: 16px;
    }
}
@media(max-width:414px) {
    .activity-list-item-title {
        font-size: 14px;
    }
    .activity-list-item-thumbnail_filter {
        padding: 12px 12px;
    }
    .activity-list-item-thumbnail_filter .btn-white {
        padding: 7px 7px;
        font-size: 12px;
    }
}