/*   
Theme Name: Jtheme Jello Child
Theme URI: https://elementor.com
Description: Simple and lightweight Jezweb theme
Author: Jezweb
Author URI: https://www.jezweb.com.au/
Template: elementor-hello-theme-master
Text Domain: elementor-hello-theme-child
Version: 1.0
*/


/***
* class: .sticky-header
*/
header.sticky-header {
	--header-height: 100px;
	--shrink-header-to: 0.6;
	--transition: .45s cubic-bezier(.4, 0, .2, 1);

	background-color: rgba(255, 255, 255, 0) !important;

	transition: background-color var(--transition),
				
			
}

/***
* Sticky header activated (on scroll)
*/
header.sticky-header.elementor-sticky--effects {
	background-color: rgba(14, 61, 87, 1) !important;
}

/* Container height */
header.sticky-header > .elementor-container {
	min-height: var(--header-height);
	transition: min-height var(--transition);
}

header.sticky-header.elementor-sticky--effects > .elementor-container {
	min-height: calc(var(--header-height) * var(--shrink-header-to));
}

/***
* Shorter header on mobile
*/
@media only screen and (max-width: 767px) {
	header.sticky-header {
		--header-height: 70px;
	}
}

/***
* Logo resize
*/
header.sticky-header .logo img {
	transition: transform var(--transition);
}

header.sticky-header.elementor-sticky--effects .logo img {
	transform: scale(.8);
}
