

/* Start:/bitrix/templates/E-gorc/css/header.css?177977848411877*/
.header {
    display: flex;
    width: 1440px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 84px;
    margin: 0 auto;
    background: transparent;
    position: relative;
    z-index: 10;
}

.header-left {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    cursor: pointer;
}

.header-divider {
    width: 1px;
    height: 32px;
    background: #E6E8EC;
    margin: 0 24px;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    font-family: "Lexend Deca";
    text-decoration: none;
    color: #787486;
    font-size: 16px;
    font-weight: 400;
}

.nav a:hover {
    color: #061C3D;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn {
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    font-family: "Lexend Deca";
    font-weight: 500;
    line-height: 20px;
    border-radius: 12px;
}

.login-btn {
    background: transparent;
    color: #061C3D;
}

.signup-btn {
    background: #061C3D;
    color: white;
}

.lang-icon {
    width: 48px;
    height: 48px;
    cursor: pointer;
}

.avatar-container {
    display: flex;
    padding: 9px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 3.657px;
    border: 0.457px solid #E6E8EC;
    background: #FFF;
}

.avatar-icon {
    width: 30px;
    height: 30px;
}

.seeker-header .nav a[href="/cv-builder/"] {
    display: block;
}

.seeker-header .nav a[href="/pricing/"] {
    display: none;
}

.hiring-header .nav a[href="/cv-builder/"] {
    display: none;
}

.hiring-header .nav a[href="/pricing/"] {
    display: block;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 110px;
    z-index: 1000;
    padding: 6px 0;
}

.lang-option {
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
}

.lang-option:hover {
    background: #f5f5f5;
}

.mobile-menu-toggle,
.mobile-language-switcher {
    display: none;
}

/* =========================================================
   E-gorc Header Mobile Styles
   ========================================================= */

@media (max-width: 768px) {
    html.mobile-menu-open,
    body.mobile-menu-open {
        overflow: hidden !important;
        height: 100%;
        touch-action: none;
    }

    .header {
        width: 100%;
        max-width: 100%;
        height: 84px;
        min-height: 84px;
        padding: 18px 14px;
        margin: 0;
        box-sizing: border-box;
        background: #F8FAFC;
        border-radius: 0;
        position: relative;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header-left {
        display: flex;
        align-items: center;
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-left a {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
    }

    .logo {
        width: 92px;
        height: auto;
        max-height: 42px;
        object-fit: contain;
    }

    .header-divider {
        display: none;
    }

    .nav {
        display: none;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }

    .header-right .lang-icon,
    .header-right .lang-dropdown,
    .header-right .login-btn {
        display: none !important;
    }

    .header-right .avatar-container {
        display: flex !important;
        width: 48px;
        height: 48px;
        padding: 8px;
        border-radius: 12px;
        border: 1px solid #E6E8EC;
        background: #FFF;
        box-sizing: border-box;
    }

    .header-right .avatar-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
    }

    .header-right .signup-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 104px;
        height: 48px;
        padding: 0 20px;
        border-radius: 14px;
        background: #061C3D;
        color: #FFF;
        font-family: "Lexend Deca", sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 22px;
        white-space: nowrap;
    }

    .mobile-menu-toggle {
        display: block;
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        margin-left: 10px;
        padding: 0;
        border: none;
        background:
            linear-gradient(#787486, #787486) center 8px / 28px 2px no-repeat,
            linear-gradient(#787486, #787486) center 16px / 28px 2px no-repeat,
            linear-gradient(#787486, #787486) center 24px / 28px 2px no-repeat;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
    }

    .mobile-language-switcher {
        display: none;
    }

    /* OPEN STATE */

    .header.menu-open {
        position: fixed;
        inset: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100dvh;
        min-height: 100dvh;
        padding: 28px 14px 22px;
        background: #FFF;
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
        overflow: hidden;
        display: grid;
        grid-template-columns: 1fr auto auto;
        grid-template-rows: auto minmax(0, 1fr);
        align-items: start;
        column-gap: 14px;
    }

    .header.menu-open .nav {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.header.menu-open .nav a,
.header.menu-open .nav .nav-link {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

    .header.menu-open .header-left {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        width: 100%;
        min-width: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;
    }

    .header.menu-open .header-left > a {
        height: 72px;
        display: inline-flex;
        align-items: center;
    }

    .header.menu-open .logo {
        width: 96px;
        max-height: 44px;
    }

    .header.menu-open .header-right {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 0;
        min-width: 0;
    }

    .header.menu-open .mobile-menu-toggle {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        width: 34px;
        height: 72px;
        flex-basis: 34px;
        margin-left: 0;
        background: none;
        position: relative;
    }

    .header.menu-open .mobile-menu-toggle::before {
        content: "×";
        position: absolute;
        inset: 0;
        color: #787486;
        font-family: Arial, sans-serif;
        font-size: 42px;
        font-weight: 300;
        line-height: 68px;
        text-align: center;
    }

    .header.menu-open .header-left .nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 6px 0;
        box-sizing: border-box;
        gap: 0;
        background: #FFF;
        overflow: hidden;
    }

    .header.menu-open .header-left .nav a {
        display: flex !important;
        align-items: center;
        min-height: 72px;
        color: #5F6673;
        font-family: "Lexend Deca", sans-serif;
        font-size: 26px;
        font-weight: 400;
        line-height: 32px;
        text-decoration: none;
        flex-shrink: 0;
    }

    .header.menu-open .header-right .signup-btn {
        min-width: 126px;
        height: 72px;
        border-radius: 16px;
        padding: 0 24px;
        font-size: 24px;
        line-height: 28px;
        position: static;
    }

    .header.menu-open .header-right .login-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 156px;
        height: 56px;
        padding: 0 20px;
        border-radius: 12px;
        border: 1px solid #D9DCE3;
        background: #FFF;
        color: #061C3D;
        font-family: "Lexend Deca", sans-serif;
        font-size: 18px;
        font-weight: 500;
        line-height: 24px;
        box-sizing: border-box;
        z-index: 2;
    }

    .header.menu-open .header-right .login-btn + .signup-btn,
    .header.menu-open .header-right .signup-btn {
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 82px;
        width: auto;
        height: 56px;
        border-radius: 12px;
        background: #061C3D;
        color: #FFF;
        font-size: 18px;
        line-height: 24px;
        z-index: 2;
    }

    .header.menu-open .header-right .lang-icon,
    .header.menu-open .header-right .lang-dropdown {
        display: none !important;
    }

    .header.menu-open .header-right .avatar-container {
        display: flex !important;
        position: static;
        width: 56px;
        height: 56px;
        padding: 10px;
        border-radius: 14px;
        border: 1px solid #E6E8EC;
        background: #FFF;
        box-sizing: border-box;
    }

    .header.menu-open .header-right .avatar-icon {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        object-fit: cover;
    }

    .header.menu-open .header-right:has(.avatar-container) {
        align-items: flex-start;
    }

    .header.menu-open .header-right:has(.avatar-container) .login-btn,
    .header.menu-open .header-right:has(.avatar-container) .signup-btn {
        display: none !important;
    }

    .header.menu-open .header-right::before {
        display: none;
        content: none;
    }

    .header.menu-open .mobile-language-switcher {
        display: flex;
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 28px;
        gap: 8px;
        align-items: center;
        z-index: 2;
    }

    .mobile-lang-btn {
        padding: 0;
        border: none;
        background: transparent;
        color: #5F6673;
        font-family: "Lexend Deca", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        cursor: pointer;
    }

    .mobile-lang-btn.active {
        color: #061C3D;
        font-weight: 500;
    }
}

@media (max-width: 390px) {
    .header-right .signup-btn {
        min-width: 96px;
        height: 44px;
        padding: 0 18px;
        font-size: 16px;
    }

    .logo {
        width: 84px;
    }

    .header.menu-open {
        padding-top: 32px;
    }

    .header.menu-open .header-left .nav {
        margin-top: 12px;
    }

    .header.menu-open .header-left .nav a {
        min-height: 64px;
        font-size: 22px;
        line-height: 28px;
    }

    .header.menu-open .header-right .login-btn {
        height: 56px;
        bottom: 156px;
        font-size: 18px;
    }

    .header.menu-open .header-right .login-btn + .signup-btn,
    .header.menu-open .header-right .signup-btn {
        height: 56px;
        bottom: 82px;
        font-size: 18px;
    }

    .header.menu-open .mobile-language-switcher {
        bottom: 28px;
    }

    .mobile-lang-btn {
        font-size: 18px;
    }
}


@media (max-width: 768px) {
    .header.user-type-candidate .nav a[href="/pricing/"],
    .header.user-type-candidate .nav a[data-i18n="menu.pricing"] {
        display: none !important;
    }

    .header.user-type-company .nav a[href="/cv-builder/"],
    .header.user-type-company .nav a[data-i18n="menu.cv_builder"] {
        display: none !important;
    }
}
/* End */


/* Start:/bitrix/templates/E-gorc/css/footer.css?17794293042820*/
.footer {
    display: flex;
    flex-direction: column;
    width: 1440px;
    padding: 48px 100px 32px 100px;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: var(--color-surface-page, #FFF);
    margin: 90px auto 40px auto;
    box-sizing: border-box;
}
.footer-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 40px;
}
.footer-column:first-child {
    max-width: 300px;
}
.footer-logo {
    width: 83px;
    height: 48px;
}
.footer-description {
    margin-top: 8px;
    color: #6A778B;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-title {
    color: #061C3D;
    font-family: "Lexend Deca";
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}
.footer-menu {
    margin-top: 24px;
    list-style: none;
    padding: 0;
}
.footer-menu li {
    margin-bottom: 12px;
}
.footer-menu a {
    color: #787486;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
}
.footer-menu a:hover {
    color: #061C3D;
}
.footer-divider {
    width: 100%;
    height: 1px;
    background: #E6E8EC;
    margin: 24px 0;
}
.footer-bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.footer-copyright {
    color: #061C3D;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social img {
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.footer-social img:hover {
    opacity: 0.8;
}



@media (max-width: 768px) {

.footer {
    width: calc(100% - 32px);
    padding: 32px 24px 24px;
    margin: 48px auto 24px;
    border-radius: 24px;
    box-sizing: border-box;
}

.footer-content {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.footer-column {
    width: 100%;
}

.footer-column:first-child {
    max-width: 100%;
}

.footer-logo {
    width: 83px;
    height: auto;
}

.footer-description {
    margin-top: 12px;
    font-size: 14px;
    line-height: 22px;
}

.footer-title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}

.footer-menu {
    margin-top: 0;
    gap: 1px;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 15px;
    line-height: 22px;
}

.footer-divider {
    margin: 24px 0;
}

.footer-bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.footer-copyright {
    font-size: 14px;
    line-height: 22px;
}

.footer-social {
    gap: 10px;
}

.footer-social img {
    width: 40px;
    height: 40px;
}

}
/* End */
/* /bitrix/templates/E-gorc/css/header.css?177977848411877 */
/* /bitrix/templates/E-gorc/css/footer.css?17794293042820 */
