.vk-slider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
  }
  .vk-slides {
    display: flex;
    transition: transform 0.5s ease;
  }
  .vk-slide {
    flex: 0 0 100%;
    text-align: center;
  }
  .vk-slider-item{
    width: 100% !important;
  }
  .vk-button {
    cursor: pointer;
    width: 25px;
    height: 40px;
    fill: #41db79;
    z-index: 10;
    display: none;
  }
  .vk-prev{
    position: absolute;
    top: 48%;
    left:20px;
  }
  .vk-next{
    position: absolute;
    top: 48%;
    right:20px;
  }
  .vk-slider-bullet{
    border: 1px solid white;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
  }
  .vk-slider-bullet:not(:first-child){
    margin-left: 5px;
  }
  .vk-slider-bullet.active{
    background-color: white;
  }
  .vk-slider-bullet-container{
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    padding: 10px;
    display: flex;
    justify-content: center;
  }
  
  @media (max-width:425px) {
    .vk-slider{
      margin-top: 85px;
    }
  }
  .vk-slider-item{
    overflow: hidden;
  }
  .vk-slider-item img{
    animation: scale 15s linear infinite;
  }
  
  @keyframes scale {
    50% {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -ms-transform: scale(1.2);
      -o-transform: scale(1.2);
      transform: scale(1.2);
    }
  }