.marquee {
	background-color: #EFEFEF;
	background-image: url("../images/home-page-marquee-bg-mobile.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
	padding-top: 80px;
	position: relative;
	z-index: 999;
}

.marquee p {
	line-height: 1.5em;
}

/*Small devices (landscape phones, 576px and up)*/
/*@media (min-width: 576px) {
	.marquee {
		background-image: url("../images/home-page-marquee-bg-tablet.webp");
	}
}*/

/*Medium devices (tablets, 768px and up)*/
@media (min-width: 576px) {
	.marquee {
		background-image: url("../images/home-page-marquee-bg-tablet.webp");
		background-size: initial;
	}
}

/*Large devices (desktops, 992px and up)*/
@media (min-width: 768px) {
	.marquee {
		background-image: url("../images/home-page-marquee-bg-laptop.webp");
		background-position: top center;
	}
	.marquee p {
		line-height: 2em;
	}
}

/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 992px) {
	.marquee {
		background-image: url("../images/home-page-marquee-bg-desktop.webp");
	}
}