/**
 * STORY
 *
 * @format
 */

.story {
	width: 100%;
	padding-top: 75px;
	padding-bottom: 75px;
	background: var(--color-gray);
}

.story .row {
	max-width: calc(1004px + calc(var(--gutter-size) * 2));
}

.story-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
	position: relative;
}

.story-video picture:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.58;
	z-index: 1;
	mix-blend-mode: multiply;
	background: var(--secondary-gradient);
}

.story-video:after {
	content: '\f144';
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 1;
	line-height: 1;
	font-size: 3.063rem;
	font-family: var(--font-family-icon);
	pointer-events: none;
}

.story-video {
	position: relative;
	width: 100%;
	display: block;
	overflow: hidden;
	color: var(--color-white);
	background: linear-gradient(45deg, rgba(19, 41, 86, 1) 0%, rgba(13, 54, 136, 1) 50%, rgba(236, 72, 39, 1) 100%);
}

.story-video.black-bg {
	background: var(--color-black);
}

.story-video .youtube-player {
	margin: 0;
	mix-blend-mode: screen;
}

.story-video .youtube-player-inner::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.58;
	z-index: 1;
	/* mix-blend-mode: multiply; */
	/* background: var(--secondary-gradient); */
}

.story-video.hide-after::after {
	display: none;
}

.story-video picture,
.story-video img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	mix-blend-mode: screen;
	transition: transform 500ms;
}

.story-video:hover,
.story-video:focus {
	outline: none;
	color: var(--color-alternate);
}

.story-video:hover img,
.story-video:focus img {
	transform: scale(1.05);
}

.story h2 {
	font-weight: 400;
	font-size: 2.5rem;
	line-height: 1.25;
	text-align: center;
	animation-delay: 0.3s;
}

.story h2 strong {
	display: block;
	font-weight: 500;
}

.story-subtitle.animated:after {
	width: 100%;
}

.story-subtitle:after {
	content: '';
	width: 0;
	transition: all 3s;
	transition-delay: 0.5s;
	display: inline-block;
	height: 3px;
	background: linear-gradient(to right, rgba(236, 72, 39, 1) 0%, rgba(178, 29, 25, 1) 100%);
	margin-left: 10px;
}

.story blockquote.animated:before {
	opacity: 1;
}

.story blockquote:before {
	left: 0;
	content: '';
	width: 50px;
	height: 50px;
	transition: opacity 3s;
	transition-delay: 0.5s;
	opacity: 0;
	background: url('../../images/quote.svg') no-repeat center center;
	background-size: 50px auto;
}

.story blockquote {
	border: 0;
	font-family: var(--font-family-heading), sans-serif;
	font-style: normal;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 400;
}

.story-subtitle {
	white-space: nowrap;
	font-family: var(--font-family-heading), sans-serif;
	font-size: 1.25rem;
	display: flex;
	align-items: center;
	font-weight: 500;
	margin-top: 15px;
	color: var(--color-alternate);
}

.story-left {
	width: 100%;
}

.story-left .story-subtitle {
	display: none;
}

.story-right .story-subtitle {
	display: flex;
}

.story-right {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.story-left {
		flex: 1;
	}

	.story-left .story-subtitle {
		margin-bottom: 15px;
		display: flex;
	}

	.story-right .story-subtitle {
		display: none;
	}

	.story-subtitle.animated:after {
		width: calc(100% + 20px);
		margin-right: -20px;
	}

	.story-right {
		width: 57.54%;
	}

	.story {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.story h2 {
		text-align: left;
	}

	.story blockquote:before {
		width: 68px;
		height: 56px;
		background-size: 68px auto;
	}

	.story blockquote {
		margin-bottom: 0;
		font-size: 1rem;
		padding: 10px 30px 0 90px;
	}
}

@media screen and (min-width: 1025px) {
	.story h2 {
		font-size: 3.75rem;
		text-align: left;
	}

	.story blockquote {
		/* font-size: 1.875rem; */
		font-size: 1.4rem;
		padding: 20px 55px 0 100px;
	}

	.story-left .story-subtitle {
		margin-bottom: 30px;
	}

	.story-video:after {
		font-size: 5rem;
	}
}

@media screen and (min-width: 1400px) {
	.story {
		padding-top: 130px;
		padding-bottom: 130px;
	}

	.story .row {
		max-width: calc(1460px + calc(var(--gutter-size) * 2));
	}

	.story-subtitle {
		font-size: 1.875rem;
		margin-top: 30px;
	}

	.story-left .story-subtitle {
		margin-bottom: 40px;
	}

	.story blockquote:before {
		width: 102px;
		height: 85px;
		background-size: 100px auto;
	}

	.story blockquote {
		/* font-size: 3.125rem; */
		font-size: 2.2rem;
		padding: 30px 40px 0 130px;
	}

	.story h2 {
		font-size: 5rem;
	}

	.story-video:after {
		bottom: 40px;
		left: 40px;
		font-size: 7.5rem;
	}
}
