@-moz-keyframes down {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes down {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes down {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 9, ../src/sass/global/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 19, ../src/sass/global/_normalize.scss */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
/* line 33, ../src/sass/global/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
/* line 54, ../src/sass/global/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 67, ../src/sass/global/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
/* line 77, ../src/sass/global/_normalize.scss */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../src/sass/global/_normalize.scss */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 97, ../src/sass/global/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
/* line 109, ../src/sass/global/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
/* line 117, ../src/sass/global/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
/* line 126, ../src/sass/global/_normalize.scss */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
/* line 135, ../src/sass/global/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
/* line 144, ../src/sass/global/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 153, ../src/sass/global/_normalize.scss */
small {
  font-size: 80%;
}

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

/* line 169, ../src/sass/global/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 173, ../src/sass/global/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
/* line 184, ../src/sass/global/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
/* line 192, ../src/sass/global/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
/* line 203, ../src/sass/global/_normalize.scss */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 211, ../src/sass/global/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
/* line 221, ../src/sass/global/_normalize.scss */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
/* line 229, ../src/sass/global/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
/* line 252, ../src/sass/global/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
/* line 266, ../src/sass/global/_normalize.scss */
button {
  overflow: visible;
}

/**
 * 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 Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
/* line 277, ../src/sass/global/_normalize.scss */
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.
 */
/* line 290, ../src/sass/global/_normalize.scss */
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.
 */
/* line 302, ../src/sass/global/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 311, ../src/sass/global/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 322, ../src/sass/global/_normalize.scss */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 334, ../src/sass/global/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
/* line 346, ../src/sass/global/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 357, ../src/sass/global/_normalize.scss */
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 and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
/* line 370, ../src/sass/global/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
/* line 379, ../src/sass/global/_normalize.scss */
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/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 390, ../src/sass/global/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
/* line 399, ../src/sass/global/_normalize.scss */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* line 408, ../src/sass/global/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 419, ../src/sass/global/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 424, ../src/sass/global/_normalize.scss */
td,
th {
  padding: 0;
}

/* line 1, ../src/sass/global/_default.scss */
html {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 5, ../src/sass/global/_default.scss */
*,
*:before,
*:after {
  -moz-box-sizing: inherit;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* line 12, ../src/sass/global/_default.scss */
img {
  max-width: 100%;
}

/* Base container properties */
/* line 3, ../src/sass/layout/_grid.scss */
.container, .container-fluid, .container-full, .container-fixed {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* Base column properties */
/* line 14, ../src/sass/layout/_grid.scss */
.col-xs-0, .col-xs-1, .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-10, .col-xs-11, .col-xs-12, .col-sm-0, .col-sm-1, .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-10, .col-sm-11, .col-sm-12, .col-md-0, .col-md-1, .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-10, .col-md-11, .col-md-12, .col-lg-0, .col-lg-1, .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-10, .col-lg-11, .col-lg-12, .col-xl-0, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  min-height: 1px;
  float: left;
}

/* Set box-sizing */
/* line 29, ../src/sass/layout/_grid.scss */
.container,
.row,
.row:after,
.row:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Container */
/* line 40, ../src/sass/layout/_grid.scss */
.container {
  max-width: 752px;
}
/* line 49, ../src/sass/layout/_grid.scss */
.container-full {
  padding-left: 0;
  padding-right: 0;
}
/* line 54, ../src/sass/layout/_grid.scss */
.container-fixed {
  width: 992px;
}
@media screen and (min-width: 972px) {
  /* line 40, ../src/sass/layout/_grid.scss */
  .container {
    max-width: 972px;
  }
}
@media screen and (min-width: 1172px) {
  /* line 40, ../src/sass/layout/_grid.scss */
  .container {
    max-width: 1172px;
  }
}
@media screen and (min-width: 1440px) {
  /* line 40, ../src/sass/layout/_grid.scss */
  .container {
    max-width: 1440px;
  }
}

/* Clearfix & box-model + list-style reset for ul support */
/* line 84, ../src/sass/layout/_grid.scss */
.row {
  *zoom: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  margin-left: -8px;
  margin-right: -8px;
  /* Nested grid */
}
/* line 38, ../../../.rvm/gems/ruby-2.7.0/gems/compass-core-1.0.3/stylesheets/compass/utilities/general/_clearfix.scss */
.row:after {
  content: "";
  display: table;
  clear: both;
}
/* line 97, ../src/sass/layout/_grid.scss */
.row > .row {
  clear: none;
  float: left;
  margin: 0 !important;
}

/* Generate columns */
@media screen and (min-width: 0) {
  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-0 {
    width: 0%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-0 {
    left: 0%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-0 {
    right: 0%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-0 {
    margin-left: 0%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-1 {
    width: 8.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-1 {
    left: 8.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-1 {
    right: 8.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-2 {
    width: 16.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-2 {
    left: 16.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-2 {
    right: 16.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-3 {
    width: 25%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-3 {
    left: 25%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-3 {
    right: 25%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-3 {
    margin-left: 25%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-4 {
    width: 33.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-4 {
    left: 33.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-4 {
    right: 33.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-5 {
    width: 41.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-5 {
    left: 41.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-5 {
    right: 41.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-6 {
    width: 50%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-6 {
    left: 50%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-6 {
    right: 50%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-6 {
    margin-left: 50%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-7 {
    width: 58.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-7 {
    left: 58.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-7 {
    right: 58.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-8 {
    width: 66.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-8 {
    left: 66.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-8 {
    right: 66.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-9 {
    width: 75%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-9 {
    left: 75%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-9 {
    right: 75%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-9 {
    margin-left: 75%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-10 {
    width: 83.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-10 {
    left: 83.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-10 {
    right: 83.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-11 {
    width: 91.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-11 {
    left: 91.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-11 {
    right: 91.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xs-12 {
    width: 100%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xs-push-12 {
    left: 100%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xs-pull-12 {
    right: 100%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xs-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 752px) {
  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-0 {
    width: 0%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-0 {
    left: 0%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-0 {
    right: 0%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 972px) {
  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-0 {
    width: 0%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-0 {
    left: 0%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-0 {
    right: 0%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1172px) {
  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-0 {
    width: 0%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-0 {
    left: 0%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-0 {
    right: 0%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-3 {
    right: 25%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media screen and (min-width: 1440px) {
  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-0 {
    width: 0%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-0 {
    left: 0%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-0 {
    right: 0%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-0 {
    margin-left: 0%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-1 {
    width: 8.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-1 {
    left: 8.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-1 {
    right: 8.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-2 {
    width: 16.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-2 {
    left: 16.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-2 {
    right: 16.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-3 {
    width: 25%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-3 {
    left: 25%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-3 {
    right: 25%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-3 {
    margin-left: 25%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-4 {
    width: 33.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-4 {
    left: 33.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-4 {
    right: 33.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-5 {
    width: 41.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-5 {
    left: 41.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-5 {
    right: 41.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-6 {
    width: 50%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-6 {
    left: 50%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-6 {
    right: 50%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-6 {
    margin-left: 50%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-7 {
    width: 58.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-7 {
    left: 58.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-7 {
    right: 58.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-8 {
    width: 66.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-8 {
    left: 66.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-8 {
    right: 66.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-9 {
    width: 75%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-9 {
    left: 75%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-9 {
    right: 75%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-9 {
    margin-left: 75%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-10 {
    width: 83.33333%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-10 {
    left: 83.33333%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-10 {
    right: 83.33333%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-11 {
    width: 91.66667%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-11 {
    left: 91.66667%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-11 {
    right: 91.66667%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 126, ../src/sass/layout/_grid.scss */
  .col-xl-12 {
    width: 100%;
  }

  /* line 131, ../src/sass/layout/_grid.scss */
  .col-xl-push-12 {
    left: 100%;
  }

  /* line 137, ../src/sass/layout/_grid.scss */
  .col-xl-pull-12 {
    right: 100%;
  }

  /* line 143, ../src/sass/layout/_grid.scss */
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
/* line 3, ../src/sass/layout/_header.scss */
.header {
  margin: 0 auto;
  text-align: center;
  padding-top: 23px;
  position: relative;
  margin-top: 23px;
}
@media (max-width: 73.24em) {
  /* line 3, ../src/sass/layout/_header.scss */
  .header {
    padding-top: 12px;
  }
}
/* line 15, ../src/sass/layout/_header.scss */
.header__nav {
  margin-top: 55px;
  position: absolute;
  right: 0;
  top: 0;
}
/* line 21, ../src/sass/layout/_header.scss */
.header__nav--home {
  z-index: 500;
}
@media (max-width: 73.24em) {
  /* line 15, ../src/sass/layout/_header.scss */
  .header__nav {
    position: static;
    margin-top: 0;
  }
}
/* line 31, ../src/sass/layout/_header.scss */
.header__logo {
  display: inline-block;
  padding-bottom: 30px;
  cursor: pointer;
}
@media (max-width: 46.99em) {
  /* line 37, ../src/sass/layout/_header.scss */
  .header__logo img {
    width: 70%;
    height: auto;
  }
}

/* line 3, ../src/sass/layout/_footer.scss */
.footer {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 10px;
}
/* line 9, ../src/sass/layout/_footer.scss */
.footer__logo {
  display: inline-block;
  margin: 20px;
}

/* line 3, ../src/sass/layout/_page.scss */
.page {
  margin: 0 auto;
  display: none;
  font-family: "Catamaran", sans-serif;
}
/* line 9, ../src/sass/layout/_page.scss */
.page#home {
  display: block;
}
/* line 13, ../src/sass/layout/_page.scss */
.page#collections, .page#biography {
  padding-left: 180px;
  padding-right: 180px;
}
@media (max-width: 73.24em) {
  /* line 13, ../src/sass/layout/_page.scss */
  .page#collections, .page#biography {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* line 24, ../src/sass/layout/_page.scss */
.page__title, .page__subtitle {
  font-weight: 900;
}
/* line 29, ../src/sass/layout/_page.scss */
.page__subtitle {
  text-align: center;
}
/* line 32, ../src/sass/layout/_page.scss */
.page__subtitle--conference {
  margin-top: 0;
  padding-bottom: 0;
}
/* line 38, ../src/sass/layout/_page.scss */
.page__title {
  text-align: center;
  padding-bottom: 90px;
  padding-top: 120px;
}
/* line 43, ../src/sass/layout/_page.scss */
.page__title--conference {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (max-width: 73.24em) {
  /* line 38, ../src/sass/layout/_page.scss */
  .page__title {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* line 53, ../src/sass/layout/_page.scss */
.page__title--conference {
  padding-bottom: 0;
  margin-bottom: 0;
}
/* line 59, ../src/sass/layout/_page.scss */
.page__biography, .page__location {
  font-weight: 200;
}
/* line 64, ../src/sass/layout/_page.scss */
.page__biography {
  padding-bottom: 120px;
}
@media (max-width: 73.24em) {
  /* line 64, ../src/sass/layout/_page.scss */
  .page__biography {
    padding-bottom: 50px;
  }
}
/* line 72, ../src/sass/layout/_page.scss */
.page__subtitle, .page__location, .page__biography {
  font-size: 21px;
}
/* line 78, ../src/sass/layout/_page.scss */
.page__map {
  text-align: center;
  padding-top: 100px;
  margin-bottom: 150px;
}
@media (max-width: 73.24em) {
  /* line 78, ../src/sass/layout/_page.scss */
  .page__map {
    padding-top: 30px;
    margin-bottom: 80px;
  }
}
/* line 89, ../src/sass/layout/_page.scss */
.page__portrait {
  text-align: center;
  padding-bottom: 100px;
}
/* line 93, ../src/sass/layout/_page.scss */
.page__portrait p {
  padding-top: 5px;
  font-size: 12px;
}
/* line 99, ../src/sass/layout/_page.scss */
.page__date {
  font-weight: 600;
}
/* line 103, ../src/sass/layout/_page.scss */
.page__logos {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
}
/* line 108, ../src/sass/layout/_page.scss */
.page__logos a {
  text-decoration: none;
  padding-right: 10px;
}
@media (max-width: 46.99em) {
  /* line 108, ../src/sass/layout/_page.scss */
  .page__logos a {
    display: block;
  }
}
/* line 118, ../src/sass/layout/_page.scss */
.page span {
  font-style: italic;
}

/* line 5, ../src/sass/layout/_navigation.scss */
.nav__items {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
/* line 11, ../src/sass/layout/_navigation.scss */
.nav__item {
  display: inline-block;
  padding: 0 20px;
  border-right: 1px solid black;
}
/* line 16, ../src/sass/layout/_navigation.scss */
.nav__item--lang {
  border-right: none;
}
@media (max-width: 73.24em) {
  /* line 11, ../src/sass/layout/_navigation.scss */
  .nav__item {
    border-right: none;
    padding: 0 10px;
  }
}
/* line 26, ../src/sass/layout/_navigation.scss */
.nav__link {
  display: block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Abel", sans-serif;
  font-size: 18px;
  color: black;
}
/* line 35, ../src/sass/layout/_navigation.scss */
.nav__link:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: black;
  opacity: 0;
}
/* line 49, ../src/sass/layout/_navigation.scss */
.nav__link.active:after, .nav__link:hover:after {
  bottom: -5px;
  opacity: 1;
}
@media (max-width: 73.24em) {
  /* line 26, ../src/sass/layout/_navigation.scss */
  .nav__link {
    margin-bottom: 10px;
  }
}

/* line 3, ../src/sass/modules/_hero.scss */
.hero {
  position: relative;
  background-image: url(../img/background.jpg);
  background-size: cover;
  position: fixed;
  background-position: center;
  background-repeat: no-repeat;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 10;
  -moz-transition: -moz-transform 0.4s ease-in;
  -o-transition: -o-transform 0.4s ease-in;
  -webkit-transition: -webkit-transform 0.4s ease-in;
  transition: transform 0.4s ease-in;
}
/* line 18, ../src/sass/modules/_hero.scss */
.hero.hidden {
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
/* line 22, ../src/sass/modules/_hero.scss */
.hero__content {
  position: absolute;
  max-width: 240px;
  bottom: 200px;
  right: 70px;
}
@media (max-width: 46.99em) {
  /* line 22, ../src/sass/modules/_hero.scss */
  .hero__content {
    display: none;
  }
  /* line 31, ../src/sass/modules/_hero.scss */
  .hero__content p {
    font-size: 16px;
  }
}
@media (max-width: 73.24em) {
  /* line 22, ../src/sass/modules/_hero.scss */
  .hero__content {
    display: none;
  }
}
/* line 41, ../src/sass/modules/_hero.scss */
.hero__lang {
  color: white;
  position: absolute;
  right: 50px;
  top: 50px;
}
/* line 47, ../src/sass/modules/_hero.scss */
.hero__lang select,
.hero__lang input[type="select"] {
  color: white;
  font-family: "Abel", sans-serif;
}
@media (max-width: 46.99em) {
  /* line 41, ../src/sass/modules/_hero.scss */
  .hero__lang {
    right: 20px;
  }
}
/* line 58, ../src/sass/modules/_hero.scss */
.hero__copyright {
  text-align: center;
  position: absolute;
  bottom: 0;
  background-color: white;
  width: 100%;
}
/* line 65, ../src/sass/modules/_hero.scss */
.hero__copyright-text {
  max-width: 100%;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 200;
  color: black;
  font-family: "Catamaran", sans-serif;
}
@media (max-width: 46.99em) {
  /* line 65, ../src/sass/modules/_hero.scss */
  .hero__copyright-text {
    font-size: 11px;
  }
}
/* line 79, ../src/sass/modules/_hero.scss */
.hero__text {
  max-width: 960px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 200;
  color: white;
  font-family: "Catamaran", sans-serif;
}
@media (max-width: 73.24em) {
  /* line 79, ../src/sass/modules/_hero.scss */
  .hero__text {
    text-align: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 94, ../src/sass/modules/_hero.scss */
  .hero__text p {
    display: none;
  }
}
@media (max-width: 46.99em) {
  /* line 79, ../src/sass/modules/_hero.scss */
  .hero__text {
    text-align: center;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
  /* line 105, ../src/sass/modules/_hero.scss */
  .hero__text p {
    display: none;
  }
}
/* line 111, ../src/sass/modules/_hero.scss */
.hero__arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  right: 50%;
  max-width: 960px;
  margin: 40px auto;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iY2hldnJvbkRvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIGZpbGw9IiNmZmZmZmYiPg0KICA8cGF0aCBkPSJNMSAxMiBMMTYgMjYgTDMxIDEyIEwyNyA4IEwxNiAxOCBMNSA4IHoiPjwvcGF0aD4NCjwvc3ZnPg==);
  height: 50px;
  width: 50px;
  background-size: cover;
  cursor: pointer;
  -moz-animation: down 2s infinite;
  -webkit-animation: down 2s infinite;
  animation: down 2s infinite;
}
@media (max-width: 46.99em) {
  /* line 111, ../src/sass/modules/_hero.scss */
  .hero__arrow {
    bottom: 5px;
    height: 35px;
    width: 35px;
  }
}

/* line 134, ../src/sass/modules/_hero.scss */
.showonresponsive {
  width: 100%;
  text-align: center;
  display: none;
  position: absolute;
  bottom: 150px;
}
@media (max-width: 73.24em) {
  /* line 134, ../src/sass/modules/_hero.scss */
  .showonresponsive {
    top: 20px;
    left: 10px;
    display: block;
    width: 200px;
    text-align: left;
  }
  /* line 148, ../src/sass/modules/_hero.scss */
  .showonresponsive img {
    width: 50%;
  }
}

/* line 3, ../src/sass/modules/_chronology.scss */
.chronology {
  margin-left: 10%;
  margin-right: 10%;
}
@media (max-width: 73.24em) {
  /* line 3, ../src/sass/modules/_chronology.scss */
  .chronology {
    margin-left: 0;
    margin-right: 0;
  }
}
/* line 13, ../src/sass/modules/_chronology.scss */
.chronology__date {
  font-family: "Catamaran", sans-serif;
  font-weight: 600;
  float: left;
  clear: left;
  width: 100px;
  text-align: right;
}
@media (max-width: 73.24em) {
  /* line 13, ../src/sass/modules/_chronology.scss */
  .chronology__date {
    text-align: left;
  }
}
/* line 27, ../src/sass/modules/_chronology.scss */
.chronology__story {
  font-family: "Catamaran", sans-serif;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 20px;
  margin-left: 120px;
}
/* line 35, ../src/sass/modules/_chronology.scss */
.chronology__source {
  margin-left: 120px;
  margin-top: 50px;
}

/* line 1, ../src/sass/modules/_download.scss */
.download {
  text-decoration: none;
  color: white;
  margin-bottom: 30px;
  display: block;
}
/* line 8, ../src/sass/modules/_download.scss */
.download__link {
  background-color: black;
  color: white;
  text-align: center;
  width: 150px;
  padding: 5px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 50px;
}

/* line 1, ../src/sass/modules/_panel.scss */
.panels {
  background-color: white;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  height: 500px;
  margin: auto;
}
@media (max-width: 73.24em) {
  /* line 1, ../src/sass/modules/_panel.scss */
  .panels {
    margin-top: 50px;
    height: auto;
  }
}

/* line 15, ../src/sass/modules/_panel.scss */
.showonhover {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateX(-30px);
}
/* line 20, ../src/sass/modules/_panel.scss */
.panel:hover .showonhover {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 73.24em) {
  /* line 15, ../src/sass/modules/_panel.scss */
  .showonhover {
    opacity: 1;
    transform: translateX(0);
  }
}
/* line 30, ../src/sass/modules/_panel.scss */
.showonhover--exhibition {
  display: none;
}
/* line 33, ../src/sass/modules/_panel.scss */
.panel:hover .showonhover--exhibition {
  display: block;
}

/* line 39, ../src/sass/modules/_panel.scss */
.hideonhover {
  display: block;
}
/* line 43, ../src/sass/modules/_panel.scss */
.panel:hover .hideonhover {
  display: none;
}
@media (max-width: 73.24em) {
  /* line 39, ../src/sass/modules/_panel.scss */
  .hideonhover {
    display: none;
  }
}

/* line 52, ../src/sass/modules/_panel.scss */
.panel {
  background-color: white;
  padding: 0 8px;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1), z-index 0.5s step-end;
  clip: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (max-width: 73.24em) {
  /* line 52, ../src/sass/modules/_panel.scss */
  .panel {
    position: relative;
    margin-bottom: 20px;
    color: white;
  }
}
/* line 69, ../src/sass/modules/_panel.scss */
.panel.panel-2 p, .panel.panel-2 h2, .panel.panel-2 h3, .panel.panel-2 h4, .panel.panel-2 h5 {
  transition: color 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
/* line 72, ../src/sass/modules/_panel.scss */
.panel.panel-2 p:after, .panel.panel-2 h2:after, .panel.panel-2 h3:after, .panel.panel-2 h4:after, .panel.panel-2 h5:after {
  transition: background 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
/* line 81, ../src/sass/modules/_panel.scss */
.panel:hover {
  z-index: 2;
  transition: clip 0.5s cubic-bezier(0.77, 0, 0.175, 1), color 0.2s cubic-bezier(0.77, 0, 0.175, 1), z-index 0.5s step-start;
  color: white;
}
/* line 86, ../src/sass/modules/_panel.scss */
.panel:hover .panel__bg {
  opacity: 1;
}
/* line 92, ../src/sass/modules/_panel.scss */
.panel:hover .panel__title:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: white;
  width: 80px;
}
/* line 107, ../src/sass/modules/_panel.scss */
.panel:hover .panel__title--black:after {
  background: black;
}
/* line 113, ../src/sass/modules/_panel.scss */
.panel:hover.panel-2 p, .panel:hover.panel-2 h2, .panel:hover.panel-2 h3, .panel:hover.panel-2 h4, .panel:hover.panel-2 h5 {
  color: white;
}
/* line 116, ../src/sass/modules/_panel.scss */
.panel:hover.panel-2 p:after, .panel:hover.panel-2 h2:after, .panel:hover.panel-2 h3:after, .panel:hover.panel-2 h4:after, .panel:hover.panel-2 h5:after {
  background: white;
}
/* line 123, ../src/sass/modules/_panel.scss */
.panel__col {
  width: 33%;
  float: left;
  padding: 0 32px;
  min-height: 1px;
}
@media (max-width: 73.24em) {
  /* line 123, ../src/sass/modules/_panel.scss */
  .panel__col {
    float: none;
    width: 100%;
  }
}
@media (max-width: 73.24em) {
  /* line 135, ../src/sass/modules/_panel.scss */
  .panel__col--center {
    display: none;
  }
}
/* line 142, ../src/sass/modules/_panel.scss */
.panel__title, .panel__subtitle {
  font-family: "Playfair Display", serif;
}
/* line 147, ../src/sass/modules/_panel.scss */
.panel__title {
  font-size: 26px;
  position: relative;
  font-weight: 900;
}
/* line 152, ../src/sass/modules/_panel.scss */
.panel__title:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: black;
  width: 80px;
}
@media (max-width: 73.24em) {
  /* line 152, ../src/sass/modules/_panel.scss */
  .panel__title:after {
    background: white;
  }
}
/* line 168, ../src/sass/modules/_panel.scss */
.panel__title--black {
  color: black;
}
/* line 171, ../src/sass/modules/_panel.scss */
.panel__title--black:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: -25px;
  height: 2px;
  background: black;
  width: 80px;
}
@media (max-width: 73.24em) {
  /* line 147, ../src/sass/modules/_panel.scss */
  .panel__title {
    font-size: 25px;
  }
}
/* line 189, ../src/sass/modules/_panel.scss */
.panel__subtitle {
  font-size: 15px;
  padding-bottom: 50px;
  padding-top: 25px;
  font-weight: 900;
}
/* line 195, ../src/sass/modules/_panel.scss */
.panel__subtitle--black {
  color: black;
}
@media (max-width: 73.24em) {
  /* line 189, ../src/sass/modules/_panel.scss */
  .panel__subtitle {
    font-size: 16px;
  }
}
/* line 204, ../src/sass/modules/_panel.scss */
.panel__summary {
  font-size: 13.5px;
  padding-top: 0;
  padding-right: 100px;
  margin: auto;
  line-height: 1.5;
  font-family: "Catamaran", sans-serif;
}
/* line 212, ../src/sass/modules/_panel.scss */
.panel__summary--black {
  color: black;
}
@media (max-width: 89.99em) {
  /* line 204, ../src/sass/modules/_panel.scss */
  .panel__summary {
    padding-top: 30px;
    padding-right: 0;
  }
}
/* line 222, ../src/sass/modules/_panel.scss */
.panel__copyright {
  position: absolute;
  bottom: 0;
  margin-left: 30px;
  font-size: 12px;
  font-weight: 200;
  color: white;
}
@media (max-width: 73.24em) {
  /* line 222, ../src/sass/modules/_panel.scss */
  .panel__copyright {
    position: relative;
  }
}
/* line 234, ../src/sass/modules/_panel.scss */
.panel__copyright--shadow {
  text-shadow: 0px 0px 9px #969696;
}
/* line 238, ../src/sass/modules/_panel.scss */
.panel__copyright--black {
  color: black;
}
/* line 243, ../src/sass/modules/_panel.scss */
.panel__location {
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 800;
  font-family: "Catamaran", sans-serif;
}
/* line 249, ../src/sass/modules/_panel.scss */
.panel__location--black {
  color: black;
}
/* line 254, ../src/sass/modules/_panel.scss */
.panel__city {
  margin-top: -5px;
  font-weight: 700;
  font-family: "Catamaran", sans-serif;
}
/* line 259, ../src/sass/modules/_panel.scss */
.panel__city--black {
  color: black;
}
/* line 264, ../src/sass/modules/_panel.scss */
.panel__exhibition {
  text-transform: uppercase;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.2);
  width: 150px;
  text-align: center;
  padding: 5px;
  font-family: "Catamaran", sans-serif;
  font-weight: 200;
  font-size: 12px;
  margin-top: 1px;
  cursor: pointer;
}
/* line 278, ../src/sass/modules/_panel.scss */
.panel__bg {
  font-family: "Catamaran", sans-serif;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background-size: cover;
  opacity: .4;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 73.24em) {
  /* line 278, ../src/sass/modules/_panel.scss */
  .panel__bg {
    opacity: 1;
  }
}
/* line 294, ../src/sass/modules/_panel.scss */
.panel__bg--1 {
  background-image: url(../img/slide__1.jpg);
}
/* line 298, ../src/sass/modules/_panel.scss */
.panel__bg--2 {
  background-image: url(../img/slide__2.jpg);
}
/* line 302, ../src/sass/modules/_panel.scss */
.panel__bg--3 {
  background-image: url(../img/slide__3.jpg);
}
/* line 306, ../src/sass/modules/_panel.scss */
.panel__bg--4 {
  background-image: url(../img/slide__4.jpg);
}

@media screen and (min-width: 1172px) {
  /* line 321, ../src/sass/modules/_panel.scss */
  .panels {
    width: 1140px;
  }
  /* line 325, ../src/sass/modules/_panel.scss */
  .panels .panel,
  .panels .panel .hover-target {
    position: absolute;
    height: 100%;
    width: 100%;
    width: 1188px;
    margin-left: -8px;
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(1), .panels .panel:nth-child(1) .hover-target,
  .panels .panel .hover-target:nth-child(1),
  .panels .panel .hover-target:nth-child(1) .hover-target {
    clip: rect(0, 388px, 500px, 8px);
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(2), .panels .panel:nth-child(2) .hover-target,
  .panels .panel .hover-target:nth-child(2),
  .panels .panel .hover-target:nth-child(2) .hover-target {
    clip: rect(0, 784px, 500px, 404px);
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(3), .panels .panel:nth-child(3) .hover-target,
  .panels .panel .hover-target:nth-child(3),
  .panels .panel .hover-target:nth-child(3) .hover-target {
    clip: rect(0, 1180px, 500px, 800px);
  }
  /* line 347, ../src/sass/modules/_panel.scss */
  .panels .panel:hover {
    clip: rect(0, 1188px, 500px, 0);
  }
}
@media screen and (min-width: 1440px) {
  /* line 321, ../src/sass/modules/_panel.scss */
  .panels {
    width: 1408px;
  }
  /* line 325, ../src/sass/modules/_panel.scss */
  .panels .panel,
  .panels .panel .hover-target {
    position: absolute;
    height: 100%;
    width: 100%;
    width: 1456px;
    margin-left: -8px;
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(1), .panels .panel:nth-child(1) .hover-target,
  .panels .panel .hover-target:nth-child(1),
  .panels .panel .hover-target:nth-child(1) .hover-target {
    clip: rect(0, 477.33333px, 500px, 8px);
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(2), .panels .panel:nth-child(2) .hover-target,
  .panels .panel .hover-target:nth-child(2),
  .panels .panel .hover-target:nth-child(2) .hover-target {
    clip: rect(0, 962.66667px, 500px, 493.33333px);
  }
  /* line 338, ../src/sass/modules/_panel.scss */
  .panels .panel:nth-child(3), .panels .panel:nth-child(3) .hover-target,
  .panels .panel .hover-target:nth-child(3),
  .panels .panel .hover-target:nth-child(3) .hover-target {
    clip: rect(0, 1448px, 500px, 978.66667px);
  }
  /* line 347, ../src/sass/modules/_panel.scss */
  .panels .panel:hover {
    clip: rect(0, 1456px, 500px, 0);
  }
}
/* line 2, ../src/sass/modules/_button.scss */
.panel__link {
  text-transform: uppercase;
  border: 1px solid white;
  background-color: rgba(0, 0, 0, 0.2);
  width: 150px;
  text-align: center;
  padding: 5px;
  font-family: "Catamaran", sans-serif;
  font-weight: 200;
  font-size: 12px;
  margin-top: 1px;
  cursor: pointer;
}
/* line 15, ../src/sass/modules/_button.scss */
.panel__link--font {
  font-size: 12px;
}
/* line 19, ../src/sass/modules/_button.scss */
.panel__link:hover {
  background-color: black;
}
/* line 23, ../src/sass/modules/_button.scss */
.panel__link a {
  text-decoration: none;
  color: white;
}

/* line 1, ../src/sass/modules/_lang.scss */
select,
input[type="select"] {
  font-family: "Abel", sans-serif;
  border: none;
  background: transparent;
  cursor: pointer;
  padding-right: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyBpZD0iY2hldnJvbkRvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIGZpbGw9ImN1cnJlbnRjb2xvciI+DQogIDxwYXRoIGQ9Ik0xIDEyIEwxNiAyNiBMMzEgMTIgTDI3IDggTDE2IDE4IEw1IDggeiI+PC9wYXRoPg0KPC9zdmc+);
  background-repeat: no-repeat;
  background-position: calc(100%) center;
  background-size: 15px;
  overflow: hidden;
  color: black;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-transform: uppercase;
}

/* line 1, ../src/sass/modules/_box.scss */
.box {
  text-align: center;
  background-color: #363637;
  margin-top: 20px;
  padding-top: 1px;
  padding-bottom: 1px;
  transition: all .3s ease-in-out;
  border: .5px solid #363637;
  cursor: pointer;
}
/* line 12, ../src/sass/modules/_box.scss */
.box:hover {
  background-color: white;
  border: .5px solid #363637;
}
/* line 16, ../src/sass/modules/_box.scss */
.box:hover .box__title {
  color: #363637;
}

/* line 23, ../src/sass/modules/_box.scss */
.box__link {
  text-decoration: none;
}

/* line 27, ../src/sass/modules/_box.scss */
.box__title {
  color: white;
  font-size: 26px;
  line-height: 20px;
  font-family: "Playfair Display", serif;
}

/* line 5, ../src/sass/modules/_conference.scss */
.conference__image {
  text-align: right;
  padding-right: 20px;
}
@media (max-width: 46.99em) {
  /* line 5, ../src/sass/modules/_conference.scss */
  .conference__image {
    text-align: left;
  }
}
/* line 14, ../src/sass/modules/_conference.scss */
.conference__body {
  padding-bottom: 15px;
  max-width: 600px;
}
/* line 19, ../src/sass/modules/_conference.scss */
.conference__title, .conference__subtitle {
  font-family: "Playfair Display", serif;
}
/* line 24, ../src/sass/modules/_conference.scss */
.conference__title {
  font-weight: 900;
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 0;
}
/* line 31, ../src/sass/modules/_conference.scss */
.conference__subtitle {
  padding-top: 0;
  margin-top: 0;
}
/* line 36, ../src/sass/modules/_conference.scss */
.conference__suptitle {
  font-family: "Abel", sans-serif;
  font-size: 18px;
  font-weight: 200;
  color: black;
  padding-bottom: 0;
  margin-bottom: 0;
}
/* line 45, ../src/sass/modules/_conference.scss */
.conference__line {
  border-bottom: 1px solid black;
  margin-top: 50px;
  margin-bottom: 50px;
}
