.hero-section {
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.61), rgba(0, 0, 0, 0.61)),
                      var(--hero-bg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 0;
    animation: heroZoomIn 1.4s ease-out forwards;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

@keyframes heroZoomIn {
    from { transform: scale(5.00); }
    to   { transform: scale(1); }
}