.custom-card3{
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    
    display: flex;
    flex-direction: column;
}

.custom-card3_image_holder{
    width: 100%;
    height: 300px;
}

.custom-card3_image_holder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-card3-icon{
    padding: 8px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    margin: 0px auto;
    transform: translateY(-50%);
    overflow: hidden;
    background-color: white;

    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-card3-icon img{
    width: 40px;
    height: 40px;
}

.custom-card3 .heading{
    font-size: 24px;
    font-weight: 400;
    max-width: 80%;
    margin-left: 10%;
    text-align: center;
}

.custom-card3 .description{
    font-size: 18px;
    max-width: 80%;
    margin-left: 10%;
    font-weight: 300;
    margin-top: 16px;
    padding-bottom: 30px;
}