
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
}
.gallery-filters.desktop-only {
    display: block;
}
@media screen and (max-width: 900px) {
    .gallery-filters.desktop-only {
        display: none;
    }
}
.gallery-filters.mobile-only {
    display: none;
    padding: 1em 0;
    margin: 1em 0;
    border-bottom: 1px solid #0b0e21;
    position: relative;
}
@media screen and (max-width: 900px) {
    .gallery-filters.mobile-only {
        display: flex;
    }
}
.gallery-filters.mobile-only label {
    flex: 0 1 25%;
    display: block;
}
.gallery-filters.mobile-only .select-wrap {
    display: block;
    flex: 1 1 auto;
    position: relative;
}
.gallery-filters.mobile-only .select-wrap:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #0b0e21;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.gallery-filters.mobile-only .select-wrap #gallery-filter-select {
    display: block;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    background-color: transparent;
    width: 100%;
}
.gallery-filters .gallery-filter {
    background: none !important;
    display: inline-block;
    padding-left: 0 !important;
    flex: 0 1 auto;
    padding: 0 2%;
}
.gallery-filters .gallery-filter .filter {
    cursor: pointer;
}
.gallery-filters .gallery-filter .filter.active {
    font-family: "Graphik Semibold", sans-serif;
}

.gallery {
    padding-left: 24px;
    padding-right: 24px;
}
.gallery .gallery-item {
    position: relative;
    display: inline-block;
    width: 25vw;
    height: 300px;
}
.gallery .gallery-item .inner {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    background-image: var(--background-image);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.gallery .gallery-item .inner:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, black);
}
.gallery .gallery-item.video::after {
    content: "\f04b";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    opacity: 0.5;
    top: 0;
    left: 0;
    font-size: 5vw;
    transform: translate(-50%, -50%);
    position: absolute;
}
@media screen and (max-width: 768px) {
    .gallery .gallery-item.video::after {
        font-size: 10vw;
    }
}
.gallery .gallery-text {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em;
    width: 100%;
}
.gallery .slick-slide {
    margin: 0 12px 0 12px;
}
.gallery .slick-list {
    margin: 0 -12px 0 -12px;
}
.gallery button.prev {
    border: none;
    -webkit-appearance: none;
    border: none;
    -webkit-appearance: none;
    position: absolute;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    transition: all 0.35s ease-in-out;
    background: transparent;
}
.gallery button.prev:focus {
    outline: none;
}
.gallery button.prev:hover {
    background: none;
}
@media screen and (max-width: 1550px) {
    .gallery button.prev {
        left: -70px;
    }
}
@media screen and (max-width: 1366px) {
    .gallery button.prev {
        left: -12px;
        z-index: 1;
    }
}
.gallery button.next {
    border: none;
    -webkit-appearance: none;
    border: none;
    -webkit-appearance: none;
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    transition: all 0.35s ease-in-out;
    background: transparent;
}
.gallery button.next:focus {
    outline: none;
}
.gallery button.next:hover {
    background: none;
}
@media screen and (max-width: 1550px) {
    .gallery button.next {
        right: -70px;
    }
}
@media screen and (max-width: 1366px) {
    .gallery button.next {
        right: -12px;
    }
}
