/*Responsive*/
@media(max-width: 768px) {
  .header {
    display: block;
    padding: 30px 0 15px;
    text-align: center;
  }

  .header > nav > ul {
    margin-top: 30px;
  }

  .header > nav > ul > li {
    display: inline;
  }

  .showcase {
    height: 400px;
  }

  .showcase h1 {
    font-size: 45px;
  }
  .showcase p {
    font-size: 18px;
  }

  .subscribe-bar {
    display: block;
    text-align: center;
    padding: 22px 0;
  }

  .subscribe-bar h1 {
    margin-bottom: 12px;
  }

  .subscribe-bar form {
    text-align: center;
    width: 80%;
    display: block;
    margin: 0 auto;
    height: auto;
  }

  .subscribe-bar form input[type="email"], .button-1 {
    border-radius: 5px;
    margin-bottom: 8px;
    display: block;
    width: 100%;
    height: 35px;
  }

  .boxes {
    display: block;
    text-align: center;
    width: 100%;
  }

  .boxes .box {
    padding: 15px;
  }

  .boxes .box img {
    width: 180px;
  }

  .boxes .box h2 {
    font-size: 32px;
  }

  .boxes .box p {
    font-size: 18px;
  }
  
  .main-col, .sidebar {
    float: none;
    width: 100%;
  }
  
}

@media(max-width: 425px) {

  .showcase {
    height: 350px;
  }

  .showcase h1 {
    font-size: 36px;
  }

  .showcase p {
    font-size: 17px;
  }

  .boxes .box img {
    width: 120px;
  }

  .boxes .box h2 {
    font-size: 28px;
  }

  .main-col h1 {
    font-size: 32px;
  }

}

@media(max-width: 375px) {

  .branding {
    font-size: 33px;
  }

  .header > nav > ul > li > a {
    font-size: 17px;
  }

  .showcase {
    height: 350px;
  }

  .showcase h1 {
    font-size: 33px;
  }

  .showcase p {
    text-align: justify;
  }

  .boxes .box img {
    width: 90px;
  }

  .boxes .box h2 {
    font-size: 26px;
  }

  .boxes .box p {
    font-size: 17px;
  }

  .main-col h1 {
    font-size: 32px;
  }

}