html,body{
    max-width: 100%;
    overflow-x: hidden;
}

.site-header__bar {
    max-width: 1120px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background: var(--fp-green-balance);
    padding: 0px 10px;
    border-radius: 250px;
    position: fixed;
    margin: 2vh auto;
    justify-self: anchor-center;
}

a.site-header__brand img {
    max-width: 11%;
    margin: -1%;
    margin-left: calc(-1% + -10px);
}

button.site-header__menu-button {
    display: none;
}

a.site-header__brand {
    display: contents;
}
nav#site-navigation {
    display: flex;
    align-items: stretch;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-right: 35px;
}
nav#site-navigation a.site-header__link {
    font-family: var(--fp-website-heading-family);
    text-transform: uppercase;
    font-weight: var(--fp-website-font-weight-bold);
    color: #ffffff;
    text-decoration: none;
    padding: 0px 10px;
    height: -webkit-fill-available;
    align-content: center;
    transition: .5s;
    background: linear-gradient(1deg, #00000014 0%, #0dcaf000 0%);
}
nav#site-navigation a.site-header__link:hover {
    background: linear-gradient(1deg, #00000014 0%, #0dcaf000 100%);
}
a.site-header__portal {
    background-color: var(--fp-blue-manhattan);
    height: fit-content;
    padding: 0px 20px;
    line-height: 50px;
    border-radius: 100px;
    color: #ffffff;
    text-decoration: none;
    margin: auto;
}
.site-hero__viewport {
    max-width: 1120px;
    overflow: hidden;
    margin: 8% auto;
    height: 80vh;
    border-radius: 20px;
}
/*if is mobile*/
@media (max-width: 1000px) {
    button.site-header__menu-button {
        display: block;
    }
}