.published-app-section {
  background-color: var(--ced-black-color);
}
.app-item {
  transition: none;
  border-radius: 16px;
  background-image: linear-gradient(180deg,rgba(255,255,255,.22) 0%,rgba(255,255,255,0) 100%);
  position: relative;
  z-index: 1;
}
.app-item:before {
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: -1;
  opacity: 0;
  transition: all 0.7s;
  background-image: linear-gradient(180deg,rgb(255 255 255/22%) 0%,rgb(255 255 255/6%) 100%);
}
.app-item:hover:before {
  opacity: 1;
}
@media screen and (min-width: 1200px) {
  .app-item {
    width: 135px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .app-item {
    width: 130px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .app-item {
    width: 110px;
    height: 90px;
  }
}
@media screen and (min-width: 992px) {
  .app-item {
    height: 100px;
  }
  .app-item img {
    max-width: 80px;
  }
}

@media screen and (max-width: 991px) {
  .app-item img {
    max-width: 60px;
  }
}
@media screen and (min-width: 768px) {
  .app-item {
    padding: 20px;
    margin: 10px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .app-item {
    width: 115px;
  }
}
@media screen and (max-width: 767px) {
  .app-item {
    height: 75px;
    margin: 7px 7px 12px 7px;

  }
}
@media screen and (min-width: 576px) {
  .app-item:before{
    border-radius: 16px;
  }
  .app-item{
    border-radius: 16px;
  }
}

@media screen and (max-width: 575px) {
  .app-item {
    width: 98px;
    border-radius: 12px;
  }
  .app-item:before{
    border-radius: 12px;
  }
}