/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 04 2024 | 20:51:23 */
img.bg-slide_sclara {
    position: absolute;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    max-width: 100vw;
}
.florverde-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.florverde-slider .slide {
    position: absolute;
    height: 100%;
    width: 100%;
	left:0;
}

.florverde-slider .slide_out {
    animation: image_out 7s ease-in-out 1s infinite;
    z-index: 9;
	overflow:hidden;
}

.florverde-slider .slide_in {
    animation: image_in 7s ease-in-out 1s infinite;
    z-index: 1;
}

@keyframes image_out {
    0% {
        width: 100%;
        
    }
    30% {
        width: 100%;
       
    }
    50% {
        width: 0%;
        
    }
    90% {
        width: 0%;
      
    }
    100% {
        width: 100%;
       
    }
}

@keyframes image_in {
    0% {        
        transform: scale(1.15);
    }
    30% {        
        transform: scale(1.15);
    }
    58% {        
        transform: scale(1.1);
    }
    85% {        
        transform: scale(1.1);
    }
    100% {
        
        transform: scale(1.15);
    }
}

.florverde-slider:before {
    content: "";
    position: absolute;
    background: rgba(0, 0, 0, 0.54);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.florverde-slider .content-container {
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.florverde-slider .slider-title {
    font-size: 2em;
    margin: 0;
}

.florverde-slider .slider-subtitle {
    font-size: 1.5em;
    margin: 0;
}

.florverde-slider .shortcode-content {
    margin-top: 20px;
	width: 100%;
}