.masonry {
    columns: 3;
    column-gap: 16px;
}
@media (max-width: 1200px) {
    .masonry {
        columns: 3;
    }
}
@media (max-width: 992px) {
    .masonry {
        columns: 2;
    }
}
@media (max-width: 768px) {
    .masonry {
        columns: 1;
    }
}
.masonry .grid {
    display: inline-block;
    margin-bottom: 16px;
    position: relative;
}
.masonry .grid:hover{
    opacity: .8;
}
.masonry .grid:before {
    border-radius: 5px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}
.masonry .grid img {
    width: 100%;
    border-radius: 5px;
}
.masonry .grid__link {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.masonry .grid__body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 30px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.masonry .grid__title {
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 5px;
    padding: 5px 15px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 300;
    width: fit-content;
}
.mt-auto {
    margin-top: auto;
}

.price_sv {
    color: #0193c2;
    font-size: 22px;
    margin-bottom: 10px;
}