.banner100 {
	position: relative;
	overflow: hidden;
	padding: 75px 0 50px 0;
}

.banner100 .container {
	position: relative;
	min-height: 100vh;
}

.banner100 .flex-container {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
}

.banner100 .flex-container p {
	margin: 0;
	color: var(--white, #FFF);
	font-family: Inter;
	font-size: 22px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 26.4px */
	letter-spacing: -0.44px;
}

.banner100 .flex-container p span {
	margin: 0 auto 15px auto;
	font-family: Inter;
	font-size: 36px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 36px */
	letter-spacing: -0.72px;
}

@media only screen and (max-width: 996px) {
	.banner100 {
		padding: 50px auto;
	}

	.banner100 .container {
		position: relative;
		min-height: auto;
	}

	.banner100 .container>svg {
		width: 100%;
		height: auto;
	}

	.banner100 .flex-container p {
		opacity: 0;
	}

	.banner100 .flex-container {
		position: relative;
		bottom: auto;
		left: auto;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		padding: 0;
		margin-top: 50px;
	}

	.banner100 .flex-container a {
		margin-top: 20px;
	}
}