/* _variables.scss */
/* MEDIA QUERY SIZES */
/* TYPOGRAPHY */
/* COLORS */
/* LAYOUT */
/* _reset.scss */
/* line 5, ../scss/_reset.scss */
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, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 27, ../scss/_reset.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 31, ../scss/_reset.scss */
body {
  line-height: 1;
}

/* line 34, ../scss/_reset.scss */
blockquote, q {
  quotes: none;
}

/* line 37, ../scss/_reset.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 43, ../scss/_reset.scss */
:focus {
  outline: 0;
}

/* line 47, ../scss/_reset.scss */
ins {
  text-decoration: none;
}

/* line 50, ../scss/_reset.scss */
del {
  text-decoration: line-through;
}

/* line 54, ../scss/_reset.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 59, ../scss/_reset.scss */
b, strong {
  font-weight: 600;
}

/* line 63, ../scss/_reset.scss */
img {
  display: block;
  display: inline-block;
  max-width: 100%;
  image-rendering: optimizeQuality;
  -ms-interpolation-mode: bicubic;
}

/* line 71, ../scss/_reset.scss */
* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* _typography.scss */
/* line 5, ../scss/_typography.scss */
html {
  font-size: 10px;
}

/* line 9, ../scss/_typography.scss */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #444444;
}

/* line 17, ../scss/_typography.scss */
h1, .h1 {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 2.4rem;
}

/* line 25, ../scss/_typography.scss */
p,
ul {
  margin-bottom: 2.4rem;
}
/* line 29, ../scss/_typography.scss */
p:last-child,
ul:last-child {
  margin-bottom: 0;
}

/* line 34, ../scss/_typography.scss */
ul {
  padding-left: 20px;
}

/* line 38, ../scss/_typography.scss */
a {
  color: #08f;
  text-decoration: none;
}
/* line 42, ../scss/_typography.scss */
a:hover, a:focus {
  color: #33a0ff;
  text-decoration: underline;
}
/* line 48, ../scss/_typography.scss */
a:active {
  color: #006dcc;
}

/* line 53, ../scss/_typography.scss */
small {
  font-size: 1.2rem;
  line-height: 1.2rem;
}
/* line 57, ../scss/_typography.scss */
small.normal {
  font-size: inherit;
  line-height: inherit;
}

/* _layout.scss */
@media screen and (min-width: 640px) {
  /* line 5, ../scss/_layout.scss */
  body {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }
}

/* line 12, ../scss/_layout.scss */
.flex {
  display: -webkit-flex;
  display: flex;
}
/* line 15, ../scss/_layout.scss */
.flex--column {
  -webkit-flex-direction: column;
  flex-direction: column;
}

/* line 22, ../scss/_layout.scss */
.flex__item--grow {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

/* line 27, ../scss/_layout.scss */
.panel {
  min-height: 70vh;
  background: #ffffff;
}
@media screen and (min-width: 640px) {
  /* line 27, ../scss/_layout.scss */
  .panel {
    width: 50%;
    max-width: 500px;
    min-height: 100vh;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
  }
}

/* line 41, ../scss/_layout.scss */
.panel__content {
  padding: 2.4rem;
}
/* line 44, ../scss/_layout.scss */
.panel__content--thin {
  padding: 1.2rem 2.4rem;
}

/* line 49, ../scss/_layout.scss */
.separated {
  position: relative;
}
/* line 52, ../scss/_layout.scss */
.separated:before, .separated:after {
  position: absolute;
  left: 0;
  right: 0;
}
/* line 59, ../scss/_layout.scss */
.separated--top:before {
  top: 0;
  border-top: 1px solid #f0f0f0;
  content: "";
}
/* line 65, ../scss/_layout.scss */
.separated--bottom:after {
  bottom: 0;
  border-top: 1px solid #f0f0f0;
  content: "";
}

/* line 72, ../scss/_layout.scss */
.hidden {
  position: absolute;
  top: -9999px;
}

/* _header.scss */
/* line 5, ../scss/_header.scss */
.main-header {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  min-height: 30vh;
  padding: 2.4rem;
  background: #444444 url(../img/header.jpg) 70% 85%;
  background-size: cover;
}
@media screen and (min-width: 640px) {
  /* line 5, ../scss/_header.scss */
  .main-header {
    display: block;
    -webkit-flex-grow: 1;
    flex-grow: 1;
  }
}

/* line 21, ../scss/_header.scss */
.main-header__logo,
.main-header__title {
  display: inline-block;
  vertical-align: middle;
  -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

/* line 28, ../scss/_header.scss */
.main-header__logo {
  width: auto;
  height: 4.8rem;
  margin: -1.2rem 0;
}

/* line 34, ../scss/_header.scss */
.main-header__title {
  margin: 0 0 0 1.2rem;
  color: #fff;
  text-transform: uppercase;
}

/* _footer.scss */
/* _ui-elements.scss */
/* _helpers.scss */
