main .my-container {
  padding: 80px 0;
}
main .my-container .wrapper-posts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
main .my-container .wrapper-posts .single-post-wrapper {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
  min-height: 450px;
}
@media (max-width: 991px) {
  main .my-container .wrapper-posts .single-post-wrapper {
    width: 100%;
  }
}
main .my-container .wrapper-posts .single-post-wrapper .box {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
  transition-duration: 0.5s;
}
main .my-container .wrapper-posts .single-post-wrapper .box:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}
main .my-container .wrapper-posts .single-post-wrapper .box .thumbnail {
  height: 100%;
  width: 100%;
}
main .my-container .wrapper-posts .single-post-wrapper .box .thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
main .my-container .wrapper-posts .single-post-wrapper .box .wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 55, 90, 0.9);
  color: #fff;
  opacity: 0;
  transition-duration: 0.5s;
  padding: 30px;
  text-align: center;
}
main .my-container .wrapper-posts .single-post-wrapper .box .wrap:hover {
  opacity: 1;
}
main .my-container .wrapper-posts .single-post-wrapper .box .wrap .cpt--tytul {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}
main .my-container .wrapper-posts .single-post-wrapper .box .wrap .cpt--krotki_opis {
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */