
/* CARD */
.feature-card {
  background: transparent;
  padding: 10px 5px;
}

.education h3{
    font-size: 1.5em;
}

/* ÍCONE */
.icon-box {
  width: 52px;
  height: 52px;
  background-color: #afcc18;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box i {
  font-size: 24px;
  color: #1c1c1c;
  margin: auto;
}

.row-features{
  height: 51vh;
}


.row-education{
  height: 70vh;
}

/* TEXTO */
.feature-card p {
  font-size: 0.95rem;
  color: #affc18;
  margin-top: 8px;
  line-height: 1.6;
}

/* RESPONSIVO */

@media (max-width: 992px) {
 
  .row-features div:nth-child(3),
  .row-education div:nth-child(3){
    display: none;
  }
}



@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}


@media (max-width: 540px) {
 .row-features div:nth-child(2),
 .row-education div:nth-child(2){
    display: none;
  }

  .feature-card {
    width: 300px;
}

.col-responsive{
  display: flex;
  justify-content: center;
  align-items: center;
}

.row-features {
    height: 45vh;
}

.education h3 {
    font-size: 1.2em;
  }

}