/** @format */

.action {
	position: relative;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px 0;
}

.action h2 u {
	text-decoration: none;
}

.action h2 u:after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 0;
	width: 0;
	transition: width 1500ms ease 1500ms;
	z-index: -1;
	height: 5px;
	background: linear-gradient(to right, rgba(236, 72, 39, 1) 0%, rgba(178, 29, 25, 1) 100%);
}

.action h2 span.active u:after {
	width: 100%;
}

.action h2 span {
	opacity: 0;
	/* transition: opacity 500ms ease-in-out; */
	transition: opacity 300ms ease-in-out;
}

.action h2 span.active {
	opacity: 1;
}

.action h2 strong {
	font-weight: 500;
	position: relative;
}

.action h2 u {
	position: relative;
}

.action h2 {
	text-align: center;
	color: var(--color-white);
	font-size: 2.313rem;
	font-weight: 400;
}

.action-container {
	position: relative;
	z-index: 1;
	width: 100%;
}

.action-image picture:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0.58;
	z-index: 1;
	mix-blend-mode: multiply;
	background: linear-gradient(135deg, rgba(236, 72, 39, 1) 20%, rgba(19, 41, 86, 1) 80%);
}

.action-image {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: block;
	background: linear-gradient(135deg, rgba(19, 41, 86, 1) 0%, rgba(13, 54, 136, 1) 50%, rgba(236, 72, 39, 1) 100%);
}

.action-image picture,
.action-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
	mix-blend-mode: screen;
}

@media screen and (min-width: 640px) {
	.action {
		height: 400px;
	}
}

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

	.action h2 u:after {
		height: 7px;
	}
}

@media screen and (min-width: 1400px) {
	.action {
		margin-bottom: 70px;
		height: 600px;
	}

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

	.action h2 u:after {
		height: 11px;
		bottom: 13px;
	}
}
