.sidebar{
    width:50%;
    height:100vh;
    position: fixed;
    top:0;
    left:-350px;
    z-index: 1000;
    transition: left 0.5;
    background-color: rgba(24, 108, 56, 0.9);

}
@media only screen and (min-width:768px)
{
    .sidebar{
        display: none;
    }
}
.hidden {
  display: none;
}
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.swiper-progressbar {
  background-color: #ff0000; /* Change this to the color you want */
}
@media only screen and (max-width:768px)
{
    .hero-section{
        height:280px;
    }
  .swiper {
    width: 100%;
  }
  .swiper-slide img {
    display: block;
    width: 100%;
  }
  
}

/* Scrollbar Modification */

    /* Webkit (Chrome, Safari, Opera) and Blink (new Edge) */
    ::-webkit-scrollbar {
      width: 7px;
  }
  
  ::-webkit-scrollbar-track {
      background: #f1f1f1;
  }
  
  ::-webkit-scrollbar-thumb {
      background-color: #186C38;
      border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
      background-color: #555;
  }

/* Close Scroll bar COding */







