.gallery_filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 15px
}

.gallery_filters-filter {
    text-transform: uppercase;
    font-family: Archivo,sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    padding-bottom: 10px;
    position: relative
}

.gallery_filters-filter:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background: #ffc631;
    bottom: 0;
    left: 0;
    -webkit-transition: width .3s ease-in-out;
    -o-transition: width .3s ease-in-out;
    transition: width .3s ease-in-out
}

.gallery_filters-filter.current,.gallery_filters-filter:focus,.gallery_filters-filter:hover {
    color: #0da574
}

.gallery_filters-filter.current:after,.gallery_filters-filter:focus:after,.gallery_filters-filter:hover:after {
    width: 100%
}

.gallery_masonry {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.gallery_masonry-item {
    width: 100%;
    position: relative;
    float: left;
    min-height: 1px;
    margin-top: 30px
}

.gallery_masonry-item .aspect {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    z-index: 1000;
    overflow: hidden
}

.gallery_masonry-item .aspect:focus .overlay,.gallery_masonry-item .aspect:hover .overlay {
    opacity: 1
}

.gallery_masonry-item .aspect__inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.gallery_masonry-item .aspect__inner img {
    height: 100%;
    width: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover
}

.gallery_masonry-item .aspect--1x1 {
    padding-bottom: 100%
}

.gallery_masonry-item .aspect--13x9 {
    padding-bottom: calc(33% - 2px)
}

.gallery_masonry-item .overlay {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: rgba(0,31,63,.7);
    color: #fff;
    font-family: Archivo,sans-serif;
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    opacity: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.gallery_masonry-item .overlay_label {
    text-transform: uppercase;
    color: #ffc631;
    margin-top: 10px;
    font-size: 18px;
    line-height: 23px;
    font-weight: 600
}

@media screen and (min-width:567.98px) {
    .gallery_masonry {
        margin: 0 -15px
    }

    .gallery_masonry-item {
        width: 33%;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 30px
    }

    .gallery_masonry-item .aspect--13x9 {
        padding-bottom: calc(33% - 15px)
    }
}

@media screen and (min-width:767.98px) {
    .gallery_filters {
        margin-bottom: 15px;
        gap: 10px;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (min-width:1023.98px) {
    .gallery_filters {
        margin-bottom: 35px
    }

    .gallery_filters-filter {
        font-size: 18px;
        line-height: 23px
    }

    .gallery_masonry .overlay_label {
        margin-top: 20px
    }
}
