.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.fl-module-heading.heading-theme .fl-heading {
  border-bottom: .15rem solid var(--fl-global-secondary);
}
.fl-module-heading.heading-theme .fl-heading-text {
  border-bottom: .2rem solid var(--fl-global-secondary);
  padding-bottom: .25rem;
  margin-bottom: 0;
  display: inline-block;
}
.velocity-bg-primary {
  background-color: var(--fl-global-primary) !important;
}
.velocity-bg-secondary {
  background-color: var(--fl-global-secondary) !important;
}
.white-image img {
	filter: brightness(0) invert(1);
}


/** SLICK velocity_recent_posts*/
/* Container slick */
.slick-recent-posts {
    margin: 20px 0;
}

.slick-item {
    padding: 5px;
}

.slick-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.slick-card .featured-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-in-out;
}

.slick-card:hover .featured-img {
    transform: scale(1.1);
}

/* Overlay efek hover */
.slick-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    color: #000;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.slick-card:hover .overlay {
    opacity: 1;
}

.slick-card .post-title {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

.slick-card .post-date {
    font-size: 0.85rem;
    margin: 5px 0 0;
    color: #333;
}

/** end SLICK velocity_recent_posts*/




@media (min-width: 768px) {
    body:not(.fl-builder-edit) .header-sticky {
        transition: background 0.3s ease, top 0.3s ease, box-shadow 0.3s ease;
    }
    body:not(.fl-builder-edit) .header-sticky-scrolled {
        position: fixed;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        background: #fff;
        max-width: 100%;
        z-index: 1030;
        animation: hilang .5s;
    }
    .admin-bar:not(.fl-builder-edit) .header-sticky-scrolled {
        top: 32px;
    }
}

@media only screen and (max-width: 768px) {
	html, body {
		overflow-x: hidden;
	}
	.fl-module-content-slider .fl-slide .fl-slide-content {
		padding: 0 !important;
	}
}

@keyframes marquee {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
}