/* Research Login page styles */

/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overscroll-behavior-y: none;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: #161616;
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Page transition overlay - for smooth fade transitions between pages and on viewport resize */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #161616;
    z-index: 99999;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.page-transition-overlay.fade-out {
    opacity: 0;
}

.page-transition-overlay.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

/* ========================================
   Navigation Menu (button-outer)
   ======================================== */

.button-outer {
    position: fixed;
    top: 23px;
    left: 21px;
    width: 96px;
    height: 34px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: width 0.3s ease;
    overflow: hidden;
    z-index: 200;
}

.button-outer.expanded {
    width: 227px;
}

.button-highlight {
    position: absolute;
    left: 4px;
    top: 4px;
    width: 74px;
    height: 26px;
    background-color: white;
    border-radius: 4px;
    transition: transform 0.3s ease, width 0.3s ease;
    transform: translateX(0px);
    z-index: 1;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    z-index: 2;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-item[data-item="home"],
.menu-item[data-item="purpose"] {
    opacity: 0;
    width: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, width 0.3s ease, margin 0.3s ease;
    margin-left: 0;
}

.menu-item[data-item="research"] {
    opacity: 1;
    width: 74px;
    pointer-events: auto;
}

.button-outer.expanded .menu-item[data-item="home"] {
    opacity: 1;
    width: 45px;
    pointer-events: auto;
}

.button-outer.expanded .menu-item[data-item="research"] {
    opacity: 1;
    width: 74px;
    pointer-events: auto;
    margin-left: 8px;
}

.button-outer.expanded .menu-item[data-item="purpose"] {
    opacity: 1;
    width: 66px;
    pointer-events: auto;
    margin-left: 8px;
}

.menu-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: black;
    text-align: center;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.menu-item[data-item="research"] .menu-text,
.menu-item[data-item="home"] .menu-text {
    color: white;
}

.menu-item.active .menu-text {
    color: black;
}

.menu-item:not(.active) .menu-text {
    color: white;
}

.button-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
    margin-right: 4px;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
}

.button-outer.expanded .button-arrow {
    margin-left: 8px;
    margin-right: 4px;
}

.arrow-right,
.arrow-left {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.arrow-right {
    opacity: 0.3;
}

.arrow-left {
    opacity: 0;
}

.button-outer.expanded .arrow-right {
    opacity: 0;
}

.button-outer.expanded .arrow-left {
    opacity: 0.3;
}

/* ========================================
   Logo
   ======================================== */

.logo-container {
    position: fixed;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
}

.logo {
    height: 38px;
    width: auto;
    object-fit: contain;
}

/* ========================================
   Contact Button
   ======================================== */

.contact-button {
    position: fixed;
    top: 28px;
    right: 21px;
    width: 72px;
    height: 26px;
    background-color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    cursor: pointer;
}

.contact-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: black;
    display: flex;
}

.contact-text span {
    display: inline-block;
}

/* Hide mobile menu elements on desktop */
.menu-panel {
    display: none;
}

.menu-dim-overlay {
    display: none;
}

.menu-separator-line {
    display: none;
}

.mobile-menu-text {
    display: none;
}

.menu-footer-left,
.menu-footer-right {
    display: none;
}

.menu-social-links {
    display: none;
}

.menu-contact-button {
    display: none;
}

/* ========================================
   Login Container (Centered)
   ======================================== */

.login-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.login-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.login-title {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: #6E6C6C;
    letter-spacing: 0.1em;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.password-input {
    width: 280px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 0 16px;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: white;
    outline: none;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.password-input::placeholder {
    color: #6E6C6C;
}

.password-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.15);
}

.submit-button {
    width: 280px;
    height: 44px;
    background-color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
}

.submit-button:hover {
    background-color: #f0f0f0;
}

.submit-button:active {
    transform: scale(0.98);
}

.submit-button:disabled {
    background-color: #666;
    cursor: not-allowed;
}

.submit-text {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: black;
    letter-spacing: 0.05em;
}

.error-message {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    color: #ff6b6b;
    min-height: 18px;
    text-align: center;
}

/* ========================================
   Large Desktop Scaling (min-width: 1500px)
   ======================================== */

@media (min-width: 1500px) {
    /* Menu bar scaling */
    .button-outer {
        top: calc(-2.875px + 1.725vw);
        left: calc(-2.625px + 1.575vw);
        width: calc(-12px + 7.2vw);
        height: calc(-4.25px + 2.55vw);
        border-radius: calc(-0.875px + 0.525vw);
        padding: calc(-0.5px + 0.3vw);
    }

    .button-highlight {
        left: calc(-0.5px + 0.3vw);
        top: calc(-0.5px + 0.3vw);
        width: calc(-9.25px + 5.55vw);
        height: calc(-3.25px + 1.95vw);
        border-radius: calc(-0.5px + 0.3vw);
    }

    .menu-item {
        height: calc(-3.25px + 1.95vw);
    }

    .menu-item[data-item="research"] {
        width: calc(-9.25px + 5.55vw);
    }

    .button-outer.expanded {
        width: calc(-28.375px + 17.025vw);
    }

    .button-outer.expanded .menu-item[data-item="home"] {
        width: calc(-5.625px + 3.375vw);
    }

    .button-outer.expanded .menu-item[data-item="research"] {
        width: calc(-9.25px + 5.55vw);
        margin-left: calc(-1px + 0.6vw);
    }

    .button-outer.expanded .menu-item[data-item="purpose"] {
        width: calc(-8.25px + 4.95vw);
        margin-left: calc(-1px + 0.6vw);
    }

    .menu-text {
        font-size: calc(-1.5px + 0.9vw);
    }

    .button-arrow {
        width: calc(-1.25px + 0.75vw);
        height: calc(-1.25px + 0.75vw);
    }

    /* Logo scaling */
    .logo-container {
        top: calc(-2.75px + 1.65vw);
    }

    .logo {
        height: calc(-4.75px + 2.85vw);
    }

    /* Contact button scaling */
    .contact-button {
        top: calc(-3.5px + 2.1vw);
        right: calc(-2.625px + 1.575vw);
        width: calc(-9px + 5.4vw);
        height: calc(-3.25px + 1.95vw);
        border-radius: calc(-0.5px + 0.3vw);
    }

    .contact-text {
        font-size: calc(-1.5px + 0.9vw);
    }

    /* Password elements scaling */
    .login-box {
        gap: calc(-3px + 1.8vw); /* 24px base */
    }

    .login-title {
        font-size: calc(-1.75px + 1.05vw); /* 14px base */
        letter-spacing: calc(-0.0125px + 0.0075vw); /* 0.1em of 14px = 1.4px base */
    }

    .login-form {
        gap: calc(-2px + 1.2vw); /* 16px base */
    }

    .password-input {
        width: calc(-35px + 21vw); /* 280px base */
        height: calc(-6px + 3.6vw); /* 48px base */
        border-radius: calc(-0.75px + 0.45vw); /* 6px base */
        padding: 0 calc(-2px + 1.2vw); /* 16px base */
        font-size: calc(-1.75px + 1.05vw); /* 14px base */
    }

    .submit-button {
        width: calc(-35px + 21vw); /* 280px base */
        height: calc(-5.5px + 3.3vw); /* 44px base */
        border-radius: calc(-0.75px + 0.45vw); /* 6px base */
    }

    .submit-text {
        font-size: calc(-1.5px + 0.9vw); /* 12px base */
        letter-spacing: calc(-0.00625px + 0.00375vw); /* 0.05em of 12px = 0.6px base */
    }

    .error-message {
        font-size: calc(-1.5px + 0.9vw); /* 12px base */
        min-height: calc(-2.25px + 1.35vw); /* 18px base */
    }
}

/* ========================================
   Mobile/iPad Responsive Styles (max-width: 850px)
   ======================================== */

@media (max-width: 850px) {
    body {
        overflow-y: auto;
    }

    /* Slide-out menu transition - S-curve bezier: slow-fast-slow */
    .logo-container,
    .login-container,
    .menu-separator-line {
        transition: margin-left 0.94s cubic-bezier(0.76, 0, 0.24, 1);
    }

    /* Menu separator line - right edge of main frame */
    .menu-separator-line {
        display: block;
        position: fixed;
        top: 0;
        left: calc(100vw - 2px);
        width: 2px;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.1);
        z-index: 250;
        pointer-events: none;
    }

    /* Menu dim overlay - covers content when menu is open */
    .menu-dim-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background-color: #161616;
        opacity: 0;
        z-index: 199;
        pointer-events: none;
        transition: opacity 0.94s cubic-bezier(0.76, 0, 0.24, 1), margin-left 0.94s cubic-bezier(0.76, 0, 0.24, 1);
    }

    body.mobile-menu-open .menu-dim-overlay {
        opacity: 0.7;
    }

    /* Menu panel - positioned in revealed area when content shifts */
    .menu-panel {
        position: fixed;
        top: 30vh;
        left: 15px;
        z-index: 1;
        display: flex;
        flex-direction: column;
        gap: 7px;
        pointer-events: none;
        transition: margin-left 0.94s cubic-bezier(0.76, 0, 0.24, 1);
        overflow: visible;
    }

    body.mobile-menu-open .menu-panel {
        pointer-events: auto;
    }

    /* Wrapper for reveal animation */
    .menu-panel-item-wrapper {
        overflow-x: visible;
        overflow-y: hidden;
        position: relative;
        line-height: 1.2;
        pointer-events: auto;
        z-index: 1;
    }

    .menu-panel-item-wrapper:hover {
        z-index: 2;
    }

    /* Menu panel items */
    .menu-panel-item {
        display: inline-block;
        position: relative;
        font-family: 'Outfit', sans-serif;
        font-weight: 400;
        letter-spacing: -0.01em;
        color: #ffffff;
        transform: translateY(105%);
        transition: transform 0.91s cubic-bezier(0.76, 0, 0.24, 1);
        pointer-events: auto;
        cursor: pointer;
        font-size: calc(80.1px + 4.37vw);
        will-change: transform;
        margin-left: 17px;
        white-space: nowrap;
    }

    .menu-panel-item.revealed {
        transform: translateY(0);
    }

    .menu-panel-item.active {
        color: #ffffff;
    }

    .menu-panel-item:not(.active) {
        color: #676767;
    }

    .menu-item-text {
        display: inline-block;
        position: relative;
    }

    .menu-panel-item::after {
        content: '';
        display: inline-block;
        width: calc(19.6px + 1.07vw);
    }

    /* Menu item chevron */
    .menu-item-chevron {
        position: absolute;
        top: calc(9.8px + 0.535vw);
        left: 100%;
        width: calc(19.6px + 1.07vw);
        height: calc(19.6px + 1.07vw);
        pointer-events: none;
    }

    .menu-chevron-line-horizontal {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.1);
        transition: width 60ms linear;
    }

    .menu-chevron-line-vertical {
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 0;
        background-color: rgba(255, 255, 255, 0.1);
        transition: height 60ms linear;
    }

    .menu-panel-item:not(.active):hover .menu-chevron-line-horizontal {
        width: calc(19.6px + 1.07vw);
    }

    .menu-panel-item:not(.active):hover .menu-chevron-line-vertical {
        height: calc(19.6px + 1.07vw);
    }

    /* Social links container */
    .menu-social-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 30px;
        margin-left: 17px;
        pointer-events: auto;
    }

    .menu-social-link {
        text-decoration: none;
        display: inline-block;
    }

    #menuLinkedIn {
        margin-top: -7px;
    }

    .menu-social-text {
        font-family: 'Roboto Mono', monospace;
        font-weight: 300;
        font-size: calc(9.4px + 0.51vw);
        letter-spacing: -0.01em;
        color: #6E6C6C;
        display: inline-flex;
    }

    /* Menu contact button */
    .menu-contact-button {
        margin-top: 30px;
        margin-left: 17px;
        width: calc(67.9px + 3.7vw);
        height: calc(24.5px + 1.34vw);
        background-color: white;
        border-radius: calc(3.8px + 0.21vw);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
    }

    .menu-contact-text {
        font-family: 'Roboto Mono', monospace;
        font-size: calc(11.3px + 0.62vw);
        font-weight: 400;
        color: black;
        display: flex;
    }

    /* Footer text */
    .menu-footer-left {
        display: block;
        position: fixed;
        bottom: 5px;
        left: 22px;
        font-family: 'Roboto Mono', monospace;
        font-weight: 300;
        font-size: calc(8.5px + 0.46vw);
        letter-spacing: -0.01em;
        color: #6E6C6C;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        transition: opacity 0.3s ease, margin-left 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .menu-footer-right {
        display: block;
        position: fixed;
        bottom: 5px;
        right: 7px;
        font-family: 'Roboto Mono', monospace;
        font-weight: 300;
        font-size: calc(8.5px + 0.46vw);
        letter-spacing: -0.01em;
        color: #6E6C6C;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        transition: opacity 0.3s ease, margin-left 1.2s cubic-bezier(0.76, 0, 0.24, 1);
    }

    body.mobile-menu-open .menu-footer-left,
    body.mobile-menu-open .menu-footer-right {
        opacity: 1;
    }

    /* Hide social links, contact button when menu is closed */
    .menu-social-links,
    .menu-contact-button {
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    body.mobile-menu-open .menu-social-links,
    body.mobile-menu-open .menu-contact-button {
        opacity: 1;
    }

    /* Mobile menu text (below 500px) - hidden on iPad */
    .mobile-menu-text {
        display: none;
    }

    /* Logo - repositioned and resized for mobile */
    .logo-container {
        display: block !important;
        top: 40px;
        left: 30px;
        transform: none;
    }

    .logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    /* Menu bar - repositioned to right side and scaled up */
    .button-outer {
        display: flex !important;
        align-items: center;
        top: 40px;
        left: auto;
        right: 30px;
        width: 79px;
        height: 40px;
        border-radius: 8px;
        padding: 5px;
        pointer-events: auto;
        cursor: pointer;
        transition: width 0.3s ease;
    }

    /* Expanded state when menu is open - CLOSE is 5 chars vs MENU 4 chars */
    .button-outer.menu-open {
        width: 88px;
    }

    /* Scaled up highlight */
    .button-highlight {
        left: 5px;
        top: 5px;
        width: 53px !important;
        height: 30px;
        border-radius: 5px;
        pointer-events: none;
        transition: width 0.3s ease;
        transform: none;
    }

    /* Expanded highlight when menu is open */
    .button-outer.menu-open .button-highlight {
        width: 62px !important;
    }

    /* Scaled up menu items */
    .menu-item {
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Show RESEARCH item on mobile (since we're on research login page) */
    .menu-item[data-item="research"] {
        opacity: 1;
        width: 53px;
        pointer-events: auto;
        transition: width 0.3s ease;
    }

    /* Expanded menu item when menu is open */
    .button-outer.menu-open .menu-item[data-item="research"] {
        width: 62px;
    }

    .menu-item[data-item="home"],
    .menu-item[data-item="purpose"] {
        display: none !important;
    }

    /* Scaled up text */
    .menu-text {
        font-size: 14px;
    }

    /* Make research menu text visible on mobile (black on white background) */
    .menu-item[data-item="research"] .menu-text {
        color: black !important;
    }

    /* Scaled up arrow */
    .button-arrow {
        width: 12px;
        height: 12px;
        margin-left: 5px;
        margin-right: 5px;
    }

    /* Swap arrows for mobile - show left arrow instead of right (default state) */
    .arrow-right {
        visibility: visible;
        opacity: 0;
        z-index: 1;
        transition: opacity 0.3s ease;
    }

    .arrow-left {
        visibility: visible;
        opacity: 0.3;
        z-index: 2;
        transition: opacity 0.3s ease;
    }

    /* Disable expanded state on mobile */
    .button-outer.expanded {
        width: 79px;
    }

    /* Hide contact button on mobile */
    .contact-button {
        display: none !important;
    }

    /* Login container adjustments for mobile */
    .login-container {
        padding: 20px;
        padding-top: 120px;
        background-color: #161616;
        z-index: 2;
    }

    .password-input {
        width: 100%;
        max-width: 320px;
    }

    .submit-button {
        width: 100%;
        max-width: 320px;
    }
}

/* ========================================
   iPad Styles (500px - 850px)
   ======================================== */

@media (min-width: 500px) and (max-width: 850px) {
    /* iPad menu panel positioning */
    .menu-panel {
        left: 55vw;
    }

    /* Font scales for iPad */
    .menu-panel-item {
        font-size: calc(28.3px + 1.54vw);
    }

    /* iPad spacer for chevron */
    .menu-panel-item::after {
        width: calc(8.5px + 0.46vw);
    }

    /* Chevron scales proportionally */
    .menu-item-chevron {
        width: calc(8.5px + 0.46vw);
        height: calc(8.5px + 0.46vw);
        left: 100%;
        top: calc(4.25px + 0.23vw);
    }

    .menu-panel-item:not(.active):hover .menu-chevron-line-horizontal {
        width: calc(8.5px + 0.46vw);
    }

    .menu-panel-item:not(.active):hover .menu-chevron-line-vertical {
        height: calc(8.5px + 0.46vw);
    }

    /* iPad footer positioning */
    .menu-footer-left {
        left: calc(40vw + 7px);
    }

    .menu-footer-right {
        right: 7px;
    }
}

/* ========================================
   Smaller Mobile Styles (max-width: 499px, 500px+ is iPad)
   ======================================== */

@media (max-width: 499px) {
    /* Logo - same left padding as mobile content */
    .logo-container {
        left: calc(-12px + 8.4vw);
    }

    /* Menu bar - same right padding as mobile content */
    .button-outer {
        right: calc(-12px + 8.4vw);
    }

    /* Menu panel - hide iPad menu items on mobile */
    .menu-panel {
        top: 25vh;
        gap: 0;
        left: 15px;
    }

    .menu-panel-item-wrapper {
        display: none;
    }

    /* Mobile menu text panel */
    .mobile-menu-text {
        display: flex;
        flex-direction: column;
        width: calc(100vw - 15px);
    }

    /* Wrapper for reveal animation */
    .mobile-menu-text-item {
        overflow-x: visible;
        overflow-y: hidden;
        position: relative;
        line-height: 1.2;
        margin-top: calc(3.89px - 2.78vw);
    }

    .mobile-menu-text-item:first-child {
        margin-top: 0;
    }

    /* Mobile menu item text */
    .mobile-menu-item-text {
        display: inline-block;
        position: relative;
        font-family: 'Outfit', sans-serif;
        font-size: calc(6.67px + 16.67vw);
        font-weight: 400;
        color: #6E6C6C;
        cursor: pointer;
        transform: translateY(105%);
        transition: transform 1.5s cubic-bezier(0.76, 0, 0.24, 1);
        will-change: transform;
    }

    .mobile-menu-text-item.revealed .mobile-menu-item-text {
        transform: translateY(0);
    }

    .mobile-menu-text-item.active .mobile-menu-item-text {
        color: #FFFFFF;
    }

    /* Mobile menu chevron */
    .mobile-menu-chevron {
        position: absolute;
        top: calc(-3.06px + 3.61vw);
        left: 100%;
        width: calc(-6.11px + 7.22vw);
        height: calc(-6.11px + 7.22vw);
        pointer-events: none;
    }

    .mobile-chevron-line-horizontal {
        position: absolute;
        top: 0;
        right: 0;
        width: 0;
        height: 2px;
        background-color: #6E6C6C;
        transition: width 60ms linear;
    }

    .mobile-chevron-line-vertical {
        position: absolute;
        top: 0;
        right: 0;
        width: 2px;
        height: 0;
        background-color: #6E6C6C;
        transition: height 60ms linear;
    }

    .mobile-menu-text-item:not(.active):hover .mobile-chevron-line-horizontal {
        width: calc(-6.11px + 7.22vw);
    }

    .mobile-menu-text-item:not(.active):hover .mobile-chevron-line-vertical {
        height: calc(-6.11px + 7.22vw);
    }

    /* Mobile social links */
    .menu-social-links {
        order: 2;
        margin-top: 15px;
        margin-left: 0;
        gap: 3px;
    }

    #menuLinkedIn {
        margin-top: -5px;
    }

    .menu-social-text {
        font-size: calc(7.73px + 1.33vw);
    }

    /* Mobile contact button */
    .menu-contact-button {
        order: 3;
        margin-top: 20px;
        margin-left: 0;
        width: calc(55.65px + 9.61vw);
        height: calc(20.2px + 3.44vw);
        border-radius: calc(3.12px + 0.54vw);
    }

    .menu-contact-text {
        font-size: calc(7.73px + 1.33vw);
    }

    /* Footer text */
    .menu-footer-left {
        left: 7px;
        font-size: calc(7.73px + 1.33vw);
    }

    .menu-footer-right {
        right: 7px;
        font-size: calc(7.73px + 1.33vw);
    }

    /* Reorder elements: mobile menu text first, then social links, then contact button */
    .mobile-menu-text {
        order: 1;
    }
}
