/*
Theme Name: KLG Theme
Theme URI: https://reeva.sa
Author: Reeva
Author URI: https://reeva.sa
Description: KLG Theme is designed for KLG website
Template: blocksy
Requires at least: 6.6
Tested up to: 6.6
Requires PHP: 8.0
Version: 1
License: All rights reserved
Text Domain: klgtheme
*/



.rv-logo-scroller {
	width: 100vw !important;
	overflow: hidden !important;
	white-space: nowrap;
	position: relative !important;
}

.rv-logo-scroller-inner {
	flex-wrap: nowrap !important;
	--rv-logo-scroll-distance: 0px;
	--rv-logo-scroller-duration: 15000;
}
.rv-logo-scroller-inner.animate {
	left: 0;
	justify-content: flex-start !important;
	animation: logoScroll linear infinite;
	animation-duration: calc(var(--rv-logo-scroller-duration) * 1ms);
}

.rv-logo-item {
	display: inline-block;
	max-width: 200px !important;
	min-width: 200px !important;
}
.rv-logo-item img {
	filter: brightness(0) invert(1);
	opacity: 0.3;
	transition: all 0.3s ease;
}
.rv-logo-item:hover img {
	filter: none;
	opacity: 1;
}

.rv-custom-btn {
	background: none !important;
	color: var(--theme-palette-color-3) !important;
	text-transform: uppercase !important;
	border: 1px solid var(--theme-palette-color-3) !important;
	border-radius: 0px !important;
	padding: 25px !important;
}
.rv-custom-btn:hover {
	background: var(--theme-palette-color-5) !important;
}

.rv-custom-form input[type="text"], .rv-custom-form input[type="email"], .rv-custom-form textarea {
	border: 0 !important;
	border-bottom: 1px solid #bbbdc6 !important;
	border-radius: 0px !important;
}

#footer .widget-menu {
	font-family: playfair;
	text-transform: uppercase;
	font-size: 1.2rem;
}







@keyframes logoScroll {
	0% {
		left: 0;
	}
	100% {
		left: var(--rv-logo-scroll-distance);
	}
}


@media (max-width: 576px) {
	
	.rv-logo-scroller {
		position: absolute !important;
		left: 0;
		bottom: 50px;
	}
	
}