: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.02'%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';

}

a {
    text-decoration: none;
}



.bg-persis1 {
    background-color: var(--bg);
    background-image: var(--bgPattern);

}


.navberMain {
    width: 95vw;
    max-width: 1728px;
    height: 100px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    top: 0;
    z-index: 10001;
}

.navbarMainInner {
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
}

.headerLogo {
    font-family: var(--fontLogo);
    color: var(--text);
    font-weight: 700;
    font-size: 40px;
}

.navbarMenus {
    width: 350px;
}

.navbarMenusInner {
    padding-top: 17px;
    display: flex;
    justify-content: space-between;
}

.navbarMenuText {
    font-family: var(--fontMain);
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
}

.navbarButtons {
    width: max-content;
    display: flex;
    justify-content: left;
    padding-top: 6px;
}

.signinButton {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--fontLogo);
    border: 2px var(--text) solid;
    margin-right: 10px;
    font-size: 16px;
}

.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);
    font-size: 16px;
}

.employerButton:hover {
    background-color: var(--accentHover);
    border: 2px var(--accentHover) solid;
    color: white;
}









footer {
    width: 100vw;
    padding: 40px 0;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    border-top: 2px var(--border) solid;
    margin-top: 200px;
}


.footer {
    position: relative;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 95vw;
    max-width: 1728px;
    display: flex;
    justify-content: space-between;
}

.footerLeft {
    display: grid;
}

.footerLogo {
    color: var(--text);
    font-family: var(--fontLogo);
    font-size: 48px;
    font-weight: 700;
}

.footerSocials {
    margin-top: 15px;
}

.footerSocialIcon {
    cursor: pointer;
    margin-right: 40px;
}

.footerCopyright {
    color: var(--textSecond);
    font-family: var(--fontMain);
    font-size: 16px;
    font-weight: 500;
    margin-top: 200px;
}

.footerRight {
    width: 600px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.footerUL {
    padding: 0;
    list-style: none;
}

.footerUlTitle {
    color: var(--text);
    font-family: var(--fontMain);
    font-weight: 700;
    font-size: 19px;
}

.footerUlItems {
    color: var(--text);
    font-family: var(--fontMain);
    font-weight: 400;
    font-size: 16px;
}

