.d-none:not( .show ) {
	display: none;
}


.services {
	--primary:		var( --awb-color5, #123658 );
	--secondary:	var( --awb-custom_color_3, #537EA6 );
	--white:		var( --awb-color1, #F5F5F5 );
	display:		flex;
	gap:			6vw;
	min-height:		100vh;
}

.services__nav_wrapper {
	flex: 1;
}
.services__nav_wrapper .services__list {
	--item-spacing: 20px;
	list-style:		none;
	margin:			0;
	padding:		0;
	display:		flex;
	flex-direction:	column;
	gap:			var( --item-spacing, 20px );
	position:		sticky;
	top:			calc( 162px + var( --item-spacing, 20px ) );
}
.service__trigger {
	display:		block;
	width:			100%;
	text-align:		left;
	font-size:		16px;
	font-family:	inherit;
	text-transform:	uppercase;
	color:			var( --white );
	background:		var( --secondary );
	border:			none;
	padding:		30px;
	font-weight:	800;
	cursor:			pointer;
	transition:		background 200ms ease-in-out;
	outline:		none;
}
.service__trigger.show {
	background:		var( --primary );
}
.service__trigger:hover,
.service__trigger:focus-visible {
	--awb-custom_color_3-l: 35%;
	background: hsla(
		var( --awb-custom_color_3-h, 209 ),
		var( --awb-custom_color_3-s, 33% ),
		var( --awb-custom_color_3-l, 49% ),
		var( --awb-custom_color_3-a, 100% )
	);
}




.services__content_wrapper {
	flex: 3;
}

.service__content {
	transform:					translateY( 50px );
	opacity:					0;
	transition-duration:		300ms;
	transition-timing-function:	ease-in-out;
	transition-delay:			0s;
	transition-property:		all;
	will-change:				transform, opacity;
}
.service__content.show {
	transform:	none;
	opacity:	1;
}

.service__content_title {
	margin:			0;
	margin-bottom:	2rem;
	color:			var( --primary ) !important;
	font-size:		48px !important;
	text-transform:	uppercase !important;
}


@media ( max-width: 1100px ) {
	.services {
		flex-direction: column;
	}
	.services__nav_wrapper {
		flex:		unset;
		overflow-x:	auto;
	}
	.services__nav_wrapper .services__list {
		flex-direction:	row;
		flex-wrap:		nowrap;
	}
	.services__nav_wrapper .services__list > * {
		min-width: 200px;
	}
	.services__nav_wrapper .service__trigger {
		height:		100%;
		text-align:	center;
		padding:	20px;
	}

	.service__content_title {
		font-size: 36px !important;
	}
}