.simple_boxes {
  background: radial-gradient(50% 50% at 50% 50%, #2a216b 0%, #131032 100%);
  padding: 120px 0;
}
.simple_boxes .boxes_container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
.simple_boxes .boxes_container .box {
  flex: 0 0 calc(25% - 10px);
  padding: 32px;
  box-shadow: 2px 2px 16px 0 #4a3bbe inset;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.simple_boxes .boxes_container .box .underlay {
  opacity: 0;
  background: linear-gradient(90deg, #8f81ff 0%, #16a9ff 83.73%);
  transition: all 0.5s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.simple_boxes .boxes_container .box:hover .underlay {
  opacity: 1;
}
.simple_boxes .boxes_container .box h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px; /* 125% */
  color: #f7f7f7;
  margin-bottom: 12px;
  position: relative;
  z-index: 10;
}
.simple_boxes .boxes_container .box .desc {
  color: #f7f7f8;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
  opacity: 0.6;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 1280px) {
  .simple_boxes {
    padding: 80px 0;
  }
  .simple_boxes .boxes_container {
    flex-wrap: wrap;
  }
  .simple_boxes .boxes_container .box {
    flex: 0 0 calc(50% - 12px);
  }
}
@media screen and (max-width: 768px) {
  .simple_boxes {
    padding: 40px 0;
  }
  .simple_boxes .boxes_container {
    flex-wrap: wrap;
  }
  .simple_boxes .boxes_container .box {
    flex: 0 0 100%;
  }
}