/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 26 2024 | 11:57:59 */
.default-logo {
	filter: brightness(0) invert(1); /* Makes the logo all white */
}

/* Create the underline effect with the ::before pseudo-element */
.nav-menu .menu-item:not(:last-child) > a::before {
	content: '';
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 0;
    height: 2px;
    background: #4793af;
    transition: width 0.4s ease; /* Transition effect for the underline */
}
.nav-menu .menu-item > a {
	padding: 0 !important;
}

/* On hover, extend the width of the underline */
.nav-menu .menu-item:not(:last-child) > a:hover::before {
    width: 100%; /* Extend the width to fill the anchor */
}

.nav-menu .menu-item:last-child > a {
	padding: 14px 16px !important;
    border: 2px solid;
    border-radius: 3px;
    position: relative; /* Required to adjust the top property */
    top: 0; /* Default top position */
    transition: top 0.2s ease-in-out; /* Add a transition for the top property */
}

.nav-menu .menu-item:last-child > a:hover {
	top: -2px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.logo-container {
	flex-grow: .9 !important;
    flex-basis: 0 !important;
}

.nav-container {
	flex-basis: 0 !important;
    flex-grow: 2 !important;
}

@media only screen and (max-width: 1024px) {
	.elementor-menu-toggle.elementor-active {
		z-index: 9999;
		color: #000000 !important;
		background: none;
		top: 30px;
        right: 50px;
        position: fixed;
	}
	
    .elementor-nav-menu--dropdown.elementor-nav-menu__container {
        background-color: #ffffff;
		position: fixed !important;
		top: -10px !important;
		left: 0 !important;
		right: 0 !important;
		bottom: 0 !important;
		padding: 60px 32px;
    }
	
	.elementor-nav-menu--dropdown .elementor-nav-menu .elementor-item {
		color: #000000 !important;
		background-color: #ffffff !important;
		font-size: 28px !important;
		font-weight: 600;
	}
	
	.elementor-nav-menu--dropdown .elementor-nav-menu .elementor-item {
		color: #000000 !important;
		background-color: #ffffff !important;
		font-size: 28px !important;
		font-weight: 600;
	}
	
	.elementor-nav-menu--dropdown .elementor-nav-menu .menu-item:last-child > a {
		justify-content: center;
	}
	
	.elementor-nav-menu--dropdown .elementor-nav-menu {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}
}

@media only screen and (min-width: 1024px) {
    .elementor-menu-toggle {
        display: none !important;
    }
}


/* maximum width on 1700px viewport */
@media screen and (min-width: 1700px) {
	.nav-custom-width {
		max-width: 1366px !important;
		margin-left: auto;
		margin-right: auto;
	}
}