/* Quy trình */

.process {
  padding: 80px 0;
  background: var(--background-section) ;
}
.process-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}


.step-number {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-left: auto;
  color: rgba(15, 103, 79, 0.12);
}

.process-icon {
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  /* flex-shrink: 0; */
}

.process-item{
  min-height: 300px;
  width: 100%;
  margin-bottom: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.card-border{
  padding: 30px;
  border-radius: 40px 0 40px 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  margin-top: 10px;
  margin-bottom: 20px;
  background-color: #fff;
  transition: 0.5s;
}

.card-border:hover{
  transform: scale(1.1) ;
  opacity: 1;

}

