.card-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.card-link {
    display: block;
    position: relative;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    font-size: 0;
    overflow: hidden;
}

.card-link img {
    transition: all .8s;
}

.card-link:hover img {
    transform: scale(1.4);
}

.card-link::before {
    content: '';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(49, 168, 219, .5);
}

.card-link span {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    margin: 0;
    width: 80%;
    transform: translate(-50%, -50%);
    font-family: 'RotonBol';
    font-size: 24px;
    line-height: 31px;
    color: #FFFFFF;
    text-align: center;
}