/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 12 2025 | 19:04:00 */
header#site-header,
footer#site-footer{
    display:none!important;
}

/* WELCOME PAGE */
.cls-1 {
    stroke-dasharray: 6000;
    stroke-dashoffset: -6000; 
    animation: drawClockwiseFromBottomLeft 8s ease-in-out forwards;
}

@keyframes drawClockwiseFromBottomLeft {
    to {
        stroke-dashoffset: 0; 
    }
}
/* Positioning για το SVG container με την κλάση lemon-svg */
.lemon-svg {
    z-index: 1 !important;
    pointer-events: none !important;
}
/* Εξασφάλιση ότι το container επιτρέπει overflow */
.main-container {
    overflow: visible !important;
}

.lemon-svg svg{
    min-height: 100vh!important;
}

/* Mobile keyframes - ΕΚΤΟΣ του media query */
@keyframes drawClockwiseFromBottomLeftMobile {
    to {
        stroke-dashoffset: 0;
    }
}
@media(max-width:768px){
	.lemon-svg svg{
		min-height: 50vh!important;
		max-width:95%!important;
	}
	.lemon-svg svg .cls-1 {
        stroke-width: 8px !important;
		stroke-dasharray: -6000;
    	stroke-dashoffset: 6000; 
		animation: drawClockwiseFromBottomLeftMobile 8s ease-in-out forwards !important;
    }
}
/* END WELCOME */