.hp-recommended-banners h3 {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: bold;
	padding-top: 7px;
}
.hp-recommended-banners p {
	padding-top: 7px;
}	

.hmpg-banner-container {
		position: relative;
		width: 100%;
		display: flex;
		align-items: center;
		overflow: hidden;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
	}

	.hmpg-banner-content {
		position: relative;
		width: 100%;
		margin: 0 auto;		
		display: flex;
		align-items: center;
		max-width: 1200px;
	}

	.hmpg-banner-left {
		position: relative;
		z-index: 2;
		max-width: 350px;
		padding: 40px 0 0 20px;
	}

	.hmpg-banner-title {
		color: #ffffff;				
		text-transform: uppercase;		
		margin-bottom: 16px;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		letter-spacing: 0.5px;		
		padding-top: 0px;
		font-size: 26px;
		line-height: 32px;
	}

	.hmpg-banner-title-turquise {
		color: #8ECAE2;
	}

	.hmpg-banner-subtitle {
		color: #ffffff;
		font-size: 20px;
		font-weight: 400;
		line-height: 1.5;
		margin-bottom: 10px;
		text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
		letter-spacing: 0.15px;
	}

	.hmpg-banner-subtitle-turquise {
		color: #8ECAE2;
	}

	.hmpg-banner-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		background-color: #ffffff;
		border: 0px solid #000000;
		border-radius: 5px;
		color: #004c94;
		font-size: 14px;
		font-weight: bold;
		text-transform: uppercase;
		text-decoration: none;		
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		min-width: auto;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
		padding: 13px 13px;
	}

	.hmpg-banner-button:hover {
		background-color: #f5f5f5;
		color: #000000;
		box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
			0px 1px 10px 0px rgba(0, 0, 0, 0.12);
	}

	.hmpg-banner-button::after {
		content: '';
		display: inline-block;
		width: 20px;
		height: 20px;
		margin-left: 4px;
		vertical-align: middle;
		background-image: url("/Rexel/styles/banners/right-arrow-blue.svg");
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.hmpg-banner-button:hover::after {
		background-image: url("/Rexel/styles/banners/right-arrow-black.svg");
	}


	@media (max-width: 768px) {
		.hmpg-banner-container[class*="hmpg-banner-background"] {
			background-size: cover;
			background-position: left center;
		}

		.hmpg-banner-title {
			font-size: 24px;
		}

		.hmpg-banner-subtitle {
			font-size: 18px;
		}

		.hmpg-banner-left {
			max-width: 100%;
		}

		.hmpg-banner-content {
			padding: 10px 5px;
		}
	}

	@media (max-width: 480px) {
		.hmpg-banner-container[class*="hmpg-banner-background"] {
			background-size: cover;
			background-position: left center;
		}
		
		.hmpg-banner-title {
			font-size: 24px;
		}

		.hmpg-banner-subtitle {
			font-size: 16px;
		}

		.hmpg-banner-button {
			font-size: 14px;
			padding: 10px 5px;
		}
	}
