
@-webkit-keyframes shine {
    100% {
        left: 125%
    }
}

@keyframes shine {
    100% {
        left: 125%
    }
}
@keyframes float-bob-y {
    0% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@keyframes marquee-vertical {
    0% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes marquee-horizontal {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-marquee {
    animation: marquee-horizontal 20s linear infinite;
    will-change: transform;
}
.animate-marquee {
    writing-mode: sideways-lr;
    text-orientation: mixed;
    animation: marquee-vertical 20s linear infinite;
}

@keyframes svg-shake {
    0% {
        transform: rotate(0)
    }

    10% {
        transform: rotate(15deg)
    }

    20% {
        transform: rotate(-15deg)
    }

    30% {
        transform: rotate(10deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    50% {
        transform: rotate(0)
    }

    to {
        transform: rotate(0)
    }
}

@keyframes iconFlash {
    0% {
        box-shadow: none;
        border-color: #ffffff4d
    }

    30% {
        background: #fff3;
        border-color: #fff;
        box-shadow: 0 0 25px #ffffff80
    }

    60% {
        background: 0 0;
        border-color: #ffffff80;
        box-shadow: 0 0 10px #fff3
    }

    to {
        box-shadow: none;
        background: 0 0;
        border-color: #ffffff4d
    }
}
.start-desc h2 {
    margin-bottom: 4px;
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
}

.start-desc h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffffd9;
    font-size: 12px;
    font-weight: 700;
}

.start-desc p {
    color: #fff9;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.4
}
.start-icon {
    color: #fff;
    cursor: pointer;
    border: 2px solid #ffffff4d;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    font-size: 24px;
    transition: all .3s;
    display: flex;
    animation: 1.2s forwards iconFlash;
}
.start-icon:hover{
    transform: scale(1.15);
}