  .app-card {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      /* width: 400px; */
      text-align: center;
      padding: 20px;

  }

  .app-card img {
      width: 64px;
      height: 64px;
  }

  @media only screen and (min-width:2560px) {
      .app-card img {
          width: 128px;
          height: 128px;
      }
  }

  .app-href {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      text-decoration: none;
      transition: transform .2s;
      color: var(--text-color);

  }

  .app-href span {
      margin-top: 20px;
  }

  .app-href:hover {
      transform: scale(1.5);
      transition: 0.5s;
      filter: drop-shadow(0 0 15px DodgerBlue) 

  }

  .app-href.active {
      transform: scale(1.5);
      transition: 0.5s;
      border: solid 1px;
      filter: drop-shadow(0 0 15px DodgerBlue) 

  }

  .container-apps {
      width: 100%;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 15px;
  }


  .app-grid {
      display: grid;
      justify-items: center;

      grid-template-columns: 400px 400px 400px;
      grid-template-rows: auto auto;
      grid-auto-flow: row;
      /* display: -webkit-box; */
      /* display: -ms-flexbox; */
      /* display: flex; */
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-top: -60px;
      justify-content: center;


  }

  @media only screen and (max-width:1079px) {
      .app-grid {
          grid-template-columns: 300px 300px 300px;
          /* margin-left: -20px; */
          margin-top: -32px
      }
  }


  @media only screen and (max-width:767px) {
      .app-grid {
          grid-template-columns: auto auto;
          margin-left: 0;
          margin-top: -20px
      }
  }

  .carousel-conteiner {
    margin-top: 30px;
      /* width: 100%;
    display: flex;
    justify-content: center; */
  }

  .carousel-3d {
      padding: 20px;
      -webkit-perspective: 500px;
      perspective: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* overflow: hidden; */
      max-width: 500px;
  }

  .carousel-3d>* {
      flex: 0 0 auto;
  }

  .carousel-3d figure {
      margin: 0;
      width: 50%;
      -webkit-transform-style: preserve-3d;
      transform-style: preserve-3d;
      transition: -webkit-transform 0.5s;
      transition: transform 0.5s;
      transition: transform 0.5s, -webkit-transform 0.5s;
  }

  .carousel-3d figure img,
  .carousel-3d figure div {
      width: 100%;
      box-sizing: border-box;
      padding: 0;
  }

  .carousel-3d figure img {
      user-select: none;
  }

  .carousel-3d figure div:not(:first-of-type),
  .carousel-3d figure img:not(:first-of-type) {
      position: absolute;
      left: 0;
      top: 0;
  }

  .carousel-3d nav {
      display: flex;
      justify-content: center;
      margin: 20px 0 0;
  }

  @media only screen and (max-width:767px) {
      .carousel-3d {
          padding: 50px;
      }
  }


  /* .carousel-3d nav button {
        flex: 0 0 auto;
        margin: 0 5px;
        cursor: pointer;
        color: #337AB7;
        background: #BFE2FF;
        border: 1px solid #337AB7;
        padding: 5px 10px;
        font-weight: bold;
        transition: all .3s ease;
    } */

  /* .carousel-3d nav button:hover {
        color: #FFF;
        background: #337AB7;
    } */

  .carousel-img {
      width: 300px;
  }


  .container-img {
      border-radius: 10%;
      overflow: hidden;
      /* width: 99%; */
  }

  .container-images {
      position: relative;
  }

  .img-phone {
      position: absolute;
      left: 0px;
      top: 0px;
  }

  .img-widget {
      width: 99%;
      height: 99%;
  }

  .icon-apps {
      position: relative;
      display: inline-block;
      margin: 1em;
     
  }

  .icon-apps-glow {
      filter: blur(16px);
      overflow: visible;
      position: absolute;
      z-index: -1;
  }

  .filters__search_app {
      width: 100%;
      max-width: 300px;
      -ms-flex-negative: 0;
      flex-shrink: 0
  }

  @media only screen and (max-width:1079px) {
      .filters__search_app {
          max-width: none;
          margin-left: 0;
          margin-bottom: 60px;
          -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
          order: -1
      }
  }

  @media only screen and (max-width:767px) {
      .filters__search_app {
          margin-bottom: 40px
      }
  }