header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    height: 89px;
    padding: 20px 100px;
    background-color: var(--neutralsneutral-800);
    box-shadow: 0px 5px 10px 2px rgba(0,0,0,0.4);
    z-index: 900;
}

header .logo-temporrio {
    position: relative;
    flex: 0 0 auto;
}

header .frame-5 {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 48px;
    position: relative;
    flex: 0 0 auto;
}

header .div-wrapper {
    display: inline-flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    position: relative;
    flex: 0 0 auto;
}

header .text-wrapper-3 {
    margin-top: -8px;
    margin-bottom: -6px;
    font-weight: var(--body-large-font-weight);
    font-size: var(--body-large-font-size);
    line-height: var(--body-large-line-height);
    position: relative;
    width: fit-content;
    font-family: var(--body-large-font-family);
    color: var(--neutralsneutral-100);
    letter-spacing: var(--body-large-letter-spacing);
    white-space: nowrap;
    font-style: var(--body-large-font-style);
}

    header .text-wrapper-3:hover {
        text-decoration: underline;
    }

header .menuWrapper {
    display: none;
}

header .btnMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    color: #fff;
    font-size: 24px;
}

@media (max-width: 1124px) {

    header {
        height: 60px;
        padding: 8px 16px;
    }

    header .logo-temporrio {
        width: auto;
        height: 44px;
    }

    header .frame-5 {
        display: none;
    }

    header .menuWrapper {
        display: block;
    }
    
}