/*
 * ****************************************************************************
 * Home Sections
 * ****************************************************************************
 */
#section-home {
  /* Navbar height */
  padding-top: 5rem;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.hero-image {
  width: 95%;
  height: auto;
  display: block;
  margin: auto;
}

.section-highlights {
  margin: 3rem 0rem 1rem 0rem;
  text-transform: uppercase;
}

.section-highlights:hover {
  cursor: pointer;
}

#section-about-me {
  padding: 3rem 2rem 3rem 2rem;
  margin-top: .6rem;
}

.about-pic {
  overflow: hidden;
}

.about-pic img {
  width: auto;
  height: 18rem;
}


#section-awards {
  padding: 2rem;
  padding-top:1.5rem;
}

.awards-container a {
  color: #666666;
}

.desktop {
  display: none;
}

.mobile {
  display: block;
}

/*
 * ****************************************************************************
 * Media queries
 * ****************************************************************************
 */
/* S Breakpoint */
@media(min-width: 576px) {
}

/* M Breakpoint */
@media(min-width: 768px) {
  .desktop {
    display: block;
  }

  .mobile {
    display: none;
  }

  .about-description {
    padding-left: 1rem;
  }
}

/* L Breakpoint */
@media(min-width: 992px) {
  .about-pic img {
    width: auto;
    height: 22rem;
  }

  .about-description {
    padding-left: 2rem;
  }
}

/* XL Breakpoint */
@media(min-width: 1200px) {
  .about-description {
    padding-left: 4rem;
  }
}

/* XXL Breakpoint */
@media(min-width: 1400px) {
  .about-description {
    padding-left: 6rem;
  }
}
