/*
--------------------------------------
container
--------------------------------------
*/

.portal__container {
	position: relative;
	height: 100vh;
}

/*
--------------------------------------
video
--------------------------------------
*/

.portal__video-container video {
	object-fit: cover;
	width: 100%;
}

/*
--------------------------------------
btns
--------------------------------------
*/

.portal__btns-container {
	position: absolute;
	z-index: 10;
	bottom: 50px;
	left: 0;
	right: 0;
	display: flex;
	justify-content: center;
	gap: calc(5px + (40 - 5) * ((100vw - 320px) / (1920 - 320)));
}

.portal__btn-link {
	background: #233145;
	border-radius: 7px;
	width: 300px;
	padding: 5px 10px;
}

.portal__btn-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 10px;
}

.portal__btn-title-subtitle {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--e-global-typography-primary-font-family);
	color: #fff;
}

.portal__btn-title {
	font-size: calc(26px + (36 - 26) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 300;
	text-transform: uppercase;
	line-height: 1em;
}

.portal__btn-subtitle {
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.portal__svg-container {
	color: var(--e-global-color-3798dc5);
}