.image-banner-left {
	position: relative;
	display: flex;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 100%;
	border-radius: 60px 0 0 60px;
}
.image-banner-left video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 60px 0 0 60px;
}
.image-banner-caption {
	position: relative;
	display: flex;
	padding: 75px;
	min-height: 600px;
	align-items: center;
	border-radius: 0 60px 60px 0;
}
.image-banner-caption:before {
	position: absolute;
	content: '';
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #1d5887;
	left: 0;
	top: 0;
	border-radius: 0 60px 60px 0;
	mix-blend-mode: multiply;
	opacity: 0.8;
}
.image-banner-caption .content-title {
	display: flex;
	flex-direction: column;
	gap: 30px;
	align-items: flex-start;
}
.image-banner-caption .btn.btn-primary span {
	font-size: 25px;
}

@media (max-width: 1600px){
	.image-banner-caption .btn.btn-primary span {
		font-size: 20px;
		padding-top: 10px;
		padding-bottom: 10px;
		min-height: 90px;
		align-items: center;
		padding-left: 30px;
	}
}
@media (max-width: 1199px){
	.image-banner-caption {
		padding: 60px 40px;
	}
	.image-banner-caption .content-title {
		gap: 15px;
	}
}
@media (max-width: 991px){
	.image-banner-left {
		padding-bottom: 70%;
		border-radius: 60px 60px 0 0;
	}
	.image-banner-left video {
		border-radius: 60px 60px 0 0;
	}
	.image-banner-caption {
		padding: 70px 50px;
		min-height: inherit;
		border-radius: 0 0 60px 60px;
	}
	.image-banner-caption:before {
		border-radius: 0 0 60px 60px;
	}
}
@media (max-width: 767px){
	.image-banner-caption {
		padding: 30px 20px;
		border-radius: 0 0 30px 30px;
	}
	.image-banner-caption:before {
        border-radius: 0 0 30px 30px;
    }
	.image-banner-caption .content-title {
		gap: 5px;
	}
	.image-banner-caption .btn.btn-primary span {
        font-size: 18px;
        padding-top: 10px;
        padding-bottom: 10px;
        min-height: 60px;
        padding-left: 26px;
    }
    .image-banner-left video,
    .image-banner-left {		
    	border-radius: 30px 30px 0 0;
	}
}