.marquee-tiles {
	margin: 10px 0
}

.marquee-tiles .outer-wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
	padding-left: 0;
}

.marquee-tiles .inner {
	display: flex;
	position: relative;
}

.marquee-tiles .inner .content {
	position: absolute;
	bottom: 5%;
	left: 0;
}

.marquee-tiles h3 {
    max-width: 400px;
	color: var(--off-white);
	font-weight: 900;
	font-size: 20px;
    padding: 5px 25px;
    background-color: var(--red);
    box-shadow: 0 0 38px rgb(0 0 0 / 13%);
}

.marquee-tiles .description{
    max-width: 400px;
	color: var(--off-white);
	padding-left: 3%;
	text-shadow: 0px 0px 5px rgb(0, 0, 0, .7)
}

@media (min-width:  64em) {
		.marquee-tiles .outer-wrapper {
			padding-left: 110px;
	}
}
@media (min-width: 1125px) {
	.marquee-tiles .outer-wrapper {
		flex-wrap: wrap;
		flex-direction: row;
		padding-left: 110px;
	}
	
	.marquee-tiles .description {
		font-size: 17px;
	}
	
	.marquee-tiles .outer-wrapper:nth-last-of-type(odd) {
		direction: rtl;
	}
	
	.marquee-tiles .outer-wrapper:nth-last-of-type(odd) .description, .marquee-tiles .outer-wrapper:nth-last-of-type(odd) h3 {
		direction: ltr;
	}
	
	.marquee-tiles .outer-wrapper:nth-last-of-type(odd) .inner.odd {
		margin-left: 5px;
		border-right: none;
	}
	
	.marquee-tiles .outer-wrapper:nth-last-of-type(odd) .inner.even {
		border-left: none;
	}
	
	.marquee-tiles .inner.odd {
		display: flex;
		flex: 66%;
		border-bottom: 1px solid var(--off-white);
		border-left: none;
		margin-right: 5px;
	}
	
	.marquee-tiles .inner.even {
		display: flex;
		flex: 33%;
		border-bottom: 1px solid var(--off-white);
	}
}