.content-items {
  width: 100%;
  height: 300px;
  margin: auto;
  position: absolute;
  top: 75%;
  font-family: "Raleway", sans-serif;
}

.content-items .item {
  width: 30%;
  height: 250px;
  float: left;
  background-color: var(--white-color);
  text-align: center;
  padding: 30px 20px;
  border-radius: 18px;
  cursor: pointer;
  z-index: 1;
}

.content-items .item.second {
  margin: 0 5%;
}

.content-items .item .item-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  font-size: 18px;
  border: 0;
}

.content-items .item .item-logo i {
  font-size: 18px;
}

.content-items .item img {
  width: 60px;
  line-height: 90px;
  padding: 10px 5px;
  border: 0;
  background-color: var(--color-2);
  border-radius: 50%;
  transition: background-color 0.35s;
}

.content-items .item:hover .item-logo img {
  background-color: var(--color-1);
}

.content-items .item .title-item {
  text-transform: capitalize;
  color: var(--gray-color);
  font-weight: 500;
  margin-bottom: 20px;
}

.content-items .item p {
  width: 100%;
  font-size: 12px;
  color: var(--light-gray);
  line-height: 18px;
}
