.ev-filter__types {
    display: flex;
    margin: 0 0 60px 0;
}
.ev-filter__types label {
    margin: 0 30px 0 0;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.ev-filter__types input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 4px 0 0;
}

.ev-filter__types input[type="checkbox"]:checked {
    accent-color: #e1e0df;
}

.ev-item {
    width: 100%;
    height: auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 30px 0;
}

.ev-item__link {
    text-decoration: none;
    transition: 300ms;
    width: 100%;
    height: 0;
    position: relative;
    padding-top: 100%;
    display: block;
}
.ev-item__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px;
}
.ev-item__image {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ev-item__image.ev-item__image--hover {
    opacity: 0;
    z-index: 2 !important;
    transition: 300ms;
}

.ev-item__file {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.ev-item__image--hover .ev-item__file {
    object-fit: cover;
}
.ev-item__content {
    position: relative;
    padding-right: 28px;
    z-index: 5;
    width: 100%;
}
.ev-item__arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    opacity: 0;
    z-index: 5;
    transition: 300ms;
}

.ev-item .headline {
    margin: 0;
    z-index: 5;
}

.ev-item__content .headline{
    margin: 0 0 5px 0;
}

.ev-item .brow {
    margin: 0;
    transition: 300ms;
}
.ev-item__image::before {
    z-index: 0;
}


.ev-filter .column:last-child:not(:first-child),
.ev-filter .columns:last-child:not(:first-child) {
    float: left;
}

.ev-filter__list .columns{
    display: none;
}
.ev-filter__list .columns:nth-of-type(1),
.ev-filter__list .columns:nth-of-type(2),
.ev-filter__list .columns:nth-of-type(3),
.ev-filter__list .columns:nth-of-type(4),
.ev-filter__list .columns:nth-of-type(5),
.ev-filter__list .columns:nth-of-type(6){
    display: block;
}

.ev-filter.show .ev-filter__list .columns{
    display: block;
}
.ev-filter.show .ev-filer__btn{
    display: none;
}

@media screen and (min-width: 40em) {
    .ev-item__link:hover {
        color: #fff !important;
    }
    .ev-item__link:hover .brow {
        color: #fff;
    }
    .ev-item__link:hover .ev-item__image--hover {
        opacity: 1;
    }
    .ev-item__link:hover .ev-item__arrow {
        opacity: 1;
    }
}
/* Small only --- >640px */
@media screen and (max-width: 39.9375em) {
    .ev-filter .row .small-12.columns {
        padding-bottom: 0;
    }
    
    .ev-filter__list .columns{display: none;}

    .ev-filter__list .columns:nth-of-type(1),
    .ev-filter__list .columns:nth-of-type(2),
    .ev-filter__list .columns:nth-of-type(3){
        display: block;
    }

    .ev-filter.show .ev-filter__list .columns{
        display: block;
    }

    .ev-item__link .ev-item__arrow {
        opacity: 1;
    }

}