.big-img-info .container-full {
	display: flex;
}

.big-img-info .container-full.align-image-left {
	flex-direction: row-reverse;
}

.big-img-info .container-full__col {
	width: 50%;
}

.big-img-info .container-full__col--left {
	padding: 100px;
	box-sizing: border-box;
}

.big-img-info .container-full__col--right {
	position: relative;
}

.big-img-info__image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	object-fit: cover;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.big-img-info__image-bg {
	width: 100%;
	height: 100%;
	background-size: 100%;
	background-position: center;
	background-repeat: no-repeat;
}

.big-img-info__image img {
	min-height: 100%;
	max-height: 150%;
	max-width: none;
}

@media screen and (max-width: 992px) {
	.big-img-info .container-full__col--left {
		padding: 50px 40px;
	}
}

@media screen and (max-width: 768px) {
	.big-img-info .container-full,
	.big-img-info .container-full.align-image-left {
		flex-direction: column-reverse;
	}

	.big-img-info .container-full__col {
		width: 100%;
	}

	.big-img-info .container-full__col--right {
		height: 450px;
	}

	.big-img-info__title {
		margin-bottom: 0.5em;
	}
}