.current {
    color: #0e5839;
    border-radius: 5px;
}

.sticky-header-background {
    background-color: #c99b68;
    transition: all 0.8s ease-out;
}

 ::-webkit-scrollbar {
    width: 4px;
}

 ::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

 ::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #515151;
}

.current:hover {
    color: white;
}

.swiper-slide {
    min-height: 500px;
    text-align: center;
}

.slider-container {
    padding: 220px;
}

.slider-buttton {
    letter-spacing: 1.29px;
    border: solid 1px #ffffff;
    color: #ffffff;
    text-decoration: none;
}

.slide-1 {
    background: url("..//images/banner-2.jpg");
    background-size: cover;
}

.slide-2 {
    background: url("..//images/banner-1.jpg");
    background-size: cover;
}



.home-demo .item {
    background: #ff3f4d;
}

.home-demo h2 {
    color: #FFF;
    text-align: center;
    padding: 5rem 0;
    margin: 0;
    font-style: italic;
    font-weight: 300;
}


/* Custom CSS */


/* .portfolio-img {
    border-radius: 1rem;
} */

.portfolio-img img {
    filter: grayscale(0%);
    transform: scale(1);
    opacity: 1;
}

.portfolio-img:hover img {
    filter: grayscale(0%);
    transform: scale(1);
    opacity: 1;
}

.portfolio-img:hover .portfolio-hover::before {
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
}

.portfolio-hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.portfolio-hover::before {
    content: "";
    background-color: rgb(13 189 229 / 32%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
    transition: transform 0.6s;
}


/* .tab-button {

}

.tab-button.active {

}

.tab-content {

} */

.tab-content.hidden {
    display: none;
}

@media only screen and (max-width:768px) {
    .slider-container {
        padding: 100px 20px;
    }
    .swiper-slide {
        min-height: 500px;
        text-align: center;
    }
}

  /* Skeleton loader container */
  .skeleton-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Skeleton loader animation */
  .skeleton-loader {
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      #f0f0f0 0%,
      #e0e0e0 50%,
      #f0f0f0 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
  }

  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }


