/* Homepage services strip */

.main_services.gsc_home_services {
	--svc-gold: #d7b46a;
	--svc-ink: #fff;
	position: relative;
	isolation: isolate;
	padding: 72px 0;
	background-color: #1a2218;
	background-image: url(../i/services/bg-vineyard.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.main_services.gsc_home_services .main_services_shade {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		linear-gradient(180deg, rgba(18, 24, 16, 0.28) 0%, rgba(18, 24, 16, 0.4) 50%, rgba(18, 24, 16, 0.55) 100%),
		linear-gradient(90deg, rgba(18, 24, 16, 0.22) 0%, rgba(18, 24, 16, 0.08) 50%, rgba(18, 24, 16, 0.22) 100%);
}

.main_services.gsc_home_services > .wr {
	position: relative;
	z-index: 1;
}

.main_services.gsc_home_services .items {
	justify-content: space-between;
	gap: 20px;
	align-items: stretch;
}

.main_services.gsc_home_services .items .item {
	text-decoration: none;
	position: relative;
	flex: 1 1 0;
	width: auto;
	min-width: 0;
	margin-right: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 400px;
	padding: 0;
	box-sizing: border-box;
	border-radius: 16px;
	overflow: hidden;
	background-color: #243022;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 0 10px 28px rgba(10, 14, 8, 0.35);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main_services.gsc_home_services .items .item:nth-child(4n) {
	margin-right: 0;
}

.main_services.gsc_home_services .items .item:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 36px rgba(10, 14, 8, 0.45);
}

.main_services.gsc_home_services .items .item .bg {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(180deg, rgba(12, 16, 10, 0.15) 0%, rgba(12, 16, 10, 0.35) 38%, rgba(12, 16, 10, 0.82) 100%);
	transition: background 0.25s ease;
}

.main_services.gsc_home_services .items .item:hover .bg {
	background:
		linear-gradient(180deg, rgba(12, 16, 10, 0.1) 0%, rgba(12, 16, 10, 0.28) 35%, rgba(12, 16, 10, 0.88) 100%);
}

.main_services.gsc_home_services .items .item .item_copy {
	position: relative;
	z-index: 1;
	display: block;
	padding: 28px 22px 26px;
	box-sizing: border-box;
}

.main_services.gsc_home_services .items .item .title {
	position: relative;
	display: block;
	color: var(--svc-ink);
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 26px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	padding: 0 0 0 18px;
	margin: 0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.main_services.gsc_home_services .items .item .title::before {
	content: "";
	display: block;
	width: 5px;
	height: 100%;
	min-height: 28px;
	background: var(--svc-gold);
	border-radius: 3px;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
}

.main_services.gsc_home_services .items .item .usp {
	display: block;
	margin-top: 10px;
	padding-left: 18px;
	font-family: "Nunito", "ProximaNova", sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 1100px) {
	.main_services.gsc_home_services .items .item {
		height: 340px;
	}

	.main_services.gsc_home_services .items .item .title {
		font-size: 22px;
	}

	.main_services.gsc_home_services .items .item .usp {
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.main_services.gsc_home_services {
		padding: 48px 0;
	}

	.main_services.gsc_home_services .items {
		flex-wrap: wrap;
		gap: 16px;
	}

	.main_services.gsc_home_services .items .item {
		flex: 1 1 calc(50% - 8px);
		width: calc(50% - 8px);
		height: 280px;
		margin: 0;
	}
}

@media screen and (max-width: 560px) {
	.main_services.gsc_home_services .items .item {
		flex: 1 1 100%;
		width: 100%;
		height: 240px;
	}

	.main_services.gsc_home_services .items .item .item_copy {
		padding: 22px 18px 20px;
	}

	.main_services.gsc_home_services .items .item .title {
		font-size: 22px;
	}
}
