body:has(.home) {
	overflow-y: auto;
}
.home__banner > a {
	img {
		object-fit: cover;
	}
}


.home__products > div {
	position: relative;
}
.home__products > div:before {
	content: '';
	background: #fff;
	position: absolute;
	top: 33.15%;
	left: 50%;
	width: 90%;
	height: .1875rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}
.home__products > div:after {
	content: '';
	background: #fff;
	position: absolute;
	top: 66.6%;
	left: 50%;
	width: 90%;
	height: .1875rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}
.home__products__item {
	position: relative;
	overflow: hidden;
}
.home__products__item__overlay {
	opacity: 0;
}
.home__products__item__btn {
	background: #fff;
	-webkit-box-shadow: 1px 1px 50px #fff, 0 -1px 0 #fff;
	box-shadow: 1px 1px 50px #fff, 0 -1px 0 #fff;
	border-radius: 100%;
	height: 4.5rem;
	width: 4.5rem;
	opacity: 0.85;
	text-align: center;
	position: absolute;
	right: -4%;
	bottom: -10%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.home__products__item__btn a {
	color: var(--sphc-blue);
	font-size: .575rem;
	font-family: 'suzukipro-bold';
	width: 100%;
	position: absolute;
	left: -5%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.home__products__item__btn a span {
	display: block;
	font-size: .75rem;
	margin-bottom: .5rem;
}
.home__products__item:nth-child(2) .home__products__item__btn a span {
	font-size: .875rem;
}

/* ON HOVER STYLES */
.home__products__item:hover .home__products__item__overlay {
	opacity: 0.6;
	width: 100%;
	height: 100%;
	background: #000;
	position: absolute;
}
.home__products__item:hover .home__products__item__btn {
	opacity: 1;
}
.home__products__item:hover .home__products__item__btn a span {
	font-size: .865rem;
}
.home__products__item:nth-child(2):hover .home__products__item__btn a span {
	font-size: 1rem;
}


@media only screen and (max-width: 992px) {
	.home__products__item {
		height: unset !important;
	}
}
@media only screen and (min-width: 390px) {
	.home__products__item__btn {
		right: -2%;
	}
}
@media only screen and (min-width: 600px) {
	.home__products__item__btn {
		width: 6rem;
		height: 6rem;
	}
	.home__products__item__btn a {
		font-size: .725rem;
	}
	.home__products__item__btn a span {
		font-size: .95rem;
	}
	.home__products__item:nth-child(2) .home__products__item__btn a span {
		font-size: 1.15rem;
	}
	.home__products__item:hover .home__products__item__btn a span {
		font-size: 1.05rem;
	}
	.home__products__item:nth-child(2):hover .home__products__item__btn a span {
		font-size: 1.25rem;
	}
}

@media only screen and (min-width: 768px) {
	.home__products__item__btn {
		height: 7rem;
		width: 7rem;
	}
}
@media only screen and (min-width: 1024px) {
	.home__products > div:before {
		width: .1875rem;
		left: 33.25%;
		height: 90%;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.home__products > div:after {
		width: .1875rem;
		left: 66.6%;
		height: 90%;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.home__products__item {
		width: 33.33%;
	}
	.home__products__item img {
		-o-object-fit: cover;
		object-fit: cover;
		width: 100%;
		height: 100%;
	}
	.home__products__item__btn {
		height: 3.75rem;
		width: 7.5rem;
		left: 50%;
		bottom: 0;
		top: auto;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		border: .625rem solid #fff;
		border-radius: 0;
		border-top-left-radius: 4.375rem;
		border-top-right-radius: 4.375rem;
	}
	.home__products__item__btn a {
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}
	.home__products__item:hover .home__products__item__btn {
		width: 8rem;
		height: 4.25rem;
		border-top-left-radius: 5.125rem;
		border-top-right-radius: 5.125rem;
	}
}