#hero-wrapper {
    position: relative;
    height: 1400px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1.5s ease-in-out;
    opacity: 0;
    z-index: 1;
}

    .hero-bg.active {
        opacity: 1;
        z-index: 2;
    }

.hero-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: rgba(169, 169, 169, 0.5);
    padding: 2rem;
    border-radius: 0.5rem;
    display: inline-block;
    text-align: center;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    width: 90%;
    max-width: 900px;
}

.hero-forms {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background-color: rgba(169, 169, 169, 0.5);
    padding: 2rem;
    border-radius: 0.5rem;
    display: inline-block;
    text-align: center;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    width: 90%;
    max-width: 900px;
}

.hero-content h1, .hero-content p {
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.hero-content h1 {
    font-size: 72pt;
}

.hero-content p {
    font-size: 20pt;
}



@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36pt;
    }

    .hero-content p {
        font-size: 14pt;
    }

    .hero-content {
        padding: 1rem;
    }
}
