/*--------------------------------------------------------------
# servers
--------------------------------------------------------------*/
.servers .server-box {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  height: 100%;
  padding: 30px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
}

.servers .server-box .icon {
  font-size: 36px;
  padding: 40px 20px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.servers .server-box h3 {
  color: #fff;
  font-weight: 700;
}

.servers .server-box .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.servers .server-box.blue {
  background: #2db6fa;
  border-bottom: 5px solid #f68c09;
}

.servers .server-box.blue .icon {
  color: #2db6fa;
  background: #dbf3fe;
}

.servers .server-box.orange {
  background: #f68c09;
  border-bottom: 5px solid #2db6fa;
}

.servers .server-box.orange .icon {
  color: #f68c09;
  background: #fde3c4;
}

.servers .server-box.green {
  background: #08da4e;
  border-bottom: 3px solid #b50edf;
}

.servers .server-box.green .icon {
  color: #08da4e;
  background: #cffddf;
}

.servers .server-box.purple {
  background: #b50edf;
  border-bottom: 3px solid #08da4e;
}

.servers .server-box.purple .icon {
  color: #b50edf;
  background: #f8e4fd;
}