/*-----------------*/
/*--- F O N T S ---*/
/*-----------------*/

/*@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*-------------------------------------------*/
/*--- S I T E W I D E   C O N S T A N T S ---*/
/*-------------------------------------------*/

:root {
    /*--- standard colours ---*/
    --black: 0, 0, 0;
    --grey-875: 32, 32, 32;
    --grey-750: 64, 64, 64;
    --grey-625: 96, 96, 96;
    --grey-500: 128, 128, 128;
    --grey-375: 160, 160, 160;
    --grey-250: 192, 192, 192;
    --grey-125: 224, 224, 224;
    --grey-light: 235, 235, 235;
    --white: 255, 255, 255;

    /*--- design specific ---*/
    --mint: 190, 217, 192; /* #bed9c0 */
    --green: 39, 124, 66; /* #277C42 */
    --denim: 47, 65, 82; /* #2f4152 */
    --gold-light: 196, 172, 119; /* #bed9c0 */
    --gold: 166, 132, 49; /* #A68431 */
    --gold-dark: 147, 129, 84; /* #938154 */
    --sun: 246, 193, 87; /* #f6c157 */
    --plum: 116, 45, 87; /* old 65, 35, 53; /* #412335 */
    --blue-light: 171, 181, 191; /* #ACB3BA */
    --blue-dark: 47, 64, 82; /* #2F4052 */
    --red: 200, 0, 0;

    /*--- font sizes ---*/
    /*--xxl: 50rem;*/
    /*--xl: 40rem;*/
    /*--l: 30rem;*/
    /*--m: 24rem;*/
    /*--s: 20rem;*/
    /*--xs: 15rem;*/
    /*--xxs: 12rem;*/

    --xxl: 42rem;
    --xl: 36rem;
    --l: 27rem;
    --m: 22rem;
    --s: 18rem;
    --xs: 15rem;
    --xxs: 12rem;
}


/*-------------------*/
/*--- G L O B A L ---*/
/*-------------------*/

* {
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    /*font-family: "Montserrat", sans-serif;*/
    font-size: var(--s);
    color: rgb(var(--grey-875));
}


/*---------------------*/
/*--- H E L P E R S ---*/
/*---------------------*/

.sr-only {
    position: absolute;
    left: -10000px;
}

.hidden-onload {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/*-----------------------*/
/*--- D E F A U L T S ---*/
/*-----------------------*/

h1, h2, h3, h4 {
    font-size: var(--l);
    font-weight: 600;
}

h2 { font-size: var(--m); }

h3 { font-size: var(--m); }

h4 { font-size: var(--s); }

p, li, ol { font-weight: 300; }

a {
    color: rgb(var(--grey-875));
    text-decoration: none;
}

strong { font-weight: 600; }

hr {
    width: 100%;
    border: none;
    border-top: 2px solid rgb(var(--gold-light));
}

hr.thin{
    border-top-width: 1px;
}


/*---------------------------------------------*/
/*--- F O R M A T E D   T E X T   B L O C K ---*/
/*---------------------------------------------*/

.text h1, .text h2, .text h3, .text h4 {
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.text p {
    line-height: 1.5;
    margin-bottom: 1em;
}

.text p:last-child {
    margin-bottom: 0;
}

.text ul {
    margin-bottom: 1em;
    list-style-position: inside;
}

.text ul li {
    line-height: 1.5;
}

.text strong {
    font-weight: 600;
}

.text a {
    font-weight: 400;
    color: rgb(var(--gold-dark));
}

.text a:hover { text-decoration: underline; }


/*-----------------------------*/
/*--- F O R M   F I E L D S ---*/
/*-----------------------------*/

fieldset {
    border: none;
}

ul.form {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    list-style: none;
    gap: 15rem;
}

ul.form > li {
    position: relative;
    display: flex;
    flex-basis: 100%;
    align-items: center;
    gap: 15rem;
    max-width: 100%;
}

ul.form > li.-block.-no-gap {
    margin-top: 0;
}

ul.form > li.pre-selected {
    padding: 5rem 0;
    color: rgb(var(--white));
    background-color: rgb(var(--gold));
}

ul.form > li p {
    margin: 0;
}

ul.form > li p.-note {
    font-size: var(--xs);
}

ul.form > li.gap {
    margin-top: 15rem;
}

form label { font-weight: 600;}

input + label,
textarea + label {
    position: absolute;
    top: 0.75em;
    left: 0.5em;
    padding: 0.35em 0.5em;
    font-size: var(--s);
    font-weight: 300;
    color: rgba(var(--grey-875), 0.75);
    line-height: 1;
    pointer-events: none;
    transition: 200ms ease-in-out;
    transform-origin: center left;
}

input,
select,
textarea {
    flex: 1;
    min-height: 3em;
    min-width: 3em;
    max-width: 500rem;
    padding: 0.25em 1em 0;
    font-family: 'Poppins', sans-serif;
    font-size: var(--s);
    line-height: 1.5em;
    color: rgb(var(--grey-875));
    border: none;
    border-bottom: 2px solid transparent;
    background-color: rgba(var(--grey-light));
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

input[type=text],
input[type=number],
input[type=email],
input[type=date],
textarea {
    width: 100%;
}

select {
    padding-right: 3em;
    background-image: url(/images/icons/dropdown-arrow.svg);
    background-position: center right;
    background-size: 3em auto;
    background-repeat: no-repeat;
}

textarea {
    padding: 20rem;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-bottom: 2px solid rgb(var(--gold-light));
    outline: none;
}

input.error, textarea.error,
input.touched:invalid,
textarea.touched:invalid {
    background-color: rgba(var(--red), 0.2);
}

input.touched:invalid:focus,
textarea.touched:invalid:focus {
    border-bottom: 2px solid rgb(var(--red));
}

label.checkbox {
    display: flex;
    align-items: center;
    gap: 10rem;
    line-height: 1.3;
}

label.checkbox input { flex: 0; }

label.checkbox input:checked {
    background: url('/images/icons/check.svg') center / 2em no-repeat rgba(var(--grey-light));
}

li.pre-selected label.checkbox input:checked {
    background-color: rgb(var(--gold));
}

label.checkbox.-bold {
    font-weight: 600;
}

label.checkbox.-regular {
    font-weight: 300;
}

input[type=file] { font-size: var(--xs); }

/* auto label/title input fields */
input:focus + label,
textarea:focus + label,
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label {
    left: 1em;
    color: rgb(var(--white));
    background-color: rgb(var(--grey-500));
    transform: translateY(calc(-1.05em - 0.5em)) scale(0.6);
}

input.touched:invalid:focus + label,
textarea.touched:invalid:focus + label,
input.touched:invalid:not(:placeholder-shown) + label,
textarea.touched:invalid:not(:placeholder-shown) + label {
    background-color: rgb(var(--red));
}

input:focus + label,
textarea:focus + label {
    background-color: rgb(var(--gold));
}

/* The switch - the box around the slider */
label.switch div {
    position: relative;
    flex-shrink: 0;
    width: 70rem;
    height: 35rem;
}

/* Hide default HTML checkbox */
label.switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15rem;
    white-space: nowrap;
    cursor: pointer;
}

label.switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
label.switch div span {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(var(--grey-light));
    border-radius: 17.5rem;
    transition: 0.4s;
}

label.switch div span:before {
    position: absolute;
    content: "";
    height: 27rem;
    width: 27rem;
    left: 4rem;
    bottom: 4rem;
    border-radius: 100%;
    background-color: white;
    transition: 0.4s;
}

label.switch input:checked + span {
    background-color: rgb(var(--gold-light));
}


label.switch input:checked + span:before {
    transform: translateX(34rem);
}


/*---------------------*/
/*--- B U T T O N S ---*/
/*---------------------*/

button {
    appearance: none;
    border: none
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 3em;
    padding: 1em;
    flex-direction: column;
    font-size: var(--s);
    line-height: 1;
    text-decoration: none !important;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all ease-in-out .1s;
}

.button:hover {
    text-decoration: none;
    opacity: 0.8;
}

.button strong {
    font-weight: 600;
}

.button.-v1 {
    color: rgb(var(--white));
    background-color: rgb(var(--gold-dark));
    border-color: rgb(var(--gold-dark));
}

.button.-v2 {
    color: rgb(var(--gold-dark));
    background-color: rgb(var(--white));
    border-color: rgb(var(--gold-dark));
}

.button.-v3 { /* blue */
    color: rgb(var(--white));
    background: linear-gradient(90deg, rgb(var(--blue-light)), rgb(var(--blue-dark)) 60%);
    border: none;
}

.button.-v4 { /* gold bordered */
    color: rgb(var(--gold));
    border: 2rem solid rgb(var(--gold));
    background-color: rgb(var(--white));
}

.button.-v4:hover {
    color: rgb(var(--white));
    border: 2rem solid rgb(var(--gold));
    background-color: rgb(var(--gold));
}

.button::before,
.button::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
    background: center left 10rem / 50rem calc(100% - 10rem) no-repeat;
}

.button::after { background-position: center right 10rem; }

.button.-email-closed::before { background-image: url('/images/icons/email-square.svg'); }

.button.-email-open::before { background-image: url('/images/icons/email-square-open.svg'); }

.button.-browse::before { background-image: url('/images/icons/browse.svg'); }

.button.-click::after { background-image: url('/images/icons/click.svg'); }

.button.-v3.-click::after {
    filter: invert(1);
    mix-blend-mode: color-dodge;
}

.button.-small {
    padding: 10rem;
    font-size: var(--s);
}

.button.-icon {
    min-height: 2em;
    padding: 5rem;
}

.button.-round {
    border-radius: 5em;
}

.button.-red { background-color: rgb(var(--red)); }


/*-------------------*/
/*--- D I A L O G ---*/
/*-------------------*/

body.dialog {
    position: relative;
    overflow: hidden;
}

dialog.dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 30rem;
    border: 1px solid rgb(var(--grey-875));
}

dialog.dialog h3 {
    color: rgb(var(--grey-875));
}

dialog.dialog form {
    margin-top: 15rem;
}

dialog.dialog::backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--grey-875), 0.75);
}


/*-----------------------*/
/*--- F L I C K I T Y ---*/
/*-----------------------*/

.flickity-page-dots {
    bottom: -28rem;
}

/*---------------------------*/
/*--- P A G E   A L E R T ---*/
/*---------------------------*/

aside.alert {
    display: flex;
    margin: 30rem auto;
    padding: 30rem;
    align-items: self-start;
    gap: 30rem;
    font-size: var(--s);
    background-color: rgb(var(--green), 0.75);
    border-radius: 10rem;
}

aside.alert.-error {
    background-color: rgb(var(--red), 0.75);
}

aside.alert p {
    margin: 0;
    color: rgb(var(--white));
}

aside.alert p:first-child {
    font-size: var(--xl);
    font-weight: 600;
}

aside.alert p + p {
    max-width: 700rem;
    margin-top: 0.5em;
    line-height: 1.5;
}

aside.alert img {
    width: 100rem;
    filter: brightness(10);
}

aside.alert.-info img { margin: -6rem; }

aside.alert.-error img { margin: -6rem -2rem; }


/*-----------------------------------------------------------------*/
/*--- H E A D E R S ,   F O O T E R S   A N D   S E C T I O N S ---*/
/*-----------------------------------------------------------------*/

header, footer, section { position: relative; }


/*-------------------*/
/*--- H E A D E R ---*/
/*-------------------*/

header {
    display: flex;
    width: 100%;
    height: 80rem;
    justify-content: center;
    background-color: rgb(var(--grey-light));
}

header div {
    display: flex;
    width: 100%;
    max-width: 1540rem;
    padding: 0 30rem;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
}

header div img {
    width: 100%;
    max-width: 215rem;
    margin: 8rem 0 0 10rem;
}

header div nav {
    display: flex;
    height: 100%;
    flex: 1;
    gap: 30rem;
}

header div ul {
    display: flex;
    height: 100%;
    justify-content: space-between;
    list-style: none;
}

header div ul:first-child { flex: 1; }

header div ul li a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0 10rem;
    font-size: var(--xs);
    font-weight: 500;
    line-height: 1.4;
    color: rgb(var(--grey-875));
    align-items: center;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
}

header div ul li a span { line-height: 1.4; }

header div ul li a:hover {
    color: rgb(var(--gold-dark));
    text-decoration: underline;
}

header div ul:first-child li a.active {
    padding: 0 20rem;
    color: rgb(var(--white));
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
}

header div ul:last-child li a {
    color: rgb(var(--gold-dark));
    padding-left: 17rem;
    background: url('/images/icons/phone.svg') center left / auto 13rem no-repeat;
}

header div ul:last-child li:last-child a {
    padding-left: 23rem;
    background-image: url('/images/icons/email.svg');
}


/*-------------------------------*/
/*--- S I D E   S L I D E R S ---*/
/*-------------------------------*/

.side-slider {
    position: fixed;
    top: 100rem;
    right: -100rem;
    z-index: 100;
    width: 100rem;
    height: 100rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    transition: 0.5s right ease-in-out;
    transition-delay: 0s;
}

.side-slider:nth-child(2) { top: 210rem; }

.side-slider.loading {
    transition: 1s right ease-in-out;
    transition-delay: 0.5s;
}

.side-slider div:first-child {
    width: 90rem;
    height: 90rem;
    background-size: 45rem auto;
    background-position: center;
    background-repeat: no-repeat;
    outline-width: 8px;
    outline-style: solid;
    border-radius: 70rem;
    box-shadow: 0rem 0rem 1rem rgb(var(--black));
    z-index: 100;
    transition: 0.2s ease-in-out;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(0.95);
        outline-width: 8rem;
    }
    50% {
        transform: scale(1);
        outline-width: 4rem;
    }
}

.side-slider.show { right: -10rem; }

.side-slider:not(.loading):hover { right: 350rem; }

.side-slider:not(.loading):hover button { filter: brightness(1.1); }

.side-slider .text {
    position: absolute;
    top: 10rem;
    left: 50rem;
    width: 400rem;
    height: 80rem;
    align-content: center;
    padding: 0 10rem 0 60rem;
    font-size: var(--xs);
    line-height: 1.4;
    text-align: center;
    background-color: rgb(var(--grey-light));
    outline: 2px solid rgba(var(--grey-250), 0.5);
    opacity: 0;
    transition: 0.5s all ease-in-out;
}

.side-slider div strong {
    display: block;
    line-height: inherit;
    text-transform: uppercase;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.side-slider:not(.loading):hover div {
    opacity: 1;
}

/*--- dja slider ---*/
#dja-slider div:first-child {
    background-image: url('/images/icons/notification.svg');
    background-color: rgb(var(--sun));
    outline-color: rgba(var(--sun), 0.5);
}

#dja-slider.dja-toggle div:first-child {
    background-color: rgb(var(--grey-250));
    outline-color: rgba(var(--grey-250), 0.5);
}

#dja-slider.dja-toggle.-on div:first-child {
    background-image: url(/images/icons/notification-on.svg);
    background-color: rgb(var(--plum));
    outline-color: rgba(var(--plum), 0.5);
}

#dja-slider.-on .text.-on,
#dja-slider:not(.-on) .text.-off {
    display: block;
}

#dja-slider:not(.-on) .text.-on,
#dja-slider.-on .text.-off {
    display: none;
}

/*--- uyja slider ---*/
#uyja-slider div:first-child {
    background-image: url('/images/icons/upload.svg');
    background-color: rgb(var(--mint));
    outline-color: rgba(var(--mint), 0.5);
}


/*---------------*/
/*--- M A I N ---*/
/*---------------*/

main {
    min-height: 500rem;
    max-width: 1540rem;
    margin: 0 auto;
    padding: 0 30rem;
}

/*--- page specific (home) ---*/
#home h1 {
    display: block;
    width: 100%;
    padding: 10rem;
    margin: 30rem auto;
    font-family: 'Poppins', sans-serif;
    font-size: var(--l);
    font-weight: 500;
    color: rgb(var(--white));
    line-height: 1.5;
    text-align: center;
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
    border-radius: 10rem;
}

#home .home {
    display: flex;
    padding: 0 30rem;
    gap: 30rem;
}

#home .home > div {
    flex-basis: 37.5%;
}

#home .home > ul {
    flex-basis: 25%;
}

#home .home .button{
    text-align: left;
    width: 100%;
    align-items: flex-start;
    min-height: 180rem;
    padding: 30rem 60rem;
    font-size: var(--xl);
    background-color: rgb(var(--sun));
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
    border-radius: 10rem;
    border: 1px solid rgb(var(--grey-250));
}

#home .home .right .button {
    background-color: rgb(var(--mint));
}

#home .home .left .button.-small {
    background-image: url(/images/featured-yellow.svg);
}

#home .home .right .button.-small {
    background-image: url(/images/featured-green.svg);
}

#home .home .button.-large p:first-child {
    font-weight: 700;
}

#home .home .button.-large p:nth-child(2) {
    padding-bottom: 0.5em;
    font-size: 0.85em;
    text-decoration: underline;
}

#home .home .button.-large p:nth-child(3),
#home .home .button.-large p:nth-child(4) {
    font-size: 0.6em;
    font-weight: 300;
}

#home .home .button.-large:hover {
    transform: scale(1.05);
    opacity: 1;
}

#home .home div ul {
    display: flex;
    margin-top: 30rem;
    flex-wrap: wrap;
    list-style: none;
    gap: 2px;
    border: 1px solid rgb(var(--grey-250));
    border-radius: 10rem;
}

#home .home div ul li {
    flex: 1 1 49%;

}

#home .home .button.-small {
    height: 100%;
    min-height: 75rem;
    padding: 15rem 30rem;
    align-items: center;
    font-size: var(--s);
    font-weight: 400;
    line-height: 1.25;
    text-align: center;
    background-color: rgb(var(--sun), 0.5);
    border: none;
    border-radius: 0;
}

#home .home .right .button.-small {
    background-color: rgb(var(--mint), 0.5);
}

#home .home iframe {
    width: 100%;
    margin-top: 30rem;
    aspect-ratio: 1.77;
    border-radius: 10rem;
    overflow: hidden;
}

#home .home > ul {
    display: flex;
    flex-direction: column;
    gap: 15rem;
    list-style: none;
}

#home .home ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--xl);
    color: rgb(var(--grey-750));
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

#home .home > ul li span {
    margin-top: 5rem;
    padding-bottom: 15rem;
    display: block;
    font-size: 1.6em;
    font-weight: 700;
    color: rgb(var(--gold-dark));
    border-bottom: 1px solid rgb(var(--gold-dark));
}

#home .home > ul li:last-of-type span {
    padding-bottom: 0;
    border: none;
}

#home .home > ul li span.mint {
    color: rgb(var(--mint));
    border-bottom: 1px solid rgb(var(--mint));
}

#home .home > ul li span.sun {
    color: rgb(var(--sun));
    border-bottom: 1px solid rgb(var(--sun));
}

#home .home > ul li a {
    line-height: inherit;
}

#home .home > ul li a:hover {
    text-decoration: underline;
}

#home #banners {
    margin-top: 30rem;
}

/*---------------------------*/
/*--- B A S I C   P A G E ---*/
/*---------------------------*/

.basic-page {
    width: 100%;
    margin: 40rem auto;
    padding: 30rem;
    border: 1px solid rgb(var(--grey-250));
    border-radius: 10rem;
}

.basic-page img {
    max-width: 600rem;
    width: auto;
}

.basic-page iframe{
    width: 100%;
    max-width: 100%;
}


/*-----------------------------*/
/*--- F I L T E R S   B A R ---*/
/*-----------------------------*/

.filters {
    display: flex;
    width: 100%;
    height: 65rem;
    margin: 30rem auto 0;
    padding: 10rem;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
}

.filters.-bottom {
    justify-content: center;
    border-radius: 10rem;
}

.filters.-grey {
    background: linear-gradient(90deg, rgb(var(--grey-375)), rgb(var(--grey-500)) 60%);
}

.filters fieldset {
    display: flex;
    min-width: 250rem;
    align-items: center;
    justify-content: flex-start;
    gap: 10rem;
    margin-top: 0;
    border: 0;
}

.filters fieldset select {
    font-size: var(--xs);
    line-height: 16rem;
}

.filters fieldset select,
.filters fieldset a {
    color: rgb(var(--grey-875));
    border: none;
    background-color: rgba(var(--grey-125), 0.8);
}

.filters fieldset a {
    display: flex;
    height: 36rem;
    min-width: 22rem;
    padding: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--l);
    color: rgb(var(--black));
    border-radius: 4rem;
    opacity: 0.25;
    text-decoration: none;
}

.filters fieldset a[href] {
    opacity: 1;
}

.filters h1 {
    width: 100%;
    margin: 0 30rem;
    font-family: 'Poppins', sans-serif;
    font-size: var(--l);
    font-weight: 500;
    color: rgb(var(--white));
    line-height: 1.5;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.filters h1 span{
    color: rgb(var(--sun));
}

.filters h1 strong {
    font-weight: 600;
}

/*--- job job without category ---*/
.job-list-no-categories .filters {
    margin-bottom: 30rem;
    border-radius: 10rem;
}


/*-----------------------------*/
/*--- B R E A D C R U M B S ---*/
/*-----------------------------*/

#breadcrumbs {
    display: flex;
    position: relative;
    width: 100%;
    height: 45rem;
    margin: 4rem auto 0 auto;
    font-family: 'Poppins', sans-serif;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    overflow: hidden;
}

#breadcrumbs li:not(:nth-of-type(even)) {
    position: relative;
    flex: 1 1 33%;
    transition: all .4s ease-in-out;
    overflow: hidden;
}

#breadcrumbs li:nth-of-type(even) {
    height: 60rem;
}

#breadcrumbs li:nth-of-type(even):not(:first-of-type) {
    height: 60rem;
    margin-left: -22rem;
}

#breadcrumbs li:first-of-type {
    width: 100%;
    max-width: 150rem;
}

#breadcrumbs li a {
    display: flex;
    position: relative;
    height: 45rem;
    font-size: var(--s);
    color: rgb(var(--grey-875));
    align-items: center;
    justify-content: center;
    padding-left: 19rem;
    text-decoration: none;
    background-color: rgb(var(--grey-125));
    transition: all .4s ease-in-out;
    cursor: default;
}

#breadcrumbs li a span {
    max-width: 100%;
    padding: 10rem 30rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .4s ease-in-out;
}

#breadcrumbs li:first-of-type a {
    padding-left: 18rem;
}

#breadcrumbs li a {
    z-index: 1;
    transition: all .4s ease-in-out;
}

#breadcrumbs li a[href] {
    color: rgb(var(--grey-875));
    cursor: pointer;
}

#breadcrumbs li a[href]:hover {
    text-decoration: underline;
}

#breadcrumbs li:nth-of-type(even) > div {
    position: relative;
    top: -10rem;
    right: -20rem;
    width: 0;
    height: 0;
    border: 40rem solid transparent;
    border-right-width: 0;
    border-left-width: 34rem;
    border-left-color: rgb(var(--grey-125));
    z-index: 3;
}

#breadcrumbs li.active + li:nth-of-type(even) > div:first-of-type {
    border-left-color: rgb(var(--gold));
}

#breadcrumbs li:nth-of-type(even) > div:last-of-type {
    top: -90rem;
    right: -25rem;
    border-left-color: rgb(var(--white));
    z-index: 2;
}

#breadcrumbs li:first-of-type a {
    border-bottom-left-radius: 10rem;
}

#breadcrumbs li:last-of-type a {
    border-bottom-right-radius: 10rem;
}

#breadcrumbs li.active a {
    color: rgb(var(--white));
    background-color: rgb(var(--gold));
}

#breadcrumbs li a.active::after {
    border-left-color: rgb(var(--gold));
}

#breadcrumbs li.expanded,
#breadcrumbs li.expanded a span {
    overflow: visible;
}


/*-----------------------------------------------------*/
/*--- J O B   N O   L O N G E R   A V A I L A B L E ---*/
/*-----------------------------------------------------*/

#job-no-longer-available form {
    margin-top: 30rem;
}


/*-----------------------------------------*/
/*--- N E W S L E T T E R   S I G N U P ---*/
/*-----------------------------------------*/

#newsletter-signup .basic-page {
    display: flex;
    gap: 40rem;
}

#newsletter-signup form {
    margin-top: 30rem;
}

#newsletter-signup .recent-email-updates {
    width: 100%;
    max-width: 33%;
    padding: 40rem;
    border: 2rem solid rgb(var(--gold));
    border-radius: 10rem;
}

#newsletter-signup .recent-email-updates ul {
    padding-left: 1em;
    list-style-position: outside;
}

#newsletter-signup .recent-email-updates li:not(:last-of-type) {
    margin-bottom: 10rem
}


/*-------------------------------------*/
/*--- D A I L Y   J O B   E M A I L ---*/
/*-------------------------------------*/

/*--- signup ---*/
#daily-job-alert-signup #frm-signup {
    max-width: 700rem;
    margin: 30rem 0 75rem;
}

#daily-job-alert-signup .checking {
    width: var(--xl);
    animation: checking 2s linear infinite;
}

@keyframes checking {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

#daily-job-alert-signup .msg {
    display: unset;
    margin: 15rem 0;
}

#daily-job-alert-signup .msg h3,
#daily-job-alert-signup .msg p {
    margin: 0;
}

#daily-job-alert-signup .msg p {
    margin-top: 0.25em;
    line-height: 1.5;
}

#daily-job-alert-signup .msg span {
    white-space: nowrap;
}


/*--- categories ---*/
#daily-job-alert-categories .category {
    position: relative;
}

#daily-job-alert-categories .category h2 {
    margin-top: 30rem;
    padding: 30rem 0 15rem;
    line-height: 1.2;
    border-top: 2px solid rgb(var(--gold));
}

#daily-job-alert-categories .category ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    border-top: 1px solid rgb(var(--grey-250));
}

#daily-job-alert-categories .category ul li {
    width: 25%;
    margin: 0;
    padding: 5rem;
    border-bottom: 1px solid rgb(var(--grey-250));
}

#daily-job-alert-categories .category ul li:nth-child(odd) {
    background-color: rgba(var(--grey-light), 0.25);
}

#daily-job-alert-categories .category label.switch {
    width: 100%;
}

#daily-job-alert-categories .category label.switch > span {
    padding-right: 15rem;
    font-size: var(--xs);
    white-space: nowrap;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
}

#daily-job-alert-categories .category label.switch input:checked + span {
    background-color: rgb(var(--plum));
}

#daily-job-alert-categories .category h2 + .switch > span,
#daily-job-alert-categories .category label.switch.-on > span,
#daily-job-alert-categories .category label.switch > span.recommended {
    font-weight: 600;
}

#daily-job-alert-categories .category label.switch.-on > span {
    color: rgb(var(--plum));
}

#daily-job-alert-categories .category h2 + .switch {
    position: absolute;
    top: 28rem;
    right: 0;
    width: auto;
}


/*--- category/job list ---*/
.dja-text {
    position: relative;
    width: 100%;
    max-width: 1280rem;
    margin: 30rem auto;
    text-align: center;
}

.dja-toggle-all label {
    font-weight: 500;
}

.dja-text .dja-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    border-radius: 10rem;
    transform: translateY(-50%);
}

.dja-text p {
    margin-top: 0.5em;
    line-height: 1.5;
}

.dja-text a {
    text-decoration: underline;
}

.dja-text p img {
    vertical-align: sub;
    filter: invert();
}

/* daily job email */
.button.dja-toggle {
    width: 55rem;
    height: 55rem;
    min-height: 0;
    padding: 0;
    background: url(/images/icons/notification.svg) center / 35rem auto no-repeat;
    background-color: rgb(var(--grey-250));
}

.category-list .category .button.dja-toggle {
    position: absolute;
    top: 6rem;
    right: 6rem;
    width: 45rem;
    height: 45rem;
    border-radius: 10rem;
    border-bottom-left-radius: 30rem;
    border-top-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    background-position: top 3rem right 3rem;
    background-size: 30rem auto;
}

.button.dja-toggle:hover {
    opacity: 0.8;
}

.button.dja-toggle.-on {
    background-image: url(/images/icons/notification-on.svg);
    background-color: rgb(var(--plum));
}


/*-------------------------------*/
/*--- T E S T I M O N I A L S ---*/
/*-------------------------------*/

#reviews h1 {
    margin-top: 40rem;
}

.reviews {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 40rem auto;
    gap: 30rem 20rem;
}

.reviews .review {
    display: flex;
    position: relative;
    padding: 25rem 30rem;
    align-items: flex-start;
    justify-content: space-between;
    flex: 1;
    gap: 20rem;
    border: 1px solid rgb(var(--grey-125));
    border-radius: 10rem;
}

.reviews .review div { flex: 1; }

.reviews .review h2 { font-size: var(--l); }

.reviews .review > img { max-width: 200rem; }

.reviews .review iframe { max-width: 100%; }


/*-------------------------------------*/
/*--- J O B S   B Y   C O M P A N Y ---*/
/*-------------------------------------*/

.jobs-by-company {
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30rem;
}

.jobs-by-company .company-list {
    display: flex;
    position: relative;
    flex: 1 1 65%;
    gap: 30rem;
    flex-direction: row;
    flex-wrap: wrap;
    text-decoration: none;
}

.jobs-by-company .company-list h2 {
    display: inline-flex;
    width: 70rem;
    height: 70rem;
    font-size: var(--m);
    color: rgb(var(--white));
    margin-bottom: 30rem;
    justify-content: center;
    align-items: center;
    background-color: rgb(var(--gold));
}

.jobs-by-company .company-list hr {
    width: 100%;
    height: 3rem;
    margin-bottom: 30rem;
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
}

.jobs-by-company .company-list > div {
    width: 100%;
    padding-top: 30rem;
}

.jobs-by-company .company-list > div:first-child {
    padding: 0;
}

.jobs-by-company .company-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20rem;
    list-style: none;
}

.jobs-by-company .company-list ul li {
    width: calc((100% - 100rem) / 6);
    flex: none;
}

.jobs-by-company .company-list ul li a {
    display: flex;
    padding: 10rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10rem;
    text-align: center;
    border-radius: 10rem;
    border: 2rem solid rgb(var(--gold));
}

.jobs-by-company .company-list ul li a h3 {
    display: -webkit-box;
    width: 100%;
    min-height: 2.5em;
    margin-bottom: 0;
    font-size: var(--xs);
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.jobs-by-company .company-list ul li a div {
    display: flex;
    width: 100rem;
    height: 50rem;
    align-items: center;
}

.jobs-by-company .company-list ul li a img {
    width: 100%;
    max-width: 100rem;
    height: auto;
    max-height: 50rem;
}

.jobs-by-company .company-jump-links {
    position: sticky;
    top: 20rem;
    flex: 1;
}

.jobs-by-company .company-jump-links ul {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    list-style: none;
}

.jobs-by-company .company-jump-links ul li {
    flex: 0 calc((100% - 15rem) / 4);
}

.jobs-by-company .company-jump-links ul li a {
    display: flex;
    width: 100%;
    color: rgb(var(--white));
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background-color: rgb(var(--gold));
}

.jobs-by-company .company-jump-links ul li a:hover {
    text-decoration: none;
    box-shadow: 0 0 0 100vmax inset rgba(var(--black), 0.1);
}


/*---------------------------------*/
/*--- C A T E G O R Y   L I S T ---*/
/*---------------------------------*/

.category-list {
    display: flex;
    width: 100%;
    margin: 30rem auto;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30rem;
}

.category-list .category {
    position: relative;
    display: flex;
    width: calc((100% - 90rem) / 4);
    padding: 30rem;
    font-size: var(--l);
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    text-decoration: none;
    background: url('/images/icons/click.svg') bottom 8rem right 8rem / 60rem auto no-repeat rgba(var(--grey-light), 0.15);
    border: 1px solid rgb(var(--grey-125));
    border-radius: 10rem;
    transition: 0.1s all ease-in-out;
}

.category-list .category:hover {
    transform: scale(1.06);
    background-color: rgba(var(--grey-light), 0.3);
}

.category-list .category h2 {
    margin: 0;
    font-size: var(--m);
    font-weight: 500;
    color: rgb(var(--blue-dark));
    line-height: 1.3;
}

.category-list .category h2 span {
    font-size: var(--xs);
    font-weight: 300;
}

.category-list .category p {
    position: relative;
    width: 100%;
    margin: 45rem 0 0 0;
    font-size: var(--xs);
    font-weight: 300;
    color: rgb(var(--grey-875));
    align-self: flex-end;
}

.category-list .category p::before {
    display: block;
    position: absolute;
    top: -25rem;
    left: 0;
    width: 75%;
    height: 2px;
    content: '';
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
}


/*-----------------------*/
/*--- J O B   L I S T ---*/
/*-----------------------*/

.job-list {
    display: flex;
    width: 100%;
    margin: 30rem 0;
    flex-wrap: wrap;
    gap: 30rem;
}

.job-list .job {
    display: flex;
    position: relative;
    width: 100%;
    padding: 15rem 30rem;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 10rem;
    border: 1px solid rgb(var(--grey-250));
    transition: 0.1s all ease-in-out;
}

.job-list .job:hover,
.job-list .job.highlighted:hover {
    background-color: rgba(var(--grey-light), 0.3);
    transform: scale(1.025);
}

.job-list .job div {
    display: block;
    margin-top: 10rem;
    margin-right: 230rem;
}

.job-list .job h2 {
    position: relative;
    margin: 0 120rem 0 0;
    font-size: var(--m);
    font-weight: 500;
    color: rgb(var(--blue-dark));
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.job-list .job h2::after {
    display: block;
    position: absolute;
    left: 0;
    bottom: -15rem;
    width: 100%;
    height: 2px;
    content: '';
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 60%);
}

.job-list .job ul {
    display: flex;
    margin-bottom: 0;
    font-size: var(--s);
    list-style: none;
}

.job-list .job ul li:not(:first-child)::before {
    padding: 0 10rem;
    content: '-';
}

.job-list .job ul li {
    white-space: nowrap;
}

.job-list .job ul li:nth-child(3) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.job-list .job ul li strong {
    font-weight: 600;
}

.job-list .job img {
    position: absolute;
    top: calc(50% - 10rem);
    right: 30rem;
    width: 100rem;
    max-height: 100rem;
    margin: 10rem 0;
    transform: translateY(-50%);
}

/*--- highlighted job ---*/

.job-list .job.highlighted {
    background: url('/images/featured-yellow.svg') right center / auto 100% no-repeat transparent;
}

.job-list .job.highlighted h2 {
    font-size: var(--l);
    color: rgb(var(--gold));
    margin-right: 230rem;
}

.job-list .job.highlighted h2::after {
    width: 100%;
}

.job-list .job.highlighted p {
    display: -webkit-box;
    margin-top: 5rem;
    margin-bottom: 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.job-list .job.highlighted img {
    width: 200rem;
}

.job-list .job.highlighted img.highlighted {
    width: auto;
    height: calc(100% - 20rem);
    max-width: 150rem;
    max-height: 150rem;
}

/*--- no jobs found ---*/
.job-list .no-jobs {
    text-align: center;
    margin: 0 auto;
}

.job-list .no-jobs h2 {
    margin-bottom: 0.5em;
}


/*---------------------*/
/*--- B A N N E R S ---*/
/*---------------------*/

#banners {
    margin: 60rem 0;
}

#banners .job-list {
    margin: 30rem 0;
}

#banners .banner-list {
    display: flex;
    margin: 30rem 0;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30rem;
}

#banners .banner-list .banner {
    position: relative;
    width: calc((100% - 30rem) / 2);
    border: 1px solid rgb(var(--grey-125));
    border-radius: 10rem;
    overflow: hidden;
    transition: 0.1s all ease-in-out;
}

#banners .banner-list .banner:hover {
    opacity: 0.8;
}

#banners .banner-list .banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*-----------------------------*/
/*--- J O B   D E T A I L S ---*/
/*-----------------------------*/

.expired {
    margin: 30rem 0;
    font-size: var(--l);
    color: rgb(var(--red));
    font-weight: 500;
}

.job-details {
    display: flex;
    position: relative;
    width: 100%;
    max-width: 1480rem;
    margin: 30rem auto;
    padding: 30rem;
    align-items: stretch;
    justify-content: space-between;
    column-gap: 30rem;
    flex-wrap: wrap;
    border: 1px solid rgb(var(--grey-250));
    border-radius: 10rem;
}

.job-details h2 {
    position: relative;
    font-size: var(--l);
    color: rgb(var(--blue-dark));
    flex: 1 100%;
}

.job-details hr { margin: 30rem 0; }

.job-details > div { flex: 1; }

.job-details .description {
    font-weight: 300;
    line-height: 1.5;
}

.job-details li::marker { content: '• '; }

.job-details aside li,
.job-details aside p,
.job-details aside address {
    margin: 0;
    color: rgb(var(--grey-875));
    line-height: 1.4;
    font-style: normal;
}

.job-details address { margin-bottom: 1em; }

.job-details aside p {
    margin-top: 0.25em;
}

.job-details aside p:first-of-type,
.job-details aside p.-gap {
    margin-top: 1em;
}

.job-details h3 { font-size: var(--s); }

.job-details h3,
.job-details p > strong {
    color: rgb(var(--blue-dark));
}

.job-details p + h3 { margin-bottom: 0.1em; }

.job-details a.apply-now {
    display: block;
    max-width: 225rem;
    margin-top: 40rem;
    box-shadow: 0 0 4rem 2rem rgba(var(--black), 0.4);
    border-radius: 9999px;
    transition: 0.1s all ease-in-out;
}

.job-details a.apply-now:hover {
    opacity: 0.8;
}

.job-details aside {
    width: 100%;
    max-width: 450rem;
    padding: 0 30rem;
    align-self: flex-start;

}

.job-details aside .button {
    width: calc(100% + 30rem);
    margin-top: 15rem;
    margin-left: -15rem;
}

.job-details aside .button:first-of-type {
    margin-top: 30rem;
}

.job-details aside img {
    position: relative;
    width: 100%;
    max-width: 200rem;
}


/*-------------------------------------*/
/*--- J O B   C T A   B U T T O N S ---*/
/*-------------------------------------*/

.job-cta-buttons {
    display: flex;
    position: relative;
    margin: 0 auto 80rem auto;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 45rem;
}

.job-cta-buttons a {
    width: 100%;
}


/*-------------------------*/
/*--- A P P L Y   N O W ---*/
/*-------------------------*/

#apply-now .form {
    margin-top: 40rem;
}

#apply-now .form textarea {
    max-width: unset;
}

#apply-now .cv-files {
    flex-wrap: wrap;
}

#apply-now .cv-files ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 10rem;
}

#apply-now .cv-files li {
    flex-basis: 100%;
    list-style: inside disc;
}

#apply-now .cv-files li div {
    display: inline-flex;
    align-items: center;
    gap: 10rem;
}

#apply-now .cv-files li button img {
    filter: invert();
}

#apply-now .cv-files .cv-file {
    position: absolute;
    left: -10000px;
    top: -10000px;
    width: 0;
    height: 0;
}

#apply-now .cv-files button + span {
    font-size: var(--xs);
    font-style: italic;
}


/*---------------------------------------------------*/
/*--- U P L O A D   Y O U R   J O B   A D V E R T ---*/
/*---------------------------------------------------*/

#upload-your-job-advert fieldset {
    margin-top: 50rem;
}

#upload-your-job-advert .form textarea {
    max-width: 1000rem;
}

#upload-your-job-advert .packages th {
    font-size: var(--m);
    color: #FFF;
    line-height: 1.5;
    border-right: 2rem solid rgb(var(--gold-light));
    border-top: 2rem solid rgb(var(--gold));
    border-bottom: 2rem solid rgb(var(--gold));
    cursor: default;
}

#upload-your-job-advert .packages th:first-of-type,
#upload-your-job-advert .packages th:last-of-type {
    border-right: 2rem solid rgb(var(--gold));
}

#upload-your-job-advert .packages td {
    padding: 10rem;
    font-weight: bold;
    border-right: 2rem solid rgb(var(--gold));
    border-bottom: 2rem solid rgb(var(--gold));
    cursor: default;
}

#upload-your-job-advert .packages th:first-of-type {
    border-top-left-radius: 10rem;
}

#upload-your-job-advert .packages th:last-of-type {
    border-top-right-radius: 10rem;
}

#upload-your-job-advert .packages th:first-child,
#upload-your-job-advert .packages td:first-child {
    border-left: 2rem solid rgb(var(--gold));
}

#upload-your-job-advert .packages tr:last-of-type td:first-of-type {
    border-bottom-left-radius: 10rem;
}

#upload-your-job-advert .packages tr:last-of-type td:last-of-type {
    border-bottom-right-radius: 10rem;
}

#upload-your-job-advert .packages th.basic-col {
    padding: 20rem 10rem;
    background-color: rgb(var(--gold));
}

#upload-your-job-advert .packages td.basic-col.selected {
    background-color: rgb(var(--gold), 0.2);
}

#upload-your-job-advert .packages th.level1-col {
    padding: 20rem 10rem;
    background-color: rgb(var(--gold));
}

#upload-your-job-advert .packages td.level1-col.selected {
    background-color: rgb(var(--gold), 0.2);
}

#upload-your-job-advert .packages th.level2-col {
    padding: 20rem 10rem;
    background-color: rgb(var(--gold));
}

#upload-your-job-advert .packages td.level2-col.selected {
    background-color: rgb(var(--gold), 0.2);
}

#upload-your-job-advert .packages th.level3-col {
    padding: 20rem 10rem;
    background-color: rgb(var(--gold));
}

#upload-your-job-advert .packages td.level3-col.selected {
    background-color: rgb(var(--gold), 0.2);
}

#upload-your-job-advert .packages .checkbox {
    justify-content: center;
}

#upload-your-job-advert .packages td.selected .checkbox input {
    background-color: rgb(var(--white));
}

#upload-your-job-advert #total {
    margin: 50rem 0 calc(50rem - 1em);
}

#upload-your-job-advert #total .total {
    font-size: var(--m);
    font-weight: 600;
}


/*-----------------------------*/
/*--- E R R O R   P A G E S ---*/
/*-----------------------------*/

#errors main {
    width: 100%;
    max-width: 1480rem;
    margin: 40rem auto;
    text-align: center;
}

#errors main section { text-align: left; }

#errors main img {
    max-width: 500rem;
}

#errors main a + h1 {
    margin-top: 50rem;
}

/*-------------------*/
/*--- F O O T E R ---*/
/*-------------------*/

footer {
    width: 100%;
    margin-top: 60rem;
    color: rgb(var(--white));
    background: linear-gradient(90deg, rgb(var(--gold-light)), rgb(var(--gold)) 100%);
}

footer > div {
    width: 100%;
    max-width: 1540rem;
    margin: 0 auto;
    padding: 45rem 30rem;
}

footer a { color: rgb(var(--white)) !important; }

footer h5 {
    font-size: var(--m);
    font-weight: 400;
    flex: 1 365rem;
    white-space: nowrap;
}

footer hr { border-color: rgb(var(--white)); }

footer p { font-size: var(--s); }

footer .top {
    display: flex;
    align-items: center;
    gap: 12rem;
}

footer .bottom {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60rem;
}

footer .bottom .left { flex-basis: 40%; }

footer address {
    font-size: var(--s);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 0;
    font-style: normal;
}

footer .tel,
footer .email,
footer .email a {
    font-weight: 600;
}

footer .tel { margin-top: 5rem; }

footer .tel a {
    font-size: var(--xl);
    text-decoration: none;
}


footer .info {
    font-size: var(--xs);
}

footer .info span {
    font-weight: 600;
    font-style: italic;
}

footer .info + p {
    font-weight: 600;
}

footer .bottom .left p:last-child {
    margin: 0;
    font-size: var(--xs);
}

footer .bottom .right p {
    font-size: var(--xs);
}

footer .bottom form {
    display: flex;
    position: relative;
    width: 100%;
    height: 50rem;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(var(--white));
}

footer .bottom form input {
    max-width: 100%;
    padding: 10rem 110rem 10rem 68rem;
    font-size: var(--m);
    font-weight: 600;
    border: none;
    background: url('/images/icons/email.svg') 12rem 50% / 34rem 24rem no-repeat;
}

footer .bottom form button {
    position: absolute;
    top: 0;
    right: 0;
    height: calc(100% - 6rem);
    margin: 3rem;
    padding: 0 16rem;
    font-size: var(--s);
    font-weight: 700;
    color: rgb(var(--white));
    border: 0;
    background-color: rgb(var(--grey-375));
    cursor: pointer;
    z-index: 10;
}

footer .bottom ul {
    display: flex;
    font-size: var(--xs);
    align-self: flex-end;
    gap: 5rem;
    list-style: none;
}

footer .bottom .right ul{
    margin-top: 2em;
}

footer .bottom ul li {
    display: flex;
    font-weight: 500;
    list-style: none;
}

footer .bottom ul li:not(:first-of-type)::before {
    content: '|';
    margin-top: -2rem;
    padding-right: 5rem;
}

footer .bottom .left ul li a{
    font-weight: 500;
}


/*---------------*/
/*--- M I S C ---*/
/*---------------*/

.grecaptcha-badge {
    display: none !important;
}


/*---------------------------------*/
/*--- C O O K I E C O N S E N T ---*/
/*---------------------------------*/

#cc-main {
    /** Change font **/
    --cc-font-family: inherit;

    /** Change button primary color to black **/
    --cc-btn-primary-bg: rgb(var(--gold));
    --cc-btn-primary-border-color: rgb(var(--gold));
    --cc-btn-primary-hover-bg: rgba(var(--gold), 0.8);
    --cc-btn-primary-hover-border-color: rgba(var(--gold), 0.8);

    /** Also make toggles the same color as the button **/
    --cc-toggle-on-bg: var(--cc-btn-primary-bg);

    /** Make the buttons a bit rounder **/
    --cc-btn-border-radius: 10px;
}