/* Text Elements */

h1#logo {
  display: inline-block;
  float: left;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 1em;
  padding-left: 1em;
  background-color: #fd5559;
  color: #fcfcfc;
  text-shadow: #c0392b 2px 4px 0;
  font-size: 60px;
  font-family: 'Oswald', cursive;
  line-height: 3em;
  -webkit-transition-duration: .3s;
     -moz-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
}

ul.unorder-list.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: end;
  float: none;
  margin-right: 0;
  list-style-type: none;

  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}

/* Layout Elements */

body > .row#wrapper {
  max-width: none;
}

body > .row > [class*='coffee-span-']#js-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: hidden;
  min-height: 20px;
  max-height: none;
  height: 10em;
  border-bottom: 8px solid #f4f4f4;
  background-color: #394e63;
  -webkit-transition-duration: .3s;
     -moz-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
  -webkit-transition-property: height;
     -moz-transition-property: height;
       -o-transition-property: height;
          transition-property: height;
}

body > .row > [class*='coffee-span-'].column-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: end;
  background-color: transparent;

  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
          justify-content: flex-end;
}

body > .row.row-1 {
  max-width: 1200px;
}

body > .row.row-2 {
  margin-top: 5px;
  max-width: none;
}

body > .row > [class*='coffee-span-'].column-2 {
  background-color: #f4d28d;
}

li.list-item.list-item-1 {
  margin-left: 20px;
  color: #fcfcfc;
  font-weight: 300;
  font-size: 1em;
  line-height: 150px;
  -webkit-transition-duration: .3s;
     -moz-transition-duration: .3s;
       -o-transition-duration: .3s;
          transition-duration: .3s;
}

li.list-item a.list-item-text-1 {
  background-color: transparent;
  color: #fcfcfc;
}

li.list-item.list-item-1:hover {
  color: #fe5c60;
}

@media screen and (max-width: 760px) {
  /* Text Elements */

  h1.heading-1 {
    margin-right: auto;
    margin-left: auto;
    min-height: 100px;
  }

  h1#logo {
    display: block;
    float: none;
    min-height: 100px;
    text-align: center;
    line-height: 80px;
  }

  ul.unorder-list.nav {
    display: -webkit-box;
    display: -webkit-flex;
    display:    -moz-box;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-pack: center;
    -ms-flex-align: start;
    margin: 0 auto;
    min-height: 25px;

    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
            align-self: auto;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
            align-items: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
            align-content: flex-start;
  }

  /* Layout Elements */

  body > .row > [class*='coffee-span-'].column-1 {
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    -ms-flex-align: center;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
            align-content: center;
  }

  li.list-item.list-item-1 {
    margin-right: 10px;
    margin-left: 10px;
    line-height: 50px;

    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
            align-self: stretch;
  }
}