.custom-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px 0;
}

.custom-card-container .custom-card {
    position: relative;
    min-width: 330px;
    height: 280px;
    border-radius: 15px;
    margin: 10px;
    transition: 0.5s;
    box-shadow: 0 15px 60px -15px rgba(0, 0, 0, 0.25);
    cursor:pointer;
}

.custom-card-container .custom-card .custom-card-box {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #ffffff;
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: 0.5s;
}

.custom-card-container .custom-card .custom-card-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.04);
}

.custom-card-container .custom-card .custom-card-box .custom-card-content {
    padding: 20px;
    text-align: center;
}

.custom-card-container .custom-card .custom-card-box .custom-card-content h2 {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 8rem;
    color: rgba(0, 0, 0, 0.141)
}

.custom-card-container .custom-card .custom-card-box .custom-card-content .custom-card-data {
    position: relative;
    left: 0;
    width: 100%;
    color: #757575;
    text-align: start;
    margin-top: -5px;
    margin-bottom: 10px;
}

.custom-card-container .custom-card .custom-card-box .custom-card-content h3 {
    font-size: 20px;
    color: rgb(30, 30, 30);
    z-index: 1;
    transition: 0.5s;
    margin-bottom: 15px;

}

.custom-card-container .custom-card .custom-card-box .custom-card-content p {
    left: 100%;
    width: 100%;
    text-align: justify;
    font-size: medium;
    font-weight: 300;
    color: rgb(30, 30, 30);
    z-index: 1;
    transition: 0.5s;
}

.custom-card-container .custom-card .custom-card-box .custom-card-content .read-more {
    margin: 10px;
    margin-top: 15px;
    background: white;
    border: 1px solid #583716;
    color: #583716;
    z-index: 100;
    transform: translateZ(20px);
    font-size: medium;
}

.custom-card-container .custom-card .custom-card-box .custom-card-content .read-more:hover {
    background: #583716;
    color: white;
}