.hero-container {
    margin: 0 auto;
    padding: 0;
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    text-align: center;
}

.hero-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(17, 29, 94, 0.4),
        rgba(17, 29, 94, 0.7)
    );
    opacity: 1;
    z-index: 1;
}

.hero-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    max-width: var(--gMaxWidth);
    text-align: left;
    z-index: 2;
}

.hero-title {
    font-size: 51px;
    font-weight: 400;
    font-family: "Lemon Milk", sans-serif;
    text-transform: uppercase;
    color: var(--color2);
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 36px;
        text-align: center;
    }
}
