#workflow {
  background-color: #f2ece2;
  padding-bottom: 120px;
}
#workflow h2 {
  text-align: center;
  margin-bottom: 100px;
  font-size: 42px;
  line-height: 63px;
  font-weight: 600;
}
#workflow .workflow_items_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
#workflow .workflow_items_wrapper .item_wrapper {
  padding: 32px;
  position: relative;
  border-radius: 20px;
  height: 448px;
  overflow: hidden;
  background-color: #f7f2e7;
}
#workflow .workflow_items_wrapper .item_wrapper .content {
  position: relative;
  z-index: 10;
}
#workflow .workflow_items_wrapper .item_wrapper .content .icon {
  margin-bottom: 24px;
}
#workflow .workflow_items_wrapper .item_wrapper .content h3 {
  font-size: 22px;
  line-height: 38px;
  margin-bottom: 24px;
  font-weight: 700;
}
#workflow .workflow_items_wrapper .item_wrapper .content p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
}
#workflow .workflow_items_wrapper .item_wrapper .content p strong {
  font-weight: 700;
}
#workflow .workflow_items_wrapper .item_wrapper video {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 448px;
}
#workflow .workflow_items_wrapper .item_wrapper video.tablet {
  display: none;
}
#workflow .workflow_items_wrapper .item_wrapper .img_holder {
  display: none;
}

@media screen and (max-width: 1280px) {
  #workflow h2 {
    font-size: 36px;
    line-height: 50px;
    margin-bottom: 80px;
  }
  #workflow .workflow_items_wrapper .item_wrapper {
    width: 100%;
    flex: 0 0 100%;
  }
  #workflow .workflow_items_wrapper .item_wrapper video.tablet {
    display: block !important;
  }
  #workflow .workflow_items_wrapper .item_wrapper video.desktop {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #workflow {
    padding-bottom: 80px;
  }
  #workflow h2 {
    text-align: left;
    font-size: 26px;
    line-height: 42px;
    margin-bottom: 40px;
  }
  #workflow .workflow_items_wrapper .item_wrapper {
    padding: 0;
    padding-bottom: 0;
    max-width: 100%;
    height: unset;
  }
  #workflow .workflow_items_wrapper .item_wrapper .content {
    padding: 24px;
  }
  #workflow .workflow_items_wrapper .item_wrapper .content .icon {
    margin-bottom: 16px;
  }
  #workflow .workflow_items_wrapper .item_wrapper .content h3 {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 34px;
  }
  #workflow .workflow_items_wrapper .item_wrapper .content p {
    font-size: 16px;
    line-height: 28px;
  }
  #workflow .workflow_items_wrapper .item_wrapper .content p br {
    display: none;
  }
  #workflow .workflow_items_wrapper .item_wrapper .img_holder {
    position: relative;
    display: block;
    margin-bottom: -10px;
    margin-right: -10px;
  }
  #workflow .workflow_items_wrapper .item_wrapper .img_holder img {
    max-width: 100%;
  }
  #workflow .workflow_items_wrapper .item_wrapper video {
    display: none !important;
  }
  #workflow .workflow_items_wrapper .item_wrapper video.tablet {
    display: none !important;
  }
  #workflow .workflow_items_wrapper .item_wrapper video.desktop {
    display: none !important;
  }
}