/*
--------------------------------------
banner -- image or video
--------------------------------------
*/

.banner-container {
	width: 100%;
	min-height: 100svh;
	position: relative;
	background-color: #16182c;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}

body:not(.home) .banner-container {
	min-height: 55svh;
	height: 55svh;
}

/* Video Background */

.banner-video-container {
	position: absolute;
	right: 0;
	left: auto;
	max-width: 60%;
	overflow: hidden;
	width: 60%;
	height: 100%;
	top: 0;
	z-index: 0;
	opacity: 1;
}

.banner-video-container::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(22, 24, 45, 0) 0%, rgba(22, 24, 45, 0.6) 100%);
	z-index: 5;
	pointer-events: none;
}

.banner-video-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.banner-video-inner video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: 1;
	mask-image: linear-gradient(90deg, rgba(22, 24, 45, 0) 0%, rgba(22, 24, 45, 0.6) 30%);
	max-width: 100%;
}

/*Image*/

.banner-container .banner-img-container img {
	object-fit: cover;
	width: 100%;
	max-width: 100%;
	height: 100%;
}

body:not(.home) .banner-container .banner-img-container img {
	object-position: 100% 70%;
}

.banner-video-container,
.banner-video-container video {
	height: 100%;
}

.banner-video-container video {
	width: 100%;
	object-fit: cover;
	display: block;
}

.home .banner-container video {
	opacity: 0.4;
	mask-image: linear-gradient(90deg, rgba(4, 8, 30, 0) 0%, rgba(4, 8, 30, 1) 35%);
}

/*
--------------------------------------
banner -- overlay
--------------------------------------
*/

.banner-img-container__default {
	position: relative;
	height: 100%;
	max-height: 55svh;
}

.banner-img-container__default img {
	max-height: 55svh;
}

.banner-img-container__default .banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.banner-overlay-container {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.banner-overlay-container img {
	height: 100%;
}

body:not(.home) .banner-overlay-container {
	background:
			linear-gradient(0deg, rgba(0, 0, 0, 0.00) 68.6%, rgba(0, 0, 0, 0.80) 100%),
			linear-gradient(239deg, rgba(0, 0, 0, 0.20) 42.01%, rgba(0, 0, 0, 0.80) 76.04%);
}

/*
--------------------------------------
banner -- content
--------------------------------------
*/

/*Text*/

.banner-container .banner-text-container {
	position: absolute;
	z-index: 10;
	top: 10%;
	bottom: 0;
	left: 5%;
	display: flex;
}

body:not(.home) .banner-container .banner-text-container {
	right: 5%;
}

.banner-container .banner-text-inner {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	row-gap: calc(24px + (40 - 24) * ((100vw - 320px) / (1920 - 320)));
	max-width: 90%;
	margin: auto;
}

/*Subhead*/

.banner-container .banner-subhead-container .banner-subhead {
	font-family: var(--e-global-typography-032f926-font-family), sans-serif;
	font-size: 22px;
	font-weight: 400;
	color: #FFF;
	text-transform: uppercase;
}

/*Title*/

.banner-container .banner-title {
	display: flex;
	flex-direction: column;
	font-family: var(--e-global-typography-primary-font-family), sans-serif;
	font-weight: 700;
	font-size: calc(36px + (70 - 36) * ((100vw - 320px) / (1920 - 320)));
	color: #fff;
	line-height: 100%;
	letter-spacing: -1.8px;
	text-align: center;
}

body:not(.home) .banner-container .banner-title {
	color: #fff;
}

/*Subtitle*/

.banner-subtitle-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.banner-container .banner-subtitle {
	font-size: 18px;
	color: #fff;
}

/*Description*/

.banner-container .banner-description-container {
	max-width: 60%;
	padding-top: 1.5em;
}

.banner-container .banner-description {
	font-family: var(--e-global-typography-secondary-font-family), sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.40);
	line-height: 160%;
	max-width: calc(350px + (600 - 350) * ((100vw - 320px) / (1920 - 320)));
}

.home .banner-container .banner-description {
	max-width: calc(350px + (1000 - 350) * ((100vw - 320px) / (1920 - 320)));
}

/*USP*/

.banner-container .usp-items-container {
	display: flex;
	gap: calc(0px + (20 - 0) * ((100vw - 320px) / (1920 - 320)));
	align-items: center;
}

.banner-container .usp-item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.usp-item-img-container {
	display: flex;
	align-items: center;
	height: 61px;
}

.banner-container .usp-item .usp-item-title-container {
	font-family: var(--e-global-typography-text-font-family), sans-serif;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	line-height: 25px;
	text-align: center;
}

/*btn*/

.banner-btn-container.banner-btns-container {
	display: flex;
	gap: 20px;
}

.banner-btn-container {
	display: flex;
	padding-top: 3em;
}

.banner-btn-container .banner-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-family: var(--e-global-typography-text-font-family), sans-serif;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	line-height: 1;
	width: 200px;
}

/*
--------------------------------------
banner -- additional img
--------------------------------------
*/

.banner-additional-img-container {
	display: inline-flex;
	justify-content: center;
	margin-bottom: calc(12px + (24 - 12) * ((100vw - 320px) / (1920 - 320)));
}

.banner-additional-img-container img {
	object-fit: contain;
	max-width: 20%;
}
