.awake-usc-hero {
	height: 350px;
	position: relative;

	@media (min-width: 768px) {
		height: 500px;
	}

	.awake-usc-hero__overlay {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0,0,0,0.5);
	}

	.awake-usc-hero__content {
		position: relative;
		height: 100%;
		color: #fff;

		.container-fluid {
			height: 100%;
		}
	}

	.awake-usc-hero__grid {
		height: 100%;
		display: grid;
		grid-template-columns: auto 1fr auto;
		align-items: center;
		line-height: 0;

		.title {
			color: #fff;
			text-align: center;
			text-shadow: 0px 0px 10px #000;
			max-width: 380px;
			margin-left: auto;
            margin-right: auto;

			@media (min-width: 992px) {
				font-size: 65px;
				line-height: 1.2;
                max-width: 600px;
			}
		}

		.awake-usc-hero__left {
			img {
				@media (max-width: 1199px) {
					max-width: 200px;
				}

				@media (max-width: 767px) {
					max-width: 100px;
				}
			}
		}

		.awake-usc-hero__right {
			img {
				@media (max-width: 1199px) {
					max-width: 175px;
				}

				@media (max-width: 767px) {
					max-width: 75px;
				}
			}
		}

		.awake-usc-hero__left,
		.awake-usc-hero__right {
			align-self: flex-end;
		}
	}
}