@media screen and (max-width: 650px) {

  /* About */
  #about #banner {
    height: 36vw;
    background: url('../../images/about_banner.jpg') no-repeat;
    background-size: cover;
    margin-bottom: 2.5vw;
  }

  #about #banner h1.title {
    display: inline-block;
    margin-top: 16vw;
    padding: 1.5vw 1.7vw;
    font-size: 5vw;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.5);
    color: #FEFEFE;
    position: relative;
  }

  #about #blocks .block {
    width: 100%;
    float: none;
    background: #2B2A28;
    color: #ECECEC;
    box-sizing: border-box;
    padding: 0;
    margin-bottom: 2vw;
    margin-right: 0;
  }

  #about #blocks .block .title {
    font-size: 6vw;
    background: white;
    text-transform: uppercase;
    margin-bottom: 1vw;
    color: #2a2927;
    padding: 0 2vw 1vw;
  }

  #about #blocks .block ul {
    line-height: 5vw;
    font-size: 4vw;
    padding: 0 2vw 2vw;
  }

  #about .text {
    float: none;
    padding: 2vw 1vw;
    width: 100%;
    font-size: 4vw;
    box-sizing: border-box;
  }

  #about .text .title {
    font-size: 4vw;
    font-weight: bold;
  }

  #about .diagram {
    padding: 2vw 1vw;
    float: none;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  #about .diagram .sub {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  #about .diagram img {
    width: 100%;
  }

  #about .diagram .description {
    position: relative;
    text-align: left;
    width: 100%;
    text-transform: uppercase;
    background: white;
    font-size: 4vw;
    line-height: 4vw;
    padding: 0 2vw;
    color: #2b2a28;
    margin-bottom: 2vw;
    box-sizing: border-box;
  }

  #about .diagram .description .title {
    font-size: 7vw;
    line-height: 7vw;
  }

  #about .diagram .description .blue:before,
  #about .diagram .description .red:before,
  #about .diagram .description .yellow:before {
    content: "";
    display: inline-block;
    width: 4vw;
    height: 4vw;
    margin: 2vw 0.5vw 0;
    box-sizing: border-box;
    vertical-align: bottom;
  }

  #about .diagram .description .blue:before {
    background: #82D1D0;
  }

  #about .diagram .description .red:before {
    background: #DF7975;
  }

  #about .diagram .description .yellow:before {
    background: #D7DE84;
  }

}