.cat-tiles .row {
    width: 100%;
    margin-bottom: 0;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
}
.cat-tiles .col {
    width: calc(100% / 2);
    margin: 60px auto;
}
.cat-tiles .col .img-wrap {
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.cat-tiles .img-link {
    border-bottom: none !important;
    position: relative;
}
.cat-tiles .img-link:after {
    display: inline-block;
    content: "";
    position: absolute;
    border: 1px solid #41392e;
    width: 100%;
    height: 100%;
    top: -11px;
    left: 9px;
}
.cat-tiles .img-link img {
    z-index: 1;
    position: relative;
    width: 100%;
}
.cat-tiles .img-square-top, .img-square-bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    top: -11px;
    left: 9px;
    color: #836f54;
    z-index: 1;
    pointer-events: none
}
.cat-tiles .img-square-top:after, .img-square-top:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: transform .88s cubic-bezier(.71,.01,.51,.99);
    will-change: transform;
}
.cat-tiles .img-square-bottom:after, .img-square-bottom:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: transform .88s cubic-bezier(.71,.01,.51,.99);
    will-change: transform;
}
.cat-tiles .img-square-top:before {
    transform: scaleX(0);
    transform-origin: right;
}
.cat-tiles .img-link:hover .img-square-top:before {
    transform: scaleX(1);

}
.cat-tiles .img-square-top:after {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
}
.cat-tiles .img-link:hover .img-square-top:after {
    transform: scaleY(1);

}
.cat-tiles .img-square-bottom:before {
    transform: scaleX(0);
    transform-origin: left;
}
.cat-tiles .img-link:hover .img-square-bottom:before {
    transform: scaleX(1);
}
.cat-tiles .img-square-bottom:after {
    width: 1px;
    height: 100%;
    transform: scaleY(0);
    transform-origin: bottom;
}
.cat-tiles .img-link:hover .img-square-bottom:after {
    transform: scaleY(1);

}
.cat-tiles .block-title {
    position: absolute;
}


@media (max-width: 1160px) {
    .cat-tiles .row {
        display: block;
    }
    .cat-tiles .col {
        width: 100%;
    }
}