/* Development server */
/* Production server */
/* Reset start */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset custom */
html {
  box-sizing: border-box;
  font-size: 10px;
  height: 100%;
}

body {
  height: 100%;
}

* {
  box-sizing: inherit;
  position: relative;
}

*:before, *:after {
  box-sizing: inherit;
}

img {
  display: block;
}

/* Reset end */
/* Helpers start  */
.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

h1 {
  margin-bottom: 15px;
  font-size: 1.7rem;
  font-weight: 400;
}

p {
  margin-bottom: 15px;
}

p:last-child {
  margin-bottom: 0px;
}

.lighter-color {
  color: #9ea2a8;
}

/* Helpers end */
body {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: #3a3a3d;
  background-color: white;
}

a:link, a:visited {
  color: #3a3a3d;
  text-decoration: none;
}

a:hover, a:active {
  color: #3a3a3d;
  cursor: pointer;
  text-decoration: underline;
}

#main-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
}

#main-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 15px solid #cccccc;
  -webkit-border-image: -webkit-linear-gradient(top, white 0%, #cccccc 100%) 100% 1;
       -o-border-image: linear-gradient(to bottom, white 0%, #cccccc 100%) 100% 1;
          border-image: linear-gradient(to bottom, white 0%, #cccccc 100%) 100% 1;
}
#main-header a {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 100%;
  max-width: 350px;
  margin: 20px 0px 20px 0px;
}
#main-header a img {
  width: 100%;
}

#main-navigation {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
#main-navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px;
}
@media only screen and (min-width: 900px) {
  #main-navigation ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#main-navigation li {
  margin: 10px;
}
#main-navigation a {
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
}
#main-navigation a:link, #main-navigation a:visited {
  color: #3a3a3d;
}
#main-navigation a:hover, #main-navigation a:active {
  color: #3398ff;
}
#main-navigation a.main-navigation-active {
  color: #3398ff;
  cursor: default;
}

#main-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

#main-footer {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  background: -webkit-linear-gradient(left, #cccccc 0%, white 50%, #cccccc 100%);
  background: linear-gradient(to right, #cccccc 0%, white 50%, #cccccc 100%);
}
#main-footer ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
}
@media only screen and (min-width: 900px) {
  #main-footer ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#main-footer li {
  margin: 0px 10px 0px 10px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 899px) {
  #main-footer li {
    margin-bottom: 10px;
  }
  #main-footer li:last-child {
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 900px) {
  #main-footer li + li {
    margin-left: 0px;
  }
  #main-footer li + li:before {
    content: '|';
    padding-right: 10px;
  }
}
