#elevate_id {
  padding: 100px 0 138px 0;
  background-color: #fbfbfb;
}

.elevate_grad {
  margin-top: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 15px;
}

.elevate_item {
  padding: 30px;
  height: 220px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.elevate_item img {
  width: 36px;
}

.elevate_item .elevate_p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  color: #2a2b32;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: all 0.44s cubic-bezier(0.2, 0, 0.38, 0.9) 0s;
  opacity: 1;
}

.elevate_item .elevate_p .iconfont {
  font-size: 22px;
  color: #222525;
}

.elevate_item .elevate_txt {
  font-size: 14px;
  line-height: 24px;
  color: #222525;
  width: calc(100% - 40px);
  transition: all 0.3s;
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: all 0.44s cubic-bezier(0.2, 0, 0.38, 0.9) 0s;
  transform: translate3d(0px, -16px, 0px);
  opacity: 0;
}

.elevate_item:hover {
  background-color: #ffbd00;
}

.elevate_item:hover .elevate_txt {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.elevate_item:hover .elevate_p {
  opacity: 0;
  transform: translate3d(0px, 16px, 0px);
}

@media only screen and (max-width: 1000px) {
  .elevate_grad {
    grid-template-columns: 1fr 1fr;
  }
}
