
    .hero-subpages {
        height: 480px;
        position: relative;
        overflow: hidden;
    }
	.hero-subpages::before {
		position: absolute;
		content: "";
		width: 100%;
		height: 100%;
		background: #00000069;
		left: 0;
		top: 0;
	}
    .hero-subpages img {
        height: 100% !important;
        width: 100%;
        object-fit: cover;
        z-index: -1;
		
    }
	.content-info-hero {
		position: absolute;
		width: 100%;
		height: 100%;
		z-index: 1;
		top: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		padding-top: 70px;
	}
	.content-info-hero h2 {
		color: #fff;
		font-size: 40px;
		text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
	}
	.content-info-hero small {
		color: #fff;
		font-weight: 600;
		text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5);
		font-size: 16px;
	}

	.breadcumbs a {
		color: var(--color-primary-light);
	}


	@media (max-width: 425px) {
		.content-info-hero h2 {
			font-size: 32px;
		}
	}
