/*gero slider animation*/

 .svg-animation-block-wrapper {
        max-width: 700px;
        position: relative;
        margin: 0 auto;
        height: 510px;
        overflow: hidden;
      }

      .svg-animation-block .mySwiper {
        width: 100%;
        max-width: 468px;
        margin: 100px auto;
        padding: 60px 0;
        overflow: visible;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        margin: 0;
        margin-top: 69px;
      }

      .svg-animation-block .swiper-slide {
        background: #f3f3f3;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 273px;
        font-size: 24px;
        font-weight: 600;
        border-radius: 6px;
        overflow: visible;
        opacity: 0;
      }

      .svg-animation-block .swiper-slide.swiper-slide-active {
        opacity: 1;
      }

      .svg-animation-block .swiper-slide svg {
        overflow: visible;
      }

      .svg-animation-block .svg-animation {
        opacity: 0;
        transform: translateY(10px);
        animation: none;
      }

      .svg-animation-block .svg-animation-custom {
        opacity: 0;
        animation: none;
      }

      .svg-animation-block.t-animate_started .svg-animation {
        animation: popup 0.6s ease-out forwards;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-right {
        animation: popupRight 4s ease-out forwards;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-top-right {
        animation: popupTopRight 4s ease-out forwards;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-bottom-right {
        animation: popupBottomRight 4s ease-out forwards;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-fade-long {
        animation: popupFade 9s ease-out forwards;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-fade-short {
        animation: popupFade 9s ease-out forwards;
      }

      .svg-animation-block.t-animate_started .svg-animation.svg-animation-1 {
        animation-delay: 0.3s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-2 {
        animation-delay: 0.6s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-3 {
        animation-delay: 0.9s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-4 {
        animation-delay: 1.2s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-5 {
        animation-delay: 1.5s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-6 {
        animation-delay: 1.8s;
      }
      .svg-animation-block.t-animate_started .svg-animation.svg-animation-7 {
        animation-delay: 2.1s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-1 {
        animation-delay: 0.3s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-2 {
        animation-delay: 0.6s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-3 {
        animation-delay: 0.9s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-4 {
        animation-delay: 1.2s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-5 {
        animation-delay: 1.5s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-6 {
        animation-delay: 1.8s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-7 {
        animation-delay: 2.1s;
      }

      .svg-animation-block .swiper-slide-active .svg-animation-custom.svg-animation-8 {
        animation-delay: 2.4s;
      }

      .svg-animation-block .svg-animation-custom {
        transform-origin: center center;
        transform-box: fill-box;
      }

      .svg-desktop-outer {
        position: absolute;
        transform: translateX(-50%);
        left: 50%;
      }

      @keyframes popup {
        from {
          opacity: 0;
          transform: translateY(10px) scale(0.95);
        }
        to {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
      }

      @keyframes popupRight {
        0% {
          opacity: 0;
          transform: translateX(250px) scale(0.95);
        }
        15% {
          opacity: 1;
          transform: translateX(-10px) scale(1.02);
        }
        20% {
          transform: translateX(0) scale(1);
        }
        90% {
          transform: translateX(0) scale(1);
          opacity: 1;
        }
        100% {
          transform: translateX(-125px);
          opacity: 0;
        }
      }

      @keyframes popupTopRight {
        0% {
          opacity: 0;
          transform: translateX(200px) translateY(-10px) scale(0.95);
        }
        15% {
          opacity: 1;
          transform: translateX(-10px) translateY(10px) scale(1.02);
        }
        20% {
          transform: translateX(0) translateY(0) scale(1);
        }
        90% {
          transform: translateX(0) translateY(0) scale(1);
          opacity: 1;
        }
        100% {
          transform: translateX(-100px) translateY(-50px);
          opacity: 0;
        }
      }

      @keyframes popupBottomRight {
        0% {
          opacity: 0;
          transform: translateX(200px) translateY(200px) scale(0.95);
        }
        15% {
          opacity: 1;
          transform: translateX(-10px) translateY(-10px) scale(1.02);
        }
        20% {
          transform: translateX(0) translateY(0) scale(1);
        }
        90% {
          transform: translateX(0) translateY(0) scale(1);
          opacity: 1;
        }
        100% {
          transform: translateX(-100px) translateY(50px);
          opacity: 0;
        }
      }

      @keyframes popupFade {
        0% {
          opacity: 0;
          transform: translateY(10px) scale(0.95);
        }
        10% {
          opacity: 1;
          transform: translateY(0) scale(1);
        }
        90% {
          transform: translateY(0) scale(1);
        }
        100% {
          opacity: 0;
          transform: translateY(10px) scale(0.95);
        }
      }
      
         @media (max-width: 480px) {
        .svg-animation-block .mySwiper {
          max-width: 275px;
          margin-top: 45px;
        }
        .svg-animation-block .swiper-slide {
          height: 159px;
        }
      }
      /*gero slider animation*/
      
      /*scroll image*/
      
        .scroll-image img{
            transition: object-position 5s ease;
            cursor: pointer;
        }
        .scroll-image:hover img,
        .scroll-image:active img{
            object-position: center bottom !important;
        }
      
      /*scroll image*/
      
   
    
   