/**
 * @author Valentin Alisch, Nicolas Zupfer
 * @version 1.0
 *
 * Content: Image
 */



/* Mobile */
.content--image {
	background: black;
}
	.content--image .image--wrap {
		position: relative;
		padding-top: 75%;
	}
		.content--image .image--wrap .image {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}
			.content--image .image--wrap .image img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: top;
			}

/* Tablet */
@media ( min-width: 900px ) {

}

/* Desktop */
@media ( min-width: 1200px ) {
	.content--image .image--wrap {
		padding-top: 55%;
	}
}

@media ( min-width: 1600px ) {

}