.section_home {
    min-height: calc(75vh - 60px);
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
}

.hero_content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;     
}

.HeroWelcome {
    font-size: 50px;
    font-weight: bold;
    color: #333;
}

.hero_roles {
    list-style: disc;
    padding-left: 24px;
    font-size: 1rem;
    color: #333;
}

.hero_roles li {
    margin-bottom: 8px;
    font-size: 20px;
}

.herobuttons {
    display: flex;
    gap: 40px;
    margin-top: 20px;
}

.hero_button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #efefef;
    border: 0px;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    gap: 10px;
}

.hero_button_img {
    height: 20px;
}
@media (max-width: 800px) {
    .hero_content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;    
    }       

    .HeroWelcome {
        font-size: 30px;
    }

    .hero_roles {

    }

    .hero_roles li {
        margin-bottom: 8px;
        font-size: 16px;
    }
    .herobuttons {
    display: flex;
    gap: 40px;
    margin-top: 20px;
    }

    .hero_button {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #efefef;
        border: 0px;
        border-radius: 5px;
        padding: 10px 20px;
        font-size: 12px;
        cursor: pointer;
        gap: 10px;
    }

    .hero_button_img {
        height: 20px;
    }
}