/* X-small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {}

/* Small devices (landscape phones, 576px and up) */
@media ((min-width: 576px) and (max-width: 768px)) {
	.carousel-item {
		background-position-y: bottom;
	}
}

/* Medium devices (tablets, 768px and up) */
@media ((min-width: 768px) and (max-width: 992px)) {
	.carousel-item:nth-child(1) {
		background-position-y: 90%;
	}

	.carousel-item:nth-child(2) {
		background-position-y: 50%;
	}

	.carousel-item:nth-child(3) {
		background-position-y: 75%;
	}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.carousel-item:nth-child(1) {
		background-position-y: 85%;
	}

	.carousel-item:nth-child(2) {
		background-position-y: 50%;
	}

	.carousel-item:nth-child(3) {
		background-position-y: 75%;
	}

}