/**
 * Theme Name: Hello Elementor
 * Template:   hello-elementor
 */

.elementor-widget-button:not(.blog-btn) svg{
	width: 28px;
	height: 28px;
}

.elementor-widget-button:not(.blog-btn) a { 
	position: relative;
	overflow: hidden;
}

.elementor-widget-button:not(.blog-btn) a::before{
	display: block;
	content: "";
	
	background: radial-gradient(121.08% 382.14% at 52.83% 50%, #F6EAC0 0%, #E4C969 100%);
	position: absolute;
	z-index: 1;
	top: 0px; 
	left: 0px; 
	right: 0px; 
	bottom: 0px;
	
	transition: all .3s linear;
	opacity: 0;
}

.elementor-widget-button:not(.blog-btn):hover a::before{
	opacity: 1;
}

.elementor-widget-button:not(.blog-btn) a .elementor-button-content-wrapper{
	position: relative;
	z-index: 2;
}

.header{
	backdrop-filter: blur(3.5px);
}

.header a{
	transition: all .3s linear;
}

.hfe-dropdown-expandible.hfe-nav-menu__layout-expandible.hfe-nav-menu__submenu-arrow:not(.menu-is-active){
	width: 0px !important;
	visibility: hidden;
	overflow: hidden;
}

@media screen and (min-width: 1024px){
	.hfe-nav-menu .sub-menu{
		padding-top: 10.5px;
		padding-bottom: 10.5px;
		
		min-width: auto !important;
		width: auto !important;
	}
	
	.hfe-nav-menu .sub-menu a{
		white-space:nowrap;
	}
	
	.hfe-nav-menu li .sub-arrow{
		transition: all .3s linear;
	}
	
	.hfe-nav-menu li:hover .sub-arrow{
		transform: rotate(180deg);
	}
}

.bg-blue-gradient {
	position: relative;
	background: linear-gradient(90deg, #071D40 0%, #0C3D8D 49.04%, #071D40 100%);
}

.bg-blue-dark-light-gradient{
	background: linear-gradient(270deg, #0A2757 0%, #0B367E 53.83%, #0A2757 99.09%);
}

.hero::after{
	display: block;
	content: "";
	position: absolute;
	left: 0px;
	right: 0px; 
	top: 100%;
	transform: translate(0px, -100%);
	z-index: 5;
	
	height: 187px;
	background: linear-gradient(359deg, rgba(9, 36, 80, 0.80) 0.92%, rgba(9, 36, 80, 0.00) 89.9%);
}

.hero-image{
	position: relative;
}

.hero-image img{
	position: relative;
	z-index: 2;
}

.hero-image::before,
.hero-image::after{
	display: block;
	content: "";
	
	position: absolute;
	z-index: 0;
	transform-origin: center center;
}

.hero-image::before{
	top: 90px; 
	left: 50%;
	transform: translate(-50%, 0px);
	width: 799px;
	height: 371px;
	background-color: var(--e-global-color-secondary);
	mix-blend-mode: plus-lighter;
	filter: blur(100px);
	animation: scalePulse 2s ease-in-out infinite;
}

.hero-image::after{
	top: 58px; 
	right: 176px;
	
	width: 244px;
	height: 418px;
	
	background-color: #FFF;
	filter: blur(35px);
	animation: scalePulseTwo 2s linear infinite;
}

@media screen and (max-width: 1023px){
	.hero-image::before{
		width: 600px;
		height: 371px;
	}

}

@media screen and (max-width: 767px){
	.hero-image::before{
		width: 80vw;
	}
	
	.hero::after{
		height: 120px;
		background: linear-gradient(359deg, rgba(9, 36, 80, 0.80) 0.92%, rgba(9, 36, 80, 0.00) 79.9%);
	}

}

@keyframes scalePulse {
  0%   { transform: translate(-50%, 0px) scale(1); }
  50%  { transform: translate(-50%, 0px) scale(1.08); }
  100% { transform: translate(-50%, 0px) scale(1); }
}

@keyframes scalePulseTwo {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}