.download-card{
    height: 230px;
    padding: 0px !important;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(128, 128, 128, 0.543);
    overflow: hidden;
}

.download-card-content{
    border-radius: 10px;

    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: #054a91;
    font-size: 1.7rem;
    font-family: var(--font-crimson_pro);
    line-height: 18px;
    font-weight: 700;
}
.download-card-desc,
.download-img{
    width: 50%;
    height: 100%;
}
.download-img img{
    width: 100%;
    height: 100%;
}
.download-card-desc{
    background-color: #f9f9f9;
    height: 100%;
}
.download-card-desc a{
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
}
.sub-title2 {
    position: relative;
    padding-bottom: 10px;
}

.sub-title2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 10%;
    height: 3px; 
    background-color: #720d1d;
    transform: translateX(-50%); 
}
.eventspara>p{
    font-size: var(--sub-title-body);
    font-family: var(--font-crimson_pro);
}
.event-btn{
     background: linear-gradient(180deg, #720d1d, #1f0308);
    background-color: #720d1d;
    color: white !important; /* Ensures the text is white */
    padding: 0.5rem 1.5rem;
    border: none;
    text-decoration: none;
    font-family: var(--font-crimson_pro);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Initial subtle box-shadow */
    display: inline-block; /* To make it appear like a button */
    text-align: center;
}