/* banner styles */
.banner {
  position: absolute;
  top: 0;
  left: 0;

  background-color: $header-bg-color;
  min-height: $section-height-large;
  width: 100%;
  color: $header-text-color;

  h1 {
    margin-top: 300px;
    font-family: "Roboto Slab", sans-serif;
    font-weight: 700;
    font-size: $header-font-size;
    letter-spacing: 0.05em;
  }

  h3 {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.15em;
    margin: 0.5em;
    line-height: 1em;
  } 

  &.small {
    min-height: $section-height-small;

    h1 {
      margin-top: 200px;
      font-weight: 500;
      font-size: $small-header-font-size;
    }

    @media all and (max-width: 767px) {
      
      min-height: $section-height-smaller;
      
      h1 {
        margin-top: 130px;
        font-weight: 400;
      }
    }  
  }

  @media all and (max-width: 767px) {
    
    min-height: $section-height-medium;
    
    h1 {
      margin-top: 150px;
      font-weight: 600;
      font-size: $medium-header-font-size;
    }
  }
}