*,
*::before,
*::after {
  box-sizing: border-box;
}

/*html {
  background-color: #f0f0f0;
}

body {
  color: #696969;
  font-family: 'Roboto','Helvetica Neue', Helvetica, Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  padding: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga" on;
}*/

.container {
  /*padding: 0 50px 10px;*/
  margin: 0 auto;
  max-width: 1100px;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 20px;
  padding: 0;
}

.cards__item {
  display: flex;
  padding: 1rem;
}
.cards__item a {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
@media (max-width: 767px) {
  .cards__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .cards__item {
    width: 33.3333%;
  }
}
@media (max-width: 470px) {
  .cards__item {
    width: 100%;
  }
}

.card {
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
  transition: all 250ms cubic-bezier(0.02, 0.01, 0.47, 1);
  white-space: normal;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
}
.card:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.16);
  transform: translate(0, -5px);
  transition-delay: 0s !important;
}

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 15px;
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.1em;
  border-top-right-radius: 0.1em;
  overflow: hidden;
  position: relative;
}
.card__image::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (min-width: 40rem) {
  .card__image::before {
    padding-top: 66.6%;
  }
}

.card__image--1 {
  background-image: url('../img/szkt1.jpg');
}

.card__image--2 {
  background-image: url('../img/website.webp');
}

.card__image--3 {
  background-image: url('../img/wechatapp.png');
}

.card__image--4 {
  background-image: url('../img/virtual.jpg');
}

.card__image--5 {
  background-image: url('../img/datavisiable.jpg');
}

.card__image--6 {
  background-image: url('../img/vision.jpg');
}

.card__title {
  font-size: 1.2em;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #696969;
  text-transform: uppercase;
}

.card__text {
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.85em;
  font-weight: 400;
  text-align: left;
  line-height: 20px;
  flex: 1 1 auto;
  margin-bottom: 1.25rem;
  color: #4B4F56;
  height: 3em;
}
