.tabbed-cards .common-title {
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
}
@media (max-width: 1199.98px) {
.tabbed-cards .common-title {
    width: 100%;
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
}
}
.tabbed-cards .common-title span {
    flex: 1;
    text-wrap: nowrap;
}
.tabbed-cards .cards .card.on {
    display: block;
}

.tabbed-cards .cat div {
    font-size: 20px;
    width: 180px;
    text-align: center;
    line-height: 56px;
    margin: 0 8px;
    padding: 8px 16px;
    border: 1px solid var(--sky_border);
}
@media (max-width: 1199.98px) {
    .tabbed-cards .cat div {
        width: unset;
		margin-top:20px;
    }
}
.tabbed-cards .cat div.on {
    background-color: var(--sky_primary_color);
    color: white;
    border: unset;
}

.tabbed-cards .cards .card {
    width: 100%;
    display: none;
}

.tabbed-cards .cards .card.on {
    display: flex;
    flex-wrap: wrap;
}

.tabbed-cards .img {
    margin: 20px;
}

.tabbed-cards .img img {
    width: 100%;
    object-fit: cover;
}

.tabbed-cards .img img:hover {
    transform: scale(1.1);
}