/* ! HERO SECTION (DESKTOP) */
.hero_container {
  min-height: 500px;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 20%,
      rgba(0, 0, 0, 0.5) 50%,
      #000 100%
    ),
    url("../img/students/image1.png") no-repeat center;
  background-size: cover;
}

.hero_text {
  font-size: 12px;
}

.student--wrapper {
  padding-top: 1.5rem;
}

/* STUDENTS HEADING */
.students--heading {
  font-size: 24px;
  padding-left: 1.5rem;
  border-left: 4px solid black;
}

.icon--wrapper {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.icon {
  padding: 2rem 1.5rem;
  border: 3px solid transparent;
  transition: .25s ease-in-out;
  cursor: pointer;
}

.icon:hover {
  border-color: rgba(0, 0, 0, .5);
}
 
@media (min-width: 992px) {
  .students--heading {
    font-size: 32px;
  }

  .icon p {
    font-size: 18px;
  }

  .icon--wrapper {
    margin-top: 3rem !important;
    margin-bottom: 4rem !important;
  }
}

@media (min-width: 1200px) {
  .students--heading {
    font-size: 38px;
    border-left: 6px solid black;
    padding-left: 2rem;
  }
}