
.card{
    width: 320px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 8px solid #1e94c7;
    position: relative;
    color: #fff;

}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.card-body {
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    position: absolute;
    background: #1f3d4738;
    backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 2s;
}

.card:hover .card-body {
    right: 0;
}

/* Zeit: 8:11/13:44, https://www.youtube.com/watch?v=3RvQJX1_fKQ */
.card-title {
    text-transform: uppercase;
    color: #1e94c7;
    font-size: 30px;
    font-weight: 500;
}

.card-sub-title {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.card-info {
    font-size: 12px;
    line-height: 25px;
    margin: 40px 0;
    font-weight: 300;
}

.card-btn {
    color: #fff;
    background: #8fabba;
    padding: 10px 20px;
    width: 120px;
    border-radius: 5px;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-weight: 500;
    cursor: pointer;
}