a{
  text-decoration: none !important;
  color: #1b1b1b !important;
}

.apps{
  background-color: #f8f8f8;
  padding: 140px 0px;
}

.container-apps{
  display: flex;
  align-items: center;
  justify-content: center;
}

#contenedor{
    max-width: 85vw;
}

.container-app{
  background-color: white;
  height: 280px;
  min-width: 370px;
  width: 100%;
  margin: 12.5px 12.5px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  cursor: pointer;
}

.container-app:hover{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.desc{
  font-weight: 400;
  text-align: left;
  color: #1b1b1b;
}

h3{
  font-weight: 700;
}

@media (max-width: 1300px) {
  #contenedor{
    max-width: none;
  }

  .apps{
    padding: 140px 4vw;
  }

  .container-app{
    width: calc(100vw - 8vw);
    min-width: auto;
    margin: 10px 0px;
    height: auto;
  }

  .apps-img, .apps-title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .desc{
    text-align: center;
  }
}