.header_wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: sticky;
    z-index: 1;
    top: 0;
    background-color: white;
    height: fit-content;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 0 1 auto;
    background-color: white;
    padding: 16px;
    width: calc(100% - 32px);
}
.left_wrapper{
    display: flex;
    gap: 48px;
    justify-content: space-between;
    align-items: center;
}
.left_wrapper > nav{
    display: none;
    gap: 48px;
}
header > .buttons{
    display: none;
    padding: 0 16px;
    border-left: 2px solid #e5e5e5;
}
header > .buttons > button:first-child{
    border: 2px solid #ff8700;
    color: #ff8700;
    text-decoration: none;
    border-radius: 13.5px;
    padding: 8px 0;
    margin-top: 16px;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    background-color: white;
    margin: 0;
    cursor: pointer;
}
header > .buttons > button:last-child{
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 600;
    background-color: #ff8700;
    border: 2px solid #ff8700;
    border-radius: 13.5px;
    text-align: center;
    padding: 8px 16px;
    margin: 0;
    cursor: pointer;
}
.left_wrapper > nav > a{
    text-decoration: none;
    color: #737373;
    font-size: 14px;
    font-weight: 600;
}
header > .left_wrapper > img:first-child{
    max-width: 110px;
    cursor: pointer;
}
.menu_dropdown{
    flex: 1 1 auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: left;
    display: none;
}
.menu_dropdown > .list_items > a:first-child{
    border-top: 2px solid #e5e5e5;
}
.menu_dropdown > .list_items > a{
    color: black;
    font-size: 1.125rem;
    text-decoration: none;
    font-weight: 600;
    height: 4rem;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
}
.login_button{
    border: none;
    width: 100%;
    text-align: center;
}
.menu_dropdown > .cta_buttons{
    display: grid;
    row-gap: 16px;
}
.menu_dropdown > .cta_buttons > a:first-child{
    border: 2px solid #ff8700;
    color: #ff8700;
    text-decoration: none;
    border-radius: 13.5px;
    padding: 8px 0;
    font-weight: 600;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 16px;
}
.menu_dropdown > .cta_buttons > a:last-child{
    text-decoration: none;
    color: white;
    font-weight: 600;
    background-color: #ff8700;
    border: 2px solid #ff8700;
    border-radius: 13.5px;
    text-align: center;
    padding: 8px 0;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
@media(min-width: 1000px){
    header > .buttons{
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }
    #menu_button{
        display: none;
    }
    .left_wrapper > nav{
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
}
@media(min-width:1200px){
    header{
        min-width: 1200px;
        max-width: 1200px;
        margin: 0 auto;
    }
}