.date_detail_content .act-title {
    color: var(--theme-gold);
}

.date_detail_content .act-p {
    color: var(--theme-dark);
    font-weight: 600;
    font-size: 1rem;
    line-height: 29.84px;
}

.date_detail_content .act-card {
    border-radius: 19px;
    background-color: var(--main-bg);
    border: 0;
    height: 100%;
}

.act-card .overlay-parent {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.date_detail_content .act-card .overlay-parent .p {
    position: absolute;
    z-index: 3;
    bottom: 0;
    color: white;
    right: 20px;
}

.overlay-parent .show-img {
    position: absolute;
    left: 29px;
    top: 15px;
    z-index: 222;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.overlay-parent .show-img .box-text {
    width: 50px;
    height: fit-content;
    background-color: white;
    color: gray;
    position: absolute;
    left: 50%;
    top: 28px;
    text-align: center;
    padding: 5px;
    line-height: 24px;
    font-size: 16px;
    transform: translatex(-50%);
    border-radius: 10px;
    opacity: 0;
}

.overlay-parent .show-img:hover .box-text {
    transition: .3s;
    opacity: 1;
}

.date_detail_content .act-card .overlay-parent::after {
    position: absolute;
    content: "";
    left: 0;
    z-index: 2;
    display: block;
    bottom: 0;
    background: linear-gradient(180deg, rgba(19, 19, 19, 0) 50%, #131313 100%);
    width: 100%;
    height: 100%;
    border-radius: 19px;
}

.date_detail_content .act-card .overlay-parent img {
    border-radius: 19px;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.date_detail_content .act-card h5 {
    color: var(--theme-gold);
}

.date_detail_content .act-card p {
    color: var(--theme-dark);
}

.date_detail_content .act-card ul li {
    color: var(--theme-dark);
    font-size: 1rem;
    line-height: 2;
    position: relative;
    display: flex;
}

.date_detail_content .act-card ul li::before {
    position: absolute;
    content: "";
    width: .625rem;
    height: .625rem;
    background-color: var(--theme-gold);
    border-radius: 50%;
    top: 11px;
}

.date_detail_content .card-body-h {}

@media only screen and (max-width: 768px) {
    .date_detail_content .card-body-h {
        height: fit-content;
    }
}