/*=========================================
NEXT FIELD
=========================================*/

.nextfield {
	background: var(--txt_color);
	overflow: hidden;
	position: relative;
	padding: 100px 0 70px;
}

.nextfield_inner {
	position: relative;
	max-width: 1700px;
	margin: auto;
	text-align: center;
}

/*-------------------------*/

.nextfield_copy {
	color: var(--bg_color);
	font-size: 4rem;
	font-weight: 700;
	position: relative;
	z-index: 5;
	margin-bottom: -30px;
	margin-top: 0;
}

.nextfield_inner_item {
	display: flex;
	align-items: center;
	align-content: center;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
}

.nextfield_inner_item .title,
.nextfield_inner_item .outline {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
	font-size: clamp(8rem, 20.5vw, 42rem);
	line-height: 1;
	letter-spacing: .04em;
	text-transform: uppercase;
	font-family: "Bebas Neue", sans-serif;
	font-weight: 900;

}
.nextfield_inner_item .title {
	color: var(--bg_color);
	z-index: -1;
}
.nextfield_inner_item .outline {
	z-index: 2;
	color: transparent;
	-webkit-text-stroke: 3px var(--bg_color);
}

/*-------------------------*/

.nextfield_img {
	width: 560px;
	margin: auto;
	position: relative;
	z-index: 1;
}

.nextfield_img img {
	width: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(100%) brightness(30%);
}

/*-------------------------*/

.nextfield_title {

	margin-top: 40px;

	color: #fff;

	font-family: "Bebas Neue", sans-serif;

	font-size: 6rem;

	letter-spacing: .05em;
}


@media(max-width:900px) {
	.nextfield {
		padding: 70px 20px;
	}

	.nextfield_copy {
		font-size: 3rem;
		margin-bottom: 25px;
	}

	.nextfield_inner_item .outline {
		-webkit-text-stroke: 1px var(--bg_color);
	}

	.nextfield_img {

		width: 60%;
	}

	.nextfield_title {

		font-size: 4rem;
	}

}
