.THUMBGRID {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
}
.THUMBGRID .THUMB {
    margin: 0;
}
@media (min-width: 640px) {
    .THUMBGRID {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .THUMBGRID {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .THUMBGRID {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .THUMBGRID {
        grid-template-columns: repeat(4, 1fr);
    }
}

.THUMBFLEX {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 2rem;
}
.THUMBFLEX .THUMB {
    width: 100%;
    margin: 0;
}
@media screen and (min-width: 640px) {
    .THUMBFLEX {
        padding: 4rem;
    }
    .THUMBFLEX .THUMB {
        width: calc(50% - 3rem);
    }
}
@media screen and (min-width: 768px) {
    .THUMBFLEX .THUMB {
        width: calc(50% - 3rem);
    }
}
@media screen and (min-width: 1024px) {
    .THUMBFLEX {
        padding: 4rem;
    }
    .THUMBFLEX .THUMB {
        width: calc(25% - 3rem);
    }
}
@media screen and (min-width: 1200px) {
    .THUMBFLEX .THUMB {
        width: calc(25% - 3rem);
    }
}

.THUMB {
    position: relative;
    margin: 1rem;
    height: 100%;
    background-color: #F4F4F4;
    overflow: visible;
}
.THUMB::before {
    content: ' ';
    display: block;
    width: 100%;
    padding-top: 100%
}
a.THUMB,
div.THUMB {
    box-shadow: none;
    transition: all .35s ease-in-out;
}
a.THUMB:hover,
div.THUMB:hover {
    top: inherit;
    transform: translateY(-.25rem);
}


.THUMB__shadow {
    position: absolute;
    bottom: -1rem;
    left: 8%;
    width: 84%;
    height: 50%;
    background: inherit;
    background-size: 100%;
    -webkit-filter: blur(20px) saturate(3) brightness(0.7);
    filter: blur(20px) saturate(3) brightness(0.7);
    z-index: -1;
    pointer-events: none;
    transition: all .35s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
a.THUMB:hover .THUMB__shadow,
div.THUMB:hover .THUMB__shadow {
    bottom: -2rem;
    width: 88%;
    left: 6%;
}


.THUMB__icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 6rem;
    color: #D4D4D4;
    z-index: 1;
}


.THUMB header {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transition: all .5s ease-in-out;
    overflow: hidden;
    background-color: inherit;
}


.THUMB figure {
    font-family: 'tenforce';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    font-size: 10rem;
    color: #D8D8D8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.THUMB--dark-gradient figure::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 0%) 65%, rgb(0 0 0 / 50%) 100%);
}


.THUMB--bg-blurred figure {
    filter: blur(7px);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
}
.THUMB--bg-blurred-darken figure {
    filter: blur(7px) brightness(.75);
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
}


.THUMB.THUMB--splitscreen figure {
    background-size: cover;
}
.THUMB.THUMB--splitscreen header {
    max-height: 50%;
    top: auto;
    background-color: rgb(255 255 255 / 60%);
    padding: 2rem;
    backdrop-filter: blur(4px);
}
.THUMB.THUMB--splitscreen header::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(244,244,244,1) 100%);
    height: 4rem;
}
.THUMB.THUMB-careers{
    margin: 0;
}