.case-area svg {
    width: 1em;
    height: 1em;
}
.case-title {
    font-size: 350px;
    font-weight: 400;
    flex: 0 0 auto;
}
.case-title span {
    color: #eaeaea;
}
.marquee-text {
    animation-name: marquee 15s;
    animation: marquee 8s linear 0s infinite normal;
    animation-name: marquee;
    animation-play-state: running;
}
.marquee-text-inner {
    display: flex;
    gap: 80px;
    margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
    .marquee-text-inner {
        margin-bottom: 0;
    }
}

.marquee-text.pause-on-hover:hover{
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*case items*/
.magnetic-wrap:last-child .case-item {
    margin-bottom: 0;
}
.case-item {
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: auto;
    margin-bottom: 30px;
    z-index: 5;
}
@media only screen and (min-width: 768px) {
    .case-item {
        width: 590px;
        height: 560px;
        margin-bottom: 100px;
    }
}
.case-item img {
    width: 100%;
    object-fit: cover;
    transition: all 0.3s 0s ease-out;
}
.case-item .view-details-btn {
    height: 90px;
    width: 90px;
    gap: 2px;
    font: 400 14px "Outfit", sans-serif;
}
.case-item .view-details-btn:hover {
    background-color: #D90A2C;
    color: #FFFFFF;
    fill: #FFFFFF;
}
.case-item:hover img {
    transform: scale(1.06);
}
.case-item:hover .view-details-btn {
    opacity: 1;
    visibility: visible;
}
.case-item:hover::before {
    opacity: 0.5;
    visibility: visible;
}
.case-title {
    font: 400 70px/1 "Bebas Neue", sans-serif;
    flex: 0 0 auto;
}
@media only screen and (min-width: 768px) {
    .case-title {
        font-size: 90px;
    }
}
@media only screen and (min-width: 992px) {
    .case-title {
        font-size: 180px;
    }
}
@media only screen and (min-width: 1200px) {
    .case-title {
        font-size: 280px;
    }
}
@media only screen and (min-width: 1400px) {
    .case-title {
        font-size: 350px;
    }
}
.case-title span {
    color: #eaeaea;
}

.view-details-btn {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    place-content: center;
    gap: 4px;
    background-color: #fff;
    color: #121212;
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    opacity: 0;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.01) 0px 18px 36px -18px inset;
}

.view-details-btn i,
.view-details-btn svg {
    transform: rotate(-45deg);
}