#catalog-wrapper .responsive-col {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px; }

.catalog-category-card {
  display: flex;
  width: calc(50% - 7px);
  flex-wrap: wrap;
  border: 0.5px solid var(--border-color);
  background: var(--context-nav-bg-color);
  border-radius: 7px;
  padding: 14px 14px 28px 14px;
  box-sizing: border-box;
  max-height: 280px;
  min-height: 150px;
  flex-wrap: nowrap;
  position: relative;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: all 100ms linear;
  box-shadow: 0 0 24px 0 var(--light-shadow); }
  .catalog-category-card svg {
    width: 32px;
    height: 32px;
    fill: var(--text-color-accent);
    transition: all 300ms linear; }
  .catalog-category-card:hover {
    text-decoration: none;
    opacity: 1;
    box-shadow: 0 0 14px 0 rgba(59, 161, 255, 0.28), inset 0 0 0 0.5px rgba(59, 161, 255, 0.28); }
    .catalog-category-card:hover svg {
      transform: scale(1.1); }
  .catalog-category-card .products-counter {
    display: none;
    position: absolute;
    right: 14px;
    top: 14px;
    background: none;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid var(--txt-color);
    color: var(--txt-color); }

.view_all-contol svg {
  fill: var(--color-cta);
  width: 12px;
  height: 12px; }

.catalog-category-card:hover .products-counter {
  display: block; }

/*Tablet-landscape*/
@media only screen and (min-width: 481px) {
  #catalog-wrapper .responsive-col,
  #catalog-wrapper-scope .responsive-col,
  #catalog-wrapper-technology .responsive-col,
  #catalog-wrapper-brand .responsive-col,
  #catalog-wrapper-platforms .responsive-col,
  #catalog-wrapper-other .responsive-col {
    flex-direction: row; }
  .catalog-category-card {
    width: calc(50% + -15.5px); } }

/*Small-Desktop*/
@media only screen and (min-width: 1179px) {
  .catalog-category-card {
    width: calc(37% + -51.5px); } }

/*Desktop*/
@media only screen and (min-width: 1180px) {
  .catalog-category-card {
    width: calc(25% + -22.5px);
    max-height: 280px;
    min-height: 150px; } }
