﻿:root {
    --font-body: 'Amazon Ember', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Amazon Ember Display', 'Amazon Ember', 'Helvetica Neue', Arial, sans-serif;
    --font-size-xl: 3.0rem;
    --font-size-lg: 1.8rem;
    --font-size-md: 1.6rem;
    --font-size-sm: 1.3rem;
}

html {
    font-size: 62.5%;
    min-height: 100%;
}

html {
    height: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-md) !important;
    font-weight: 400;
    background-color: #04011f;
    color: #f5f8ff;
    margin: 0;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    body.landing-page {
        min-height: 100vh;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    body.landing-page main {
        flex: 1 1 auto;
    }
}

p {
    line-height: 3rem !important;
}


@media screen and (max-width: 768px) {
    body {
        font-size: 1.2rem !important;
    }
}


h1 {
    margin-bottom: 0.5em;
    font-size: var(--font-size-xl);
}

p {
    margin-bottom: 0.5em;
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.btn-primary {
    --bs-btn-bg: #2c2c2c;
    --bs-btn-border-color: #2c2c2c;
    background-color: #0b0630;
    border-color: #f5f8ff;
    color: #f5f8ff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0b0630;
    border-color: #f5f8ff;
    color: #f5f8ff;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #2c2c2c;
    border-color: #f5f8ff;
    color: #f5f8ff;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 25px;
    border-radius: 4px;
}

.button-primary {
    position: relative;
    background-color: #c0ca33;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    transition: color 0.3s ease-in;
    z-index: 1;
}

.button-primary:hover {
    color: #c0ca33;
    text-decoration: none;
}

.button-primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: #fff;
    border-radius: 4px;
    opacity: 0;
    -webkit-transform: scaleX(0.8);
    -ms-transform: scaleX(0.8);
    transform: scaleX(0.8);
    transition: all 0.3s ease-in;
    z-index: -1;
}

.button-primary:hover::after {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .3);
}

.header-area {
    position: relative;
    background: #5bc0de;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background: linear-gradient(rgb(16 0 72 / 63%), rgb(192 72 72 / 70%)), url("../images/uk-banner.jpg");
    background-position: center;
    background-size: cover;
}

.header-area--compact {
    background: none;
    min-height: auto;
    padding-bottom: 0;
}

.header-area--compact .navbar {
    position: relative;
    background: transparent;
    padding: 1rem 0;
}

@media screen and (max-width: 768px) {
    .header-area {
        height: 10vh;
    }

    .banner {
        display: none;
    }
}

.banner {
    align-items: center;
    position: relative;
    height: 100%;
    color: #fff;
    text-align: center;
    z-index: 1;
    min-height: 200px;
}

.banner h1 {
    font-weight: 800;
}

.banner p {
    font-weight: 700;
}

.navbar {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    transition: background 0.6s ease-in;
    z-index: 99999;
}

.navbar .navbar-brand,
.hero-nav .hero-logo {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    letter-spacing: 0.08em;
    text-decoration: none;
}

.navbar .navbar-toggler {
    position: relative;
    height: 50px;
    width: 50px;
    border: none;
    cursor: pointer;
    outline: none;
}

.navbar .navbar-toggler .menu-icon-bar {
    position: absolute;
    left: 15px;
    right: 15px;
    height: 2px;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    transform: translateY(-1px);
    transition: all 0.3s ease-in;
}

.navbar .navbar-toggler .menu-icon-bar:first-child {
    opacity: 1;
    -webkit-transform: translateY(-1px) rotate(45deg);
    -ms-sform: translateY(-1px) rotate(45deg);
    transform: translateY(-1px) rotate(45deg);
}

.navbar .navbar-toggler .menu-icon-bar:last-child {
    opacity: 1;
    -webkit-transform: translateY(-1px) rotate(135deg);
    -ms-sform: translateY(-1px) rotate(135deg);
    transform: translateY(-1px) rotate(135deg);
}

.navbar .navbar-toggler.collapsed .menu-icon-bar {
    opacity: 1;
}

.navbar .navbar-toggler.collapsed .menu-icon-bar:first-child {
    -webkit-transform: translateY(-7px) rotate(0);
    -ms-sform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
}

.navbar .navbar-toggler.collapsed .menu-icon-bar:last-child {
    -webkit-transform: translateY(5px) rotate(0);
    -ms-sform: translateY(5px) rotate(0);
    transform: translateY(5px) rotate(0);
}

.navbar-dark .navbar-nav .nav-link {
    position: relative;
    color: #fff;
    font-size: 1.6rem;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar .dropdown-menu {
    padding: 0;
    background-color: rgba(0, 0, 0, .9);
}

.navbar .dropdown-menu .dropdown-item {
    position: relative;
    padding: 10px 20px;
    color: #fff;
    font-size: 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: color 0.2s ease-in;
}

.navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #c0ca33;
}

.navbar .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    width: 5px;
    background-color: #c0ca33;
    opacity: 0;
    transition: opacity 0.2s ease-in;
}

.navbar .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-menu-auth {
    background: linear-gradient(rgb(4 1 31 / 95%), rgb(16 0 72 / 90%));
    border: none;
}

.dropdown-menu-auth .dropdown-item {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.dropdown-menu-auth .dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-menu-auth .dropdown-item:hover,
.dropdown-menu-auth .dropdown-item:focus {
    background: transparent;
    color: #fff;
}

.navbar.fixed-top {
    position: fixed;
    -webkit-animation: navbar-animation 0.6s;
    animation: navbar-animation 0.6s;
    background-color: rgba(0, 0, 0, .9);
}

.navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
    color: #c0ca33;
}

.navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
    background-color: #c0ca33;
}

.content {
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .navbar-brand {
        margin-left: 20px;
    }

    .navbar-nav {
        padding: 0 20px;
        background-color: rgba(0, 0, 0, .9);
    }

    .navbar.fixed-top .navbar-nav {
        background: transparent;
    }
}

@media screen and (min-width: 767px) {
    .banner {
        padding: 0 150px;
    }

    .banner h1 {
        font-size: 5rem;
    }

    .banner p {
        font-size: 2rem;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 23px 15px;
    }

    .navbar-dark .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 30%;
        right: 30%;
        height: 1px;
        background-color: #fff;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        transition: transform 0.1s ease-in;
    }

    .navbar-dark .navbar-nav .nav-link:hover::after {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }

    .dropdown-menu {
        min-width: 200px;
        -webkit-animation: dropdown-animation 0.3s;
        animation: dropdown-animation 0.3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
    }
}

@-webkit-keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes dropdown-animation {
    0% {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    75% {
        -webkit-transform: scaleY(1.1);
        -ms-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}

@keyframes dropdown-animation {
    0% {
        -webkit-transform: scaleY(0);
        -ms-transform: scaleY(0);
        transform: scaleY(0);
    }

    75% {
        -webkit-transform: scaleY(1.1);
        -ms-transform: scaleY(1.1);
        transform: scaleY(1.1);
    }

    100% {
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        transform: scaleY(1);
    }
}

ul {
    list-style: none;
}

#tags li {
    display: inline-block;
    margin: 10px 10px 5px 10px;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 2.5rem;
    /* Footer height */
}

#footer {
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column
}

table.dataTable tbody td {
    word-break: break-word;
    vertical-align: top;
}

.yadcf-filter-reset-button {
    /* Add Bootstrap's form-control class */
    background-color: #fff;
    /* Background color for form controls */
    border-color: #ccc;
    /* Border color for form controls */
    color: #333;
    /* Text color for form controls */
    padding: 3px 6px;
    font-size: 14px;
    line-height: 0.5;
    border-radius: 4px;
    margin: 8px;
}

@media screen and (max-width: 768px) {
    .yadcf-filter-reset-button {
        line-height: 0.5;
        padding: 3px 6px;
    }
}

body {
    margin-top: 0;
}

.section {
    padding: 50px 0;
    position: relative;
}

.gray-bg {
    background-color: #f5f5f5;
}

img {
    max-width: 100%;
}

img {
    vertical-align: middle;
    border-style: none;
}

/* About Me 
---------------------*/
.about-text h3 {
    font-size: 45px;
    font-weight: 700;
    margin: 0 0 6px;
}

@media (max-width: 767px) {
    .about-text h3 {
        font-size: 35px;
    }
}

.about-text h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .about-text h6 {
        font-size: 18px;
    }
}

.about-text p {
    font-size: 18px;
    max-width: 450px;
}

.about-text p mark {
    font-weight: 600;
    color: #20247b;
}

.about-list {
    padding-top: 10px;
}

.about-list .media {
    padding: 5px 0;
}

.about-list label {
    color: #20247b;
    font-weight: 600;
    width: 88px;
    margin: 0;
    position: relative;
}

.about-list label:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 11px;
    width: 1px;
    height: 12px;
    background: #20247b;
    -moz-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
    margin: auto;
    opacity: 0.5;
}

.about-list p {
    margin: 0;
    font-size: 15px;
}

@media (max-width: 991px) {
    .about-avatar {
        margin-top: 30px;
    }
}

.about-section .counter {
    padding: 22px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
}

.about-section .counter .count-data {
    margin-top: 10px;
    margin-bottom: 10px;
}

.about-section .counter .count {
    font-weight: 700;
    color: #20247b;
    margin: 0 0 5px;
}

.about-section .counter p {
    font-weight: 600;
    margin: 0;
}

mark {
    background-image: linear-gradient(rgba(252, 83, 86, 0.6), rgba(252, 83, 86, 0.6));
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-color: transparent;
    padding: 0;
    color: currentColor;
}

.theme-color {
    color: #fc5356;
}

.dark-color {
    color: #20247b;
}

#tags li a,
#links {
    color: #3e4581 !important;
    text-decoration: none !important;
}

.filter-tags .filter-tag-link.active,
#tags li a.active {
    background-color: #1b6ec2;
    color: #fff !important;
    border-radius: 999px;
    padding: 0.25rem 0.8rem;
    font-weight: 600;
}

.main-container {
    width: 90%
}

@media screen and (max-width: 768px) {
    .main-container {
        width: 96%
    }
}

input {
    border: 1px solid #aaa !important;
    border-radius: 3px !important;
    padding: 5px !important;
    background-color: transparent !important;
    color: inherit !important;
    margin: 6px 0 6px 0 !important;
}


#sponsorslist_filter label input {
    margin: 6px 0 6px 6px !important;
}

.navbar-nav {
    padding: 8px !important;
}

.accordion-header {
    margin-bottom: 0;
    font-size: 2rem;
    color: #3e4581;
}

.search-hero,
.auth-hero {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem 2rem;
    background: linear-gradient(rgb(4 1 31 / 80%), rgb(16 0 72 / 80%)), url("../images/uk-banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.search-hero.hero-compact {
    min-height: 22vh;
    padding-top: 2rem;
}

.search-hero h1 {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
}

.search-hero__overlay,
.auth-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.auth-hero {
    min-height: 100vh;
    padding: 0 1rem;
}

.hero-search .form-control {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}

.hero-search .btn {
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding: 0 2.5rem;
    font-weight: 600;
}

.search-hero .btn-primary {
    background-color: #ffffff00;
    border-color: #ffffff;
    color: #fff;
}

.search-hero .btn-primary:hover,
.search-hero .btn-primary:focus,
.search-hero .btn-primary:active {
    background-color: #ffffff00;
    border-color: #ffffff;
    color: #fff;
}

.alert-signup-form .form-control-lg,
.alert-signup-form .form-select.form-control-lg,
.alert-signup-submit {
    height: calc(3.5rem + 2px);
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
}

.alert-signup-submit {
    background-color: #f7d046;
    border-color: #f7d046;
    color: #052a1a;
    font-weight: 600;
}

.alert-signup-submit:hover,
.alert-signup-submit:focus,
.alert-signup-submit:active {
    background-color: #e7bf34;
    border-color: #e7bf34;
    color: #052a1a;
}

.privacy-hint {
    font-size: 1.2rem;
}

.sponsorship-badge {
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.25rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.sponsorship-badge-3 {
    background-color: #0d1b4c;
    color: #fff;
}

.sponsorship-badge-1 {
    background-color: #1b6ec2;
    color: #fff;
}

.sponsorship-badge-0 {
    background-color: #ffc107;
    color: #1f1f1f;
}

.sponsorship-badge-2 {
    background-color: #c53030;
    color: #fff;
}

.result-badge {
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.15rem 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.result-badge--salary {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #065f46;
}

.favorite-form {
    margin: 0;
}

.favorite-button {
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.favorite-button span {
    font-size: 1.1rem;
}

.favorite-button:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.3);
}

.favorite-button.is-favorite {
    background: #dc2626;
    color: #fff;
}

.hero-nav {
    margin-top: -2rem;
}

.hero-nav .hero-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.85);
}

.hero-nav .btn-outline-light,
.hero-nav .btn-outline-light:hover,
.hero-nav .btn-outline-light:focus-visible {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: none;
}

.hero-logo {
    font-size: clamp(2.6rem, 2vw + 1rem, 3.4rem);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-nav .hero-logo,
.auth-hero__logo .hero-logo {
    font-family: var(--font-display);
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
}


.hero-logo__icon {
    width: 2.4rem;
    height: 2.4rem;
    border: 0.2rem solid #f5f8ff;
    border-left: transparent;
    border-bottom: transparent;
    border-radius: 0.4rem;
    transform: rotate(45deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.hero-logo__icon::after {
    content: "";
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    background: #f5f8ff;
    border-radius: 50%;
    left: -0.4rem;
    bottom: -0.4rem;
    opacity: 0.8;
}

.hero-logo:hover .hero-logo__icon,
.hero-logo:focus-visible .hero-logo__icon {
    animation: heroArrowPulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(245, 248, 255, 0.6);
}

.hero-logo__text {
    letter-spacing: 0.08em;
}

.hero-logo__text--prefix,
.hero-logo__text--suffix {
    display: inline-block;
}

.landing-hero {
    background: #050326;
    color: #fff;
    min-height: 100vh;
    padding: 1rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.landing-hero__nav {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.landing-hero__nav .hero-logo {
    flex-shrink: 0;
}

.landing-hero__menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
}

.landing-hero__menu form {
    margin: 0;
}

.landing-hero__menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.landing-hero__menu-link,
.hero-auth-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    padding: 0.35rem 1rem;
}

.landing-hero__menu-button,
.hero-auth-button {
    border: 1px solid #f7d046;
    border-radius: 999px;
    background: transparent;
    color: #f7d046;
    padding: 0.35rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.landing-hero__menu-button:hover,
.landing-hero__menu-button:focus-visible,
.hero-auth-button:hover,
.hero-auth-button:focus-visible {
    background: #f7d046;
    color: #050326;
}

.landing-hero__content {
    position: relative;
    z-index: 1;
    width: min(900px, 85vw);
    min-height: 50rem;
    padding: 2rem 0 1.5rem;
    margin-top: auto;
    margin-bottom: auto;
}

.landing-hero__badge {
    background: rgba(0, 0, 0, 0.2);
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 1.3rem;
}

.landing-hero__title {
    font-size: clamp(3.6rem, 5vw, 4.8rem);
    font-weight: 700;
}

#landingTypewriter {
    display: inline-block;
    min-height: 1.2em;
    transition: opacity 0.75s ease;
}

#landingTypewriter.landing-typewriter--fade {
    opacity: 0;
}

.landing-hero__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.35;
    z-index: 0;
}

.landing-search {
    background: #fff;
    border-radius: 999px;
    padding: 0.7rem;
    gap: 0.5rem;
    width: 100%;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.landing-search__field {
    flex: 1 1 320px;
    display: flex;
    align-items: center;
    padding-left: 0.8rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(33, 47, 39, 0.1);
}

.landing-search__field input,
.landing-search__field select {
    width: 100%;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 999px;
    background-color: #fff !important;
    font-size: 1.4rem;
    color: #111 !important;
}

.landing-subscribe .landing-search__field {
    background: #fff;
    border: 1px solid rgba(33, 47, 39, 0.1);
    padding-left: 0.8rem;
}

.landing-search__field input::placeholder {
    color: rgba(17, 17, 17, 0.65);
}

.landing-search__field input:-webkit-autofill,
.landing-search__field input:-webkit-autofill:hover,
.landing-search__field input:-webkit-autofill:focus,
.landing-search__field select:-webkit-autofill,
.landing-search__field select:-webkit-autofill:hover,
.landing-search__field select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-text-fill-color: #111;
    transition: background-color 9999s ease-out 0s;
}

.landing-search__field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23005630' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.landing-search__button {
    border: none;
    border-radius: 999px;
    background: #035733;
    color: #fff;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.landing-search__button--secondary {
    background: #f7d046;
    color: #052a1a;
}

.landing-hero__avatar-list {
    display: flex;
}

.landing-hero__avatar-list span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #056844;
    background: linear-gradient(135deg, #ff8a00, #ff3d77);
    display: inline-block;
    margin-left: -12px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.landing-hero__illustration {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.15), transparent 60%), #0b7a52;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.landing-hero__illustration-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-hero__person {
    width: 160px;
    height: 240px;
    background: linear-gradient(180deg, #188c63 0%, #056844 100%);
    border-radius: 80px 80px 40px 40px;
    position: relative;
}

.landing-hero__person::before {
    content: "";
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background: #ffe0c4;
    border-radius: 50%;
}

.landing-hero__desk {
    position: absolute;
    bottom: 40px;
    width: 260px;
    height: 12px;
    background: #015137;
    border-radius: 999px;
}

.landing-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin-bottom: 0.5rem;
}

.landing-card__title {
    font-weight: 600;
    font-size: 1.6rem;
}

.landing-card__meta {
    color: #6c757d;
    font-size: 1.3rem;
}

.landing-hero__footer {
    margin-top: auto;
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.2rem;
}

.landing-hero__footer p {
    margin: 0;
}

.landing-hero__auth-hint {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
}

.landing-hero__auth-hint a {
    color: #f7d046;
    text-decoration: underline;
    font-weight: 600;
}

.landing-hero__auth-divider {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.45);
}

#landing-role,
#landing-subscribe-email {
    border: none !important;
}

@keyframes heroArrowPulse {
    0% {
        transform: rotate(45deg) scale(1);
    }

    50% {
        transform: rotate(55deg) scale(1.08);
    }

    100% {
        transform: rotate(45deg) scale(1);
    }
}

.hero-nav .hero-menu a:hover {
    color: #fff;
    text-decoration: none;
}

.lead {
    font-size: var(--font-size-md);
}

.seo-copy .seo-heading {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
}

.seo-copy p {
    font-size: var(--font-size-md);
}

.hero-menu-toggle {
    display: none;
    border: none;
    background: none;
    color: #fff;
    padding: 0;
    line-height: 1;
}

.hero-menu-toggle__icon {
    font-size: 3.7rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.2s ease;
    margin-bottom: 17px;
}

.hero-menu-toggle__icon--close {
    display: none;
}

.hero-menu-toggle.is-open .hero-menu-toggle__icon--open {
    display: none;
}

.hero-menu-toggle.is-open .hero-menu-toggle__icon--close {
    display: inline-block;
}

.hero-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

@media screen and (max-width: 768px) {
    .landing-hero {
        min-height: 100vh;
        max-height: none;
        padding: 1.5rem 1.5rem 3rem;
        overflow: visible;
        justify-content: flex-start;
    }

    .landing-hero__nav {
        padding: 0.25rem 0 0;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .landing-hero__menu {
        justify-content: flex-start;
        gap: 0.5rem;
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        margin-left: 0;
    }

    .landing-hero__menu a.btn {
        flex: 1 1 auto;
    }

    .landing-hero__menu a {
        flex: 1 1 auto;
        text-align: center;
    }

    .landing-hero__content {
        min-height: auto;
        margin-top: 6rem;
        margin-bottom: 0;
        width: 100%;
    }

    .search-hero {
        min-height: 30vh;
        align-items: center;
        padding: 1rem;
    }

    .hero-nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 0;
    }

    .hero-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
    }

    .hero-nav .hero-menu {
        position: fixed;
        top: 0;
        right: -80%;
        width: 75%;
        height: 100vh;
        background: rgba(4, 1, 31, 0.95);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1000;
        transition: right 0.3s ease-in-out;
    }

    .hero-nav .hero-menu.is-open {
        right: 0;
    }

    .hero-nav .hero-menu li {
        width: 100%;
    }

    .hero-nav .hero-menu a {
        font-size: 1.2rem;
    }

    .hero-menu-overlay.is-visible {
        display: block;
    }

    .layout-sidebar {
        order: -1;
        margin-bottom: 2rem;
    }
}

.wizard-card {
    border: none;
    border-radius: 1rem;
}

.wizard-step__badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: #fff;
    color: #3e4581;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.wizard-actions .wizard-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    border-radius: 50%;
    background: #c0ca33;
}

.wizard-actions li {
    position: relative;
    padding-left: 0.5rem;
    color: #3e4581;
}

.wizard-form .form-control {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: none !important;
    color: #3e4581 !important;
}

.wizard-form .btn-light {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.wizard-form .form-label {
    color: #2b2e54;
}

.results-container {
    color: #04011f;
    padding-top: 0.5rem !important;
    padding-bottom: 0rem !important;
}

@media (max-width: 768px) {
    .results-container {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

.results-card,
.filter-panel {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
}

.sponsors-page .results-card {
    margin-left: auto;
    margin-right: auto;
}

.auth-card--primary {
    background-color: #04011f;
    color: #f5f8ff;
    border: 1px solid rgba(245, 248, 255, 0.1);
    padding: 4rem 6rem !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.auth-hero__logo .hero-logo {
    font-size: clamp(2.4rem, 2vw + 1rem, 3.4rem);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex-direction: row;
}

.auth-hero__logo {
    color: #fff;
    font-size: var(--font-size-xl);
}

.auth-hero__logo:hover {
    color: #fff;
    text-decoration: none;
}

.auth-card--primary h2 {
    color: #f5f8ff;
}

.auth-card--primary p {
    color: #f5f8ff;
}

.auth-card--primary .btn-outline-light {
    border-color: rgba(245, 248, 255, 0.4);
    color: #f5f8ff;
}

.auth-card--primary .btn-outline-light:hover,
.auth-card--primary .btn-outline-light:focus {
    background: rgba(255, 255, 255, 0.1);
    color: #f5f8ff;
}

.auth-form-disclaimer {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
}

.auth-form-disclaimer a {
    color: #fff;
    text-decoration: underline;
}

.results-card--table .table-modern {
    border: 1px solid #e8e9ff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    background-color: #fff;
}

.eyebrow {
    font-size: var(--font-size-xs);
    letter-spacing: 0.08em;
    color: #8f92c5;
    font-weight: 600;
}

.table-modern table {
    width: 100%;
    margin-bottom: 0;
    color: #1f215a;
    border-collapse: separate;
    border-spacing: 0;
}

.table-modern thead th {
    text-transform: uppercase;
    font-size: var(--font-size-xs);
    letter-spacing: 0.05em;
    color: #5b5d7a;
    border-bottom: 1px solid #eef0ff;
    padding-bottom: 1rem;
}

.table-modern tbody td {
    padding: 1.25rem 0;
    border-bottom: 1px solid #f1f2fb;
    font-size: var(--font-size-sm);
}

.table-modern tbody tr:last-child td {
    border-bottom: none;
}

.settlement-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.settlement-article {
    border: 1px solid #edf0ff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    background: #fbfbff;
}

.settlement-article h5 {
    color: #1f215a;
    font-size: var(--font-size-lg);
}

.settlement-article__image {
    flex: 0 0 120px;
}

.settlement-article__image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 1px solid #e2e5ff;
}

.social-updates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-update {
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.25rem;
    border: 1px solid #e7e9ff;
}

.social-update__link {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4c5fe1;
    text-decoration: none;
}

.social-update__link:hover {
    color: #2d3db3;
}

.twitter-embed {
    border: 1px solid #e7e9ff;
    border-radius: 1rem;
    padding: 0.5rem;
    background: #fbfbff;
}

.prep-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef0ff;
}

.prep-list li:last-child {
    border-bottom: none;
}

.prep-list__title {
    font-weight: 600;
    color: #1f215a;
}

.sponsor-detail-card .badge {
    background: linear-gradient(90deg, #7c6cff, #5cb4ff);
    font-size: var(--font-size-xs);
}

.detail-tile {
    border: 1px solid #e8e9ff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: #fbfbff;
}

.detail-tile__label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8f92c5;
    margin-bottom: 0.35rem;
}

.detail-tile__value {
    font-size: var(--font-size-md);
    margin: 0;
    color: #1f215a;
}

.yadcf-filter-reset-button {
    border: none !important;
    background: rgba(31, 33, 90, 0.08) !important;
    color: #1f215a !important;
    border-radius: 999px !important;
    padding: 0.25rem 0.75rem !important;
    font-size: var(--font-size-xs) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.yadcf-filter-reset-button:hover,
.yadcf-filter-reset-button:focus-visible {
    background: rgba(31, 33, 90, 0.18) !important;
    color: #04011f !important;
}

.table-modern .dataTables_filter label,
.table-modern .dataTables_length label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8f92c5;
}

.table-modern .dataTables_filter input,
.table-modern .dataTables_length select,
.table-modern .yadcf-filter {
    border: 1px solid #e3e5ff !important;
    border-radius: 999px !important;
    padding: 0.35rem 0.9rem !important;
    font-size: var(--font-size-sm) !important;
    height: auto !important;
    line-height: 1.4 !important;
    color: #1f215a !important;
    background: #fff !important;
    box-shadow: none !important;
}

.table-modern .dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    color: #3e4581 !important;
    padding: 0.25rem 0.9rem;
    font-size: var(--font-size-sm);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.table-modern .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.table-modern .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(31, 33, 90, 0.08) !important;
    border-color: rgba(31, 33, 90, 0.2) !important;
    color: #1f215a !important;
}

.modern-results .list-group-item {
    border: 1px solid #e8e9ff;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.job-listing {
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.job-listing.is-selected {
    border-color: #1f6feb;
    box-shadow: 0 10px 24px rgba(31, 111, 235, 0.12);
}

.result-title {
    font-weight: 500;
    font-size: var(--font-size-lg);
    color: #2a2a2a;
}

.modern-results {
    --job-accent: #1f6feb;
}

.modern-results .result-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2a2a2a;
}

.modern-results .result-title__link {
    color: #2a2a2a;
}

.modern-results .result-title__link:hover {
    color: #2d2d2d;
}

.modern-results .btn-outline-primary {
    color: var(--job-accent);
    border-color: var(--job-accent);
}

.modern-results .btn-outline-primary:hover,
.modern-results .btn-outline-primary:focus {
    background-color: transparent;
    color: var(--job-accent);
    border-color: var(--job-accent);
}

.modern-results .btn-primary:hover,
.modern-results .btn-primary:focus {
    background-color: #1f1f1f;
    border-color: #f5f8ff;
    color: #f5f8ff;
}

.modern-results .sponsorship-badge {
    background-color: var(--job-accent);
    color: #fff;
}

.modern-results .sponsorship-badge-3 {
    background-color: #0d1b4c;
    border-color: #0d1b4c;
}

.result-title__link {
    color: inherit;
    text-decoration: none;
}

.result-title__link:hover {
    color: #3e4581;
    text-decoration: none;
}

.result-meta {
    color: #555b86;
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.sign-in-alert {
    background-color: rgb(11 4 50);
    border: 1px solid rgb(11 5 44);
    color: #ffffff;
}

.glassy-card {
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 30px rgba(8, 8, 32, 0.12);
}

.glassy-card--message {
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    color: #14193a;
    font-weight: 600;
}

.locked-job {
    color: rgba(20, 25, 58, 0.65);
    position: relative;
    overflow: hidden;
}

.locked-job .locked-content {
    filter: blur(1px);
    pointer-events: none;
}

.locked-group {
    position: relative;
}

.locked-group__overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(360px, calc(100% - 2rem));
    z-index: 2;
}

.sponsorship-filter-toolbar {
    border: 1px solid #e6e8ff;
    border-radius: 1rem;
    padding: 1.2rem 1.6rem;
    background-color: #f8f9ff;
}

.job-detail-card {
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 2.2rem;
    position: sticky;
    top: 1.5rem;
}

.job-detail-close {
    display: none;
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    border: none;
    background: rgba(4, 1, 31, 0.08);
    color: #1a1d40;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 991px) {
    .job-detail-card {
        position: fixed;
        inset: 0;
        top: 10%;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: none;
        border-radius: 1.5rem 1.5rem 0 0;
        transform: translateY(110%);
        transition: transform 0.3s ease;
        z-index: 1055;
        overflow-y: auto;
        box-shadow: 0 -12px 30px rgba(8, 8, 32, 0.2);
    }

    .job-detail-card.is-open {
        transform: translateY(0);
    }

    .job-detail-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.job-detail-open {
        overflow: hidden;
    }
}

.job-detail-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1d40;
}

.job-detail-company,
.job-detail-location {
    font-size: var(--font-size-sm);
    color: #5a5f86;
}

.job-detail-info {
    border-top: 1px solid #eceefe;
    padding-top: 1.5rem;
}

.job-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f1ff;
}

.job-detail-label {
    font-weight: 600;
    color: #5a5f86;
}

.job-detail-value {
    color: #1a1d40;
    font-weight: 600;
}

.filter-pill-group {
    width: 100%;
}

.filter-pill {
    border: 1px solid rgba(31, 33, 90, 0.2);
    border-radius: 999px;
    padding: 0.25rem 1rem;
    background-color: transparent;
    color: #2f3369;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: none;
}

.filter-pill:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(61, 97, 255, 0.25);
}

.filter-pill.active {
    color: #fff;
}

.filter-pill--explicit {
    border-color: #0d1b4c;
    color: #0d1b4c;
}

.filter-pill--all {
    border-color: rgba(255, 255, 255, 0.4);
    color: #1f215a;
}

.filter-pill--all.active {
    background-color: rgba(31, 33, 90, 0.9);
    border-color: rgba(31, 33, 90, 0.9);
    color: #fff;
}

.filter-pill--explicit.active {
    background-color: #0d1b4c;
    border-color: #0d1b4c;
    color: #fff;
}

.filter-pill--likely {
    border-color: rgba(27, 110, 194, 0.4);
    color: #1b6ec2;
}

.filter-pill--likely.active {
    background-color: #1b6ec2;
    border-color: #1b6ec2;
}

.filter-pill--others {
    border-color: rgba(255, 193, 7, 0.6);
    color: #b8860b;
}

.filter-pill--others.active {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #1f1f1f;
}

.filter-panel {
    position: sticky;
    top: 2rem;
}

.filter-panel .form-label {
    color: #5b5d7a;
}

.empty-state {
    color: #5f6488;
}

.footer-minimal {
    background-color: #04011f;
    color: #fff !important;
}

.coming-soon small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-consent {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(rgb(4 1 31 / 95%), rgb(16 0 72 / 90%));
    color: #fff;
    padding: 1.25rem 1.75rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1050;
}

.cookie-consent a {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .cookie-consent {
        border-radius: 1.5rem;
    }
}

.privacy-content p,
.privacy-content li,
.privacy-content h2 {
    color: #fff;
    font-size: var(--font-size-md);
    line-height: 1.8;
}

.privacy-content a {
    color: #fff;
    text-decoration: underline;
}

.search-hero--secondary {
    min-height: 30vh;
    padding: 1.5rem 1rem;
}

#AlertSubscription_Frequency {
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    margin-top: 6px;
    margin-bottom: 8px;
    height: 38px;
}

#alertSignup>form>div.col-12.col-md-2.d-flex.flex-column.gap-1 {

    padding-bottom: 8px;

}

.no-blue-links {
    color: #fff;
    --bs-link-hover-color: #fff;
}

@media (max-width: 768px) {
    .landing-hero__content {
        min-height: auto;
    }

    .landing-hero__copy {
        max-width: 100%;
    }

    .landing-search {
        border-radius: 2rem;
        padding: 0.75rem;
    }

    .landing-search__field,
    .landing-search__button,
    .landing-search__button--secondary {
        flex: 1 1 100%;
        margin: 0.2rem 0;
    }

    .landing-search__button,
    .landing-search__button--secondary {
        width: 100%;
    }
}

.landing-hero__copy {
    width: 100%;
    max-width: 55vw;
}
