/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  List of CSS3 Sass Mixins File to be @imported and @included as you need
  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)
------------------------------------------------------------- */
.wrapper {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto; }

.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem; }

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 1;
  -moz-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem; }

.row.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.col.reverse {
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.col-xs {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: auto;
  -moz-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto; }

.col-xs-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 8.3333333333%;
  -moz-flex-basis: 8.3333333333%;
  -ms-flex-preferred-size: 8.3333333333%;
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%; }

.col-xs-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 16.6666666667%;
  -moz-flex-basis: 16.6666666667%;
  -ms-flex-preferred-size: 16.6666666667%;
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%; }

.col-xs-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 25%;
  -moz-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 33.3333333333%;
  -moz-flex-basis: 33.3333333333%;
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%; }

.col-xs-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 41.6666666667%;
  -moz-flex-basis: 41.6666666667%;
  -ms-flex-preferred-size: 41.6666666667%;
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%; }

.col-xs-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 58.3333333333%;
  -moz-flex-basis: 58.3333333333%;
  -ms-flex-preferred-size: 58.3333333333%;
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%; }

.col-xs-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 66.6666666667%;
  -moz-flex-basis: 66.6666666667%;
  -ms-flex-preferred-size: 66.6666666667%;
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%; }

.col-xs-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 75%;
  -moz-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 83.3333333333%;
  -moz-flex-basis: 83.3333333333%;
  -ms-flex-preferred-size: 83.3333333333%;
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%; }

.col-xs-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 91.6666666667%;
  -moz-flex-basis: 91.6666666667%;
  -ms-flex-preferred-size: 91.6666666667%;
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%; }

.col-xs-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  -webkit-flex-basis: 100%;
  -moz-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-0 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 0; }

.col-xs-offset-1 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 8.3333333333%; }

.col-xs-offset-2 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 16.6666666667%; }

.col-xs-offset-3 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 25%; }

.col-xs-offset-4 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 33.3333333333%; }

.col-xs-offset-5 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 41.6666666667%; }

.col-xs-offset-6 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 50%; }

.col-xs-offset-7 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 58.3333333333%; }

.col-xs-offset-8 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 66.6666666667%; }

.col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 75%; }

.col-xs-offset-10 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 83.3333333333%; }

.col-xs-offset-11 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 91.6666666667%; }

.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -moz-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-left: 100%; }

.col-xs {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-basis: 0;
  -moz-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%; }

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  text-align: left; }

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  text-align: center; }

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right; }

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start; }

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center; }

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end; }

.around-xs {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around; }

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between; }

.first-xs {
  order: -1; }

.last-xs {
  order: 1; }

@media only screen and (min-width: 48em) {
  .container {
    width: 46rem; }
  .col-sm {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-sm-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-sm-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-sm-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-sm-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-sm-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-sm-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-sm-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-sm-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-sm-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0; }
  .col-sm-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-sm-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-sm-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-sm-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-sm {
    order: -1; }
  .last-sm {
    order: 1; } }

@media only screen and (min-width: 62em) {
  .container {
    width: 61rem; }
  .col-md {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-md-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-md-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-md-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-md-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-md-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-md-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-md-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-md-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-md-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0; }
  .col-md-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-md-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-md-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-md-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-md {
    order: -1; }
  .last-md {
    order: 1; } }

@media only screen and (min-width: 75em) {
  .container {
    width: 71rem; }
  .col-lg {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; }
  .col-lg-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 8.3333333333%;
    -moz-flex-basis: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%; }
  .col-lg-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 16.6666666667%;
    -moz-flex-basis: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%; }
  .col-lg-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 25%;
    -moz-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 33.3333333333%;
    -moz-flex-basis: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%; }
  .col-lg-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 41.6666666667%;
    -moz-flex-basis: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%; }
  .col-lg-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 58.3333333333%;
    -moz-flex-basis: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%; }
  .col-lg-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 66.6666666667%;
    -moz-flex-basis: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%; }
  .col-lg-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 75%;
    -moz-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 83.3333333333%;
    -moz-flex-basis: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%; }
  .col-lg-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 91.6666666667%;
    -moz-flex-basis: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%; }
  .col-lg-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-0 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 0; }
  .col-lg-offset-1 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 25%; }
  .col-lg-offset-4 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 50%; }
  .col-lg-offset-7 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 75%; }
  .col-lg-offset-10 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -moz-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    margin-left: 100%; }
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-basis: 0;
    -moz-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%; }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    text-align: left; }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    text-align: center; }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
    text-align: right; }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start; }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center; }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around; }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between; }
  .first-lg {
    order: -1; }
  .last-lg {
    order: 1; } }

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

ul, dl, dt {
  margin: 0;
  padding: 0; }

li, dd {
  list-style: none; }

* {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  touch-action: manipulation; }

html,
body {
  /*@include mq() {

	}
	@include mq(mobile) {

	}
	@include mq(tablet) {

	}
	@include mq(desktop) {

	}
	@include mq(wide) {

	}*/ }

p {
  margin: 0 0 1.5rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.button {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid #f4f3c4;
  border-radius: 20px;
  color: #666;
  text-align: center;
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  background: none;
  z-index: 1;
  overflow: hidden;
  transition: color 0.5s ease-in-out; }
  .button:before, .button:after {
    content: '';
    position: absolute;
    display: block;
    z-index: -1; }
  .button:after {
    border-radius: 50% 50% 0 0/75% 75% 0 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: #f4f3c4;
    transition: height 0.5s ease-in-out; }
  .button:hover {
    color: #000;
    transition: color 0.5s  ease-in-out; }
    .button:hover:after {
      height: 0; }
  .button:focus {
    outline: none; }

.button--large {
  padding: 12px 18px;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 1; }

ul.list {
  margin-bottom: 30px; }

li.list__li {
  position: relative;
  margin: 0 0 8px 16px; }
  li.list__li:hover .list__arrow {
    left: -12px;
    transition: left .25s ease-in-out; }

.list__arrow {
  position: absolute;
  top: 10px;
  left: -16px;
  width: 6px;
  max-height: 11px;
  transition-duration: .15s; }

body {
  font-family: "Quattrocento Sans", serif;
  font-weight: 400;
  font-size: 125%;
  line-height: 1.6;
  color: #333;
  background: #fff; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700; }

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.5s ease-in-out;
  -khtml-transition: color 0.5s ease-in-out;
  -moz-transition: color 0.5s ease-in-out;
  -ms-transition: color 0.5s ease-in-out;
  -o-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out; }
  a:hover, a.is-active {
    color: #000;
    text-decoration: none; }

.hover:hover, .hover.is-active {
  color: #d5ce12;
  text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0; }

h1 {
  font-size: 76.8px;
  font-size: 4.8rem;
  line-height: 1.6; }

h2 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6; }

h3 {
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 1.6; }

h4 {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.6; }

h5 {
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 1.6; }

h6 {
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 1.6; }

.big {
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.6; }

.small {
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1.6; }

b, strong {
  font-weight: 700; }

p::selection, strong::selection, b::selection, a::selection, i::selection, em::selection, li::selection, span::selection, h1.intro__profession::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection {
  background: #d5ce12;
  /* WebKit/Blink Browsers */ }

p::-moz-selection, strong::-moz-selection, b::-moz-selection, a::-moz-selection, i::-moz-selection, em::-moz-selection, li::-moz-selection, span::-moz-selection, h1.intro__profession::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, h6::-moz-selection {
  background: #d5ce12;
  /* Gecko Browsers */ }

.link {
  position: relative; }
  .link:after {
    position: absolute;
    content: '';
    bottom: -5px;
    width: 0;
    height: 3px;
    transition: opacity 0.25s ease-in-out, width 0.25s ease-in-out;
    transition-duration: 0.5s;
    opacity: 0; }
  .link:after {
    left: 0;
    background-color: #d5ce12; }
  .link:hover:after, .link.is-active:after {
    width: 100%;
    opacity: 1; }

::selection {
  background: #eee;
  color: #333;
  text-shadow: none; }

::-moz-selection {
  background: #eee;
  color: #333;
  text-shadow: none; }

::-webkit-selection {
  background: #eee;
  color: #333;
  text-shadow: none; }

a[href^="tel:"] {
  text-decoration: none; }

.container {
  padding: 0 2rem; }
  @media (max-width: 46.24em) {
    .container {
      padding: 0 1rem; } }

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

#main-nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: fixed;
  height: 100%;
  width: 120%;
  max-height: 200px;
  z-index: 3;
  margin: 0 auto;
  left: -20%;
  right: -20%;
  top: -500px;
  background-color: rgba(0, 0, 0, 0.85);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  overflow-x: hidden;
  transition: right .25s ease-in-out, width .5s ease-in-out, top .3s ease-in-out, bottom .3s ease-in-out; }
  @media (max-width: 46.24em) {
    #main-nav {
      max-height: 500px;
      top: -500px;
      width: 160%;
      height: auto;
      left: -50%;
      right: -50%; } }
  #main-nav.is-open {
    top: 0;
    width: 140%; }
    #main-nav.is-open .main-nav__ul {
      margin: 60px 0 40px;
      opacity: 1; }
    @media (max-width: 46.24em) {
      #main-nav.is-open {
        width: 200%; } }

.main-nav__ul {
  align-self: center;
  display: flex;
  margin-top: 20px;
  opacity: 0;
  transition: margin-top .5s ease-in-out, opacity .5s ease-in-out; }
  @media (max-width: 46.24em) {
    .main-nav__ul {
      flex-direction: column;
      text-align: center; } }
  @media (min-width: 46.25em) {
    .main-nav__ul {
      align-items: stretch;
      justify-content: space-between;
      width: 70%;
      max-width: 980px; } }

.main-nav__li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 10px;
  width: 225px; }

.main-nav__link {
  display: block;
  padding: 0;
  font-family: "Quattrocento Sans", serif;
  font-weight: 700;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  text-transform: uppercase;
  transition: 0.25s color ease-in-out, 0.25s opacity ease-in-out; }
  .main-nav__link:hover {
    color: #aaa; }
  .main-nav__link:focus {
    outline: none;
    background-color: transparent; }
  @media (min-width: 46.25em) {
    .main-nav__link:after {
      position: absolute;
      content: '';
      bottom: 0;
      width: 0;
      height: 3px;
      transition: opacity 0.5s ease-in-out, width 0.5s ease-in-out;
      opacity: 0; }
    .main-nav__link:after {
      left: 10px;
      background-color: #fff; }
    .main-nav__link:hover:after {
      width: calc(100% - 20px);
      opacity: 1; } }

.main-nav__desc {
  display: block;
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1.6;
  text-transform: initial;
  color: #aaa;
  transition: 0.25s color ease-in-out, 0.25s opacity ease-in-out; }

/*--- Burger Menu ---*/
.burger {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  overflow: hidden;
  z-index: 4;
  /*--- Close Button ---*/ }
  .burger.burger--is-inverted .burger__icon .burger__line {
    background-color: #fff; }
  .burger__icon {
    position: absolute;
    width: 22px;
    height: 18px;
    top: 50%;
    right: 0;
    transform: translate(-50%, -50%); }
  .burger__line {
    position: absolute;
    left: 0;
    background-color: #333;
    height: 4px;
    width: 100%;
    border-radius: 4px;
    pointer-events: none; }
    .burger__line--1 {
      top: 0; }
    .burger__line--2 {
      top: 0;
      bottom: 0;
      margin: auto; }
    .burger__line--3 {
      bottom: 0; }
  .burger--close .burger__line--1 {
    transition: transform .2s ease-in-out; }
  .burger--close .burger__line--2 {
    right: 0;
    transition: right .2s ease-in-out, opacity .35s ease-in-out, transform 0s ease-in-out; }
  .burger--close .burger__line--3 {
    transition: transform .2s ease-in-out; }
  .burger--close.is-open .burger__line--1 {
    background-color: #fff;
    transform: translate3d(0, 7px, 0) rotate(135deg); }
  .burger--close.is-open .burger__line--2 {
    background-color: #fff;
    opacity: 0;
    right: -88px;
    transform: translate3d(-22px, 0, 0);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out, right .0s ease-in-out .2s; }
  .burger--close.is-open .burger__line--3 {
    background-color: #fff;
    transform: translate3d(0, -7px, 0) rotate(-135deg); }

.header {
  display: flex;
  justify-content: space-between; }
  @media (min-width: 46.25em) {
    .header {
      min-height: 110px; } }

.logo {
  position: relative;
  margin-left: 10px; }
  .logo:before {
    content: '';
    position: absolute;
    top: -85px;
    left: -20px;
    width: 180px;
    height: 180px;
    border-radius: 100%;
    background-color: #eff8ee; }

.logo__link {
  position: relative;
  display: block;
  padding: 20px 0 0 20px;
  width: 160px;
  height: 95px;
  z-index: 1; }
  .logo__link:focus {
    outline: none; }

footer.footer {
  position: relative;
  min-height: 50px; }
  footer.footer:before {
    content: '';
    position: absolute;
    display: block;
    bottom: 20px;
    left: 30px;
    right: 30px;
    width: calc(100% - 60px);
    height: 1px;
    background-color: #f2f2f2; }
    @media (max-width: 29.99em) {
      footer.footer:before {
        display: none; } }

.footer-social {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  margin: 22px 0 0 10px;
  list-style: none;
  background-color: #fff; }
  @media (min-width: 30em) {
    .footer-social {
      margin-left: 42px; } }

.footer-social__item {
  display: inline-block;
  padding: 0;
  margin: 0;
  list-style: none; }
  .footer-social__item:not(:last-child) {
    margin-right: 20px; }
  .footer-social__item > a {
    display: block;
    width: 15px;
    height: 15px;
    filter: alpha(opacity=50);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -webkit-opacity: 0.5;
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
    -ms-opacity: 0.5;
    -o-opacity: 0.5;
    opacity: 0.5;
    text-indent: -9999px;
    background-color: transparent;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 15px 15px;
    -webkit-transition: all 0.2s ease-in-out;
    -khtml-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .footer-social__item > a:hover, .footer-social__item > a.active {
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      -webkit-transform: scale(1.3);
      -khtml-transform: scale(1.3);
      -moz-transform: scale(1.3);
      -ms-transform: scale(1.3);
      -o-transform: scale(1.3);
      transform: scale(1.3); }
  .footer-social__item.footer-social__item--facebook > a {
    background-image: url(../images/ico-facebook.svg); }
  .footer-social__item.footer-social__item--twitter > a {
    background-image: url(../images/ico-twitter.svg); }
  .footer-social__item.footer-social__item--linkedin > a {
    background-image: url(../images/ico-linkedin.svg); }

footer.footer2 section.contact {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #999; }
  footer.footer2 section.contact dl {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none; }
    footer.footer2 section.contact dl dt {
      display: inline-block;
      margin: 0;
      padding: 0; }
    footer.footer2 section.contact dl dd {
      display: inline-block;
      margin: 0;
      padding: 0;
      font-size: 20.8px;
      font-size: 1.3rem;
      line-height: 1.6; }
      footer.footer2 section.contact dl dd:before {
        padding-right: 5px; }
      footer.footer2 section.contact dl dd.mobile:before {
        content: 'm.'; }
      footer.footer2 section.contact dl dd.email:before {
        content: 'e.'; }
      footer.footer2 section.contact dl dd:first-of-type:after {
        content: '-';
        padding: 0 7px; }

footer.footer2 section.disclaimer {
  padding-top: 20px;
  text-align: center; }
  footer.footer2 section.disclaimer p.copy {
    margin-bottom: 10px;
    font-size: 20.8px;
    font-size: 1.3rem;
    line-height: 1.6; }
  footer.footer2 section.disclaimer p.made {
    margin-bottom: 10px;
    display: inline-block;
    cursor: default;
    font-size: 19.2px;
    font-size: 1.2rem;
    line-height: 1.6; }
    footer.footer2 section.disclaimer p.made span:first-child {
      position: absolute;
      display: inline-block;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      -webkit-transition: opacity 0.2s ease-in-out;
      -khtml-transition: opacity 0.2s ease-in-out;
      -moz-transition: opacity 0.2s ease-in-out;
      -ms-transition: opacity 0.2s ease-in-out;
      -o-transition: opacity 0.2s ease-in-out;
      transition: opacity 0.2s ease-in-out; }
      @media (max-width: 46.24em) {
        footer.footer2 section.disclaimer p.made span:first-child {
          filter: alpha(opacity=100);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          -webkit-opacity: 1;
          -khtml-opacity: 1;
          -moz-opacity: 1;
          -ms-opacity: 1;
          -o-opacity: 1;
          opacity: 1; } }
      footer.footer2 section.disclaimer p.made span:first-child:before {
        position: absolute;
        display: block;
        margin: 0 0 0 2px;
        content: '';
        width: 16px;
        height: 16px;
        background: transparent url(../images/ico-heart.svg) 50% 50% no-repeat;
        background-size: 16px 16px; }
    footer.footer2 section.disclaimer p.made span:last-child {
      position: relative;
      display: inline-block;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      -webkit-transition: opacity 0.2s ease-in-out;
      -khtml-transition: opacity 0.2s ease-in-out;
      -moz-transition: opacity 0.2s ease-in-out;
      -ms-transition: opacity 0.2s ease-in-out;
      -o-transition: opacity 0.2s ease-in-out;
      transition: opacity 0.2s ease-in-out; }
      @media (max-width: 46.24em) {
        footer.footer2 section.disclaimer p.made span:last-child {
          filter: alpha(opacity=0);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
          -webkit-opacity: 0;
          -khtml-opacity: 0;
          -moz-opacity: 0;
          -ms-opacity: 0;
          -o-opacity: 0;
          opacity: 0; } }
    footer.footer2 section.disclaimer p.made:hover span:first-child {
      filter: alpha(opacity=75);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
      -webkit-opacity: 0.75;
      -khtml-opacity: 0.75;
      -moz-opacity: 0.75;
      -ms-opacity: 0.75;
      -o-opacity: 0.75;
      opacity: 0.75; }
    footer.footer2 section.disclaimer p.made:hover span:last-child {
      visibility: hidden;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0; }

.skills {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 20px; }

.skills__main {
  flex: 0 0 150px; }

.skills__secondary {
  flex: 1 1 auto; }

.skills__heading {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6; }
  @media (max-width: 29.99em) {
    .skills__heading {
      margin-bottom: 10px; } }

.row--is-contact {
  max-width: 800px; }

.contact-list {
  position: relative;
  margin: 30px 0 40px 0;
  padding: 0 0 0 110px; }
  @media (max-width: 29.99em) {
    .contact-list {
      padding-left: 100px; } }
  .contact-list:before {
    content: '';
    position: absolute;
    display: block;
    top: -10px;
    left: 0;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    background: transparent url(/assets/images/profile.jpg) 50% 50% no-repeat;
    background-size: 85px 85px; }

.contact-list__li {
  margin: 0;
  padding: 0;
  list-style: none; }
  .contact-list__li:first-child {
    margin-bottom: 2px; }

.contact-detail {
  display: flex;
  margin: 0; }

.contact-detail__heading {
  margin: 0; }

.contact-detail__item {
  display: flex;
  margin: 0; }
  .contact-detail__item:before {
    content: attr(data-abbr);
    display: inline-block;
    margin-right: 10px;
    font-weight: 700; }

.contact-form__heading {
  margin: 0 0 5px;
  font-family: "Quattrocento Sans", serif;
  font-size: 14.4px;
  font-size: 0.9rem;
  line-height: 1.6;
  text-transform: uppercase; }

.contact-form__label {
  display: block;
  margin-bottom: 10px; }
  @media (min-width: 46.25em) {
    .contact-form__label {
      max-width: 290px; } }

.contact-form__textarea {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 14.4px;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 700;
  color: #aaa;
  border: none;
  background-color: #f7f7f7; }
  .contact-form__textarea::-webkit-input-placeholder {
    color: #aaa; }
  .contact-form__textarea:-moz-placeholder {
    color: #aaa; }
  .contact-form__textarea::-moz-placeholder {
    color: #aaa; }
  .contact-form__textarea:-ms-input-placeholder {
    color: #aaa; }
  .contact-form__textarea:focus {
    outline: none; }
  .contact-form__textarea.is-disabled {
    color: #666; }

.content-form__submission {
  text-align: right; }
  @media (min-width: 46.25em) {
    .content-form__submission {
      max-width: 290px; } }

.content-form__status {
  margin-bottom: 5px;
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1.25;
  color: #ccc; }
  .content-form__status.is-complete {
    color: #5bc63d; }

/*.highlighted-link {
	position: relative;
	display: block;
	margin: 0 0 5px;
	@include font-size(1.2, 1.4);
	@include font-bold;
}*/
.blog-link {
  position: relative;
  display: block;
  margin: 0 0 5px;
  padding-left: 40px;
  font-size: 19.2px;
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 700; }
  .blog-link:before, .blog-link:after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 35px;
    height: 24px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    background-color: #000; }
  .blog-link:before {
    content: attr(data-article-month);
    font-size: 12.8px;
    font-size: 0.8rem;
    line-height: 24px;
    text-transform: uppercase; }
  .blog-link:after {
    content: attr(data-article-day);
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    transition-delay: .1s; }
  .blog-link:hover:after {
    opacity: 1; }

.blog-list__date {
  margin: 0;
  color: #bbb;
  font-size: 14.4px;
  font-size: 0.9rem;
  line-height: 1.6; }

.blog-list__preview {
  margin: 0;
  font-size: 17.6px;
  font-size: 1.1rem;
  line-height: 1.6; }

.blog-preview {
  margin-bottom: 20px; }

html, body {
  height: 100%; }

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  max-width: 980px;
  min-height: 100%; }
  .wrapper > header.header {
    flex: 0 1 auto;
    min-height: 110px; }
  .wrapper > main.main {
    flex: 1 1 100%; }
  .wrapper > footer.footer {
    flex: 0 1 auto; }

.main {
  display: flex;
  flex-direction: column;
  position: relative; }
  .main:before {
    content: '';
    position: absolute;
    display: block;
    top: 55px;
    bottom: -34px;
    left: 30px;
    width: 1px;
    background-color: #f2f2f2; }
    @media (max-width: 29.99em) {
      .main:before {
        display: none; } }

.main--is-home {
  justify-content: center; }

.intro {
  position: relative;
  min-height: 320px; }
  @media (max-width: 29.99em) {
    .intro {
      padding: 20px 30px; } }
  @media (min-width: 30em) {
    .intro {
      padding: 20px 150px 20px 50px; } }

.intro__hello {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 28.8px;
  font-size: 1.8rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #d5ce12; }

.intro__name {
  margin-bottom: 30px;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 64px;
  font-size: 4rem;
  line-height: 1.25;
  text-transform: uppercase; }
  .intro__name:after {
    content: '';
    position: absolute;
    display: block;
    margin-top: 20px;
    left: 30px;
    right: 30px;
    max-width: 100%;
    height: 1px;
    background-color: #f2f2f2; }
    @media (max-width: 29.99em) {
      .intro__name:after {
        display: none; } }

@media (max-width: 46.24em) {
  .intro__article {
    max-width: 575px; } }

@media (min-width: 46.25em) {
  .intro__article {
    max-width: 600px; } }

.intro__profession {
  display: inline;
  font-family: "Quattrocento Sans", serif; }
  @media (max-width: 29.99em) {
    .intro__profession {
      display: block;
      margin-bottom: .25rem; } }
  @media (min-width: 30em) {
    .intro__profession {
      padding-right: 10px; } }
  @media (max-width: 61.24em) {
    .intro__profession {
      font-size: 29.6px;
      font-size: 1.85rem;
      line-height: 1.6; } }
  @media (min-width: 61.25em) {
    .intro__profession {
      font-size: 32px;
      font-size: 2rem;
      line-height: 1.6; } }

.intro__link {
  bottom: -5px; }
  @media (max-width: 29.99em) {
    .intro__link {
      bottom: 0; } }

/*@keyframes slideInFromRight {
	from { margin-right: -200px;}
  to   { margin-right: -145px;}
}*/
.intro_figure {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: -145px;
  border-radius: 100%;
  border: 1px solid #f2f2f2;
  background: #fff; }
  @media (max-width: 46.24em) {
    .intro_figure {
      display: none; } }
  @media (max-width: 61.24em) {
    .intro_figure {
      width: 320px;
      height: 320px; } }
  @media (min-width: 61.25em) {
    .intro_figure {
      top: -60px;
      width: 440px;
      height: 440px; } }

.intro__image {
  display: block;
  border-radius: 100%; }
  @media (max-width: 61.24em) {
    .intro__image {
      width: 300px;
      height: 300px; } }
  @media (min-width: 61.25em) {
    .intro__image {
      width: 420px;
      height: 420px; } }

@media (max-width: 29.99em) {
  .intro-links {
    padding: 30px 30px; } }

@media (min-width: 30em) {
  .intro-links {
    padding: 30px 50px; } }

.intro-links__heading {
  margin: 0 0 5px;
  font-family: "Open Sans", sans-serif;
  font-size: 22.4px;
  font-size: 1.4rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #d5ce12; }

/*.intro-links__ul {
	margin: 0;
	padding: 0;
}

.intro-links__li {
	margin-bottom: 5px;
	list-style: none;
	&:before {
		content: '\2022';
		@include font-size(2, .5);
		font-weight: bold;
		display: inline-block;
		margin-right: 5px;
	}
}*/
mainX {
  padding: 0 0 10px;
  position: relative;
  border-bottom: 3px solid #999;
  -webkit-animation: fadeIn 1s;
  -khtml-animation: fadeIn 1s;
  -moz-animation: fadeIn 1s;
  -ms-animation: fadeIn 1s;
  -o-animation: fadeIn 1s;
  animation: fadeIn 1s; }
  mainX:after {
    content: '';
    position: absolute;
    display: block;
    bottom: -2px;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff; }
  mainX section h1 {
    margin-bottom: 1.25rem;
    text-align: center; }
    @media (max-width: 46.24em) {
      mainX section h1 {
        font-size: 48px;
        font-size: 3rem;
        line-height: 1.6; } }
  mainX section h2 {
    margin-bottom: 3rem;
    text-align: center; }
    @media (max-width: 46.24em) {
      mainX section h2 {
        font-size: 28px;
        font-size: 1.75rem;
        line-height: 1.6; } }
    mainX section h2 strong,
    mainX section h2 b,
    mainX section h2 a {
      font-weight: 400; }
    @media (min-width: 30em) {
      mainX section h2 span {
        display: block; } }
  mainX section p.center {
    text-align: center; }
  mainX section.home {
    padding-top: 20px;
    text-align: center; }
    @media (max-width: 46.24em) {
      mainX section.home {
        padding-top: 20px; } }
    @media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
      mainX section.home {
        padding-top: 0; } }
    mainX section.home h3 {
      margin-bottom: 20px; }
      mainX section.home h3 a {
        display: inline-block;
        padding: 0 35px 10px;
        font-size: 44px;
        font-size: 2.75rem;
        line-height: 1.6;
        border-bottom: 1px solid #eee;
        -webkit-transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
        -khtml-transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
        -moz-transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
        -ms-transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
        -o-transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out;
        transition: border-color 0.5s ease-in-out, color 0.5s ease-in-out; }
        @media (max-width: 46.24em) {
          mainX section.home h3 a {
            font-size: 28px;
            font-size: 1.75rem;
            line-height: 1.6;
            padding-left: 10px;
            padding-right: 10px; } }
        mainX section.home h3 a:hover {
          color: #666;
          border-color: #ccc; }
          mainX section.home h3 a:hover strong {
            color: #0387c8; }
        mainX section.home h3 a strong {
          color: #5bc63d;
          font-weight: normal;
          -webkit-transition: color 0.5s ease-in-out;
          -khtml-transition: color 0.5s ease-in-out;
          -moz-transition: color 0.5s ease-in-out;
          -ms-transition: color 0.5s ease-in-out;
          -o-transition: color 0.5s ease-in-out;
          transition: color 0.5s ease-in-out; }
    mainX section.home h2 {
      margin-bottom: 20px;
      line-height: 1.25;
      font-size: 96px;
      font-size: 6rem;
      line-height: 1.6;
      color: #333; }
      @media (max-width: 46.24em) {
        mainX section.home h2 {
          font-size: 64px;
          font-size: 4rem;
          line-height: 1.6; }
          mainX section.home h2 br {
            display: none; } }
      @media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
        mainX section.home h2 {
          margin-bottom: 10px;
          line-height: 48px; } }
      mainX section.home h2 b {
        color: #0387c8;
        font-weight: 200; }
      mainX section.home h2 span {
        display: inline; }
    mainX section.home p {
      margin-bottom: 30px;
      font-size: 44.8px;
      font-size: 2.8rem;
      line-height: 1.6;
      line-height: 1.5;
      color: #333; }
      @media (max-width: 46.24em) {
        mainX section.home p {
          font-size: 32px;
          font-size: 2rem;
          line-height: 1.6;
          margin-bottom: 30px; } }
      @media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
        mainX section.home p {
          line-height: 32px; } }
      @media (min-width: 30em) {
        mainX section.home p span {
          display: block; } }
  mainX section.about article.profile {
    min-height: 125px;
    margin-bottom: 30px; }
    mainX section.about article.profile ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      @media (min-width: 46.25em) {
        mainX section.about article.profile ul {
          display: flex; } }
      @media (min-width: 46.25em) and (max-width: 61.24em) {
        mainX section.about article.profile ul {
          flex-wrap: wrap; } }
      mainX section.about article.profile ul li {
        margin: 0;
        padding: 0; }
        mainX section.about article.profile ul li.photo {
          text-align: center; }
          @media (min-width: 46.25em) and (max-width: 61.24em) {
            mainX section.about article.profile ul li.photo {
              flex: 1 0 100%; } }
          @media (min-width: 61.25em) {
            mainX section.about article.profile ul li.photo {
              flex: 0 0 18%;
              order: 2; } }
          @media (min-width: 46.25em) {
            mainX section.about article.profile ul li.photo:hover img {
              -webkit-transform: scale(1);
              -khtml-transform: scale(1);
              -moz-transform: scale(1);
              -ms-transform: scale(1);
              -o-transform: scale(1);
              transform: scale(1); } }
          mainX section.about article.profile ul li.photo img {
            display: inline-block;
            max-width: 130px;
            -webkit-border-radius: 130px;
            -khtml-border-radius: 130px;
            -moz-border-radius: 130px;
            -ms-border-radius: 130px;
            -o-border-radius: 130px;
            border-radius: 130px;
            -webkit-transition: all 0.2s ease-in-out;
            -khtml-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
            -webkit-transform: scale(0.95);
            -khtml-transform: scale(0.95);
            -moz-transform: scale(0.95);
            -ms-transform: scale(0.95);
            -o-transform: scale(0.95);
            transform: scale(0.95); }
        mainX section.about article.profile ul li.education {
          padding-top: 20px; }
          @media (max-width: 46.24em) {
            mainX section.about article.profile ul li.education {
              text-align: center; } }
          @media (min-width: 46.25em) and (max-width: 61.24em) {
            mainX section.about article.profile ul li.education {
              flex: 1 0 50%;
              padding-right: 23px;
              text-align: right; } }
          @media (min-width: 61.25em) {
            mainX section.about article.profile ul li.education {
              flex: 1 0 41%;
              order: 1;
              text-align: right; } }
        mainX section.about article.profile ul li.experience {
          padding-top: 20px; }
          @media (max-width: 46.24em) {
            mainX section.about article.profile ul li.experience {
              text-align: center; } }
          @media (min-width: 46.25em) and (max-width: 61.24em) {
            mainX section.about article.profile ul li.experience {
              flex: 1 0 50%;
              padding-left: 23px; } }
          @media (min-width: 61.25em) {
            mainX section.about article.profile ul li.experience {
              flex: 1 0 41%;
              order: 3; } }
        mainX section.about article.profile ul li dl {
          margin: 0;
          list-style: none; }
          mainX section.about article.profile ul li dl dt {
            margin: 0;
            padding: 0;
            font-size: 28.8px;
            font-size: 1.8rem;
            line-height: 1.6; }
          mainX section.about article.profile ul li dl dd {
            margin: 0;
            padding: 0;
            font-size: 25.6px;
            font-size: 1.6rem;
            line-height: 1.6; }
  mainX section.about dl.technologies {
    margin: 0 0 40px;
    padding: 0;
    text-align: center; }
    mainX section.about dl.technologies dt {
      margin: 0;
      padding: 0; }
    mainX section.about dl.technologies dd {
      display: block;
      margin: 0;
      padding: 0;
      font-size: 18px;
      color: #333;
      text-transform: uppercase;
      -webkit-transition: all 0.2s ease-in-out;
      -khtml-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      @media (min-width: 30em) {
        mainX section.about dl.technologies dd {
          display: inline-block; }
          mainX section.about dl.technologies dd:not(:last-child):after {
            padding: 0 5px 0 9px;
            display: inline-block;
            content: '.';
            color: #ccc; } }
      mainX section.about dl.technologies dd span {
        font-size: 24px;
        font-size: 1.5rem;
        line-height: 1.6; }
      mainX section.about dl.technologies dd:hover {
        cursor: default;
        color: #222; }
  @media (min-width: 46.25em) {
    mainX section.about .wrap {
      margin-bottom: 1rem; } }
  mainX section.about .wrap p {
    text-align: left; }
  mainX section.about article p {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem; }
    @media (min-width: 46.25em) {
      mainX section.about article p {
        font-size: 28.8px;
        font-size: 1.8rem;
        line-height: 1.6;
        text-align: center; } }
    @media (min-width: 61.25em) {
      mainX section.about article p span {
        display: block; } }
  mainX section.work h2 {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.6; }
  mainX section.work > p {
    text-align: center;
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.6; }
  mainX section.work .showcase .item {
    padding: 30px 0; }
    mainX section.work .showcase .item:not(:last-child) {
      border-bottom: 1px solid #eee; }
    mainX section.work .showcase .item .col-img {
      padding: 0 20px; }
      @media (max-width: 61.24em) {
        mainX section.work .showcase .item .col-img {
          padding: 10px; } }
    mainX section.work .showcase .item .col-copy {
      padding: 0 20px; }
    mainX section.work .showcase .item h3 {
      font-size: 56px;
      font-size: 3.5rem;
      line-height: 1.6;
      margin-bottom: 25px;
      line-height: 1.3; }
      @media (max-width: 61.24em) {
        mainX section.work .showcase .item h3 {
          text-align: center; } }
    mainX section.work .showcase .item p {
      font-size: 32px;
      font-size: 2rem;
      line-height: 1.6; }
      @media (max-width: 61.24em) {
        mainX section.work .showcase .item p {
          text-align: center;
          padding-bottom: 10px; } }
      mainX section.work .showcase .item p:last-child {
        margin-bottom: 0; }
    @media (max-width: 61.24em) {
      mainX section.work .showcase .item .col-img {
        text-align: center; } }
    mainX section.work .showcase .item .col-img img {
      max-width: 100%;
      max-height: 400px; }
      @media (max-width: 61.24em) {
        mainX section.work .showcase .item .col-img img {
          text-align: center; } }
  mainX section.work .get-in-touch {
    padding: 20px 0 15px;
    border-top: 1px solid #eee; }
    mainX section.work .get-in-touch h3 {
      margin-bottom: 5px;
      text-align: center;
      font-size: 52px;
      font-size: 3.25rem;
      line-height: 1.6; }
    mainX section.work .get-in-touch p {
      margin-bottom: 0;
      text-align: center;
      font-size: 40px;
      font-size: 2.5rem;
      line-height: 1.6; }
  mainX section.work .slider-work {
    position: relative;
    margin-bottom: 20px;
    padding-top: 30px;
    min-height: 450px; }
    mainX section.work .slider-work .item {
      padding: 20px 30px 0; }
      mainX section.work .slider-work .item:not(:first-child) {
        display: none; }
      mainX section.work .slider-work .item .col-img {
        padding-left: 30px;
        height: 450px; }
        mainX section.work .slider-work .item .col-img img {
          max-width: 100%;
          max-height: 400px; }
      mainX section.work .slider-work .item .col-copy {
        padding-right: 30px;
        height: 450px; }
        mainX section.work .slider-work .item .col-copy h3 {
          font-size: 56px;
          font-size: 3.5rem;
          line-height: 1.6; }
        mainX section.work .slider-work .item .col-copy p {
          font-size: 32px;
          font-size: 2rem;
          line-height: 1.6; }
    mainX section.work .slider-work .slidesjs-navigation {
      position: absolute;
      top: 50px;
      bottom: 0;
      width: 40px;
      height: 450px;
      filter: alpha(opacity=25);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=25)";
      -webkit-opacity: 0.25;
      -khtml-opacity: 0.25;
      -moz-opacity: 0.25;
      -ms-opacity: 0.25;
      -o-opacity: 0.25;
      opacity: 0.25;
      text-indent: -9999px;
      z-index: 100;
      background: #fff url(../images/ico-arrow.svg) 50% 50% no-repeat;
      background-size: 50%;
      outline: 0;
      -webkit-transition: opacity 0.5s ease-in-out;
      -khtml-transition: opacity 0.5s ease-in-out;
      -moz-transition: opacity 0.5s ease-in-out;
      -ms-transition: opacity 0.5s ease-in-out;
      -o-transition: opacity 0.5s ease-in-out;
      transition: opacity 0.5s ease-in-out; }
      mainX section.work .slider-work .slidesjs-navigation:hover {
        filter: alpha(opacity=75);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
        -webkit-opacity: 0.75;
        -khtml-opacity: 0.75;
        -moz-opacity: 0.75;
        -ms-opacity: 0.75;
        -o-opacity: 0.75;
        opacity: 0.75; }
      mainX section.work .slider-work .slidesjs-navigation.slidesjs-previous {
        left: 0; }
      mainX section.work .slider-work .slidesjs-navigation.slidesjs-next {
        right: 0;
        -webkit-transform: rotate(180deg);
        -khtml-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); }
    mainX section.work .slider-work ul.slidesjs-pagination {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      width: 100%;
      margin: 0 auto;
      padding: 0;
      text-align: center;
      z-index: 10; }
      mainX section.work .slider-work ul.slidesjs-pagination li.slidesjs-pagination-item {
        position: relative;
        display: inline-block;
        margin: 0 8px; }
        mainX section.work .slider-work ul.slidesjs-pagination li.slidesjs-pagination-item a {
          display: block;
          padding: 0;
          width: 15px;
          height: 15px;
          cursor: pointer;
          text-indent: -9999px;
          color: #fff;
          outline: 0;
          -webkit-border-radius: 15px;
          -khtml-border-radius: 15px;
          -moz-border-radius: 15px;
          -ms-border-radius: 15px;
          -o-border-radius: 15px;
          border-radius: 15px;
          background-color: #000;
          filter: alpha(opacity=15);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
          -webkit-opacity: 0.15;
          -khtml-opacity: 0.15;
          -moz-opacity: 0.15;
          -ms-opacity: 0.15;
          -o-opacity: 0.15;
          opacity: 0.15;
          -webkit-transition: opacity 0.25s ease-in-out;
          -khtml-transition: opacity 0.25s ease-in-out;
          -moz-transition: opacity 0.25s ease-in-out;
          -ms-transition: opacity 0.25s ease-in-out;
          -o-transition: opacity 0.25s ease-in-out;
          transition: opacity 0.25s ease-in-out; }
          @media (max-width: 46.24em) {
            mainX section.work .slider-work ul.slidesjs-pagination li.slidesjs-pagination-item a {
              width: 8px;
              height: 8px; } }
          mainX section.work .slider-work ul.slidesjs-pagination li.slidesjs-pagination-item a:hover a {
            filter: alpha(opacity=50);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            -webkit-opacity: 0.5;
            -khtml-opacity: 0.5;
            -moz-opacity: 0.5;
            -ms-opacity: 0.5;
            -o-opacity: 0.5;
            opacity: 0.5; }
          mainX section.work .slider-work ul.slidesjs-pagination li.slidesjs-pagination-item a.active {
            filter: alpha(opacity=50);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
            -webkit-opacity: 0.5;
            -khtml-opacity: 0.5;
            -moz-opacity: 0.5;
            -ms-opacity: 0.5;
            -o-opacity: 0.5;
            opacity: 0.5; }
  mainX section.contact h2 {
    margin-bottom: 4rem; }
    mainX section.contact h2 a {
      -webkit-transition: all 0.2s ease-in-out;
      -khtml-transition: all 0.2s ease-in-out;
      -moz-transition: all 0.2s ease-in-out;
      -ms-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      mainX section.contact h2 a.active {
        color: #0387c8; }
  mainX section.contact article {
    margin-bottom: 3rem; }
  mainX section.contact ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    @media (min-width: 46.25em) {
      mainX section.contact ul {
        display: flex; } }
    mainX section.contact ul li {
      margin: 0;
      padding: 0; }
      @media (min-width: 46.25em) {
        mainX section.contact ul li {
          flex: 1 1 auto;
          padding: 0 20px; }
          mainX section.contact ul li:first-child {
            text-align: right; } }
      mainX section.contact ul li dl {
        position: relative;
        display: inline-block;
        margin: 0;
        padding: 0 0 0 70px;
        list-style: none; }
        @media (min-width: 46.25em) {
          mainX section.contact ul li dl.phone {
            padding: 0 70px 0 0; }
            mainX section.contact ul li dl.phone dt, mainX section.contact ul li dl.phone dd {
              text-align: right; }
            mainX section.contact ul li dl.phone:before {
              right: 20px;
              left: auto; }
            mainX section.contact ul li dl.phone:after {
              right: 0;
              left: auto; } }
        @media (max-width: 46.24em) {
          mainX section.contact ul li dl {
            display: block;
            margin-bottom: 2rem;
            padding-left: 0;
            text-align: center; } }
        mainX section.contact ul li dl:before {
          position: absolute;
          display: block;
          content: '';
          top: 20px;
          left: 20px;
          width: 30px;
          height: 30px;
          background-position: 0 0;
          background-repeat: no-repeat;
          background-size: 30px 30px;
          filter: alpha(opacity=30);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
          -webkit-opacity: 0.3;
          -khtml-opacity: 0.3;
          -moz-opacity: 0.3;
          -ms-opacity: 0.3;
          -o-opacity: 0.3;
          opacity: 0.3;
          -webkit-transition: all 0.2s ease-in-out;
          -khtml-transition: all 0.2s ease-in-out;
          -moz-transition: all 0.2s ease-in-out;
          -ms-transition: all 0.2s ease-in-out;
          -o-transition: all 0.2s ease-in-out;
          transition: all 0.2s ease-in-out; }
          @media (max-width: 46.24em) {
            mainX section.contact ul li dl:before {
              left: 50%;
              margin-left: -15px;
              filter: alpha(opacity=75);
              -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
              -webkit-opacity: 0.75;
              -khtml-opacity: 0.75;
              -moz-opacity: 0.75;
              -ms-opacity: 0.75;
              -o-opacity: 0.75;
              opacity: 0.75;
              -webkit-transform: scale(1.1);
              -khtml-transform: scale(1.1);
              -moz-transform: scale(1.1);
              -ms-transform: scale(1.1);
              -o-transform: scale(1.1);
              transform: scale(1.1); } }
        mainX section.contact ul li dl.phone:before {
          background-image: url(../images/ico-phone.svg); }
        mainX section.contact ul li dl.location:before {
          background-image: url(../images/ico-location.svg); }
        mainX section.contact ul li dl.email:before {
          background-image: url(../images/ico-email.svg); }
        mainX section.contact ul li dl:after {
          position: absolute;
          display: block;
          content: '';
          top: 0;
          left: 0;
          width: 68px;
          height: 68px;
          border: 1px solid #eee;
          -webkit-border-radius: 70px;
          -khtml-border-radius: 70px;
          -moz-border-radius: 70px;
          -ms-border-radius: 70px;
          -o-border-radius: 70px;
          border-radius: 70px;
          -webkit-transition: border-color 0.2s ease-in-out;
          -khtml-transition: border-color 0.2s ease-in-out;
          -moz-transition: border-color 0.2s ease-in-out;
          -ms-transition: border-color 0.2s ease-in-out;
          -o-transition: border-color 0.2s ease-in-out;
          transition: border-color 0.2s ease-in-out; }
          @media (max-width: 46.24em) {
            mainX section.contact ul li dl:after {
              left: 50%;
              margin-left: -35px;
              border-color: #ccc; } }
        mainX section.contact ul li dl:hover:before, mainX section.contact ul li dl.active:before {
          filter: alpha(opacity=75);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
          -webkit-opacity: 0.75;
          -khtml-opacity: 0.75;
          -moz-opacity: 0.75;
          -ms-opacity: 0.75;
          -o-opacity: 0.75;
          opacity: 0.75;
          -webkit-transform: scale(1.1);
          -khtml-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          transform: scale(1.1); }
        mainX section.contact ul li dl:hover:after, mainX section.contact ul li dl.active:after {
          border-color: #ccc; }
        mainX section.contact ul li dl:hover dd, mainX section.contact ul li dl.active dd {
          border-top-color: #ccc; }
        mainX section.contact ul li dl dt {
          margin: 0;
          padding: 0 10px;
          min-height: 35px;
          line-height: 35px;
          font-size: 22.4px;
          font-size: 1.4rem;
          line-height: 1.6;
          cursor: default; }
          @media (max-width: 46.24em) {
            mainX section.contact ul li dl dt {
              padding-top: 70px;
              text-align: center; } }
        mainX section.contact ul li dl dd {
          margin: 0;
          padding: 0 10px;
          line-height: 35px;
          border-top: 1px solid #eee;
          font-size: 22.4px;
          font-size: 1.4rem;
          line-height: 1.6;
          -webkit-transition: border-color 0.2s ease-in-out;
          -khtml-transition: border-color 0.2s ease-in-out;
          -moz-transition: border-color 0.2s ease-in-out;
          -ms-transition: border-color 0.2s ease-in-out;
          -o-transition: border-color 0.2s ease-in-out;
          transition: border-color 0.2s ease-in-out;
          cursor: default; }
          @media (max-width: 46.24em) {
            mainX section.contact ul li dl dd {
              display: inline-block;
              width: 100%;
              max-width: 26rem;
              text-align: center;
              border-top-color: #ccc; } }
          mainX section.contact ul li dl dd a {
            color: #333;
            text-decoration: none; }

#map {
  width: 100%;
  height: 250px; }

@keyframes slide {
  0% {
    left: -50px;
    opacity: 0; }
  100% {
    left: 0;
    opacity: 1; } }

@keyframes bounce {
  0%, 100% {
    transform: translateX(0); }
  60% {
    transform: translateX(5px); } }

.page {
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 30em) {
    .page {
      padding-left: 65px; } }

.page__header {
  position: relative;
  display: flex;
  justify-content: space-between; }
  .page__header:before {
    content: '';
    position: absolute;
    left: -50px;
    opacity: 0;
    margin: 10px 0 0 -35px;
    width: 20px;
    height: 10px;
    background-color: #bfbfbf;
    animation: 0.3s forwards 0s 1 slide;
    animation-delay: 1s; }

.page__heading {
  margin: 0 0 15px 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 25.6px;
  font-size: 1.6rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #d5ce12;
  animation: bounce .4s ease-in-out;
  animation-delay: 1.3s; }

.page__content--is-narrow {
  max-width: 440px; }

.page__content--is-narrower {
  max-width: 800px; }

.project-wrapper {
  display: flex;
  align-items: stretch; }
  @media (min-width: 61.25em) {
    .project-wrapper {
      margin-top: -20%; } }
  .project-wrapper .project-wrapper__item {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column; }
    .project-wrapper .project-wrapper__item:nth-child(odd) {
      margin: 0 5% 0 0; }
    .project-wrapper .project-wrapper__item:nth-child(even) {
      margin: 28% 0 0 5%; }

.project-grid {
  position: relative; }

.project-grid__item {
  position: relative;
  flex: 0 0 auto;
  margin-bottom: 25%;
  list-style: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  overflow: hidden;
  transition: box-shadow .4s ease-in-out;
  will-change: transform; }
  .project-grid__item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3); }

.project-grid__link {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 100%;
  border-radius: 100%;
  z-index: 3;
  opacity: 0;
  overflow: hidden;
  transition: opacity .5s ease-in-out; }
  .project-grid__link:hover {
    color: #fff;
    opacity: 1; }
  .project-grid__link span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    padding: 0 10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    text-align: center;
    color: #fff; }
    @media (max-width: 29.99em) {
      .project-grid__link span {
        font-size: 14.4px;
        font-size: 0.9rem;
        line-height: 1.6; } }

.project-grid__image {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  border-radius: inherit; }

.project-grid__heading {
  position: relative;
  margin: 0;
  color: #fff;
  border-radius: 100%;
  z-index: 2; }
  .project-grid__heading:before, .project-grid__heading:after {
    content: '';
    position: absolute;
    display: block;
    z-index: 1; }
  .project-grid__heading:after {
    border-radius: 50% 50% 0 0/75% 75% 0 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #000;
    transition: height 0.5s ease-in-out; }
  .project-grid__heading:hover:after {
    height: 200%; }
  .project-grid__heading:focus {
    outline: none; }

.technologies {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 20px; }
  @media (max-width: 29.99em) {
    .technologies {
      justify-content: center; } }

.technologies__item {
  display: block;
  margin: 5px;
  padding: 5px 10px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 12.8px;
  font-size: 0.8rem;
  line-height: 1.6;
  cursor: default;
  background-color: #f4f3c4;
  transition: background-color .5s ease-in-out; }
  .technologies__item:hover {
    background-color: #d5ce12; }

.project-navigation {
  display: flex;
  margin-right: -10px;
  padding-top: 4px; }

.project-navigation__item {
  margin-left: 10px; }

.project-navigation__link {
  display: block;
  padding: 3px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  opacity: .25; }
  .project-navigation__link:hover {
    opacity: 1;
    transition: opacity .25s ease-in-out; }
  .project-navigation__link.is-active {
    opacity: .25; }

.project-navigation__arrow {
  height: 16px; }

.project-navigation__path {
  transition: opacity .25s ease-in-out; }

.project-image {
  margin: 10px 0; }
  @media (max-width: 29.99em) {
    .project-image {
      display: block;
      margin: 20px auto;
      max-width: 300px; }
      .project-image--is-iphone {
        max-width: 200px; }
      .project-image--is-ipad-portrait {
        max-width: 200px; }
      .project-image--is-ipad-portrait {
        max-width: 180px; }
      .project-image--is-ipad-pro-landscape {
        max-width: 350px; }
      .project-image--is-ipad-pro-portrait {
        max-width: 250px; }
      .project-image--is-canvas {
        max-width: 100%; } }
  @media (min-width: 30em) {
    .project-image {
      max-width: 350px; }
      .project-image--is-iphone {
        max-width: 200px; }
      .project-image--is-ipad {
        max-width: 200px; }
      .project-image--is-ipad-portrait {
        max-width: 180px; }
      .project-image--is-ipad-pro-landscape {
        max-width: 300px; }
      .project-image--is-ipad-pro-portrait {
        max-width: 200px; }
      .project-image--is-canvas {
        max-width: 100%;
        margin-bottom: 1.5rem; } }
  @media (min-width: 61.25em) {
    .project-image {
      max-width: 400px; }
      .project-image--is-iphone {
        max-width: 180px; }
      .project-image--is-ipad {
        max-width: 240px; }
      .project-image--is-ipad-portrait {
        max-width: 200px; }
      .project-image--is-ipad-pro-landscape {
        max-width: 400px; }
      .project-image--is-ipad-pro-portrait {
        max-width: 300px; }
      .project-image--is-canvas {
        max-width: 100%; } }
  .project-image img {
    display: block;
    max-width: 100%; }

@media (min-width: 30em) {
  .project-image--is-left {
    float: left;
    margin-right: 20px; } }

@media (min-width: 61.25em) {
  .project-image--is-left {
    margin-right: 30px; } }

@media (min-width: 30em) {
  .project-image--is-right {
    float: right;
    margin-left: 20px; } }

@media (min-width: 61.25em) {
  .project-image--is-right {
    margin-left: 30px; } }

@media (min-width: 30em) {
  .project-image--has-top-offset {
    margin-top: 50px; } }
