.spotlight-area {
	margin-bottom: 30px;
}
	.spotlight-area .spotlight-wrap {}
		.spotlight-area .spotlight-wrap .spotlight {}
			.spotlight-area .spotlight-wrap .spotlight .title {
				font-family: 'benton-sans-extra-compressed', sans-serif;
				text-align: center;
				color: #9a9a9a;
				font-size: 1.8em;
				text-transform: uppercase;
				padding: 15px 0;
			}
			.spotlight-area .spotlight-wrap .spotlight .spotlight-items {
				display: flex;
				flex-wrap: wrap;
			}
				.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item {
					flex: none;
					width: 50%;
					position: relative;
					z-index: 1;
					overflow: hidden;
				}
					.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item:hover {
						background: rgba(0,0,0,0);
					}

					.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item .overlay {
						position: absolute;
						z-index: 2;
						top: 0;
						right: 0;
						left: 0;
						bottom: 0;
						display: flex;
						text-align: center;
						justify-content: flex-start;
						align-items: center;
						padding: 50px;
						color: #fff;
						font-family: 'benton-sans-extra-compressed', sans-serif;
						font-size: 1.8em;
						font-weight: bold;
						background: rgba(0,0,0,.3);
						text-transform: uppercase;
						text-decoration: none;
						transition: all .3s ease;
						text-shadow: 1px 1px 0 rgba(0,0,0,1);
					}
						.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item:nth-child(odd) .overlay {
							justify-content: flex-end;
						}

						.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item img {
							display: block;
							width: 100%;
							transition: all .3s ease;
						}
							.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item:hover img {
								transform: scale(1.05);
							}

@media (max-width: 1110px) {
	.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item {
		width: 100%;
	}
	.spotlight-area .spotlight-wrap .spotlight .spotlight-items .spotlight-item .overlay {
		justify-content: center !important;
	}
}
