.jobHeader {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
}
.jobHeaderBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}
.jobHeaderAnimation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    -webkit-animation: action 5s infinite alternate;
    animation: action 5s infinite alternate;
}
.jobHeaderAnimation svg {
    width: auto !important;
    height: auto !important;
}
@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.jobHeaderTiles {
    position: absolute;
    height: calc(100vh - 113px);
    width: 100%;
    max-width: 1440px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}
.jobHeaderTiles .floatingTiles {
    position: absolute;
    height: calc(100vh - 253px);
    top: 0;
    right: 0;
    width: 100%;
    max-width: 740px;
}
.jobHeaderTiles .floatingTiles .tilesInner {
    position: relative;
    display: inline-block;
    will-change: transform;
    transform: matrix(1, 0, 0, 1, 0, 0);
    margin: 0 auto;
}
.jobHeaderTiles .jobTile {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 390px;
    margin-bottom: 25px;
    padding: 20px;
    text-decoration: none;
    border-radius: 12px;
}
.jobHeaderTiles .jobTile .jobTileCount {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}
.jobHeaderTiles .jobTile .jobTileCount span {
    font-family: "DIN", Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    width: 32px;
    height: 32px;
    margin-right: 5px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
}
.jobHeaderTiles .jobTile h2 {
    font-size: 36px;
    line-height: 36px;
}
.jobTileIcon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
}
.jobTileIcon img {
    object-fit: contain;
}
.jobHeaderTiles .jobTile:nth-child(odd) {
    float: left;
}
.jobHeaderTiles .jobTile:nth-child(odd) {
    float: right;
}
.jobHeaderTiles .jobTile * {
    color: var(--color-light);
}
.jobHeaderTiles .jobTile[data-jobcategory="1"] {
    background-color: var(--color-elvigreen);
}
.jobHeaderTiles .jobTile[data-jobcategory="2"] {
    background-color: var(--color-elviblue);
}
.jobHeaderTiles .jobTile[data-jobcategory="3"] {
    background-color: var(--color-elvipurple);
}
.jobHeaderTiles .jobTile[data-jobcategory="4"] {
    background-color: #27babc;
}
.jobHeaderTiles .jobTile[data-jobcategory="5"] {
    background-color: #FF2779;
}
@keyframes MoveUpDown {
    0% {
        top: 0;
        opacity: 0.1;
    }
    2% {
        opacity: 1;
    }
    50% {
        top: -125%;
    }
    98% {
        opacity: 1;
    }
    100% {
        top: -250%;
        opacity: 0.1;
    }
}
@media (max-width: 1540px) {
    .jobHeaderTiles {
        width: calc(100% - 60px);
    }
}
@media (max-width: 768px) {
    .jobHeaderAnimation svg {
        transform: translateY(-20%) !important
    }
}
@media (max-width: 767px) {
    .jobHeader {
        height: calc(100vh - 160px);
    }
    .jobHeaderAnimation {
        overflow: hidden;
    }
    .jobHeaderAnimation path {
        vector-effect: non-scaling-stroke;
        stroke-width: 0.0009em !important;
    }
    .jobHeaderAnimation svg {
        transform: scale(1.5) translateY(-30%) !important
    }
    .jobHeaderTiles {
        width: 100%;
    }
    .jobHeaderTiles .floatingTiles {
        display: flex;
        height: 250px;
        top: 260px;
        right: auto;
        width: 100%;
        bottom: auto;
    }
    .jobHeaderTiles .floatingTiles .tilesInner {
        display: flex;
        flex-shrink: 0;
    }
    .jobHeaderTiles .jobTile {
        margin-bottom: 8px;
        margin-right: 30px;
        max-width: 280px;
        height: fit-content;
        padding-right: 70px;
    }
    .jobHeaderTiles .jobTile:nth-child(odd) {
        bottom: -33%;
    }
    .jobHeaderTiles .jobTile:nth-child(even) {

    }
    .jobHeaderTiles .jobTile .jobTileCount {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .jobHeaderTiles .jobTile .jobTileCount span {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    .jobHeaderTiles .jobTile h2 {
        font-size: 30px;
        line-height: 30px;
    }
}

