.block-2 {
  margin-bottom: 25px;
  padding-top: 105px;
}
.block-2 .items {
  margin: 0 -10px;
}
.block-2 .items .item-container {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .block-2 .items .item-container:nth-child(1) .item {
    height: 400px;
  }
  .block-2 .items .item-container:nth-child(2) .item {
    height: 450px;
  }
  .block-2 .items .item-container:nth-child(3) .item {
    height: 400px;
  }
  .block-2 .items .item-container:nth-child(4) .item {
    height: 430px;
    margin-top: -50px;
  }
  .block-2 .items .item-container:nth-child(5) .item {
    height: 380px;
  }
  .block-2 .items .item-container:nth-child(6) .item {
    height: 430px;
    margin-top: -50px;
  }
}
.block-2 .items .item-container .item {
  padding: 20px;
  background: #2c2c2c;
  border: 1px solid #353535;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  position: relative;
}
.block-2 .items .item-container .item .img {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .block-2 .items .item-container .item .img {
    height: 200px;
  }
}
.block-2 .items .item-container .item .title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 27px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  position: relative;
  margin-bottom: 30px;
}
.block-2 .items .item-container .item .title:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../../../assets/img/romb-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.block-2 .items .item-container .item .desc {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  color: #c4c4c4;
}
.block-2 .items .item-container .item .buttons {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.block-2 .items .item-container .item .buttons .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 10px;
}
.block-2 .items .item-container .item .buttons .btn:last-child {
  margin-bottom: 0;
}
.block-2 .items .item-container .item:hover .buttons {
  opacity: 1;
}