.hero-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    background-image: url("../../../background.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-img {
    width: 100%;
    display: block;
    height: auto;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-title {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 42px;
    font-family: Oswald;
    font-weight: 700;
    line-height: 48px;
    word-wrap: break-word;
    padding-top: 6rem;
    padding-bottom: 6rem;

    @media (max-width: 375px) {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.hero-subtitle {
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 16px;
    font-family: Oswald;
    font-weight: 700;
    line-height: 24px;
    word-wrap: break-word
}


