/**
 * Eina Fonts
 */

@font-face {
    font-family: 'Eina 03 Semi Bold';
    src: url('../fonts/EinaSemiBold/tmpeina03-semibold.otf');
    src: url('../fonts/EinaSemiBold/Eina03W05-SemiBold.woff2') format('woff2'),
    url('../fonts/EinaSemiBold/Eina03W05-SemiBold.woff') format('woff');
}

@font-face {
    font-family: 'Eina 03 Regular';
    src: url('../fonts/EinaRegular/tmpeina03-regular.otf');
    src: url('../fonts/EinaRegular/Eina03W05-Regular.woff2') format('woff2'),
    url('../fonts/EinaRegular/Eina03W05-Regular.woff') format('woff');
}

*, :after, :before {
    -webkit-box-sizing: initial;
    box-sizing: initial;
}

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font: 15px/22px 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    color: #000000;
    margin:0 auto;
    padding:0;
    width: 1px;
    width: 100%;
}
/**
 * Typography.
 */
h1, h1:first-child, h1:last-child {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 35px;
    line-height: 45px;
    color:#000;
}
h2, h2 b {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 26px;
    line-height: 33px;
    margin-top:15px;
    margin-bottom: 0px;
    color:#000;
}

.bg h2, .bg h2 b, .bg p, .bg a {
    color:#000;
}

h3 {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    margin-top:30px;
    margin-bottom: 0px;
    color:#333;
}

a {
    font-family: 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    color: #433894;
    display: inline-block;
    text-decoration: none;
}

b a {
    font-family: inherit;
}

a:hover {
    color: #06494A;
}

img {
    display: block;
}

ul {
    padding-left:20px;
    margin:0;
}
li {
    margin-bottom:15px;
}

b, strong {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    margin-bottom:10px;
}

p, th, td, ul, ol, div {
    font-family: 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    font-style: normal;
    letter-spacing: normal;
    text-decoration: none;
    text-transform: none;
    margin-bottom:0px;
    font-size:15px;
    line-height: 22px;
}

.content p {
   margin-top:20px;
}

.isFirst {
    margin-top:0px;
}

.isLast {
    margin-bottom:0px;
}

article {
    padding-bottom:40px;
}
.content article:nth-child(4) {
    padding-bottom: 0px;
}

/**
 * Layout
 */

#wrapper {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    padding-top:90px;
    padding-bottom:90px;
}

.multicolumn {
    display:table;
    width:100%;
    table-layout: fixed;
}

.multicolumn > * {
    display:table-cell;
    vertical-align: top;
    width:100%;
}
.width-100 {
    width:100%;
}
.width-50 {
    width:50%;
}
.separator {
    width:20px;
}


@media screen and (max-width: 736px) {
    .multicolumn > * {
        display:block;
        width:100%;
        clear:both;
        margin-bottom:20px;
    }
    .separator {
        display: none;
    }
}

/**
 * Progress Bar
 */
.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.progress-container {
    width: 100%;
    height: 5px;
    background: #fff;
}

.progress-bar {
    height: 5px;
    background: #433894;
    width: 0%;
}

/**
 * Header
 */

#header {
    background: #fff;
    overflow: auto;
    padding-top:13px;
    padding-bottom:13px;
    position: fixed;
    width:100%;
    max-width:980px;
    top:0;
    z-index: 100;
}
#header .logo {
    float:left;
    margin-left:16px;
    margin-top: 10px;
}
#header .logo img {
    display: block;
    width:110px;
    height:auto;
}
#header .apply {
    float:right;
    margin-right:16px;
}
#header .sticky {
    margin-left:40px;
    float:left;
    width:calc(100% - 450px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom:0px;
    margin-top:10px;
    text-align: left;
    opacity: 0;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
#header.sticky .sticky {
    opacity: 1;
}

/**
 * Content
 */
.banner {
    width:100%;
    height: auto;
}
.content {
    width:100%;
    padding:40px 16px;
    box-sizing: border-box;
}

.content.isFirst {
    padding-bottom: 0px;
}

ul {
    margin:0px;
    padding-left: 0px;
    list-style: none;
}
ul li {
    padding:0px 0px 0px 26px;
    margin-bottom: 10px;
    position: relative;
}
article ul li:before {
    width: 20px;
    height: 20px;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background: url("../images/icons/bullet.png");
    background-size: cover;
}
article ul li:last-child {
    margin-bottom: 0px;
}
.mobile {
    display:none!important;
}
.bg {
    background:#ECEBF4;
    border-radius: 8px;
}
.bg a {
    padding-right:30px;
    margin-top:20px;
    color:#433894;
}
.bg a:hover {
    color:#433894;
    text-decoration: underline;
}
.bg .awards a {
    padding-right:0px;
    margin-top:0px;
    background: none;
}
.button {
    font: 18px/24px 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    font-weight: 600;
    background:#E30613;
    border:solid 1px #E30613;
    border-radius: 35px;
    color: #ffffff;
    display: block;
    padding: 18px 30px 22px 30px;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    cursor: pointer;
    box-sizing: border-box;
    float: right;
}
a.button {
    padding: 18px 30px 22px 30px;
}
.button:hover, a.button:hover {
    color: #ffffff;
    background-color:#C2221b;
    border-color:#C2221b;
}

/**
 * Meta
 */
.meta {
    overflow: auto;
    margin-bottom:20px;
    margin-top:0px;
    padding-top:0px;
}
.meta li {
    min-width: 32%;
    margin-right: 1%;
    padding-left:0px;
    padding-bottom:20px;
    margin-bottom:0px;
    float:left;
}
.meta .image {
    height: 40px;
    width: 40px;
    float: left;
    margin-right:20px;
    text-align: center;
}
.meta .image img {
    display: inline;
    width:auto;
    height:100%;
}
.meta span {
    color:#433894;
    position: relative;
    top:10px;
}

/**
 * Benefits
 */
.benefits {
    margin:30px 0px;
}
.benefits h3 {
    font-family: "Eina 03 Semi Bold";
}
.benefits h3, .benefits li, .benefits p, .benefits a {
    color:#000;
}
.icon {
    width:140px;
    height:140px;
    background: #fff;
    float:left;
    position: relative;
    margin-right:30px;
    border-radius: 50%;
}
.icon img {
    width:80%;
    height:auto;
    position: absolute;
    top:50%;
    left:50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.icon.heart img {
    margin-top:7px;
}
.data {
    width: calc(100% - 170px);
    float: left;
}
.slick-slide:nth-of-type(5) .icon img {
    width:70%;
    top: 54%;
}
.benefits ul li:before {
    width: 20px;
    height: 20px;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    background: url("../images/icons/bullet-negative.png");
    background-size: cover;
}

/**
 * Contact.
 */
.contact {
    display: flex;
    gap: 40px;
    padding-bottom: 0px;
}
.contact .col {
    width:50%;
    overflow: auto;
}
.contact .col > img {
    width:120px;
    height:120px;
    float:left;
    margin-right:20px;
}
.contact .col > div {
    float:left;
    width: calc(100% - 140px);
}
.contact .col span {
    display: block;
}
.contact .linkedin, .contact .xing {
    margin-top:5px;
    width:24px;
    height:24px;
    background-size: cover;
}
.contact .linkedin {
    background-image: url("../images/icons/linkedin.png");
    margin-right:5px;
}
.contact .xing {
    background-image: url("../images/icons/xing.png");
}

/**
 * Awards.
 */
.awards {
    overflow: auto;
    margin-bottom:-30px;
    margin-top:30px;
}
.awards div {
    padding-left:0px;
    width:50%;
    float:left;
    margin-bottom:30px;
}
.awards img, .awards a {
    float:left;
    margin-right:30px;
}
.awards a {
    width:200px;
    height:auto;
}
.awards a img {
    width:100%;
    height:auto;
    padding:0;
    background: transparent;
    border-radius: 0;
}
.awards img {
    padding:5px;
    background: white;
    float:left;
    margin-right:30px;
    border-radius: 5px;
}
.awards p {
    float:left;
    width:calc(100% - 240px);
    margin-top:0px;
}
.awards strong {
    display: block;
    margin-bottom:0px;
}

/**
 * Follow.
 */
.follow span {
    position: relative;
    top:-7px;
}
.follow a {
    display: inline-block;
    width:24px;
    height:24px;
    background-size: cover;
    margin: 0 5px;
}
.follow a.linkedin {
    background-image: url("../images/icons/linkedin.png");
}
.follow a.facebook {
    background-image: url("../images/icons/facebook.png");
}
.follow a.instagram {
    background-image: url("../images/icons/instagram.png");
}
.follow a.twitter {
    background-image: url("../images/icons/twitter.png");
}
.follow a.tiktok {
    background-image: url("../images/icons/tiktok.png");
}

/**
 * Similar Jobs.
 */
.jobs-list {
    margin-top:32px;
    border-top: solid 1px #e6e6e6;
}
.job {
    border-bottom: solid 1px #e6e6e6;
    width: 100%;
    box-sizing: border-box;
}
.job a {
    font-family: 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    padding: 16px;
    color: #787772;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -ms-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    display: block;
}
.job a:hover {
    color: #000;
    background: #ECEBF4;
}
.job h3 {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    width: 80%;
    margin-bottom: 0px;
    color: #000;
}
.job p {
    font-family: 'Eina 03 Regular', Arial, Helvetica, sans-serif;
    font-size: 18px;
    line-height: 24px;
    position: absolute;
    top: 16px;
    right: 16px;
    margin-left: 20px;
    margin-top: 0;
    color: #000;
}
.job span {
    font-size: 15px;
    line-height: 22px;
    color: #000;
}
/**
 * Teaser Expired
 */
.expired h2 {
    margin-bottom:20px;
    color: #000;
}
.teaser .width-50 {
    vertical-align: top;
    background:white;
    transition: box-shadow 0.15s ease-in-out;
    border:solid 1px #EFE6DC;
}
.card {
    display:block;
    position: relative;
}
.card .visual {
    position: relative;
}
.card img {
    width:100%;
    height:auto;
    display: block;
    opacity: 0.6;
}
.card h2 {
    font-family: 'Eina 03 Semi Bold', Arial, Helvetica, sans-serif;
    color:#433894;
    width:80%;
    position: absolute;
    top:60%;
    left:50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    margin:0px;
}
.card .data {
    padding:25px;
    box-sizing: border-box;
    background: #fff;
    text-align: center;
    position: relative;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    float:none;
    width:100%;
}
.teaser-icon {
    width:45px;
    height:45px;
    background:#433894;
    border-radius: 50%;
    position:absolute;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top:-23px;
}
.teaser-icon svg {
    width:25px;
    height:25px;
    margin-top:10px;
}
.teaser-icon svg * {
    fill:#fff;
}
.card .data span {
    display: block;
    width: 30px;
    height: 73px;
    border-left: solid 1px #EFE6DC;
    position: absolute;
    top: 0;
    right: 0;
}
.card .data span svg {
    width:8px;
    height:auto;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.content svg.arrowlink {
    width: 6px;
    position: absolute;
    margin-top: 26px;
    stroke:#433894;
}
.benefitsbox a {
    margin-left:13px;
}
.card .data em {
    color:#000;
    margin-bottom:0px;
    font-style: normal;
}
.card:hover .data {
    background: #433894;
}
.card:hover .data em {
    color:#fff;
}
.card .data span svg * {
    stroke: #000!important;
}
.card:hover .data span svg * {
    stroke: #fff!important;
}

/**
 * send2me
 */
#send2me {
    display: none;
    margin-bottom: 30px;
}

.contact-confirmation {
    display: none;
}

.contact-confirmation span {
    display: inline-block;
    margin-top: 25px;
}

#send2friend-form_mobile .field {
    margin-top: 20px;
    margin-bottom: 20px;
}

#send2friend-form_mobile input {
    max-width: 300px;
}

#send2friend-submit-button .send2me {
    float: none;
}

.button.secondary {
    background-color: white;
    border-width: 2px;
    color: #E30613;
    padding: 14px 20px;
}

.button.secondary:hover {
    border-color: #C2221b;
    color: #C2221b;
}

@media screen and (max-width: 980px) {
    #send2me {display: block;}
}

/**
 * Modal
 */
.ui.modal {
    top: 10%;
    left:50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 0px;
    background: transparent;
}
.modal .modal-content {
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
    padding: 0px;
    position: relative;
}
.modal-close {
    transition: color .1s ease;
    background-color: #179F96;
    text-align: center;
    text-decoration: none;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 8040;
    position: absolute;
    width: 48px;
    height: 48px;
}
.modal-close:before {
    font-family: 'Futura W01 Book', Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-size: 40px;
    line-height: 42px;
    content: "\00d7"!important;
    color: white;
}
.modal iframe {
    width: 100%;
    display: block;
    min-height: 590px;
    overflow: hidden;
    border-radius: 2px;
}


/**
 * Footer
 */
footer {
    position: fixed;
    bottom:0;
    width: 100%;
    max-width: 980px;
    background: rgba(255,255,255,.8);
    padding:10px 16px;
    box-sizing: border-box;
    z-index: 101;
}
.social-icons > a {
    background: #433894;
    height:40px;
    width:40px;
    margin-right:20px;
    border-radius: 50%;
}
footer a svg {
    width: 25px;
    height: 25px;
    margin-top: 7px;
    margin-left: 7px;
}
.tooltip-content {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background: #433894;
    box-shadow: none;
    padding: 10px;
    font-size: 15px;
    box-sizing: border-box;
    transition: all 0.2s;
    transform: scale3d(1, 0.9, 1);
    bottom: 62px;
    width: 160px;
    left: -11px;
}
.tooltip-content:after {
    content: "";
    position: absolute;
    top: 99%;
    left: 34px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid transparent;
    border-top: 15px solid #433894;
}
.tooltip-content a {
    display: block;
    text-align: left;
    margin:5px 0px 0px;
    color:#fff;
}
.tooltip-content a svg {
    width:15px;
    height:15px;
}
footer a svg * {
    fill: #fff;
    transition: all 0.2s ease;
}
.tooltip-content.show {
    transition: transform 0.2s;
    opacity: 1;
    z-index: 10;
    -webkit-transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -transform: scale3d(1, 1, 1);
    pointer-events: auto;
}


/**
 * Media Queries
 */

@media screen and (max-width: 736px) {
    .desktop {
        display: none!important;
    }
    .mobile {
        display: block !important;
    }
    #header .logo img {
        width:80px;
    }
    .button.fr {
        font-size:14px;
    }
    #header .sticky {
        display: none;
    }
    .content {
        padding:20px 16px;
    }
    h1 {
        font-size: 34px;
    }
    .meta li {
        width:100%;
        display: block;
        padding-bottom: 10px;
    }
    .meta .image {
        width:30px;
        height:30px;
    }
    .meta span {
        top:0;
    }
    .icon {
        width:70px;
        height:70px;
        float: none;
        margin:0 auto;
    }
    .data {
        float:none;
        width:90%;
        margin:20px auto 0px;
    }
    .slick-prev, .slick-next {
        top:24%;
    }
    .contact {
        display: block;
    }
    .contact .col {
        width:100%;
            }
    .contact .col:first-of-type {
        margin-bottom:30px;
    }
    .awards div {
        width:100%;
        float:none;
        overflow: auto;
    }
    .awards a, .awards img {
        width:100px;
        height:auto;
    }
    .awards p {
        width:calc(100% - 120px);
    }
    .social-icons {
        text-align: center;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    footer a svg {
        margin-left:0px;
    }
    a.top {
        width:40px;
        height:40px;
        background: #787772;
        position: absolute;
        top:10px;
        right:16px;
    }
    a.top:before {
        content:"";
        width:20px;
        height:20px;
        background: url("../images/icons/left-arrow.png");
        background-size: cover;
        position: absolute;
        top:10px;
        left:10px;
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    .ui.modal {
        left:4%;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        width:84%;
    }
    .modal iframe {
        height:100%;
        overflow:auto;
        min-height: 860px;
    }

    .tooltip-content, .tooltip-content.show {
        left:38%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .tooltip-content:after {
        left:50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .job p {
        position: initial;
        margin: 0px;
    }
    .icon.heart img {
        margin-top:3px;
    }
}

#send2friend-form .button {
    position: relative;
    top: 142px;
}
.grecaptcha-badge {
    opacity:0!important;
}