.emf-process {
    position: relative;
    overflow: hidden;
}

.emf-process:after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: 0.6;
    background: linear-gradient(to right, #E9CE66 0%, #E8DBA8 50%, #E9CE66 100%);
}

.emf-process .emfp-content-wrapper {
    position: relative;
    background: #fff;
    overflow: hidden;
    z-index: 1;
    padding: 40px 28px;
    background: #fff;
    box-shadow: 0px 0 60px -10px rgb(67 60 16 / 19%);
    border-radius: 50px;
    height: 100%;
    cursor: default;
    margin-bottom: 24px;
    border: 1px solid transparent;
    transition: border 0.7s ease-in-out;
}

.emf-process .emfp-content-wrapper:hover {
    border-color: #000;
}

.emf-process .emfp-content-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #E9CE66 0%, #E8DBA8 100%);
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
    z-index: -1;
}

.emf-process .emfp-content-wrapper:hover::before {
    opacity: 0.7;
}

.emf-process .emfp-icon {
  position: relative;
  background: linear-gradient(90deg, #E9CE66 0%, #E8DBA8 100%);
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  padding: 14px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-bottom: 30px;
  transition: color 0.7s ease-in-out; 
}

.emf-process .emfp-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.7s ease-in-out;
  z-index: -1;
}

.emf-process .emfp-content-wrapper:hover .emfp-icon::before {
  opacity: 1;
}

.emf-process .emfp-icon i {
  position: relative;
  color: #fff;
  font-size: 28px;
  transition: color 0.7s ease-in-out;
}

.emf-process .emfp-content-wrapper:hover .emfp-icon i {
  color: #fff; 
}

.emf-process .emfp-content h4 {
    font-size: 24px;
}


@media (min-width:1200px) {
    .emf-process .emfp-content-wrapper {
        margin-bottom: 0;
    }
}
