/* MEDIA QUERIES */

/* Mobile Devices Landscape*/

@media screen and (min-width: 992px) {
  .mobile-img {
    display: none;
  }
}

/* ||X-Large */
@media screen and (max-width: 1200px) {
}

/* ||Large */
@media screen and (max-width: 992px) {
  .hero ._text h1 {
    font-size: 40px;
  }
  .desktop-img {
    display: none;
  }
  .mobile-img {
    display: block;
  }
}

/* ||Medium */
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 20px 0 20px;
  }

  .header ._logo img {
    width: 60px;
  }

  .header .links a {
    font-size: 12px;
  }

  .hero ._text {
    top: 180px;
  }

  footer h3 {
    color: #ff9800;
  }
}

/* ||Small */
@media screen and (max-width: 576px) {

  .header .links {
    display: none;
  }

  .hero ._text h1 {
    font-size: 30px;
  }

  .services img {
    padding-top: 15px;
    padding-bottom: 10px;
  }

  .challenges {
    padding-top: 1rem !important;
  }

  .challenges li {
    padding-bottom: 25px;
  }

  .footer {
    padding-bottom: 50px;
  }

  footer h3 {
    color: #ff9800;
  }
}
