@charset "UTF-8";
/**
 * version: 0.0.1
 * file:    main.css
 * author:  Squiz Australia
 * updated: Wed Nov 30 2016 18:28:17 GMT+0100 (CET)
 *
 * Table of Contents
 *
 * - Reset
 * - Utilities
 * - General
 * - Content
 * - Modules
    S
 */
.container, .container-fluid {
  margin-right: auto;
  margin-left: auto;
}

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

.row--grid {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -.5rem;
  margin-left: -.5rem;
}

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

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

.col-xs, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12, .col-xs-offset-2, .col-xs-offset-3, .col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7, .col-xs-offset-8, .col-xs-offset-9 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: .5rem;
  padding-left: .5rem;
}

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

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

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

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

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

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

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

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

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

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

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-offset-0, .col-sm-offset-1, .col-sm-offset-10, .col-sm-offset-11, .col-sm-offset-12, .col-sm-offset-2, .col-sm-offset-3, .col-sm-offset-4, .col-sm-offset-5, .col-sm-offset-6, .col-sm-offset-7, .col-sm-offset-8, .col-sm-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-offset-0, .col-md-offset-1, .col-md-offset-10, .col-md-offset-11, .col-md-offset-12, .col-md-offset-2, .col-md-offset-3, .col-md-offset-4, .col-md-offset-5, .col-md-offset-6, .col-md-offset-7, .col-md-offset-8, .col-md-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-offset-0, .col-lg-offset-1, .col-lg-offset-10, .col-lg-offset-11, .col-lg-offset-12, .col-lg-offset-2, .col-lg-offset-3, .col-lg-offset-4, .col-lg-offset-5, .col-lg-offset-6, .col-lg-offset-7, .col-lg-offset-8, .col-lg-offset-9 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

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

.visuallyhidden.focusable:active, .focusable.sr-only:active,
.visuallyhidden.focusable:focus, .focusable.sr-only:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.highlight {
  display: inline-block;
  *display: inline;
  zoom: 1;
}

.clearfix {
  *zoom: 1;
}

.clearfix:before, .clearfix:after {
  content: '';
  display: table;
  line-height: 0;
}

.clearfix:after {
  clear: both;
}

/*
--------------------
Reset (normalize.css)
--------------------
*/
/*! normalize.css v2.1.0 | MIT License | git.io/normalize */
article, aside, details, figcaption, figure, footer,
header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

mark {
  background: #ff0;
  color: #000;
}

code, kbd, pre, samp {
  font-family: monospace, serif;
  font-size: 1em;
}

pre {
  white-space: pre-wrap;
}

q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button, input {
  line-height: normal;
}

button, select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

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

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*
--------------------
Utilities
--------------------
*/
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.invisible {
  visibility: hidden;
}

.pull-left {
  float: left;
}

img.pull-left {
  margin-right: 1em;
}

.pull-right {
  float: right;
}

img.pull-right {
  margin-left: 1em;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
--------------------
General
--------------------
*/
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

html,
body {
  height: 100%;
}

body {
  overflow-y: scroll;
  font-family: 'Rubik';
  font-size: 1em;
  font-weight: 300;
  line-height: 1.4;
  padding: 0;
  margin: 0;
}

main {
  padding-top: 3.4375rem;
}

img {
  max-width: 100%;
}

.content-wrapper {
  margin: 0 auto;
  max-width: 62.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.row--full {
  width: 100%;
}

.mobile-show {
  display: block;
}

.mobile-hide {
  display: none;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

@-ms-viewport {
  width: device-width;
}

@page {
  margin: 0.5cm;
}

/*
--------------------
Content
--------------------
*/
/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: .5em 0;
}

caption {
  font-size: 12.8px;
  font-size: 0.8rem;
  font-style: italic;
}

th {
  background: #222;
  color: #dddddd;
}

td {
  border: 1px solid #222;
}

/* Buttons */
.button {
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #222;
  color: #dddddd;
  display: inline-block;
  border: 0;
  padding: .5em 1em;
}

.button, .button:visited {
  text-decoration: none;
}

.button:focus, .button:hover {
  background-color: black;
}

.button--large {
  font-size: 24px;
  font-size: 1.5rem;
}

.button--small {
  font-size: 12.8px;
  font-size: 0.8rem;
}

/* Quotes */
blockquote {
  position: relative;
  padding-left: 3em;
  margin: 2em 0;
}

blockquote:before {
  font-size: 80px;
  font-size: 5rem;
  color: #222;
  content: "\201C";
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1em;
}

.pull-quote {
  border-top: 1px solid #222;
  padding: 1em .5em 0 .5em;
  margin: 1em;
}

/* Highlight */
.highlight {
  background: #cccccc;
  padding: .1em .5em;
}

/*
--------------------
Modules
--------------------
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* Module: S */
.contact {
  color: #3c3c3c;
  padding: 2rem 0;
  text-align: center;
}

.contact .contact__details {
  padding: 0 0 2rem;
}

.contact .contact__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}

.contact .contact__heading {
  color: #443266;
  font-size: 1.875rem;
  font-weight: 300;
  margin: 1rem 0;
}

.contact .contact__subgroup {
  margin: 0.5rem 0;
  position: relative;
}

.contact .contact__subgroup:first-of-type {
  margin-top: 0;
}

.contact .contact__subgroup:last-of-type {
  margin-bottom: 0;
}

.contact .contact__subgroup::before {
  background: #443266;
  content: '';
  display: none;
  height: 0.875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.875rem;
}

.contact .contact__subgroup--name::before {
  background: url("mysource_files/1.svg") no-repeat center center transparent;
}

.contact .contact__subgroup--phone::before {
  background: url("mysource_files/1.svg") no-repeat center center transparent;
}

.contact .contact__subgroup--mail::before {
  background: url("mysource_files/1.svg") no-repeat center center transparent;
}

.contact .contact__subgroup--address::before {
  background: url("mysource_files/1.svg") no-repeat center center transparent;
}

.contact .contact__name,
.contact .contact__phone,
.contact .contact__mail,
.contact .contact__address {
  font-size: 0.875rem;
  margin: 0;
}

.contact .contact__map {
  height: 20rem;
}

/* Module: S */
.footer {
  background: #e4e4e4;
  color: #3c3c3c;
  font-size: 0.875rem;
  padding: 2rem 0;
}

.footer .footer__group {
  padding: 1rem 0 0;
  width: 100%;
  text-align: center;
}

.footer .footer__group:first-of-type {
  padding: 0;
}

.footer .footer__group:last-of-type {
  display: none;
}

.footer .footer__subgroup {
  margin: 0.5rem 0;
  padding: 0;
  position: relative;
}

.footer .footer__subgroup:first-of-type {
  margin-top: 0;
}

.footer .footer__subgroup:last-of-type {
  margin-bottom: 0;
}

.footer .footer__subgroup::before {
  background: #443266;
  content: '';
  display: none;
  height: 0.875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 0.875rem;
}

.footer .footer__subgroup--phone::before {
  background: url("mysource_files/telephone.svg") no-repeat center center transparent;
  height: 1rem;
  width: 1rem;
}

.footer .footer__subgroup--email::before {
  background: url("mysource_files/envelope-square.svg") no-repeat center center transparent;
}

.footer .footer__subgroup--info::before {
  background: url("mysource_files/hat.svg") no-repeat center center transparent;
  height: 1rem;
  width: 1rem;
}

.footer .footer__heading {
  color: #443266;
  font-size: 1.5rem;
  margin: 0;
  text-align: center;
}

.footer .footer__heading + .footer__paragraph {
  margin-top: 1rem;
}

.footer .footer__paragraph {
  display: inline-block;
  margin: 0;
}

.footer .footer__link {
  color: #443266;
  display: inline-block;
}

.footer .footer__link:hover, .footer .footer__link:focus {
  text-decoration: none;
}

.footer .footer__link--contact {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

.footer .footer__link--contact:hover, .footer .footer__link--contact:focus {
  text-decoration: underline;
}

.footer .footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
}

.footer .footer__item {
  padding: 0.5rem 0;
}

.footer .footer__item:first-of-type {
  padding-top: 0;
}

.footer .footer__item:last-of-type {
  padding-bottom: 0;
}

.footer .footer__item .footer__link {
  color: inherit;
  letter-spacing: 0.1875rem;
  text-decoration: none;
  text-transform: uppercase;
}

.footer .footer__item .footer__link:hover, .footer .footer__item .footer__link:focus {
  text-decoration: underline;
}

/* Module: S */
.gallery .gallery__link {
  background: #443266;
  display: none;
  margin: 0.5rem 0;
}

.gallery .gallery__link img {
  display: block;
}

.gallery .gallery__link--loaded {
  display: block;
}

.gallery .gallery__link--broken {
  display: nonel;
}

.no-js .gallery .gallery__link {
  display: block;
}

/* Module: S */
.header {
  background-color: #ffffff;
  color: #3c3c3c;
  font-size: 0.875rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 2;
}

.header .menu__label {
  border: 0.125rem solid #443266;
  display: block;
  padding: 0.5rem;
  text-align: center;
}

.header .menu__trigger:checked ~ .menu__list {
  display: none;
}

.header .menu__trigger {
  display: none;
}

.header .menu__trigger ~ .menu__label::after {
  content: 'Schowaj menu';
  display: block;
}

.header .menu__trigger:checked ~ .menu__label::after {
  content: 'Pokaż menu';
}

.header .header__nav {
  flex: 1 0 100%;
  padding: 0.5rem 0;
}

.header .header__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .header__item {
  background: #f2f2f2;
  border-top: 0.125rem solid #ffffff;
  padding: 0.5rem 0 0;
  text-align: center;
}

.header .header__item--current .header__link {
  color: #8c489f;
}

.header .header__item--current .header__link::after {
  background: #8c489f;
}

.header .header__item--current .header__link:hover::before, .header .header__item--current .header__link:focus::before {
  background: #8c489f;
}

.header .header__item--countdown {
  background: #ffffff;
  padding: 0.5rem 0;
}

.header .header__link {
  color: inherit;
  display: block;
  padding: 0 0 0.5rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
}

.header .header__link::before {
  -webkit-transition: width 0s ease, background 0.35s ease;
  -moz-transition: width 0s ease, background 0.35s ease;
  transition: width 0s ease, background 0.35s ease;
  bottom: 0;
  content: '';
  display: block;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 0;
}

.header .header__link::after {
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  transition: width 0.35s ease;
  background: #3c3c3c;
  bottom: 0;
  content: '';
  display: block;
  height: 0.0625rem;
  position: absolute;
  right: 0;
  width: 0;
}

.header .header__link:hover::before, .header .header__link:focus::before {
  -webkit-transition: width 0.35s ease;
  -moz-transition: width 0.35s ease;
  transition: width 0.35s ease;
  background: #3c3c3c;
  width: 100%;
}

.header .header__link:hover::after, .header .header__link:focus::after {
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  transition: all 0s ease;
  background: transparent;
  width: 100%;
}

.header .header__countdown-label {
  display: inline-block;
}

.header .header__countdown {
  display: inline-block;
}

/* Module: S */
.hero {
  padding: 2rem 0;
}

.hero .hero__side + .hero__side {
  margin-top: 1rem;
}

.hero .hero__side--right {
  text-align: center;
}

.hero .hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.1875rem;
  margin: 0;
  text-transform: uppercase;
}

.hero .hero__heading {
  color: #443266;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

.hero .hero__button {
  -webkit-transition: all 0.35s ease;
  -moz-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background: #443266;
  color: #ffffff;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.hero .hero__button:hover, .hero .hero__button:focus {
  background: #2d2144;
}

.hero .strong {
  color: #443266;
  font-weight: 500;
  text-decoration: none;
}

.hero a.strong:hover, .hero a.strong:focus {
  text-decoration: underline;
}

.logos {
  background: #e4e4e4;
  padding: 1rem 0;
}

.logos--purple {
  background: #443266;
}

.logos .logos__item {
  display: flex;
  height: 3.75rem;
}

.logos .logos__item img {
  margin: auto;
}

.testimonials {
  background: #443266;
  color: #ffffff;
  padding: 2rem 0;
}

.testimonials a:hover, .testimonials a:focus {
  text-decoration: none;
}

.testimonials .testimonials__side + .testimonials__side {
  margin-top: 1rem;
}

.testimonials .testimonials__side--left .testimonials__heading {
  text-align: center;
}

.testimonials .testimonials__side--left .testimonials__wrapper {
  padding: 0 0 0 1.25rem;
  position: relative;
}

.testimonials .testimonials__side--left .testimonials__wrapper::before {
  background: #ffffff;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 0.25rem;
}

.testimonials .testimonials__side--right {
  background: #ffffff;
  color: #3c3c3c;
  display: flex;
  flex-wrap: no-wrap;
}

.testimonials .testimonials__side--right .testimonials__wrapper {
  flex: 1 1 60%;
  padding: 1rem;
  max-width: 60%;
}

.testimonials .testimonials__heading {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

.testimonials .testimonials__heading + .testimonials__paragraph,
.testimonials .testimonials__heading + .testimonials__wrapper {
  margin-top: 1rem;
}

.testimonials .testimonials__image-wrapper {
  flex: 1 1 40%;
  max-width: 40%;
}

.testimonials .testimonials__image {
  background: url("mysource_files/j-skrobacka-profile.png") center center;
  background-size: cover;
  height: 100%;
}

.testimonials .testimonials__paragraph {
  font-size: 0.875rem;
  font-weight: 300;
  margin: 0;
}

.testimonials .testimonials__paragraph + .testimonials__paragraph {
  margin-top: 1rem;
}

.achievements {
  color: #3c3c3c;
  padding: 2rem 0;
}

.achievements .achievements__heading {
  color: #443266;
  font-size: 1.5rem;
  font-weight: 300;
  flex-basis: 100%;
  margin: 0;
  max-width: 100%;
  text-align: center;
}

.achievements .achievements__summary {
  flex-basis: 100%;
  max-width: 100%;
  text-align: center;
}

.achievements .achievements__divide {
  border: 0;
  margin: 2rem 0;
  position: relative;
}

.achievements .achievements__divide::after {
  -webkit-transform: translate(-1.5rem, -1.5rem);
  -ms-transform: translate(-1.5rem, -1.5rem);
  transform: translate(-1.5rem, -1.5rem);
  background: url("mysource_files/1.svg") no-repeat center center #ffffff;
  content: '';
  display: block;
  height: 3rem;
  left: 50%;
  position: absolute;
  width: 3rem;
}

.achievements .achievements__divide::before {
  background: #e4e4e4;
  content: '';
  display: block;
  height: 0.0625rem;
  width: 100%;
}

.achievements .achievements__list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0.0625rem solid #e4e4e4;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1rem 0;
}

.achievements .achievements__item {
  padding: 1rem 0 2rem 4rem;
  position: relative;
}

.achievements .achievements__item::before {
  background: #443266;
  content: '';
  display: inline-block;
  height: 2rem;
  left: 0;
  position: absolute;
  width: 2rem;
}

.achievements .achievements__item:nth-child(1)::before {
  background: url("mysource_files/3.svg") no-repeat center center transparent;
}

.achievements .achievements__item:nth-child(2)::before {
  background: url("mysource_files/2.svg") no-repeat center center transparent;
}

.achievements .achievements__item:nth-child(3)::before {
  background: url("mysource_files/4.svg") no-repeat center center transparent;
}

.achievements .achievements__item:nth-child(4)::before {
  background: url("mysource_files/5.svg") no-repeat center center transparent;
}

/* Module: S */
.inside-page {
  color: #3c3c3c;
  padding: 0 0 2rem;
}

.inside-page .inside-page__heading {
  color: #443266;
  margin: 2rem 0;
  word-break: break-word;
}

.inside-page .inside-page__heading--h2 {
  font-size: 1.875rem;
  font-weight: 300;
}

.inside-page .inside-page__heading--h3 {
  font-size: 1rem;
  font-weight: 500;
}

.inside-page .inside-page__link {
  color: #3c3c3c;
  display: inline-block;
}

.inside-page .inside-page__link:hover, .inside-page .inside-page__link:focus {
  text-decoration: none;
}

.inside-page .inside-page__link--back {
  font-size: 0.75rem;
}

.inside-page .inside-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 1rem 0;
}

.inside-page .inside-page__list--spacing li {
  margin: 0.5rem 0;
}

.inside-page .inside-page__list--ordered {
  list-style: decimal;
  padding: 0 0 0 1.5rem;
}

.inside-page .inside-page__table a {
  color: inherit;
}

.inside-page .inside-page__table th {
  background: #ffffff;
  color: #3c3c3c;
  font-weight: 300;
  padding: 1rem;
  text-align: left;
}

.inside-page .inside-page__table th:nth-child(1) {
  min-width: 2rem;
}

.inside-page .inside-page__table th:nth-child(3) {
  min-width: 11rem;
}

.inside-page .inside-page__table td {
  border: 0;
  padding: 1rem;
  vertical-align: top;
}

.inside-page .inside-page__table td:nth-child(1) {
  text-align: center;
}

.inside-page .inside-page__table td p:first-of-type {
  margin-top: 0;
}

.inside-page .inside-page__table td p:last-of-type {
  margin-bottom: 0;
}

.inside-page .inside-page__table tr:nth-child(odd) {
  background: #443266;
  color: #ffffff;
}

.inside-page .inside-page__table tr:nth-child(odd) td:nth-child(odd) {
  background: #5b4388;
}

.inside-page .inside-page__table tr:nth-child(even) td:nth-child(odd) {
  background: #e4e4e4;
}

.inside-page .inside-page__authors {
  font-size: 0.75rem;
}

.inside-page .inside-page__details {
  font-size: 0.75rem;
  margin: 0 0 4rem;
  position: relative;
}

.inside-page .inside-page__details::after {
  background: #443266;
  bottom: -0.75rem;
  content: '';
  display: block;
  height: 0.125rem;
  left: 0;
  position: absolute;
  width: 4.0625rem;
}

/* Module: S */
/* Module: S */
@media (min-width: 768px) {
  /*
--------------------
Modules
--------------------
*/
  main {
    padding-top: 5rem;
  }
  .content-wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .row--center {
    align-items: center;
  }
  .row--wrap {
    flex-wrap: wrap;
  }
  .row--condensed {
    margin: 0 auto;
    width: 80%;
  }
  .row--align {
    align-items: center;
  }
  .column--reverse {
    flex-direction: row;
  }
  .mobile-show {
    display: none;
  }
  .mobile-hide {
    display: block;
  }
  /* Module: S */
  .contact {
    text-align: left;
  }
  .contact .contact__details {
    padding: 0;
  }
  .contact .contact__subgroup {
    padding: 0 0 0 1.875rem;
  }
  .contact .contact__subgroup::before {
    display: block;
  }
  /* Module: S */
  .footer .footer__group {
    flex-basis: 33.3%;
    max-width: 33.3%;
    padding: 0 1rem 0 0;
    text-align: left;
  }
  .footer .footer__group:first-of-type {
    padding: 0 1rem 0 0;
  }
  .footer .footer__subgroup {
    padding: 0 0 0 1.875rem;
  }
  .footer .footer__subgroup::before {
    display: inline-block;
  }
  .footer .footer__heading {
    text-align: left;
  }
  /* Module: S */
  /* Module: S */
  .header .header__nav {
    padding: 1rem 0;
  }
  /* Module: S */
  .hero .hero__side {
    flex: 1 0 100%;
  }
  .hero .hero__side--right {
    text-align: left;
  }
  .testimonials {
    padding: 3rem 0;
  }
  .testimonials .testimonials__side {
    flex: 1 1 100%;
  }
  .testimonials .testimonials__side--left .testimonials__heading {
    text-align: left;
  }
  .testimonials .testimonials__side--left .testimonials__wrapper {
    padding: 0 2.25rem;
  }
  .testimonials .testimonials__side--right .testimonials__wrapper {
    padding: 2rem;
  }
  .testimonials .testimonials__heading + .testimonials__wrapper {
    margin-top: 3rem;
  }
  .testimonials .testimonials__paragraph {
    font-size: 1rem;
  }
  .achievements {
    padding: 3rem 0;
  }
  .achievements .achievements__divide {
    width: 100%;
  }
  .achievements .achievements__list {
    display: flex;
    flex-wrap: wrap;
  }
  .achievements .achievements__item {
    flex-basis: 50%;
    max-width: 50%;
    padding-right: 2rem;
  }
  /* Module: S */
  /* Module: S */
  /* Module: S */
}

@media (min-width: 1024px) {
  /*
--------------------
Modules
--------------------
*/
  .content-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  /* Module: S */
  /* Module: S */
  .footer .footer__group {
    flex-basis: 25%;
    max-width: 25%;
  }
  .footer .footer__group:last-of-type {
    display: block;
  }
  /* Module: S */
  /* Module: S */
  .header .menu__label {
    display: none;
  }
  .header .menu__trigger:checked ~ .menu__list {
    display: block;
  }
  .header .header__item {
    background: transparent;
    display: inline-block;
    padding: 0 0 0 2.75rem;
    text-align: left;
  }
  .header .header__link {
    display: inline-block;
    padding: 0 0 0.25rem;
    text-transform: none;
  }
  .header .header__item--home {
    padding: 0 2.75rem 0 0;
  }
  .header .header__item--home .header__link {
    background: url("mysource_files/logo.svg") no-repeat center center transparent;
    display: inline-block;
    height: 2.8125rem;
    overflow: hidden;
    padding: 0;
    text-indent: 100%;
    vertical-align: middle;
    white-space: nowrap;
    width: 2.8125rem;
  }
  .header .header__item--home .header__link::before, .header .header__item--home .header__link::after {
    display: none;
  }
  .header .header__item--countdown {
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    transition: all 0.35s ease;
    border: 0.0625rem solid #443266;
    float: right;
    line-height: 2.8125rem;
    padding: 0 1.5rem;
  }
  .header .header__item--countdown:hover {
    background: #443266;
    color: #ffffff;
  }
  /* Module: S */
  .hero .hero__side {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .hero .hero__side + .hero__side {
    margin: 0;
    padding: 0 0 0 4rem;
  }
  .testimonials .testimonials__side {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .testimonials .testimonials__side + .testimonials__side {
    margin: 0;
  }
  /* Module: S */
  .inside-page {
    width: 66%;
  }
  .inside-page--full {
    width: 100%;
  }
  /* Module: S */
  /* Module: S */
}

@media (min-width: 1360px) {
  /* Module: S */
  /* Module: S */
  /* Module: S */
  /* Module: S */
  /* Module: S */
  /* Module: S */
  /* Module: S */
  /* Module: S */
}

@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;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

/*# sourceMappingURL=main.css.map */
