
body{font-family:'Jost',sans-serif;line-height:1.5;font-weight:400;display:flex;flex-direction:column;margin:0;padding:0;width:100%;overflow-x:hidden;overflow-y:scroll}

.header_slider, .header_slider .slider-image {
  margin: 0;
  padding: 0;
  position: relative;
}
.header_slider.slick-slider {
    margin-top: 0px;
   }

.header_slider .slick-dots {
  z-index: 10;
  position: absolute;
  bottom: 20px;
  width: 100%;
}
.header_slider .slick-dots li button {
    background: #fff;
    opacity:1;
}


.header_slider .control-c.slick-prev {
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top:50%;
    z-index: 1;
    left: 30px !important;
  
}
.header_slider .control-c.slick-next {
   width: 40px;
   top:50%;
   height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    right: 30px !important;
}

.slider-image .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}
.slider-image .content span {
    color: #fff;
    position: relative;
    text-transform: uppercase;
}
.slider-image .content span:before, .slider-image .content span:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 1px;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
}
.slider-image .content span:before {
    left: -40px;
}
.slider-image .content span:after {
    right: -40px;
}
.slider-image .content h2 {
    margin-bottom: 20px;
    color: #fff;
    font-style: italic;
    font-weight: 400;
}
.banner-img-hmg{ max-width: 100%;}

.slider-image .btn-six {
    background-color: rgb(139, 111, 78) !important;
    color: rgb(255, 255, 255) !important;
}

@media (max-width: 768px) {
    .slider-image .content span {
        font-size: 9px;
        font-weight: 700;
    }
}


 /* Marquee container */
 .marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #f7f7f7;
    padding: 15px 0;
    box-sizing: border-box;
    position: relative;
  }

  /* Marquee content wrapper */
  .marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
  }

  /* Duplicate the content for seamless scrolling */
  .marquee-content > * {
    flex-shrink: 0;
    white-space: nowrap;
    margin-right: 50px; /* Space between items */
    font-weight: 500;
  color: #30373f;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  letter-spacing: 1.5px;
  }

  /* Custom bullet */
  .marquee-content > *::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #333;
  }

  /* Keyframes for continuous animation */
  @keyframes marquee {
    0% {
      transform: translateX(0); /* Start at the leftmost position */
    }
    100% {
      transform: translateX(-100%); /* End when the first set is off-screen */
    }
  }





















