:root {
    --bgPattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='%236c757d' fill-opacity='0.025'%3E%3Cpolygon fill-rule='evenodd' points='8 4 12 6 8 8 6 12 4 8 0 6 4 4 6 0 8 4'/%3E%3C/g%3E%3C/svg%3E");

    --bg: #f5f7fa;
    --text: #1e1e1e;
    --textSecond: #5C6670;
    --muted: #7c6f66;
    --border: #e7e5e7;

    --primary: #4361EE ;
    --primary-hover: #a6641d;

    --accent: #1f4fff ;
    --accentHover: #3A0CA3;

    --card-bg: #1e1e1e;
    --cart-bg2: #f0f2f5;
    --input-bg: #fffaf5;

    --badge: #f6e2ed;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadowHover: 0 4px 50px rgba(0, 0, 0, 0.3);



    --fontLogo: 'Sora';
    --fontMain: 'Inter';

}





@media screen and (max-width: 1750px) {

.header {
    position: fixed;
    top: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
    width: 98.857vw;
    background-color: var(--bg);
    transition: all ease-in-out 0.3s;
    border-radius: 0px 0px 15px 15px;
    padding-bottom: 5px;
}



.secondNavbar {
    width: 97.143vw;
    height: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px var(--border) solid;
}

.secondNavbarInner {
    display: flex;
    justify-content: space-between;
    padding-left: 1.143vw;
    padding-right: 1.143vw;
}


.navbarLogo {
    color: var(--text);
    font-family: var(--fontLogo);
    font-size: 2rem;
    font-weight: 700;
}


.navbarSearchBar {
    font-family: var(--fontMain);
    font-weight: 500;
    width: 40vw;
    height: 35px;
    background-color: var(--cart-bg2);
    border: 1px var(--text) solid;
    color: var(--text);
    border-radius: 30px;
    padding-left: 0.857vw;
    padding-right: 0.857vw;
    margin-top: 7px;
    outline: none;
}


.navbarSearchBar::placeholder {
    font-family: var(--fontLogo);
    color: var(--textSecond);
    opacity: .8;
    font-size: .9rem;
}



.navbarButtons {
    margin-top: 4px;
}



.signinButton {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--fontLogo);
    border: 2px var(--text) solid;
    margin-right: 10px;
}


.signinButton:hover {
    background-color: var(--text);
    border: 2px var(--text) solid;
    color: var(--bg);
}


.employerButton {
    background-color: var(--accent);
    border: 2px var(--accent) solid;
    color: var(--bg);
    font-family: var(--fontLogo);
}

.employerButton:hover {
    background-color: var(--accentHover);
    border: 2px var(--accentHover) solid;
    color: white;
}

}



@media screen and (min-width: 1025px) {
    .mobile {
        display: none;
    }
}





@media screen and (max-width: 1024px) {


    .desktop {
        display: none;
    }





    .headerMobile {
        width: 100vw;
        height: max-content;
        padding: 10px 0px;
        display: flex;
        justify-content: space-between;
        background-color: var(--bg);
        position: fixed;
        top: 0;
        transition: all ease-in-out 0.3s;
        z-index: 990;
        border-bottom: 1px var(--border) solid;
    }


    .logoMobile {
        font-family: var(--fontLogo);
        color: var(--text);
        display: block;
        font-weight: 700;
        font-size: 1.7rem;
        padding-top: 4px;
        padding-left: 10px;
    }


    .signinButton {
        width: 90px;
        height: max-content;
        font-family: var(--fontLogo);
        color: var(--bg);
        background-color: var(--accent);
        border: none;
        margin: 0px;
    }








    .footerMobile {
        width: 100vw;
        height: 150px;
        margin-top: 100px;
        padding: 30px 20px 20px 20px;
        border-top: 2px solid var(--border);
    }


    .footerLogoMobile {
        font-family: var(--fontLogo);
        color: var(--text);
        font-weight: 700;
        font-size: 2.5rem;
        display: flex;
        justify-content: center;
    }


    .footerCopyrightMobile {
        font-family: var(--fontLogo);
        color: var(--textSecond);
        font-weight: 500;
        font-size: .8rem;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }


}

