#front-page-gateways .wrapper.inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	min-height: 310px;
	padding: 30px 0;
	overflow: hidden;
}

.front-page-gateway {
	flex: 0 0 25%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: var(--background-width);
	background-image: var(--background-image);
	background-color: var(--background-color);
	overflow: hidden;
	transition: background-size 0.5s ease-in-out;
}

@media print, screen and (max-width: 47.99875em) {
	#front-page-gateways .wrapper.inner {
		padding: 10px !important;
	}

	.front-page-gateway {
		flex: 0 0 100%;
		min-height: 80px;
		--background-width: 60px !important;
		background-position: 20px center;
	}

	.front-page-gateway__title {
		align-items: center !important;
		justify-content: flex-end !important;
	}
	.front-page-gateway__title span {
		width: 75% !important;
		background: transparent !important;
		color: #fff !important;
		font-size: 1.1rem;
		line-height: 1.1;
	}

	.front-page-gateway:first-child { border-radius: 10px 10px 0 0; }
	.front-page-gateway:first-child span { border-radius: 0; }

	.front-page-gateway:last-child { border-radius: 0 0 10px 10px; }
	.front-page-gateway:last-child span { border-radius: 0 0 6px 6px; }

	.front-page-gateway__title span { 
		display: block;
		width: 100%;
		margin: 5px;
		padding: 20px;
		background-color: rgba(255, 255, 255, 0.9);
		color: #000;
		font-weight: 400;
	}
}

@media print, screen and (min-width: 47.99875em) {
	#front-page-gateway--market-research { border-radius: 10px 0 0 10px; }
	#front-page-gateway--market-research span { border-radius: 0 0 0 6px; }

	#front-page-gateway--survey-company { border-radius: 0 10px 10px 0; }
	#front-page-gateway--survey-company span { border-radius: 0 0 6px 0; }

	.front-page-gateway__title span { 
		display: block;
		width: 100%;
		margin: 5px;
		padding: 20px;
		background-color: rgba(255, 255, 255, 0.9);
		color: #000;
		font-weight: 400;
		text-align: center;
	}
}

.front-page-gateway:hover {
	background-size: calc(var(--background-width) + 10%);
}

.front-page-gateway__title {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
}