/* ==========================================================================
   Hero Banner
   --------------------------------------------------------------------------
   Outer sizing (.sec-hero-banner__inner) is owned by _shared.css
   (1470 max + 15px L/R). This file owns vertical rhythm and content layout.
   ========================================================================== */

.sec-hero-banner {
	position: relative;
	min-height: 720px;
	background-color: #1a2330;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index:1;
	border-bottom: 4px solid #078FD6;
}

.sec-hero-banner__overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(78.57% 119.45% at 78.05% 47.14%, rgba(0, 0, 0, 0) 23.69%, rgba(0, 0, 0, 0.3) 72.4%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */, linear-gradient(270.17deg, rgba(0, 0, 0, 0) 20.73%, rgba(0, 0, 0, 0.6) 74.33%);
	pointer-events: none;
	z-index: 1;
}

.sec-hero-banner__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top:192px;
	padding-bottom: 186px;
	display: flex;
	align-items: center;
	flex: 1 0 auto;
}

.sec-hero-banner__content {
	display: flex;
	flex-direction: column;
	gap: 35px;
	color: var(--clr-white);
}

.sec-hero-banner__heading {
	font-family: var(--font-heading);
	font-size: var(--fs-h1);
	line-height: 1.08;
	color: var(--clr-white);
	margin: 0;
	max-width: 700px;
}

.sec-hero-banner__body {
	font-family: var(--font-body);
	font-size: var(--fs-lg);
	color: var(--clr-white);
	max-width: 650px;
	line-height: 1.37;
}

.sec-hero-banner__body p { margin: 0 0 8px; }
.sec-hero-banner__body p:last-child { margin-bottom: 0; }

.sec-hero-banner__cta { align-self: flex-start; }

.sec-hero-banner__overlay-logo {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	max-width: 200px;
}

.sec-hero-banner__overlay-logo img {
	max-width: 100%;
	height: auto;
	display: block;
}

.sec-hero-banner__badges {
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    padding-top: 0;
    width: 100%;
    position: absolute;
    bottom: -36px;
    margin: 0 auto;
	left: 0;
	padding: 0 15px;
}

.sec-hero-banner__badge {
	width: 90px;
	height: 90px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--clr-white);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.sec-hero-banner__badge img {
width: 100%;
	height:100%;
}

@media (max-width: 1440px) { 
	.sec-hero-banner {
    	min-height: 550px;
	}
	.sec-hero-banner__inner {
    padding-top: 150px;
    padding-bottom: 150px;
	}
}
@media (max-width: 1360px) {
	.sec-hero-banner {
    min-height: 500px;
	}
	.sec-hero-banner__inner {
    	padding-top: 100px;
    	padding-bottom: 100px;
	}
 }
@media (max-width: 1200px) { 
.sec-hero-banner__inner {
    	padding-top: 80px;
    	padding-bottom: 80px;
	}
	.sec-hero-banner {
    min-height: 450px;
	}
	.sec-hero-banner__heading {
    max-width: 530px;
	}
}

@media (max-width: 1024px) {
	.sec-hero-banner__overlay-logo { display: none; }
	    .sec-hero-banner {
        min-height: 400px;
    }
	.sec-hero-banner__overlay {
    background: rgba(0, 0, 0, 0.6);
	}
	    .sec-hero-banner {
     background-position: right center;
    }
}

@media (max-width: 767px) {
	.sec-hero-banner__badges  { gap: 10px; justify-content: center; flex-wrap: wrap; }
	.sec-hero-banner__badge   { width: 64px; height: 64px; }
	    .sec-hero-banner__inner {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}
@media (max-width: 640px) { 
	    .sec-hero-banner__inner {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}