/* Hero Image */

.fl-image-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 100px 0;
	min-height: 445px;
	display: flex;
	align-items: center;
}

.fl-image-hero.without-img {
	background-color: #3C3B79;
}

.fl-image-hero .fl-image-hero__header {
	text-align: center;
	max-width: 871px;
	margin: 0 auto;
}

.fl-image-hero .fl-image-hero__title {
	margin: 0 !important;
	color: #fff;
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3544;
    text-shadow: 0px 8px 6.7px rgba(0, 0, 0, 0.7);
}

@media only screen and (max-width: 1199px) {
	.fl-image-hero {
		min-height: 400px;
	}
	.fl-image-hero .fl-image-hero__title {
		font-size: 40px;
	}
}

@media only screen and (max-width: 767px) {
	.fl-image-hero .fl-image-hero__title {
		font-size: 28px;
	}
}

/* Hero Image END */