.slick-arrow {
    position: absolute;
    top: 50%;
    width: 60px;
    height: 60px;
    background: rgba(247, 131, 50, 0.3);
    cursor: pointer;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: all 0.3s ease;
    text-align: center;
    z-index: 5;
}

.carousel-card {
    position: relative;
    height: 100%;
    margin: 0 2px;
    overflow: hidden;
}

.carousel-card .card-bk {
    background-color: #c4c4c4;
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 2;
}

.carousel-card:hover .card-bk {
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.carousel-card .card-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.carousel-card p {
    position: relative;
    margin: 0;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

.carousel-card .h2 {
    position: relative;
    width: 100%;
    margin: 0;
    color: #fff;
    word-wrap: break-word;
}