  .vm-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #000;
  }

  @media (max-width: 778px) {
    .vm-slider {
      height: 500px;
    }
  }

  .vm-slider__slides {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .vm-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    overflow: hidden;
  }

  .vm-slider__slide.active {
    opacity: 1;
    z-index: 2;
  }

  .vm-slider__slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
  }

  .vm-slider__slide.active .vm-slider__slide-img {
    animation: kenBurns 10s ease-out forwards;
  }

  @keyframes kenBurns {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.2);
    }
  }

  .vm-slider__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.45) 0%, rgba(215, 215, 215, 0) 100%);
    z-index: 3;
  }

  .vm-slider__text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 99px));
    z-index: 4;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 46px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
    white-space: nowrap;
    opacity: 0;
    transition: none;
  }

  @media (max-width: 778px) {
    .vm-slider__text {
      font-size: 22px;
      line-height: 32px;
      text-align: center;
      white-space: normal;
      width: 95%;
      transform: translate(-50%, calc(-50% + 70px));
    }
  }

  .vm-slider__slide.active .vm-slider__text {
    animation: textSlideUp 2s cubic-bezier(0.76, 0, 0.24, 1) 0.22s forwards;
  }

  @keyframes textSlideUp {
    0% {
      opacity: 0;
      transform: translate(-50%, calc(-50% + 99px + 100%));
    }

    100% {
      opacity: 1;
      transform: translate(-50%, calc(-50% + 99px));
    }
  }

  @media (max-width: 778px) {
    @keyframes textSlideUp {
      0% {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 70px + 100%));
      }

      100% {
        opacity: 1;
        transform: translate(-50%, calc(-50% + 70px));
      }
    }
  }

  /* Static logos */
  .vm-slider__static {
    position: absolute;
    bottom: 25px;    
    z-index: 10;
    display: flex;
    gap: 14px;
  }

  @media (max-width: 778px) {
    .vm-slider__static {
      bottom: 55px;
      right: 50%;
      transform: translateX(50%);
    }
  }

  .vm-slider__static a {
    display: block;
    width: 100px;
    height: 100px;
  }

  @media (max-width: 778px) {
    .vm-slider__static a {
      width: 70px;
      height: 70px;
    }
  }

  .vm-slider__static img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Navigation Arrows */
  .vm-slider__arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
    pointer-events: none;
  }

  @media (max-width: 1024px) {
    .vm-slider__arrows {
      display: none;
    }
  }

  .vm-slider__arrow {
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: auto;
    background: transparent;
    border: none;
    outline: none;
  }

  .vm-slider:hover .vm-slider__arrow {
    opacity: 1;
  }

  .vm-slider__arrow:hover {
    opacity: 0.75;
  }

  /* Navigation Bullets */
  .vm-slider__bullets {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
  }

  .vm-slider__bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0);
  }

  .vm-slider__bullet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .vm-slider__bullet.active,
  .vm-slider__bullet:hover {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
  }

  .vm-slider__bullet.active::before,
  .vm-slider__bullet:hover::before {
    transform: scale(0.4);
    background-color: rgba(255, 255, 255, 1);
  }
