/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.cards-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#9c9b99), color-stop(40%), to(#fdfddd));
  background: -o-linear-gradient(#9c9b99, 40%, #fdfddd);
  background: linear-gradient(#9c9b99, 40%, #fdfddd);
  margin-top: -5px;
}

.cards-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 150px;
  max-width: 1124px;
}

.cards {
  width: 100%;
  height: 1400px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 400px 0 400px 0;
}

.cards .box {
  position: relative;
  width: 310px;
  height: 440px;
  -webkit-box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.8);
          box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  margin: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  padding: 10px;
  background-color: ghostwhite;
  cursor: context-menu;
}

.description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.h2-cards {
  color: black;
  font-size: 2.3rem;
  text-align: center;
}

.img-cards-box {
  width: 130px;
  height: 130px;
}

.img-cards-box-pino-logo {
  border: 1px solid #ff0209;
  width: 130px;
  height: 130px;
  border-radius: 300px;
}

.p-cards {
  color: black;
  font-size: 1.6em;
  text-align: center;
}

.ul-cards {
  list-style: none;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 30px 0;
  padding: 10px;
}

.li-cards {
  cursor: pointer;
  width: 30px;
  height: 30px;
}

.ul-cards i {
  color: black;
  font-size: 1.5rem;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.li-cards:hover .fa-twitter {
  -webkit-transform: translate3d(0, -10px, 20px);
          transform: translate3d(0, -10px, 20px);
  color: #00acee;
}

.li-cards:hover .fa-github {
  -webkit-transform: translate3d(0, -10px, 20px);
          transform: translate3d(0, -10px, 20px);
  color: gray;
}

.li-cards:hover .fa-linkedin-in {
  -webkit-transform: translate3d(0, -10px, 20px);
          transform: translate3d(0, -10px, 20px);
  color: #077099;
}


@media (min-width: 1px) and (max-width:758px) {
  .cards {
    background-image: url(../image/cards-table-mobile3.png);
    padding: 350px 0 350px 0;
    height: 100%;
  }
}

@media (min-width: 758px) and (max-width: 1133px) {
  .cards {
    background-image: url(../image/cards-table-mobile2.png);

    height: 100%;
  }
}

@media (min-width: 1133px) and (max-width: 1380px) {
  .cards-wrapper {
    max-width: none;
  }

  .cards {
    background-image: url(../image/cards-table-pc.png);
    height: 1600px;
  }
}

@media (min-width: 1380px) and (max-width: 5000px) {
  .cards-block {
    width: 100%;
  }

  .cards-wrapper {
    max-width: none;
    width: 1350px;
  }

  .cards {
    background-image: url(../image/cards-table-pc.png);
    height: 1600px;
    background-size: contain;
  }
}