@import url(common.css);

.hero {
    background-color: transparent;
    /* padding: 60px 0; */
    text-align: left;
    position: relative;
}

.hero .container {
    z-index: 1;
}

.hero h1 {
    font-size: 40px;
    color: var(--foreground2);
    margin-bottom: 0px;
    line-height: 60px;
}

.hero p {
    font-size: 21px;
    color: var(--foreground1);
    margin-bottom: 30px;
}

@media (max-width: 1200px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero h2 { 
        font-size: 22px;
        color: var(--foreground1); 
        margin-top: 20px;
        margin-bottom: 5px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 20px;
    }
}