.fc_banner {
    display: flex;
    gap: clamp(15px, 6vw, 100px);
    justify-content: space-between;
	position: relative;
	align-items: center;
	padding-top: clamp(15px, 3vw, 50px);
	box-sizing: border-box;
	overflow: hidden;
}
.fc_banner.two_column_banner {
	padding-top: clamp(15px, 3vw, 50px);
	padding-bottom: clamp(15px, 3vw, 50px);
}
.fc_banner > * {
	position: relative;
	z-index: 2;
}
.fc_banner.two_column_banner .background_image {
	position: absolute;
	left: 0;
	top: 0;
	aspect-ratio: 1 / 1;
	opacity: 0.2;
	height: 100%;
	max-width: 625px;
	z-index: 0;
}
.fc_banner:not(.two_column_banner) .background_image {
	width: 35%;
	aspect-ratio: 1 / 1;
	background: bottom right / cover no-repeat;
}
.fc_banner:not(.two_column_banner) > div.background_image {
	flex: 1 1 35%;
}
.fc_banner .left_content {
	color: var(--white);
}
.fc_banner > div {
	flex: 1 1 50%;
}
.fc_banner .right_content {
	background: #33C2C8;
	border-radius: 5px;
	padding: clamp(20px, 3.5vw, 60px);
	box-sizing: border-box;
	color: var(--white);
}
.fc_banner.bg_pink .right_content {
	background: #f152bd;
}
.fc_banner.bg_green .right_content {
	background: #91d5b3;
}
.fc_banner.two_column_banner.bg_teal .background_image::after, .fc_banner.two_column_banner.bg_pink .background_image::after, .fc_banner.two_column_banner.bg_green .background_image::after {
	background: linear-gradient(90deg, rgba(0, 179, 186, 0.00) 54.24%, #00B3BA 101.71%);
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.fc_banner.bg_pink.two_column_banner .background_image::after {
	background: linear-gradient(90deg, rgba(186, 14, 130, 0.00) 54.24%, #BA0E82 101.71%);
}
.fc_banner.bg_green.two_column_banner .background_image::after {
	background: linear-gradient(90deg, rgba(79, 180, 128, 0.00) 54.24%, #4FB480 101.71%);
}
.fc_banner.bg_pink {
	background-color: #BA0E82;
}
.fc_banner.bg_green {
	background-color: var(--green);
}

.fc_banner:not(.two_column_banner).bg_green::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='530' height='530' fill='none'%3E%3Cpath fill='%23fff' d='M530 530V0H0v345.972C0 447.608 82.107 530 183.391 530H530Z' opacity='.1'/%3E%3C/svg%3E");
	width: 30%;
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
}
.fc_banner:not(.two_column_banner).bg_pink::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='612' height='612' fill='none'%3E%3Cpath fill='%23fff' d='m0 0 612 612V0H0Z' opacity='.2'/%3E%3C/svg%3E");
	width: 30%;
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 0;
	top: 0;
	content: '';
}
.fc_banner:not(.two_column_banner).bg_teal::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='595' height='612' fill='none'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M1.142 612a604.087 604.087 0 0 1-.277-18.284C.865 265.946 266.738.046 594.497 0v229.605c-200.744.045-364.027 163.357-364.027 364.111 0 6.131.152 12.227.453 18.284H1.142Z' clip-rule='evenodd' opacity='.1'/%3E%3C/svg%3E");
	width: 30%;
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 0;
	bottom: 0;
	content: '';
	max-height: 612px;
}

@media (max-width: 1024px) {
	.fc_banner {
		flex-direction: column;
		align-items: flex-end;
	}
	.fc_banner > div {
		width: 100%;
	}
}
@media (max-width: 750px) {

	.fc_banner:not(.two_column_banner) > div.background_image {
		flex: 1 1 80%;
		width: 60%;
	}

}