.main {
    width: 100%;
    height: auto;
    padding: 0 40px;
}

.section_hero {
    width: 100%;
    height: auto;
    padding: 60px 0;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    row-gap: 20px;
}

.section_hero_title,
.section_hero_text {
    color: var(--grey);
    text-align: center;
}

.section_hero_title {
    font-size: 2.4rem;
}

.section_hero_text {
    font-size: 1.2rem;
}

.search_form {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 20px;
    background: var(--green);
    padding: 20px;
    border-radius: 10px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search_input {
    width: calc(40% - 10px);
    outline: none;
    background: var(--dark_green);
    border: none;
    transition: ease .4s;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 1.08rem;
    color: var(--white);
}

.search_input::placeholder {
    color: var(--white);
    opacity: .8;
}

.search_select {
    cursor: pointer;
}

.search_option {
    color: var(--white);
}

.search_submit {
    width: calc(20% - 10px);
    background: var(--violet);
    cursor: pointer;
}

.section_jobs {
    padding: 40px 0;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: 40px;
}

.section_jobs_header {
    width: 100%;
    height: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_jobs_title {
    color: var(--grey);
}

.section_jobs_header_btn {
    color: var(--violet);
    text-decoration: underline;
    transition: ease .4s;
}

.section_jobs_recents_jobs {
    width: 100%;
    height: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(hover:hover) {
    .search_submit:hover {
        background: var(--dark_violet);
    }

    .section_jobs_header_btn:hover {
        color: var(--dark_violet);
    }
}

@media screen and (max-width: 1234px) {
    .section_jobs_recents_jobs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 870px) {
    .main {
        padding: 0 20px;
    }

    .section_jobs_recents_jobs {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 740px) {
    .section_hero {
        min-height: 100vh;
    }

    .search_form {
        flex-wrap: wrap;
        row-gap: 20px;
    }

    .search_input {
        width: calc(50% - 10px);
    }

    .search_submit {
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .search_input {
        width: 100%;
    }
}