.box-grow {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 259px;
  max-width: 100%;
  height: 263px;
  margin-inline: auto;


  .box-grow__content {
    --initial-width: 100;
    --initial-height: 100;
    --final-width: 135;
    --final-height: 135;
    border-radius: 15px;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    background-image: var(--background-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: calc(var(--initial-width)*1%);
    height: calc(var(--initial-height)*1%);
    justify-content: flex-end;
    padding: 10px 15px 30px;
    transition: all 0.3s ease-in-out;

    &:hover {
      transition: all 0.3s ease-in-out;
      width: calc(var(--final-width)*1%);
      height: calc(var(--final-height)*1%);
      left: calc((var(--initial-width) - var(--final-width) - 10)*1px);
      top: calc((var(--initial-height) - var(--final-height) - 10)*1px);
      z-index: 1;
    }
  }

  .box-grow__information{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-out ;
  }
  .box-grow__content:hover .box-grow__information{
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in 0.3s
  }

  .box-grow__title {
    color: #ffffff;
    font-size: 2.6rem;
    font-weight: 800;
    font-family: 'Lato', sans-serif;
    font-style: italic;
    letter-spacing: -0.2px;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);

    a{
      color: inherit;
      text-decoration: none;;
    }
  }

  .box-grow__link {
    border-radius: 50%;
    border: 1px solid #ffffff;
    width: 37px;
    height: 37px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
  }
}

.sl-pl-brand-light-move {
  overflow: hidden;
  position: relative;
  /* display: inline-block;
  line-height: 0;
  width: fit-content; */
}

.sl-pl-brand-light-move::after {
  /* animation: sl-pl-light-move-anim 3.5s linear .7s infinite;
  -webkit-animation: sl-pl-light-move-anim 3.5s linear .7s infinite; */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.45) 12%, rgba(255, 255, 255, 0) 24%);
  content: "";
  display: inline-block;
  height: 100%;
  left: -150%;
  position: absolute;
  top: 0;
  transform: translateX(0px) skewX(-45deg);
  -webkit-transform: translateX(0px) skewX(-45deg);
  width: 100%;
}
.sl-pl-brand-light-move:hover::after{
  animation: sl-pl-light-move-anim 2s linear  ;
  -webkit-animation: sl-pl-light-move-anim 2s linear  ;
}

@-webkit-keyframes sl-pl-light-move-anim {
  0% {
    -webkit-transform: translateX(0) skewX(-45deg)
  }

  40%,
  100% {
    -webkit-transform: translateX(400%) skewX(-45deg)
  }
}

@keyframes sl-pl-light-move-anim {
  0% {
    transform: translateX(0) skewX(-45deg)
  }

  40%,
  100% {
    transform: translateX(400%) skewX(-45deg)
  }
}

.list-items:has(.box-grow__content:hover) .box-grow__content:not(:hover) {
  z-index: 0;
  opacity: 0.7;
}