/**
 * Colors imported from ColorSchemer export
 */
/**
 * Colors imported from ColorSchemer export
 */
/**
 * Default variables
 */
/**
 * Custom colors
 */
/**
 * z-indices / z-index
 */
/**
 * Helper functions
 */
/**
 * Hide visually
 *
 * See http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 * for discussion of different solutions
 */
/**
 * Contain floats with clearfix
 *
 * http://nicolasgallagher.com/micro-clearfix-hack/
 */
/**
 * Lists with layout purpose
 */
/**
 * Replace text
 */
/**
 * Better font rendering (on OS X)
 * http://maximilianhoffmann.com/posts/better-font-rendering-on-osx
 *
 * Usage:
 *
 * .var_dark_on_light {
 * 	@include fontSmoothing;
 * }
 * .var_light_on_dark {
 * 	@include fontSmoothingReset;
 * }
 */
/**
 * Placeholder in input fields
 */
/**
 * Link styling
 */
/**
 * Inspired from https://github.com/guardian/sass-mq.git
 */
/**
 * // To enable support for browsers that do not support @media queries,
 * (IE <= 8, Firefox <= 3, Opera <= 9) set $mqResponsive to false
 * Create a separate stylesheet served exclusively to these browsers,
 * meaning @media queries will be rasterized, relying on the cascade itself
 */
/**
 * Name your breakpoints in a way that creates a ubiquitous language
 * across team members. It will improve communication between
 * stakeholders, designers, developers, and testers.
 */
/**
 * Define the breakpoint from the $mqBreakpoints list that should
 * be used as the target width when outputting a static stylesheet
 * (i.e. when $mqResponsive is set to 'false').
 */
/**
 * If you want to display the currently active breakpoint in the top
 * right corner of your site during development, add the breakpoints
 * to this list, ordered by width, e.g. (mobile, tablet, desktop).
 */
/**
 * Media Query mixin
 * Usage:
 * .element {
 *     @include mq($from: mobile) {
 *         color: red;
 *     }
 *     @include mq($to: tablet) {
 *         color: blue;
 *     }
 *     @include mq(mobile, tablet) {
 *         color: green;
 *     }
 *     @include mq($from: tablet, $and: '(orientation: landscape)') {
 *         color: teal;
 *     }
 *     @include mq(950px) {
 *         color: hotpink;
 *     }
 * }
 */
/**
 * Add a breakpoint
 * Usage: $mqBreakpoints: mqAddBreakpoint(tvscreen, 1920px);
 */
/**
 * Create JSON string of map of breakpoints
 */
/**
 * Create JSON string of single breakpoint
 */
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Custom web fonts
 */
@font-face {
  font-family: 'FFMarkWeb';
  font-weight: normal;
  font-style: normal;
  src: url("../fonts/ffmark/MarkWeb.woff") format("woff"); }

@font-face {
  font-family: 'FFMarkWeb';
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/ffmark/MarkWeb-Bold.woff") format("woff"); }

@font-face {
  font-family: "";
  src: url(".eot");
  src: url(".eot?#iefix") format("eot"), url(".woff") format("woff"), url(".ttf") format("truetype"), url(".svg#") format("svg"); }

/**
 * Map containing all icons with their unicode character
 *
 * Can be accessed using map-get (see iconStyles mixin)
 */
/**
 * Mixins
 *
 * icon() renders an icon into the :before pseudo element
 *
 * iconStyles() renders the main styles
 * It is used by icon
 *
 * iconDefaultStyles() renders the basic styles
 * They are separated to allow for the use in a placeholder to reduce code duplication
 */
/**
 * Class for each icon
 * Placeholder for default styles to reduce code duplication
 *
 * Used in styleguide, e.g.
 */
/**
 * Map containing all icons with their dimensions and color variants
 *
 * Can be accessed using map-get (see iconDataurlStyles( mixin)
 */
/**
 * Mixins
 *
 * iconDataurl() renders an icon into the :before/:after pseudo element
 *
 * iconDataurlStyles() renders the main styles
 * It is used by iconDataurl()
 */
/**
 * Map containing all sprite images with their dimensions and position
 *
 * Can be accessed using map-get (see pngspriteStyles mixin)
 */
/**
 * Sync breakpoints with JavaScript
 *
 * font-family property of title element contains the current breakpoint
 * font-family property of head element contains all breakpoints
 */
@media all and (min-width: 0em) {
  title {
    font-family: '{\\"name\\":\\"tiny\\",\\"value\\":\\"0px\\"}'; } }

@media all and (min-width: 20em) {
  title {
    font-family: '{\\"name\\":\\"tiny\\",\\"value\\":\\"320px\\"}'; } }

@media all and (min-width: 30em) {
  title {
    font-family: '{\\"name\\":\\"small\\",\\"value\\":\\"480px\\"}'; } }

@media all and (min-width: 48em) {
  title {
    font-family: '{\\"name\\":\\"medium\\",\\"value\\":\\"768px\\"}'; } }

@media all and (min-width: 60em) {
  title {
    font-family: '{\\"name\\":\\"large\\",\\"value\\":\\"960px\\"}'; } }

@media all and (min-width: 80em) {
  title {
    font-family: '{\\"name\\":\\"huge\\",\\"value\\":\\"1280px\\"}'; } }

head {
  font-family: '{"tiny":"320px","small":"480px","medium":"768px","large":"960px","huge":"1280px"}';
  display: none; }

/**
 * Generic classes
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.clearfix {
  *zoom: 1; }
  .clearfix:before,
  .clearfix:after {
    content: " ";
    display: table; }
  .clearfix:after {
    clear: both; }

/* DEV */
h1, h2, h3, h4, h5, h6 {
  font-family: "FFMarkWeb", sans-serif; }

body {
  text-rendering: optimizeLegibility;
  /* setup OpenType features */
  -webkit-font-feature-settings: "dlig" 1, "kern" 1;
     -moz-font-feature-settings: "dlig" 1, "kern" 1;
          font-feature-settings: "dlig" 1, "kern" 1;
  text-transform: none;
  /* vendor prefixes */
  -webkit-font-feature-settings: "dlig" 1, "kern" 1;
  -moz-font-feature-settings: "dlig" 1, "kern" 1;
  -moz-font-feature-settings: "dlig=1, kern=1";
  -ms-font-feature-settings: "dlig" 1, "kern" 1;
  -o-font-feature-settings: "dlig" 1, "kern" 1; }

pre {
  text-rendering: auto; }

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box; }

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

html {
  font-size: 100%;
  height: 100%; }

body {
  background: #000;
  color: #FFFFFF;
  font-family: "FFMarkWeb", sans-serif;
  line-height: 1.35;
  font-family: "FFMarkWeb", sans-serif;
  font-weight: normal;
  font-size: 18px;
  color: #FFFFFF;
  padding: 30px;
  min-height: 100%;
  position: relative;
  padding-bottom: 150px; }
  @media all and (min-width: 30em) {
    body {
      padding-bottom: 80px; } }
  @media all and (min-width: 60em) {
    body {
      padding: 30px 30px 60px; } }

.site-wrapper {
  margin: 0 auto; }

img {
  max-width: 100%; }

a {
  color: #FFFFFF;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out;
          transition: color 0.3s ease-in-out; }
  a:visited {
    color: #FFFFFF; }
  a:hover {
    color: white; }
  a:active {
    color: #FFFFFF; }

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fade-0 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-1 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 1.85s;
          animation-delay: 1.85s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-2 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-3 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 2.55s;
          animation-delay: 2.55s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-4 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-5 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 3.25s;
          animation-delay: 3.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-6 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-7 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 3.95s;
          animation-delay: 3.95s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-8 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-9 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 4.65s;
          animation-delay: 4.65s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-10 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-11 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 5.35s;
          animation-delay: 5.35s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-12 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 5.7s;
          animation-delay: 5.7s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.fade-13 {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1s;
          animation: fadeIn ease-in 1s;
  -webkit-animation-delay: 6.05s;
          animation-delay: 6.05s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; }

.wtf-btn {
  display: block;
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.9;
  color: white;
  background: #000; }
  html.no-webgl .wtf-btn,
  .wtf .wtf-btn {
    display: none; }

.add-to-calendar {
  position: absolute;
  cursor: pointer;
  border: 0;
  top: 20px;
  right: 30px;
  width: 200px;
  z-index: 100;
  background: none;
  padding: 0;
  margin: 0;
  -webkit-transform: skewY(15deg) skewX(-7deg) translateZ(100px);
          transform: skewY(15deg) skewX(-7deg) translateZ(100px); }
  @media all and (max-width: 59.99em) {
    .add-to-calendar {
      width: 180px; } }
  @media all and (max-width: 47.99em) {
    .add-to-calendar {
      width: 120px; } }
  @media all and (max-width: 29.99em) {
    .add-to-calendar {
      width: 80px; } }

.save-the-date-close {
  color: white;
  position: absolute;
  right: 0;
  bottom: 0; }

.save-the-date {
  font-size: 6rem;
  display: inline-block;
  margin-top: 0;
  padding: 1.5rem; }
  @media all and (max-width: 59.99em) {
    .save-the-date {
      font-size: 4.5rem; } }
  @media all and (max-width: 47.99em) {
    .save-the-date {
      font-size: 3rem; } }
  @media all and (max-width: 29.99em) {
    .save-the-date {
      font-size: 1.5rem; } }
  @media all and (max-width: 19.99em) {
    .save-the-date {
      font-size: 1.3rem; } }

.save-the-date-tainer {
  -webkit-transform: skewY(-7deg) skewX(-15deg) rotateY(-20deg);
          transform: skewY(-7deg) skewX(-15deg) rotateY(-20deg);
  position: absolute;
  position: static;
  top: 0;
  left: 0;
  z-index: 4;
  background: -webkit-linear-gradient(bottom right, #0099F7, #F11712);
  background: linear-gradient(to top left, #0099F7, #F11712);
  padding: 4rem;
  background-size: 100% auto;
  background-size: cover;
  display: none; }
  @media all and (max-width: 59.99em) {
    .save-the-date-tainer {
      padding: 3rem; } }
  @media all and (max-width: 47.99em) {
    .save-the-date-tainer {
      padding: 2rem;
      top: 150px;
      -webkit-transform: skewY(-3deg) skewX(-5deg) rotateY(-10deg);
              transform: skewY(-3deg) skewX(-5deg) rotateY(-10deg); } }
  @media all and (max-width: 29.99em) {
    .save-the-date-tainer {
      top: 50px;
      padding: 1rem; } }
  html.no-webgl .save-the-date-tainer,
  .wtf .save-the-date-tainer,
  .save-the-date-tainer.is-active {
    display: block; }

.save-the-date-date {
  font-size: 5rem;
  display: inline-block;
  padding: 0.5rem 1.5rem; }
  @media all and (max-width: 59.99em) {
    .save-the-date-date {
      font-size: 4rem; } }
  @media all and (max-width: 47.99em) {
    .save-the-date-date {
      font-size: 2.5rem; } }
  @media all and (max-width: 29.99em) {
    .save-the-date-date {
      font-size: 1.5rem; } }
  @media all and (max-width: 19.99em) {
    .save-the-date-date {
      font-size: 1.3rem; } }

.mod_logo--party {
  position: absolute;
  z-index: 100;
  width: 500px;
  width: 60vw;
  margin-left: -250px;
  margin-left: -30vw;
  margin-top: -25vw;
  max-width: 800px;
  top: 50%;
  left: 50%;
  padding: 0;
  -webkit-transform-style: flat;
          transform-style: flat; }
  @media all and (max-width: 59.99em) {
    .mod_logo--party {
      width: 70vw;
      margin-left: -35vw;
      margin-top: -30vw; } }
  @media all and (max-width: 47.99em) {
    .mod_logo--party {
      margin-left: -40vw;
      margin-top: -34vw;
      width: 80vw; } }
  @media all and (max-width: 29.99em) {
    .mod_logo--party {
      margin-left: -42.5vw;
      margin-top: -36vw;
      width: 85vw; } }

body {
  background: -webkit-linear-gradient(bottom right, #f7ff00, #db36a4);
  background: linear-gradient(to top left, #f7ff00, #db36a4); }

.mod_section--home {
  padding-top: 40px; }
  .mod_section--home .mod_section__title {
    font-family: "FFMarkWeb", sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #FFFFFF; }
  .mod_section--home .mod_section__sub-title {
    font-family: "FFMarkWeb", sans-serif;
    font-weight: normal;
    font-size: 18px;
    color: #FFFFFF;
    font-family: "FFMarkWeb", sans-serif;
    font-weight: normal;
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF; }
  .mod_section--home .mod_section__contact {
    margin-bottom: 3.33333rem; }
  .mod_section--home .mod_section__list {
    margin-bottom: 1.11111rem;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.45; }

.mod_logo {
  padding: 60px 30px; }
  @media all and (min-width: 30em) {
    .mod_logo {
      padding: 80px; } }
  .mod_logo--inline {
    display: inline-block;
    padding: 0;
    width: 240px;
    margin-bottom: 1em; }
  .mod_logo__logo {
    display: block;
    max-width: 240px;
    margin: 0 auto; }
  .mod_logo__title {
    font-size: 36px;
    margin-top: 80px;
    text-align: center; }

.mod_logo {
  padding: 60px 30px; }
  @media all and (min-width: 30em) {
    .mod_logo {
      padding: 80px; } }
  .mod_logo--inline {
    display: inline-block;
    padding: 0;
    width: 240px;
    margin-bottom: 1em; }
  .mod_logo__logo {
    display: block;
    max-width: 240px;
    margin: 0 auto; }
  .mod_logo__title {
    font-size: 36px;
    margin-top: 80px;
    text-align: center; }

.mod_footer {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  font-size: 14px; }
  .mod_footer__link {
    color: #FFFFFF;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in-out;
            transition: color 0.3s ease-in-out;
    font-size: 14px;
    font-weight: normal;
    display: block;
    margin-bottom: 1em; }
    .mod_footer__link:visited {
      color: #FFFFFF; }
    .mod_footer__link:hover {
      color: #FFFFFF; }
    .mod_footer__link:active {
      color: #FFFFFF; }
    .mod_footer__link:last-child {
      margin-bottom: 0; }
    @media all and (min-width: 30em) {
      .mod_footer__link {
        display: inline-block;
        margin-bottom: auto; } }
  .mod_footer__party {
    margin-bottom: 0.5em; }
  .mod_footer__content {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto; }
  .mod_footer__part {
    display: block;
    white-space: nowrap;
    margin-right: 1em; }
    @media all and (min-width: 30em) {
      .mod_footer__part {
        display: inline-block; } }
    .mod_footer__part::after {
      content: ' '; }

canvas {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

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