.companyHeader {
    position: relative;
    width: 100%;
    height: calc(100vh - 64px);
}
.companyHeaderBackground {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 10;
}
.companyHeaderAnimation {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    -webkit-animation: action 5s infinite alternate;
    animation: action 5s infinite alternate;
}
.companyHeaderAnimation svg {
    /*transform: translate3d(0px, 0px, 0px) scale(0.65) translateY(-20%) !important;*/
    width: auto !important;
    height: auto !important;
}
.companyHeaderAnimation path {
    vector-effect: non-scaling-stroke;
    stroke-width: 1px !important;
}
@-webkit-keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@keyframes action {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
.companyHeaderTiles {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
}
.companyHeaderTiles .floatingTiles {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /*height: calc(100% - 50px);
    max-width: 1440px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;*/
}
.companyHeaderTiles .floatingTiles .tilesInner {
    position: relative;
    display: inline-block;
    will-change: transform;
    opacity: 0;
    transition: opacity 500ms;
}
.companyHeaderTiles .floatingTiles.loaded .tilesInner {
    opacity: 1;
}
.companyHeaderTiles .companyTile {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin-bottom: 25px;
    text-decoration: none;
    background: #fff;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    padding: 2em;
    border-radius: 12px;
    box-shadow: 0 100px 90px rgba(0, 0, 0, 0.6);
    -webkit-box-shadow: 0 100px 90px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0 100px 90px rgba(0, 0, 0, 0.6);
}
.companyHeaderTiles .companyTile .companyTileCount {
    font-family: 'PT Sans', Helvetica, Arial, sans-serif;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 30px;
}
.companyHeaderTiles .companyTile .companyTileCount 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%;
}
.companyTileIcon {
    position: relative;
    display: flex;
}
.companyTileIcon img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.companyHeaderTiles .companyTile[data-companycategory="1"] {
    background-color: var(--color-elvigreen);
}
.companyHeaderTiles .companyTile[data-companycategory="2"] {
    background-color: var(--color-elviblue);
}
.companyHeaderTiles .companyTile[data-companycategory="3"] {
    background-color: var(--color-elvipurple);
}
.companyHeaderTiles .companyTile[data-companycategory="4"] {
    background-color: #27babc;
}
.companyHeaderTiles .companyTile[data-companycategory="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: 1650px) {
    .companyHeaderTiles .companyTile {
        padding: 25px;
    }
}
@media (max-width: 1024px) {
    .companyHeaderAnimation svg {
        transform: translateY(0%) !important;
    }
}
@media (max-width: 768px) {
    .companyHeaderAnimation svg {
        transform: scale(1.5) translateY(-23%) !important;
    }
}
@media (max-width: 767px) {
    .companyHeaderAnimation {
        overflow: hidden;
        padding-top: 120px;
    }
    .companyHeaderAnimation svg {
        transform: scale(1.5) translateY(-30%) !important;
    }
    .companyHeaderAnimation path {
        stroke-width: 0.0009em !important;
    }
    .companyHeaderTiles {
        width: 100%;
    }
    .companyHeaderTiles .floatingTiles {
        display: flex;
        flex-direction: row;
        height: 50vh;
        top: 260px;
        right: auto;
        width: 100%;
        bottom: auto;
        position: relative;
    }
    .companyHeaderTiles .floatingTiles .tilesInner {
        display: flex;
        flex-shrink: 0;
        flex-grow: 1;
    }
    .companyHeaderTiles .companyTile {
        position: relative;
        z-index: 100;
        margin-bottom: 8px;
        margin-right: 30px;
        /*max-width: 280px;*/
        height: 120px;
        padding: 10px;
        min-width: 160px;
        overflow: hidden;
    }
    .companyTileIcon {
        position: relative;
        display: flex;
        padding: 10px;
    }
    .companyTileIcon img {
        position: relative;
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
    .companyHeaderTiles .companyTile:nth-child(odd) {
        bottom: -33%;
    }
    .companyHeaderTiles .companyTile .companyTileCount {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .companyHeaderTiles .companyTile .companyTileCount span {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }
    .companyHeaderTiles .companyTile h2 {
        font-size: 30px;
        line-height: 30px;
    }
}

