
@media (max-width: 768px) {

  .menu-div {
    border-bottom: 1px solid #ddd;
  }

 .menu-heading {
  position: relative;
  cursor: pointer;
}

/* Plus icon sirf JS wali class par lagega */
.has-submenu .menu-heading::after {
  content: '+';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s ease;
}

.has-submenu.active .menu-heading::after {
  content: '-';
}

  .menu_list {
    display: none;
    padding: 0;
  }

  .menu_list ul {
    margin: 0;
    padding-left: 20px;
  }

  .menu_list li {
    padding: 8px 0;
  }
  
    .menu_outer > .elementor-widget-wrap {
        box-shadow: none !important;
    }
  .icon.icon-down-arrow1 {
    width: 24px;
    height: 24px;
    display: flex !important;
    align-items: center;
    justify-content: center;
}



  
}

/* Banner Slider */

.vertical-slider {
    margin: auto;
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  
  .vertical-slider .slide-track {
   -webkit-animation: scroll 15s linear infinite reverse;
    animation: scroll 15s linear infinite reverse;
    display: flex;
    height: calc(250px * 14);
    flex-direction: column;
  }
  .vertical-slider .slide {
    height: 200px;
    width: 260px; 
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .reverse-slide{
    animation:  reverse 15s linear infinite reverse;
 }
 
 .slide-img img {
    clip-path: polygon(50% 0%, 100% 20%, 100% 100%, 0 100%, 0 20%);
}
 
  
  @-webkit-keyframes scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100px * 5))
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100px * 5))
    }
  }
  
  
@keyframes reverse {
  0% {
    transform: translateY(calc(-100px * 5));
  }
  100% {
    transform: translateY(0);
  }
}


@media (max-width: 768px) {
      .vertical-slider .slide {
    height: auto;
    margin-bottom: 30px;
  }
    .vertical-slider {
        height: 400px;
        overflow: hidden;
    }
    
      @keyframes scroll {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100px * 2))
    }
  }
}