/* 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)) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	.carousel-item:nth-child(1) {
		background-position-y: 35%;
	}

}