/* CSS Document */
.notWhenSmall {
    display: none;
}

@media (min-width: 768px) {
  .notWhenSmall {
      display: block;
  }
}  
 
@media (max-width: 360px) {
  header .intro-text {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  header .intro-text .intro-lead-in {
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: italic;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 18px;
  }
  header .intro-text .intro-heading {
    font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}

@media (max-width: 360px) {
  section {
    padding: 50px 0;
  }
  section h2.section-heading {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
  }
  section h3.section-subheading {
    font-size: 16px;
    font-family: "Droid Serif", "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 50px;
  }
}
