/* Scroll Indicator Shortcode */

.wintemp-scroll-indicator {
    width: 56px;
    height: 56px;
    background-color: #EACB83;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wintemp-scroll-indicator svg {
    width: 48px;
    height: 48px;
    stroke: #49280F;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    animation: wintemp-arrow-shuttle 1.6s infinite cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes wintemp-arrow-shuttle {
    0% {
        transform: translateY(-150%) scale(0.5);
        opacity: 0;
    }
    30% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    70% {
        transform: translateY(0) scale(0.9);
        opacity: 1;
    }
    100% {
        transform: translateY(150%) scale(0.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .wintemp-scroll-indicator {
        width: 28px;
        height: 28px;
    }
}

.service-focus-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.service-focus-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 100%;
	padding: 8px 16px;
	border: 0;
	border-radius: 999px;
	background-color: #0F2F16;
	color: #fff;
	font-family: Poppins, sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	text-align: center;
	text-decoration: none;
	white-space: normal;
}

@media (max-width: 768px) {
	.service-focus-tag {
		padding: 4px 8px;
		font-size: 13px;
	}
}
