
  
 .posts {
    height: 80vh;
 }
 .roulette-prizes {
  position: relative;
  left: 0;
 }
 .blockroul {
    position: relative;
    width: 800px;
    background: #f4f5f5;
    border-radius: 10px;
    margin: 50px auto;
  }
  .blockroul .pointer {
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate3d(-50%, -25px, 0);
    height: 50px;
    filter: drop-shadow(0 0 20px rgba(112, 112, 112, 0.836));
  }

  /* .navbar-link {
    text-decoration: none !important;
    margin-right: 25px;
    font-family: "Montserrat", sans-serif !important;
  } */

  .blockroul .scope {
    overflow: hidden;
  }
  .roulette-prizes {
    position: relative;
    display: inline-flex;
    left: 0;
    transform: translate3d(0, 0, 0);
    list-style: none;
    transition: 3s cubic-bezier(.92,.02,.8,.99)
  }
  .button__roul__start {
    border: none !important;
    outline: white 0px auto !important;
    color: white;
    margin: 0px auto !important;
    display: flex;
  }
  .list__item {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 170px;
    opacity: 0.5;
    transition: 0.3s ease;
  }
  .blockroul .scope .list__item:nth-child(2n) {
    background: rgba(114, 114, 114, 0.082);
  }
  .blockroul .scope .list__item.active {
    opacity: 1;
  }
  .blockroul .scope .list__item.active img {
    transform: scale(1.05);
  }
  .blockroul .scope .list__item img {
    width: 80%;
    height: 80%;
    -o-object-fit: contain;
       object-fit: contain;
    transition: 0.3s ease;
  }
  .blockroul .start {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate3d(-50%, 20px, 0);
    padding: 8px 25px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #eb5146;
    color: inherit;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
    box-shadow: 0 0 30px 0 rgba(255, 118, 118, 0.2);
    cursor: pointer;
  }
  .blockroul .start:hover {
    opacity: 0.8;
  }
.blockroul .point {
    margin: -25px -25px;
    transform: rotateZ(15deg);
    transition: all .1s;
}


@media (max-width: 769px) {
    .blockroul {
        width: 650px;
    }
}

@media (max-width: 607px) {
    .blockroul {
        width: 550px;
    }

    .blockroul .scope .list__item {
        width: 150px;
        height: 130px;
    }

    .blockroul .scope .list__item img{
        height: 80%;
        width: 80%
    }
}

@media (max-width: 457px) {
    .blockroul {
        width: 500px;
    }

    .blockroul .scope .list__item {
        width: 150px;
        height: 110px;
    }

    .blockroul .scope .list__item img{
        height: 80%;
        width: 80%
    }
}

@media (max-width: 405px) {
    .blockroul {
        width: 450px;
    }

    .blockroul .scope .list__item {
        width: 130px;
        height: 100px;
    }

    .blockroul .scope .list__item img{
        height: 80%;
        width: 80%
    }
}

@media (max-width: 369px) {
    .blockroul {
        width: 400px;
    }

    .blockroul .scope .list__item {
        width: 110px;
        height: 80px;
    }

    .blockroul .scope .list__item img{
        height: 80%;
        width: 80%
    }
}

@media (max-width: 333px) {
    .blockroul {
        width: 300px;
    }

    .posts {
        height: 100vh;
     }
}

.footer__link {
  font-family: 'Montserrat', sans-serif !important
}