section.categories-desk-home {
  padding: 2vw 10vw;
  width: 100%;
  min-height: 10vw;
  position: relative;
  gap: 2vw;
  justify-content: start !important;
}

section.categories-desk-home h1 {
  width: 100%;
  text-align: center !important;
  font-size: 1.7vw;
  font-weight: bold;
  position: relative;
  font-family: Kalameh, sans-serif;
  color: var(--green);
}

section.categories-desk-home h1 span {
  /*width: 10vw;*/
  padding: 1vw;
  background-color: var(--light-bg);
  position: relative;
  z-index: 2;
  transform: translateY(-0.25vw);
}

section.categories-desk-home h1::before {
  content: "";
  width: 100%;
  height: 0.1vw;
  background-color: silver;
  position: absolute;
  z-index: 1;
  right: 0;
}

.categories-desk-home-cont {
  width: 100%;
  min-height: 10vw;
  border-radius: 2.5vw;
  border: 0.1vw solid #e2e8f0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
}

.category-desk-card {
  padding: 1vw;
  height: 16vw;
  gap: 0.5vw;
  border: 0.05vw solid #e2e8f0;
  position: relative;
  color: var(--green);
}

.category-desk-card span.halo-light {
  width: 7.5vw;
  height: 7.5vw;
  border-radius: 50%;
  /*background-color: rgba(0, 255, 99, 0.5);*/
  /*filter: blur(9px);*/
  /*box-shadow:*/
  /*        0 0 2vw rgba(0, 255, 99, 0.75),*/
  /*        0 0 3vw rgba(0, 255, 99, 0.5),*/
  /*        0 0 4vw rgba(0, 255, 99, 0.2),*/
  /*        0 0 5vw rgba(0, 255, 99, 0.1);*/
  background-color: rgba(200, 203, 201, 0.5);
  filter: blur(10px);
  box-shadow: 0 0 2vw rgba(219, 228, 221, 0.5), 0 0 3vw rgba(196, 200, 197, 0.5),
    0 0 4vw rgba(110, 111, 110, 0.5), 0 0 5vw rgba(163, 171, 165, 0.1);
  position: absolute;
  z-index: 1;
  transition: all 0.25s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.category-desk-card:hover span.halo-light {
  opacity: 1;
  visibility: visible;
}

.category-desk-card img {
  width: 5vw;
  height: 5vw;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 2;
}

.category-desk-card:hover img {
  transform: scale(1.02);
}

.category-desk-card h3 {
  font-size: 1.2vw;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  position: relative;
  z-index: 2;
}

.category-desk-card:hover h3 {
  /*color: var(--red);*/
  color: var(--green2);
  filter: brightness(1.25);
}

.category-desk-card:nth-child(7):before,
.category-desk-card:nth-child(8):before,
.category-desk-card:nth-child(9):before,
.category-desk-card:nth-child(10):before,
.category-desk-card:nth-child(11):before,
.category-desk-card:nth-child(13):before,
.category-desk-card:nth-child(14):before,
.category-desk-card:nth-child(15):before,
.category-desk-card:nth-child(16):before,
.category-desk-card:nth-child(17):before {
  content: "";
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background-color: var(--light-bg);
  position: absolute;
  top: -1.25vw;
  left: -1.25vw;
  z-index: 2;
}

@media (max-width: 450px) {
  .categories-desk-home-cont {
    width: 100%;
    min-height: 10vw;
    border-radius: 2.5vw;
    border: 0.1vw solid #e2e8f0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
  }

  .category-desk-card {
    padding: 1vw;
    height: 27vw;
    gap: 1vw;
    border: 0.05vw solid #e2e8f0;
    position: relative;
    color: var(--green);
  }
  .category-desk-card img {
    width: 10vw;
    height: 10vw;
  }
  .category-desk-card h3 {
    font-size: 2.6vw;
  }
  section.categories-desk-home h1 span {
    font-size: 3.7vw;
  }

  .category-desk-card:nth-child(5):before,
  .category-desk-card:nth-child(6):before,
  .category-desk-card:nth-child(7):before,
  .category-desk-card:nth-child(9):before,
  .category-desk-card:nth-child(10):before,
  .category-desk-card:nth-child(11):before,
  .category-desk-card:nth-child(13):before,
  .category-desk-card:nth-child(14):before,
  .category-desk-card:nth-child(15):before,
  .category-desk-card:nth-child(16):before,
  .category-desk-card:nth-child(17):before {
    content: "";
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    background-color: var(--light-bg);
    position: absolute;
    top: -1.75vw;
    left: -1.75vw;
    z-index: 2;
  }
  .category-desk-card:nth-child(8):before {
    display: none;
  }
}
