<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('/css/plugins/easy-autocomplete.min.css');

.mr_search {
    /* position: absolute; */
    margin-left: 0.5em;
    right: clamp(1rem, 2vw, 100px);
    width: 50%;
    max-width: 17em;
    font-size: clamp(1rem, 1.3vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#mr_search_form {
    display: flex;
    width: 0;
    width: 100%;
    position: relative;
    /* top: 0; */
    /* right: 58px; */
    transition: .3s all ease;
}

#mr_search {
    border-color: #262626;
    border-radius: 0;
    border-style: solid;
    border-width: 1px;
    border-left-width: 0;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 1px;
    box-shadow: none;
    color: #000000;
    float: none;
    padding: 6px 12px;
    width: 100%;
    background: white;
    font-family: var(--mr-font-main);
    outline: 0;
    font-size: 1.2rem;
    padding: .25rem;
    opacity: 0;
    transition: .2s all ease;
    opacity: 1;
}

.mr-search-toggle {
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: center; */
    width: 2em;
    height: 2em;
    position: absolute;
    left: 0;
    background: transparent;
    border: 0;
    font-size: 1em;
    outline: none !important;
}

.mr-search-toggle:before {
    content: '\f002';
    transition: .3s all ease;
    -webkit-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    font-family: "FontAwesome";
    font-weight: 900;
    color: #060808;
}

.mr-search-toggle:before {
    font-size: 1em;
    width: auto;
    height: auto;
    text-align: center;
    position: relative;
    line-height: 2.1;
}

.mr-search-toggle:before,
.mr-search-toggle:after {
    top: auto;
    left: auto;
    display: block;
}

.mr-search-toggle:after {
    content: '\f00d';
    transition: .3s all ease;
    -webkit-transform: scale(0) rotate(-90deg);
    transform: scale(0) rotate(-90deg);
    font-family: "FontAwesome";
    font-weight: 900;
    color: #dda063;
}

.mr-search-toggle,
.mr-search-toggle:before,
.mr-search-toggle:after {
    text-align: center;
    width: 1.6em;
    height: 2em;
}

input#mr-search-input {
    border: 0;
    border-radius: 0;
    border-bottom: 3px solid #379cd6;
    font-size: 1em;
    padding-left: calc(1.5em + .75rem);
    background: #ededed;
}

.search-cover {
    position: absolute;
    right: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    display: block;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 9999999999;
    /* display: none; */
    opacity: 0;
}

.searching .search-cover {
    display: none;
}

.search_results_section h3 a {
    color: var(--mr-color-primary);
    text-decoration: none;
    margin-right: 1rem;
}

.search_results_section h3 {
    border-bottom: 3px solid var(--mr-color-primary);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    font-size: 1.75rem;
    text-transform: unset;
    color: rgb(0 0 0);
    font-weight: 900;
    text-transform: uppercase;
}

.search_result_img {
    width: 9.4em;
    min-width: 250px;
    max-width: 320px;
    height: 7.4em;
    overflow: hidden;
    position: relative;
    margin-right: 1rem;
    width: calc(100% - 1rem);
    flex-grow: 1;
}

.search_result_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}



.search_result_img img[src*="png"] {
    object-fit: contain;
}

.search_results_section_showall {
    display: flex;
    align-items: center;
}

.search_results_section_showall::before,
.search_results_section_showall::after {
    content: '';
    display: block;
    height: 1px;
    background: #bebdbd;
    flex-grow: 1;
}


.search_results_section_showall span {
    cursor: pointer;
    background: #dedede;
    padding: 0 2em;
    color: #000000;
    font-family: var(--mr-font-main);
    border-radius: 2em;
}

.search_results_section a:nth-of-type(n + 4) {
    display: none;
}

.search_heading&gt;h1 {
    margin-bottom: .2rem !important;
}

.search_subheading {
    margin-bottom: 2rem;
}

.search_results_section {
    margin-bottom: 3rem;
}

button#mr_search_submit {
    position: absolute;
    right: 0;
    background: transparent;
    height: calc(100% - 1px);
    border: 0;
    outline: 0;
    color: grey;
    padding: 0.1rem 0.6rem;
    font-size: 1rem;
    font-weight: 900;
    width: 3rem;
    top: 0;
}

.is_stuck button#mr_search_submit {
    background: white;
}

.input_line {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: .2rem;
    background: red;
    width: 0%;
    display: block;
    transition: 0.6s all ease;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    box-shadow: 0 0 0.5rem red;
}

.input_line.active {
    width: 100%;
}

button#mr_search_submit:hover {
    color: var(--mr-color-accent);
    /* text-shadow: 0 0 1rem red; */
}

.search_result_link:hover h2 {
    color: var(--mr-color-accent);
}

.search_results_section_showall:hover span {
    background: var(--mr-color-accent);
}

.autocomplete_img img {
    max-width: 100%;
    width: 6rem;
    /* min-width: 6rem; */
    height: 5rem;
    object-fit: contain;
    object-position: center;
}

.autocomplete_img {
    margin-right: 0.5rem;
    max-width: 6rem;
    width: 6rem;
}

.autocomplete_wrapper {
    display: flex !important;
}

.autocomplete_details {
    width: 100%;
}

.searching #mr_search_form {
    width: 100%;
}

.searching #mr_search {
    opacity: 1;
    transition: .3s all .1s ease;
}

.images_icon::before {
    content: '\f03e';
    font-family: var(--mr-fontawesome);
    font-weight: 900;
}

.image_results_swiper {
    height: auto;
}

.image_results_swiper .swiper-slide {
    max-width: 15rem;
}

.swiper-slide.gallery_link {
    height: auto;
    background: transparent;
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide.gallery_link a i {
    background-color: var(--mr-color-accent);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
}

.swiper-slide.gallery_link a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.swiper-slide.gallery_link a span {
    text-decoration: underline;
    margin-top: .3rem;
    font-size: 1.1rem;
    text-decoration: none;
}

.search_results_section.image_results {
    position: relative;
}

.image_results .swiper-button-next,
.image_results .swiper-button-prev {
    background: #ededed;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    box-shadow: 0rem 0.2rem 0.4rem #00000054;
}

.image_results .swiper-button-prev,
.image_results .swiper-rtl .swiper-button-next {
    left: -1.5rem;
    right: auto
}

.image_results .swiper-button-prev:after,
.image_results .swiper-rtl .swiper-button-next:after {
    content: 'prev'
}

.image_results .swiper-button-next,
.image_results .swiper-rtl .swiper-button-prev {
    right: -1.5rem;
    left: auto
}

.image_results .swiper-button-next:after,
.image_results .swiper-rtl .swiper-button-prev:after {
    content: 'next'
}

.image_results_wrapper {
    position: relative;
    height: auto !important;
}

.image_results .swiper-button-next.swiper-button-disabled,
.image_results .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.image_results .swiper-button-next:after,
.image_results .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 1rem;
    text-transform: none !important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1
}
.jobs_icon::before {
    content: '\f0f2';
    font-family: var(--mr-fontawesome);
    font-weight: 900;
}
.result_career_details {
    color: #626262;
}.career_competition_number {
    color: black;
}
@media (max-width: 1700px) and (min-width: 1575px) {
    header.is_stuck.searching .mr_search {
        position: absolute;
        width: calc(100% - 4vw);
        max-width: none;
    }

    header.is_stuck.searching .mr-navbar-upper_right,
    header.is_stuck.searching .mr-navbar-upper {

        left: 0;
    }

    header.is_stuck.searching .mr-navbar-upper .list-inline {
        display: none
    }
}


@media (max-width: 1574px) {
    header.is_stuck.searching .search-cover {
        display: block;
    }

    header.is_stuck #mr_search {
        width: 0;
        opacity: 0;
    }

    header.is_stuck #mr_search_form {
        width: 3rem
    }

    header.is_stuck.searching #mr_search_form {
        width: 100%
    }

    header.is_stuck .mr-navbar-upper .list-inline {
        flex-grow: 1
    }

    header.is_stuck .mr_search {
        width: 3rem;
    }

    header.is_stuck .mr-navbar-upper {
        width: fit-content
    }

    header.is_stuck ul.level-0.mr-navbar-nav {
        width: 100%;
    }

    header.is_stuck.searching .mr_search {
        position: absolute;
        width: calc(100% - 48px);
        max-width: none;
        min-height: 2rem;
        /* padding: 1rem !important; */
        /* background: var(--mr-color-primary); */
        /* box-shadow: 0 10px 10px #00000066; */
    }

    header.is_stuck.searching .mr-navbar-upper_right,
    header.is_stuck.searching .mr-navbar-upper {

        left: 0;

        width: 100%;

        position: absolute;

    }

    header.is_stuck.searching .mr-navbar-upper .list-inline {
        display: none
    }

    header.is_stuck.searching #mr_search {
        width: 100%;
        opacity: 1;
    }
}

@media (max-width: 991px) {
    button#mr_search_submit {
        position: absolute;
        right: 0;
        background: transparent;
        height: calc(100% - 1px);
        border: 0;
        outline: 0;
        color: var(--mr-color-accent);
        padding: 0.1rem 0.6rem;
        font-size: 1rem;
        font-weight: 900;
        width: 3rem;
    }

    #mr_search_form {
        display: flex;
        width: 0;
        width: 100%;
        position: fixed;
        top: 0;
        right: 58px;
        transition: .3s all ease;
    }

    header.is_stuck.searching .mr-navbar-upper .list-inline {
        display: block;
    }

    .navigation_extra_toggle {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 99999999999;
    }

    .mr-navbar-upper {
        display: block;
    }

    .navigation_extra_toggle::before {
        content: '';
    }

    .mr_search {
        position: fixed !important;
        top: 0;
        right: 58px;
        left: auto;
        width: 0;
        height: 58px;
        display: flex;
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        /* align-self: center; */
        justify-content: flex-end;
        z-index: 18;
        font-size: 1em;
        isolation: isolate;
        box-shadow: none !important;
    }

    .mr_search #mr_search_submit {
        position: fixed;
        right: 58px;
        top: 0;
        background: rgba(0, 0, 0, 0) !important;
        border: 0;
        font-size: 1.4em;
        -webkit-transition: .2s all ease;
        -o-transition: .2s all ease;
        transition: .2s all ease;
        -webkit-transform: translate(0, 0%);
        padding-top: 0.2em;
        outline: none;
        font-size: 1.2rem;
        z-index: 999999999;
        display: block;
        height: 58px;
        width: 58px;
        /* padding: 0; */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #mr_search_form {
        display: block;
        width: calc(100% - 116px) !important;
    }

    #mr_search {
        width: calc(100% - 4px);
        height: 46px;
        margin: 6px;
        /* background: white; */
        font-size: 1.5rem;
        padding: 0;
        left: auto;
        right: 0;
        top: 0;
        position: absolute;
        border-radius: 0;
        transform: none;
        width: 0;
    }

    .searching #mr_search {
        opacity: 1 !important;
        transition: .3s all .1s ease;
        width: calc(100% - 8px) !important;
        padding-left: 0.5rem;
    }

    .search-cover {
        display: block;
        opacity: 0;
        margin: 0;
        border: 0;
        width: 58px;
        height: 58px;
        position: fixed;
        top: 0;
        right: 58px;
        transform: none;
    }

    .searching .search-cover {
        display: none;
    }

    .header_extra {
        display: block;
        position: fixed;
        right: 0;
        height: 58px;
        padding: 0;
        z-index: 999999999;
        /* background: white; */
        width: 0;
        transition: .2s width ease;
    }

    .searching .header_extra {
        display: block;
        position: fixed;
        right: 0;
        height: 58px;
        padding: 0;
        width: calc(100% - 60px);
        transition: .2s width ease;
    }

    .searching .mr_search {
        width: calc(100% - 116px) !important;
        background: white !important;
        max-width: none;
        z-index: 99999999999;
        margin: 0;
    }

    #mr_search::placeholder {
        opacity: 0;
        transition: 0s opacity 0s ease;

    }

    .searching #mr_search {
        color: rgba(0, 0, 0, 0.959);
    }

    #mr_search {
        color: rgba(0, 0, 0, 0);

    }

    .searching #mr_search::placeholder {
        opacity: 1;
        transition: .5s opacity .4s ease;
    }

    .searching .mr-upper-toggle {
        z-index: -1;
        display: none;
    }

    .searching .mr-navbar-brand img {
        opacity: 0;
        transition: .2s opacity ease;
    }

    .input_line {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        margin: 0px 4px;
    }

    .input_line.active {
        width: calc(100% - 4px);
    }

    a.navigation_extra_toggle::before {
        content: '\f142';
        font-family: 'FontAwesome';
        color: var(--mr-color-accent) !important;
    }

    a.navigation_extra_toggle span {
        display: none;
    }

    a.navigation_extra_toggle {
        align-items: center;
        justify-content: center;
        display: flex !important;
        padding: 0 !important;
        width: 60px;
        height: 58px;
        background: white;
        cursor: pointer;
    }

    .navigation_extra.list-inline {
        height: 0
    }

    .navigation_extra.list-inline ul li a {
        padding: 1rem 3rem 1rem 2rem;
        width: 100%;
    }

    .navigation_extra.list-inline ul {
        opacity: 0;
        visibility: collapse;
        height: auto;
        z-index: 9999;
        box-shadow: 0 1rem 1rem #00000040;
        background: white;
        padding: 0;
        right: 0;
        position: fixed;
        top: 58px;
        transition: .3s all ease;
    }

    .navigation_extra.m-show.list-inline ul {
        opacity: 1;
        visibility: visible;
        height: auto;
        z-index: 9999;
        box-shadow: 0 1rem 1rem #00000040;
        border-top: 3px solid grey;
    }

    header ul.navigation_extra li {
        margin: 0;
    }

    header ul.navigation_extra li a::before {
        margin-right: .5rem;
    }

    .image_results .swiper-button-next::after,
    .image_results .swiper-button-prev::after {
        display: none
    }

    .image_results .swiper-button-next,
    .image_results .swiper-button-prev {
        top: 0;
        height: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        background: white;
    }

    .image_results .swiper-button-next,
    .image_results .swiper-rtl .swiper-button-prev {
        background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        right: 0;
    }

    .image_results .swiper-button-prev,
    .image_results .swiper-rtl .swiper-button-next {
        background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
        left: 0;
    }
}</pre></body></html>