.stuff-slider .item {
    position: relative;
    width: 540px;
    height: 540px;
}

.stuff-slider .item .smart-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform: scale(0.7);
    transition: all 0.3s;
}
.stuff-slider .item.odd .smart-card {
    top: -15%;
}
.stuff-slider .item.even .smart-card {
    top: 15%;
}
.stuff-slider .item.slick-active .smart-card, 
.stuff-slider .item.slick-current .smart-card {
    top: 0;
    transform: scale(1);
}

.stuff-slider .smart-card .back {
    display: block;
    width: 100%;
    height: 100%;
}
.stuff-slider .smart-card .image-cont {
    display: block;
    height: 0;
    position: relative;
    padding: 0 0 100% 0;
    background: var(--color-border-gray-light);
}
.stuff-slider .smart-card .image-cont.nophoto {
    background-image: url('/local/templates/ast_blue/images/nophoto/nophoto_icon.svg');
    background-position: center center;
    background-repeat: no-repeat;
}
.stuff-slider .smart-card .image-cont img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stuff-slider .smart-card .front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    padding: 30px 30px 40px 30px;
    opacity: 0;
    transition: all 0.3s;
}
.stuff-slider .item.slick-active .smart-card .front,
.stuff-slider .item.slick-current .smart-card .front {
    opacity: 1;
}
.stuff-slider .smart-card .title {
    font-family: var(--font-manrope);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
}
.stuff-slider .smart-card .position {
    font-size: 16px;
    margin: 16px 0 0 0;
}
.stuff-slider .smart-card .description {
    font-size: 18px;
    margin: 20px 0 0 0;
    padding: 30px 0 0 0px;
    background: url(/local/templates/ast_blue/images/icon/quote_white.svg) 0 0 no-repeat;
    background-size: 20px 20px;
}