.alea-radio-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}

.alea-radio-button {
    display: block;
    position: relative;
}

.alea-radio-button > input {
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.alea-radio-button > div {
    padding: 10px;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #777667;
    background: #fff;
    box-shadow: 1px 1px 4px 0 #00000040;
    transition: color 180ms, background-color 180ms;
}

.alea-radio-button > input:hover + div {
    background: #076283;
    color: #fff;
}

.alea-radio-button > input:checked + div {
    background: #7A786B;
    color: #fff;
}

.alea-link-button {
    display: block;
    padding: 10px !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    color: #777667 !important;
    background: #fff !important;
    box-shadow: 1px 1px 4px 0 #00000040 !important;
    transition: color 180ms, background-color 180ms !important;
}

.alea-link-button:hover {
    background: #076283 !important;
    color: #fff !important;
}

.alea-link-button.alea-link-button--active {
    background: #7A786B !important;
    color: #fff !important;
}

.alea-radio-card-group {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 23px;
}


@media (max-width: 1024px) {
    .alea-radio-card-group {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


@media (max-width: 768px) {
    .alea-radio-card-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alea-radio-card > div {
        font-size: 18px !important;
    }
}

.alea-radio-card {
    display: block;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 1px 1px 4px 0px #00000040;
}


.alea-radio-card input {
    appearance: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.alea-radio-card > img {
    display: block;
    aspect-ratio: 7/4;
    object-fit: cover;
    object-position: center;
}

.alea-radio-card > div {
    padding: 20px;
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    color: #777667;
    background: #fff;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;

    transition: color 180ms, background-color 180ms;
}

.alea-radio-card > input:checked + img + div,
.alea-radio-card > input:hover + img + div {
    background: #777667;
    background: var(--color);
    color: #fff;
}

.alea-job-team-logo {
    display: block;
    width: 150px;
    aspect-ratio: 2 / 3;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#alea-job-results {
    display: grid;
    gap: 23px;
}

#alea-job-results div[data-team] {
    margin-top: 30px;
}

#alea-job-results a[data-type] {
    position: relative;
    display: block;
    padding: 10px 50px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 1px 1px 4px 0px #00000040;
}

@media (max-width: 768px) {
    #alea-job-results a[data-type] {
        padding: 10px 16px;
    }
}

#alea-job-results a[data-type] > div:last-of-type {
    font-weight: 300;
    color: #7A786B;
}

#alea-job-results a[data-type] svg {
    display: block;
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    transition: transform 180ms;
}

#alea-job-results a[data-type]:hover svg {
    transform: translateX(8px);
}

.alea-tabs .e-n-tabs-heading {
    column-gap: 23px !important;
}

.alea-tabs .e-n-tab-title,
body .alea-btn,
body a.alea-btn,
body button.alea-btn {
    display: flex;
    appearance: none;
    border: none;
    margin: 0;
    border-radius: 0 !important;
    gap: 10px;
    align-items: center;
    background: #fff !important;
    color: #7A786B;
    font-family: Roboto !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    padding: 10px !important;
    box-shadow: 1px 1px 4px 0px #00000040 !important;
    transition: color 180ms, background-color 180ms;
}

.alea-tabs .e-n-tab-title {
    color: #7A786B !important;
}

.alea-tabs .e-n-tab-title:hover,
body .alea-btn:hover,
body a.alea-btn:hover,
body button.alea-btn:hover,
body .alea-btn:focus,
body a.alea-btn:focus,
body button.alea-btn:focus {
    background: #076283 !important;
    color: #fff !important;
}

.alea-tabs .e-n-tab-title[aria-selected="true"] {
    background: #777667 !important;
    color: #fff !important;
}

.alea-tabs .e-n-tabs-heading {
    margin-bottom: 65px;
}

.alea-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 23px;
}

.alea-btn svg {
    display: block;
    height: 18px;
}

.alea-jobs-no-results {
    display: none;
}

.alea-jobs-no-results .alea-btn {
    margin: auto;
}

.job-contact-box {
    position: absolute;
    left: -25px;
    bottom: -10px;
    padding: 10px 12px;
    border-radius: 2px;
    color: #fff;
    font-weight: 300;
    line-height: 1.35;
    background-color: #076283;
    opacity: 0;
    animation: popIn 400ms ease-out forwards 5000ms;
}

.job-contact-box a {
    color: inherit !important;
    text-decoration: underline !important;
}

.job-contact-box.job-contact-box--mobile {
    animation: none;
    opacity: 1;
    position: relative;
    left: auto;
    bottom: auto;
    padding: 20px 7%;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    60% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.job-contact-box > *:first-child {
    margin-top: 0;
}

.job-contact-box > *:last-child {
    margin-bottom: 0;
}

.alea-team-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    overflow: hidden;
}

.alea-team-slider__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 7%;
    scrollbar-width: none;
}

.alea-team-slider__inner::-webkit-scrollbar {
    display: none;
}

.alea-team-slider__inner > * {
    flex-shrink: 0;
    width: 320px;
}

*[data-team-title-logo] {
    display: none;
    width: auto;
    height: 64px !important;
}

.elementor-heading-title {
    hyphens: auto;
}

.custom-scrollbar-container {
    margin-top: 10px;
    margin-inline: auto;
    max-width: 896px;
    padding: 20px;
}

.custom-scrollbar-track {
    width: 100%;
    height: 7px;
    background: #F1F0F080;
    position: relative;
    border-radius: 4px;
}

.custom-scrollbar-thumb {
    height: 100%;
    background: #7A786B;
    min-width: 7px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 4px;
    cursor: pointer;
}


@media (max-width: 768px) {
    .alea-radio-button-group, .alea-radio-card-group {
        display: flex;
        overflow: auto;
        margin-inline: -20px;
        padding: 10px 20px;
        gap: 14px;
        flex-wrap: nowrap;
    }

    .alea-radio-card-group > * {
        flex-shrink: 0;
        width: 260px;
    }

    .alea-radio-button > div {
        white-space: pre;
    }

    #alea-job-results a[data-type] svg {
        display: none;
    }

    .alea-team-slider {
        margin: 0 -20px;
    }

    .alea-radio-card > div {
        padding: 10px
    }

    *[data-team-title] {
        display: none;
    }

    *[data-team-title-logo] {
        display: block;
    }

    .alea-btn--back {
        display: none !important;
    }

    .elementor-widget-n-tabs.alea-tabs .e-n-tab-title {
        background-color: transparent !important;
        color: inherit !important;
        text-align: left !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .elementor-widget-n-tabs.alea-tabs .e-n-tab-title .e-n-tab-title-text {
        flex-grow: 1;
        font-family: 'Roboto';
        font-size: 24px !important;
        font-weight: 300;
    }

    .elementor-widget-n-tabs.alea-tabs .e-n-tab-title::after {
        content: '';
        display: block;
        width: 20px;
        height: 20px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        transform: rotate(90deg);
        transition: transform 180ms;
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNSAyMSIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTEgMTkuMTYwNEwxMyAxMi4yMzIxQzE0LjMzMzMgMTEuNDYyMyAxNC4zMzMzIDkuNTM3ODUgMTMgOC43NjgwNUwxIDEuODM5ODQiIHN0cm9rZT0iIzdBNzg2QiIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz48L3N2Zz4=");
    }

    .elementor-widget-n-tabs.alea-tabs .e-n-tab-title[aria-selected="true"]::after {
        transform: rotate(270deg);
    }
}