.campus-auth-shell {
    min-height: 100vh;
    color: #fff;
    background: #0f0f11;
}

.campus-auth-nav {
    position: relative;
    z-index: 10;
    min-height: 92px;
}

.campus-auth-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.campus-auth-nav__links {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.campus-auth-nav__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.campus-auth-nav__links a:hover {
    border-color: #f6c744;
    color: #f6c744;
}

.campus-auth-page {
    margin-top: -92px;
}

.campus-auth-page .row {
    min-height: 100vh;
}

.campus-auth-media {
    position: relative;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #111;
}

.campus-auth-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 15, 17, 0.16), rgba(15, 15, 17, 0.76));
}

.campus-auth-media img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
}

.campus-auth-panel {
    width: min(680px, 100%);
    margin: 0 auto;
    padding: 130px 48px 56px;
}

.campus-auth-eyebrow {
    margin: 0 0 12px;
    color: #f6c744;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.campus-auth-panel h1 {
    margin-bottom: 12px;
    color: #fff;
}

.campus-auth-switch {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 15px;
}

.campus-auth-switch a {
    color: #f6c744;
    font-weight: 700;
    text-decoration: none;
}

.campus-auth-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.campus-auth-card--login {
    max-width: 520px;
}

.campus-auth-panel--legacy {
    width: min(640px, 100%);
}

.campus-auth-card--legacy {
    padding: 36px;
}

.campus-auth-alert {
    margin-bottom: 24px;
    padding: 14px 16px;
    border: 1px solid rgba(246, 199, 68, 0.38);
    border-radius: 16px;
    background: rgba(246, 199, 68, 0.1);
    color: #fff;
}

.campus-auth-alert strong {
    display: block;
    margin-bottom: 4px;
    color: #f6c744;
}

.campus-auth-form {
    margin: 0;
}

.campus-auth-form .form-group {
    margin-bottom: 20px;
}

.campus-auth-form label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 600;
}

.campus-auth-form .form-control {
    width: 100%;
    min-height: 52px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
}

.campus-auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.campus-auth-form .form-control:focus {
    border-color: rgba(246, 199, 68, 0.72);
    box-shadow: 0 0 0 3px rgba(246, 199, 68, 0.12);
}

.campus-auth-form select.form-control {
    color-scheme: dark;
}

.campus-auth-profile {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid rgba(246, 199, 68, 0.42);
    border-radius: 999px;
}

.campus-auth-profile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.campus-auth-profile label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 126px;
    min-height: 46px;
    padding: 10px 18px;
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.campus-auth-profile input:checked + label {
    background: #f6c744;
    color: #111;
}

.campus-auth-profile--legacy {
    border-color: rgba(255, 255, 255, 0.22);
}

.campus-auth-profile--legacy label {
    border: 0;
    border-radius: 0;
}

.campus-auth-profile--legacy input:checked + label {
    background: transparent;
    color: #f6c744;
    box-shadow: inset 0 0 0 1px #f6c744;
}

.campus-auth-company {
    margin-top: 6px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.campus-auth-company.is-hidden {
    display: none;
}

.campus-auth-company__title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.campus-auth-company--legacy {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.campus-auth-submit {
    width: 100%;
    min-height: 54px;
    border-color: #f6c744;
    background: #f6c744;
    color: #111;
    font-weight: 800;
}

.campus-auth-submit:hover {
    border-color: #ffd95e;
    background: #ffd95e;
    color: #111;
}

@media (max-width: 991.98px) {
    .campus-auth-page {
        margin-top: 0;
    }

    .campus-auth-page .row {
        min-height: auto;
    }

    .campus-auth-media,
    .campus-auth-media img {
        height: 320px;
        min-height: 320px;
    }

    .campus-auth-panel {
        padding: 32px 20px 48px;
    }

    .campus-auth-card {
        padding: 24px;
        border-radius: 22px;
    }
}

@media (max-width: 575.98px) {
    .campus-auth-nav {
        min-height: auto;
        padding: 16px 0;
    }

    .campus-auth-nav .container {
        align-items: flex-start;
        flex-direction: column;
    }

    .campus-auth-nav__links a {
        min-height: 38px;
        padding: 8px 12px;
    }

    .campus-auth-profile {
        display: flex;
        width: 100%;
    }

    .campus-auth-profile label {
        flex: 1;
        min-width: 0;
    }
}

.campus-student-private {
    color: #fff;
}

.campus-student-private .section-padding.pt-0 {
    padding-top: 0;
}

.campus-student-private .sec-head h2,
.campus-student-private .sec-head h3,
.campus-student-private h5,
.campus-student-private h6 {
    color: #fff;
}

.campus-student-private .sec-head .bord {
    column-gap: clamp(1.5rem, 4vw, 4rem);
}

.campus-student-private .sec-head .bord > .ml-auto {
    flex: 0 0 auto;
}

.campus-student-private .sec-head .go-more {
    white-space: nowrap;
}

.campus-student-private .item.sub-bg2,
.campus-student-sidebar__box {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: #2e2e2e;
}

.campus-student-course-card .img {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.campus-student-course-card .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-student-course-card .tag {
    position: absolute;
    right: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 8px 12px;
    border-radius: 999px;
    background: #2e2e2e;
    color: #f6c744;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.campus-student-course-card .cont {
    padding: 26px;
}

.campus-student-course-card .cont h6 {
    min-height: 52px;
    line-height: 1.35;
}

.campus-student-course-card .cont > .rest {
    margin: 0;
    padding: 0;
    list-style: none;
}

.campus-student-course-card__actions {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.campus-student-course-card__actions a {
    color: #fff;
    text-decoration: none;
}

.campus-student-course-card__actions a:hover {
    color: #f6c744;
}

.campus-student-moodle-form {
    margin: 0;
}

.campus-student-moodle-button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font: inherit;
}

.campus-student-moodle-button:hover,
.campus-student-moodle-button:focus {
    color: #f6c744;
}

.campus-student-icon-button {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.campus-student-icon-button:hover {
    color: #f6c744;
}

.campus-student-profile-card {
    padding: 28px;
}

.campus-student-profile-card .skill-progress {
    position: relative;
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
}

.campus-student-profile-card .skill-progress .progres {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #f6c744;
}

.campus-student-profile-card .value {
    display: block;
    margin-top: 10px;
    color: #f6c744;
    font-weight: 800;
}

.campus-profile-form {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
}

.campus-profile-form__identity {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 30px;
    padding: 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
}

.campus-profile-form__identity > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.campus-profile-form__identity p {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.campus-profile-form__label,
.campus-profile-form label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    font-weight: 700;
}

.campus-profile-form .form-control {
    min-height: 50px;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.12);
    color: #fff;
}

.campus-profile-form .form-control:focus {
    border-color: #f6c744;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 3px rgba(246, 199, 68, 0.14);
}

.campus-profile-form select.form-control option {
    background: #242424;
    color: #fff;
}

.campus-profile-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.campus-profile-form__actions .butn {
    color: #fff;
}

.campus-profile-form__cancel {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.campus-profile-form__cancel:hover {
    color: #f6c744;
}

.campus-student-sidebar {
    position: sticky;
    top: 120px;
    padding-top: 120px;
}

.campus-student-sidebar__box {
    padding: 24px;
}

.campus-student-sidebar__eyebrow {
    display: block;
    margin-bottom: 8px;
    color: #f6c744;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.campus-support-banner {
    position: sticky;
    top: 0;
    z-index: 1300;
    border-top: 1px solid #111;
    border-bottom: 1px solid #111;
    background: #f6c744;
    color: #111;
}

.campus-support-mode {
    --campus-support-banner-height: 68px;
}

.campus-support-mode .top-contact-bar {
    top: var(--campus-support-banner-height) !important;
}

.campus-support-mode .top-contact-bar + nav.navbar {
    top: calc(var(--campus-support-banner-height) + var(--top-contact-height));
}

.campus-support-mode .top-contact-bar + nav.navbar.nav-scroll,
.campus-support-mode .top-contact-bar + nav.navbar.nav-crev.nav-scroll {
    top: calc(var(--campus-support-banner-height) + var(--top-contact-height) - 80px);
}

.campus-support-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.campus-support-banner__content strong {
    display: block;
    margin-bottom: 2px;
    font-weight: 900;
}

.campus-support-banner__content a {
    flex: 0 0 auto;
    padding: 8px 14px;
    border: 1px solid #111;
    border-radius: 999px;
    color: #111;
    font-weight: 800;
    text-decoration: none;
}

.campus-support-banner__content a:hover {
    background: #111;
    color: #fff;
}

.campus-student-sidebar__box p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    overflow-wrap: anywhere;
}

.campus-student-sidebar__links li + li {
    margin-top: 12px;
}

.campus-student-sidebar__links a {
    display: flex;
    justify-content: space-between;
    color: #fff;
    text-decoration: none;
}

.campus-student-sidebar__links a:hover {
    color: #f6c744;
}

.campus-student-empty {
    padding: 36px;
}

.campus-student-empty h3,
.campus-student-empty h6 {
    margin-bottom: 0;
}

.campus-student-private .resume-clumn .items {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.campus-student-private .resume-clumn .items h5 {
    font-size: 18px;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .campus-student-sidebar {
        position: static;
        padding-top: 0;
    }
}

@media (max-width: 575.98px) {
    .campus-support-mode {
        --campus-support-banner-height: 140px;
    }

    .campus-support-banner__content {
        align-items: flex-start;
        flex-direction: column;
    }

    .campus-student-private .sec-head .bord {
        align-items: flex-start !important;
        flex-direction: column;
        gap: 14px;
    }

    .campus-student-course-card .img {
        height: 180px;
    }

    .campus-profile-form {
        padding: 22px 18px;
    }

    .campus-profile-form__identity {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .campus-profile-form__identity p {
        grid-column: auto;
    }

    .campus-profile-form__actions {
        align-items: stretch;
        flex-direction: column-reverse;
        text-align: center;
    }
}

.campus-public {
    color: #fff;
}

.campus-public.main-bg-light {
    color: #111;
}

.campus-public .work-sticky .items .img {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 24px;
}

.campus-public .work-sticky .items .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-public .work-sticky .items .cont .sticky-item {
    min-height: 320px;
}

.campus-public__price {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    color: #111;
    font-size: 13px;
    font-weight: 800;
}

.campus-public .skills-img .img > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.campus-price-card {
    gap: 24px;
}

.campus-price-card__old {
    text-decoration: line-through;
}

.campus-private .campus-auth-alert {
    margin-bottom: 28px;
}

.campus-private__panel {
    overflow: visible;
}

.campus-private__panel h6 {
    margin-bottom: 0;
}

.campus-private__panel .form-control {
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 30px;
    background: transparent;
    color: #fff;
}

.campus-private__panel .form-control::placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.campus-private__table {
    margin-bottom: 0;
}

.campus-private__table th,
.campus-private__table td {
    vertical-align: middle;
}

.campus-private__table input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #f6c744;
}

@media (max-width: 991.98px) {
    .campus-public .work-sticky .items .cont .sticky-item,
    .campus-public .work-sticky .items .img {
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .campus-public .crev-agency-header {
        padding-top: 130px;
    }

    .campus-public .work-sticky .items {
        margin-bottom: 20px;
    }

    .campus-public .work-sticky .items .img {
        min-height: 220px;
    }
}
