.vs--projects-top {
  background: #FFFFFF;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 25px;
}
.vs--projects-top .title {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}
.vs--projects-top .items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 60px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .vs--projects-top .items {
    grid-gap: 36px;
    overflow-x: auto;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
  }
  .vs--projects-top .items::-webkit-scrollbar {
    width: 0;
    height: 0;
  }
}
.vs--projects-top .items .item {
  display: block;
  text-align: center;
  max-width: 160px;
}
.vs--projects-top .items .item .image {
  position: relative;
  width: 122px;
  height: 122px;
  max-height: 122px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  background-color: #E1F0D6;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 9px;
}
.vs--projects-top .items .item .image .initials {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  font-weight: 700;
  font-size: 40px;
  line-height: 49px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.vs--projects-top .items .item .name {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 34px;
}
.vs--projects-top .items .item .projects-count {
  margin-top: 5px;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
  color: #777D83;
}
