.swiper {
    width: calc(252px / 1.3);
    height: calc(378px / 1.3);
}

.swiper-slide {
    border: 1px solid #878787;
    border-radius: 10px;
    object-fit: cover;
}

.ebs-hero-title {
    background: linear-gradient(to right, #28c76f 0%, #5a4aff 47.92%, #ff3739 100%);
    background-size: 200% auto;
    color: #566a7f;
    background-clip: text;
    line-height: 1.2;
    text-fill-color: rgba(0,0,0,0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(0,0,0,0);
    animation: shine 2s ease-in-out infinite alternate;
}

@keyframes shine {
    0% {
        background-position: 0 50%;
    }
    80% {
        background-position: 50% 90%;
    }
    100% {
        background-position: 91% 100%;
    }
}