/**
 * Text Carousel
 *
 * Generated by Dreamz Page Builder on 2026-07-21.
 */

 .text-carousel{
	background: #E7DCCF;
	padding: 14px 0px;
	overflow: hidden;
}


.text-slide-track {
    display: flex;
    width: max-content;
	gap: 24px;
    animation: marquee 50s linear infinite;
}

.text-slide-item{
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	color: #1F1F1F;
	font-family: var(--font-cormorant-garamond);
	display: flex;
	align-items: center;
}
.text-slide-item::before{
    content: "";
    background-image: url(../images/slide-star-icon.svg);
    background-repeat: no-repeat;
    width: 14px;
    height: 14px;
    background-size: contain;
    margin-right: 18px;
    display: block;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}