@charset "utf-8";
/* CSS Document */


.hero-container {
    position: relative;
    width: 100%;
    height: clamp(12.8125rem, 7.9034rem + 24.5455vw, 29.6875rem);
    background: url('../files/images/hero-image.jpg') no-repeat center center/cover;
	margin-top:25px;
}

@media (min-width: 501px) and (max-width: 768px) {
	.hero-container {
    background: url('../files/images/hero-image-768.jpg') no-repeat center center/cover;
	}
}
@media (max-width: 500px) {
	.hero-container {
    background: url('../files/images/hero-image-500.jpg') no-repeat center center/cover;
	}
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
} 

.text-container {
    text-align: center;
	padding: 20px;
    animation: zoomIn 750ms ease-in-out;
}

.hero-heading, .hero-paragraph {
    color: white;
    margin: 0;
}

.hero-heading {
    font-size: clamp(2rem, 1.1273rem + 4.3636vw, 5rem);
	line-height:1.2;
}

.hero-paragraph {
    font-size: clamp(1.2rem, 0.9673rem + 1.1636vw, 2rem);
	line-height:1.5;
    margin-top: 1rem;
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
