.wrap-carousel-heart {
    max-width: 1920px;
    margin: auto;
    padding: 70px 0px 60px;
    direction: ltr;
}
.wrap-carousel-heart .items-wrap {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
    margin-bottom: 35px;
}
.wrap-carousel-heart .items-wrap:before,
.wrap-carousel-heart .items-wrap:after {
    content: "";
    height: 100%;
    top: 0;
    width: 10%;
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.wrap-carousel-heart .items-wrap:before {
    /* left: 0; */
    /* background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%
    ); */
}
.wrap-carousel-heart .items-wrap:after {
    /* right: 0; */
    /* background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 100%
    ); */
}
.wrap-carousel-heart .items {
    flex-shrink: 0;
    display: flex;
    gap: 20px;
    justify-content: space-around;
    min-width: 100%;
}
.wrap-carousel-heart .item {
    background: #ccc;
    flex: 0 0 auto;
    width: 210px;
    height: 185px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.1s ease-in-out;
}
.wrap-carousel-heart .item:hover img {
    /* transform: scale(1.05); */
    /* transition: all 0.1s ease-in-out; */
}

.wrap-carousel-heart .team-image:hover {
    mask-image: url(../img/heart.svg);
    -webkit-mask-image: url(../img/heart.svg);
}

.wrap-carousel-heart .item img {
    transform: scale(1);
    transition: transform 0.1s ease-in-out, opacity 0.5s ease, filter 0.5s ease;
}

.wrap-carousel-heart .team-image:nth-child(2n) {
    transform: rotate(180deg);
}

.wrap-carousel-heart .team-image:nth-child(2n) img {
    transform: rotate(180deg);
}

.wrap-carousel-heart .team-image.image-heart:nth-child(2n) img {
    transform: rotate(0deg);
}
.wrap-carousel-heart .team-image.image-heart:hover img {
    /* transform: rotate(180deg); */
}

.wrap-carousel-heart .marquee {
    animation: scroll-carousel 90s linear infinite;
}
.wrap-carousel-heart .reverce {
    animation-direction: reverse;
}
.wrap-carousel-heart .items-wrap:hover .marquee {
    animation-play-state: paused;
}

@keyframes scroll-carousel {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 20px));
    }
}