a {
    text-decoration: none;
    color: black;
}


.site-header {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 40px;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
}


.site-header__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 10px 20px;
    @media (max-width: 570px) {
        justify-content: space-between;
    }
}

.main-nav__item {
    a {
        width: min-content;
        white-space: nowrap;
        font-size: 15px;
    }
}


.nav__list {
    display: grid;
    grid-auto-flow: column;
    list-style-type: none;
    column-gap: 20px;
    padding: 0;
    li {
        font-family: "Helvetica Neue LT Com", sans-serif;
        font-weight: 500;
        font-size: 15px;
        color: rgba(255, 221, 0, 1);
    }
    .button-career_search {
        display: flex;
        align-items: center;
        justify-content: space-around;
        height: 40px;
        font-family: "Helvetica Neue LT Com", sans-serif;
        font-weight: 400;
        font-size: 14px;
        background-color: rgba(255, 221, 0, 1);
        border: none;
        padding: 0px 10px;
        .button-text {
            transform: translateY(1px);
            padding: 0px 10px;
        }
    }
}

.main-nav {
    margin: 0px 10px;
}

.hamburger {
    display: none;
}

@media screen and (min-width: 801px) {
    .main-nav {
        display: block !important;
    }

    .pages-container {
        align-content: center;

    }

    .nav__list {
        align-items: center;
    }
}

@media screen and (max-width: 800px) {
    .site-header {
        flex-direction: column;
        padding: 10px;
    }

    .site-header__wrapper {
        width: 100%;
        padding: 10px;
        margin: 0px 20px;
        display: flex;
        justify-content: space-between;
    }

    .hamburger {
        display: block;
    }

    .main-nav {
        display: none;
    }

    .nav__list {
        grid-auto-flow: row;
        list-style-type: none;
        row-gap: 20px;
        column-gap: 0;
        justify-items: center;
    }

    .button-career_search {
        font-size: 14px;
    }
}
