.coins-animation {
    /*background-color: #000;*/
    position: relative;
    width: 805px;
    height: 546px;
}

.coins-animation__coin {
    width: 151px;
    height: auto;
    position: absolute;
    animation-name: coin;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
}

.coins-animation__coin:nth-child(1) {
    top: 236px;
    left: 10px;
    animation-delay: 1s;
}

.coins-animation__coin:nth-child(2) {
    top: 140px;
    left: 430px;
    animation-delay: 2s;
}

.coins-animation__coin:nth-child(3) {
    top: 28px;
    left: 202px;
    animation-delay: 0.5s;
}

.coins-animation__coin:nth-child(4) {
    top: 330px;
    left: 270px;
    animation-delay: 3.7s;
}

.coins-animation__coin:nth-child(5) {
    top: 222px;
    left: 637px;
    animation-delay: 0.7s;
}

.coins-animation__coin-image {
    position: relative;
    width: 100%;
}

.coins-animation__coin-light {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.coins-animation__coin-text {
    font-family: "Montserrat", sans-serif;
    position: absolute;
    left: 0;
    top: -60px;
    right: 0;
    height: 129px;
    animation-name: coin-text;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transition: 0.5s ease top;
}

.coins-animation__coin-text-item {
    position: absolute;
    text-align: center;
    white-space: nowrap;
    color: #3EB67A;
    font-size: 44px;
    line-height: 100%;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: 0.5s ease opacity, 0.5s ease transform;
}

.coins-animation__coin-text-item_hidden {
    opacity: 0;
    transform: translateY(50px);
}


@keyframes coin {
    0% {

    }
    50% {
        transform: translateY(15%);
    }
    100% {

    }
}