.elfy-gi-wrap{
  padding: 60px 0;
  /*background: #fff;*/
}

.elfy-gi-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Title */
.elfy-gi-title{
  font-family: "Instrument Serif", serif !important;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 40px;
  color: #111;
}

/* 3 items in one row */
.elfy-gi-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

/* Each item: icon left, text right */
.elfy-gi-item{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* Icon circle */
.elfy-gi-icon{
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 72px;
}

/* Icon size + color */
.elfy-gi-icon i{
  font-size: 28px;
  line-height: 1;
  color: #fff;
}

.elfy-gi-icon svg{
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* Right side text alignment */
.elfy-gi-text{
  text-align: left;
}

/* Number (big serif) */
.elfy-gi-number{
  font-family: "Instrument Serif", serif !important;
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: #111;
  margin: 0 0 6px;
}

/* Label small */
.elfy-gi-label{
  font-size: 12px;
  color: #111;
  opacity: 0.75;
  line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px){
  .elfy-gi-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .elfy-gi-item{
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 767px){
  .elfy-gi-title{
    font-size: 34px;
    margin-bottom: 28px;
  }
  .elfy-gi-icon{
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
  .elfy-gi-number{
    font-size: 38px;
  }
}
