.board-item {
  position: relative;
  height: 100%;
  padding: 10px;
  border-radius: 16px;
  text-align: center;
}
@media (min-width: 576px) {
  .board-item {
    padding: 20px;
  }
}
@media (min-width: 1400px) {
  .board-item {
    padding: 30px;
    min-height: 300px;
    border-radius: 2.375rem;
  }
}
.board-item-title {
  margin: 0 auto 15px;
  font-size: 21px;
  font-weight: 600;
}
@media (min-width: 1400px) {
  .board-item-title {
    font-size: 40px;
  }
}
.board-item-descr {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 300;
}
@media (min-width: 1400px) {
  .board-item-descr {
    margin-bottom: 25px;
    font-size: 24px;
  }
}
.board-item-buttons {
  margin: 0 auto;
  width: 554px;
  max-width: 100%;
  text-align: center;
}
.board-item-buttons .row .btn {
  max-width: 257px;
}
.board-item-small {
  margin-top: 15px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.66);
}
@media (min-width: 1400px) {
  .board-item-small {
    margin-top: 24px;
    font-size: 17px;
  }
}
.board-item.type-2 {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1399.98px) {
  .board-item.type-2 {
    padding-top: 52px;
    padding-bottom: 20px;
  }
}
.board-item.type-2 .board-item-title {
  margin-bottom: 25px;
  max-width: 460px;
}
@media (min-width: 576px) {
  .board-item.type-2 .board-item-title {
    margin-bottom: 40px;
  }
}
.board-item.type-2 .board-item-img {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  height: 56px;
  width: auto;
}
@media (min-width: 1400px) {
  .board-item.type-2 .board-item-img {
    top: auto;
    bottom: 0;
    height: 145px;
    transform: translateX(0%);
  }
}
.board-item.type-2 .btn-container {
  display: inline-block;
  vertical-align: top;
  width: auto;
}
@media (min-width: 1400px) {
  .col-12:nth-child(odd) .board-item.type-2 .board-item-img {
    left: -40px;
  }
}
@media (min-width: 1400px) {
  .col-12:nth-child(even) .board-item.type-2 .board-item-img {
    left: auto;
    right: -40px;
  }
}