/**
 *  Basic animation properties
 *  @a = animation name
 *  @s = duration
 */
/**
 *  Gradient Hover Mixin
 *  because gradients doesnt support css transitions...
 *  Great for buttons...
*/
/**
 *  Gradient color mixin
 *  Works great with text & icons fonts
 */
/**
 *  Hover Slide Background
 *  Slide background color from left to right on hovers
 */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}
/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size (opinionated).
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  tab-size: 4;
  /* 3 */
}
/*
Sections
========
*/
/**
1. Remove the margin in all browsers.
2. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
  margin: 0;
  /* 1 */
  /* 2 */
  /*
	font-family:
		system-ui,
		-apple-system,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
  */
}
/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
}
/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  text-decoration: underline dotted;
}
/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
}
/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}
/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}
/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}
/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}
/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
 *  Custom Resets
 *  @author Ivan Milincic <kreativan@outlook.com>
 *  @link http://kraetivan.dev
*/
/*
 * Remove the gap between embedded content and the bottom of their containers.
*/
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/*
 * 1. Add responsiveness.
 * 3. Corrects responsive `max-width` behavior if padding and border are used.
 */
canvas,
img,
video {
  /* 1 */
  max-width: 100%;
  /* 3 */
  box-sizing: border-box;
}
/*
 * Iframe
 * Remove border in all browsers
 */
iframe {
  border: 0;
}
/* ========================================================================
  Component: Print
========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  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;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* =========================================================== 
  Base
=========================================================== */
html {
  font-family: 'Quicksand', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-size: 18px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #000000;
}
body.noscroll {
  overflow: hidden !important;
}
#main {
  position: relative;
  box-sizing: border-box;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Quicksand', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  font-weight: normal;
  color: #333;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.6;
}
h1,
h2 {
  line-height: 1.1;
}
* + h3,
* + h2,
* + h1 {
  margin-top: 35px;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}
h5 {
  font-size: 1.1rem;
}
@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  h5 {
    font-size: 1rem;
  }
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
a {
  color: #a22ce6;
  outline: none;
}
a:hover {
  color: #8718c7;
}
a:active {
  outline: none;
}
blockquote {
  border-left: 5px solid #ddd;
  margin-left: 0;
  padding-left: 20px;
}
ul {
  list-style: circle;
  margin: 0;
  padding: 1em 1.5em;
  display: inline-block;
  list-style-type: circle;
}
ul > li {
  list-style: circle;
  margin-bottom: 0.5em;
}
pre {
  background: rgba(208, 208, 208, 0.6);
  color: #1c1c1c;
  overflow-x: auto;
}
/* * 1. Show the overflow in Chrome, Edge and IE.
 * 2. Add the correct text-align in Edge and IE.
 * 3. Style */
hr {
  /* 1 */
  overflow: visible;
  /* 2 */
  text-align: inherit;
  /* 3 */
  margin: 0 0 20px 0;
  border: 0;
  border-top: 1px solid #ddd;
}
/* * code */
code {
  color: #E24A3C;
}
/* *
 * Processwire CKE Image */
img.align_left {
  float: left;
  margin-right: 15px;
  margin-bottom: 5px;
}
img.align_right {
  float: right;
  margin-left: 15px;
  margin-bottom: 5px;
}
/* =========================================================== 
  Form
=========================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.w-input,
.w-select,
.w-textarea,
.w-radio,
.w-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}
.w-input {
  overflow: visible;
}
.w-select {
  text-transform: none;
}
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.w-input[type="search"]::-webkit-search-cancel-button,
.w-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.w-input[type="number"]::-webkit-inner-spin-button,
.w-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/*
 * Removes placeholder transparency in Firefox.
 */
.w-input::-mow-placeholder,
.w-textarea::-mow-placeholder {
  opacity: 1;
}
/*
 * Improves consistency of cursor style for clickable elements
 */
.w-radio:not(:disabled),
.w-checkbox:not(:disabled) {
  cursor: pointer;
}
/*
 * Define consistent border, margin, and padding.
 */
.w-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
/*
 * Remove default style in iOS.
 */
.w-input,
.w-textarea {
  -webkit-appearance: none;
}
/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.w-input:not([class*="w-width-"]),
.w-select:not([class*="w-width-"]),
.w-textarea:not([class*="w-width-"]) {
  width: 100%;
}
.w-input,
.w-select,
.w-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: rgba(208, 208, 208, 0.6);
  color: #000000;
  border: 1px solid #ddd;
  border-radius: 0;
}
/*
 *  Single Line
 */
.w-input,
.w-select {
  height: 38px;
  vertical-align: middle;
  display: inline-block;
}
/*
 * Multi-line
 */
.w-select[multiple],
.w-select[size],
.w-textarea {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}
.w-select[multiple],
.w-select[size] {
  resize: vertical;
}
/* Focus */
.w-input:focus,
.w-select:focus,
.w-textarea:focus {
  outline: none;
  background-color: white;
  color: #1c1c1c;
}
/* Disabled */
.w-input:disabled,
.w-select:disabled,
.w-textarea:disabled {
  background-color: rgba(208, 208, 208, 0.6);
  color: #707070;
}
/*
 * Placeholder
 */
.w-input::-ms-input-placeholder {
  color: #707070 !important;
}
.w-input::placeholder {
  color: #707070;
}
.w-textarea::-ms-input-placeholder {
  color: #707070 !important;
}
.w-textarea::placeholder {
  color: #707070;
}
/* Style modifier
 ========================================================================== */
/*
 * Error
 */
.w-form-danger,
.w-form-danger:focus {
  color: #ff6b6b;
  border-color: #ff6b6b;
}
/* =========================================================== 
  Flex
=========================================================== */
.w-flex {
  display: flex;
}
/**
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.w-flex-left {
  justify-content: flex-start;
}
.w-flex-center {
  justify-content: center;
}
.w-flex-right {
  justify-content: flex-end;
}
.w-flex-between {
  justify-content: space-between;
}
.w-flex-around {
  justify-content: space-around;
}
/**
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.w-flex-stretch {
  align-items: stretch;
}
.w-flex-top {
  align-items: flex-start;
}
.w-flex-middle {
  align-items: center;
}
.w-flex-bottom {
  align-items: flex-end;
}
/* Direction
 ========================================================================== */
.w-flex-row {
  flex-direction: row;
}
.w-flex-reverse {
  flex-direction: row-reverse;
}
.w-flex-column {
  flex-direction: column;
}
.w-flex-column.w-flex-reverse {
  flex-direction: column-reverse;
}
/* Wrap - Flex items single line (nowrap) or multiline (wrap & wrap-reverse)
========================================================================== */
.w-flex-nowrap {
  flex-wrap: nowrap;
}
.w-flex-wrap {
  flex-wrap: wrap;
}
.w-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
/* Size - Width
========================================================================== */
.w-flex-expand > *:not([class*="w-width-"]) {
  flex: 1;
}
.w-flex-1 {
  flex: 1;
}
.w-flex-2 {
  flex: 2;
}
.w-flex-3 {
  flex: 3;
}
/**
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.w-flex-auto {
  flex: auto;
}
/* Item ordering - Default 0
 ========================================================================== */
.w-flex-first {
  order: -1;
}
.w-flex-last {
  order: 99;
}
@media (max-width: 768px) {
  .w-flex-reverse--md {
    flex-direction: row-reverse;
  }
  .w-flex-column--md {
    flex-direction: column;
    justify-content: flex-start;
  }
  .w-flex-column--md.w-flex-reverse--md {
    flex-direction: column-reverse;
  }
}
@media (max-width: 640px) {
  .w-flex-reverse--sm {
    flex-direction: row-reverse;
  }
  .w-flex-column--sm {
    flex-direction: column;
    justify-content: flex-start;
  }
  .w-flex-column--sm.w-flex-reverse--sm {
    flex-direction: column-reverse;
  }
}
/**
 *  Grid based on css grid
 *  eg: "w-grid w-grid-4 w-grid-2--md w-grid-1--sm"
 *  custom: "w-grid w-grid-40-60 w-grid-2--md w-grid-1--sm"
 *  align items horizontaly: "w-grid-left w-grid-right w-grid-center w-grid-strech-h"
 *  align items vertically: "w-grid-top w-grid-bottom w-grid-middle w-grid-strech-v"
 */
.w-grid {
  display: grid;
  grid-auto-columns: auto;
}
.w-grid:not(.w-grid-collapse) {
  grid-gap: 30px;
}
.w-grid.w-grid-s {
  grid-gap: 20px;
}
.w-grid.w-grid-m {
  grid-gap: 35px;
}
.w-grid.w-grid-l {
  grid-gap: 50px;
}
.w-grid.w-grid-auto-first {
  grid-template-columns: auto 1fr;
}
.w-grid.w-grid-auto-last {
  grid-template-columns: 1fr auto;
}
.w-grid.w-grid-40-60 {
  grid-template-columns: 40% 60%;
}
.w-grid.w-grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
.w-grid.w-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
.w-grid.w-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.w-grid.w-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.w-grid.w-grid-2 {
  grid-template-columns: 1fr 1fr;
}
.w-grid.w-grid-1 {
  grid-template-columns: 1fr;
}
.w-grid.w-grid-left {
  justify-items: start;
}
.w-grid.w-grid-right {
  justify-items: end;
}
.w-grid.w-grid-center {
  justify-items: center;
}
.w-grid.w-grid-strech-h {
  justify-items: stretch;
}
.w-grid.w-grid-top {
  align-items: start;
}
.w-grid.w-grid-bottom {
  align-items: end;
}
.w-grid.w-grid-middle {
  align-items: center;
}
.w-grid.w-grid-strech-v {
  align-items: stretch;
}
.w-grid.w-grid-cover {
  justify-items: stretch;
  align-items: stretch;
}
.w-grid > .w-grid-first {
  order: -1;
}
.w-grid > .w-grid-last {
  order: 99;
}
@media (max-width: 768px) {
  .w-grid.w-grid-4--md {
    grid-template-columns: repeat(4, 1fr);
  }
  .w-grid.w-grid-3--md {
    grid-template-columns: repeat(3, 1fr);
  }
  .w-grid.w-grid-2--md {
    grid-template-columns: 1fr 1fr;
  }
  .w-grid.w-grid-1--md {
    grid-template-columns: 1fr;
  }
  .w-grid > .w-grid-first--md {
    order: -1;
  }
  .w-grid > .w-grid-last--md {
    order: 99;
  }
  .w-grid.w-grid-gap-l {
    grid-gap: 35px;
  }
}
@media (max-width: 640px) {
  .w-grid.w-grid-2--sm {
    grid-template-columns: 1fr 1fr;
  }
  .w-grid.w-grid-1--sm {
    grid-template-columns: 1fr;
  }
  .w-grid > .w-grid-first--sm {
    order: -1;
  }
  .w-grid > .w-grid-last--sm {
    order: 99;
  }
}
/* =========================================================== 
  Height
=========================================================== */
[class*='w-height'] {
  box-sizing: border-box;
}
.w-height-100 {
  height: 100%;
}
.w-height-viewport {
  min-height: 100vh;
}
.w-height-s {
  height: 150px;
}
.w-height-m {
  height: 300px;
}
.w-height-l {
  height: 450px;
}
/* =========================================================== 
  Width
=========================================================== */
/**
 * 1.   Dont let flex element to shrink, should keep the width
 * 2. `max-width` is needed for the pixel-based classes
 */
[class*="w-width"] {
  /* 1 */
  flex-shrink: 0;
  box-sizing: border-box;
  width: 100%;
  /* 2 */
  max-width: 100%;
}
/**
 * 1. Reset the `min-width`, which is set to auto by default, because
 *    flex items won't shrink below their minimum intrinsic content size.
 *    Using `1px` instead of `0`, so items still wrap into the next line,
 *    if they have zero width and padding and the predecessor is 100% wide.
 */
.w-width-expand {
  flex: 1;
  flex-shrink: 1;
  /* 1 */
  min-width: 1px;
}
/**
 *  Sizes  
 */
.w-width-auto {
  width: auto;
}
.w-width-20 {
  width: 20%;
}
.w-width-25 {
  width: 25%;
}
.w-width-30 {
  width: 30%;
}
.w-width-33 {
  width: calc(100% * 1 / 3.001);
}
.w-width-40 {
  width: 40%;
}
.w-width-50 {
  width: 50%;
}
.w-width-60 {
  width: 60%;
}
.w-width-70 {
  width: 70%;
}
.w-width-75 {
  width: 75%;
}
.w-width-80 {
  width: 80%;
}
.w-width-100 {
  width: 100%;
}
@media (min-width: 1400px) {
  .w-width-50--xl {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .w-width-expand--md {
    flex: 1 !important;
  }
  .w-width-25--md {
    flex: none;
    width: 25%;
  }
  .w-width-30--md {
    flex: none;
    width: 30%;
  }
  .w-width-33--md {
    flex: none;
    width: 100% / 3;
  }
  .w-width-40--md {
    flex: none;
    width: 40%;
  }
  .w-width-50--md {
    flex: none;
    width: 50%;
  }
  .w-width-60--md {
    flex: none;
    width: 60%;
  }
  .w-width-70--md {
    flex: none;
    width: 70%;
  }
  .w-width-75--md {
    flex: none;
    width: 75%;
  }
  .w-width-80--md {
    flex: none;
    width: 75%;
  }
  .w-width-100--md {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .w-width-expand--sm {
    flex: 1 !important;
  }
  .w-width-50--sm {
    flex: none;
    width: 50%;
  }
  .w-width-100--sm {
    flex: none;
    width: 100%;
  }
}
/* =========================================================== 
  Container
=========================================================== */
.w-container {
  display: flow-root;
  box-sizing: content-box;
  max-width: 1400px;
  padding: 0 35px;
  margin-left: auto;
  margin-right: auto;
}
.w-container > :last-child {
  margin-bottom: 0;
}
.w-container.w-container-s {
  max-width: 800px;
}
@media (max-width: 640px) {
  .w-container {
    padding: 0 20px;
  }
}
.w-container-fluid {
  display: flow-root;
  box-sizing: content-box;
  max-width: 100%;
  padding: 0 35px;
}
.w-container-fluid > :last-child {
  margin-bottom: 0;
}
@media (min-width: 1400px) {
  .w-container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 640px) {
  .w-container-fluid {
    padding: 0 20px;
  }
}
/* =========================================================== 
  Section
=========================================================== */
.w-section {
  position: relative;
  box-sizing: border-box;
  padding: 70px 0;
}
.w-section.w-section-s {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .w-section.w-section-l {
    padding: 140px 0;
  }
}
@media (max-width: 640px) {
  .w-section {
    padding: 30px 0;
  }
}
/* =========================================================== 
  Position
=========================================================== */
.w-pos-relative {
  position: relative;
}
.w-pos-absolute {
  position: absolute;
}
.w-pos-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.w-pos-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
/* =========================================================== 
  Visibility
=========================================================== */
.w-overflow-hidden {
  overflow: hidden;
}
.w-overflow-auto {
  overflow: auto;
}
.w-hidden {
  display: none;
}
@media (max-width: 640px) {
  .w-visible-s {
    display: none;
  }
}
@media (max-width: 768px) {
  .w-visible-m {
    display: none;
  }
}
@media (max-width: 1024px) {
  .w-visible-l {
    display: none;
  }
}
@media (max-width: 420px) {
  .w-visible-mobile {
    display: none;
  }
}
@media (max-width: 960px) {
  .w-visible-tablet {
    display: none;
  }
}
@media (min-width: 1400px) {
  .w-visible-desktop {
    display: none;
  }
}
@media (min-width: 640px) {
  .w-hidden-s {
    display: none;
  }
}
@media (min-width: 768px) {
  .w-hidden-m {
    display: none;
  }
}
@media (min-width: 768px) {
  .w-hidden-l {
    display: none;
  }
}
@media (min-width: 420px) {
  .w-hidden-mobile {
    display: none;
  }
}
@media (min-width: 960px) {
  .w-hidden-tablet {
    display: none;
  }
}
@media (min-width: 1400px) {
  .w-hidden-desktop {
    display: none;
  }
}
.z-index {
  z-index: 1;
}
.z-index-2 {
  z-index: 2;
}
.z-index-9 {
  z-index: 9;
}
.z-index-99 {
  z-index: 99;
}
.z-index-999 {
  z-index: 999;
}
/* =========================================================== 
  ProcessWire
=========================================================== */
/**
 * Processwire CKE Image
 */
img.align_left {
  float: left;
  margin-right: 15px;
  margin-bottom: 5px;
}
img.align_right {
  float: right;
  margin-left: 15px;
  margin-bottom: 5px;
}
/* =========================================================== 
  Animation
=========================================================== */
[class*='w-anim-'] {
  animation: 0.5s ease-out both;
}
/**
 *  Fast
 */
.w-anim-fast {
  animation-duration: 0.2s !important;
}
/**
 * Fade
 */
.w-anim-fade {
  animation-name: w-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}
/**
 * Slide
 */
.w-anim-slide-top {
  animation-name: w-fade, w-slide-top;
}
.w-anim-slide-bottom {
  animation-name: w-fade, w-slide-bottom;
}
.w-anim-slide-left {
  animation-name: w-fade, w-slide-left;
}
.w-anim-slide-right {
  animation-name: w-fade, w-slide-right;
}
/* Keyframes used by animation classes
 ========================================================================== */
@keyframes w-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes w-slide-top {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes w-slide-bottom {
  0% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes w-slide-left {
  0% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes w-slide-right {
  0% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
/* =========================================================== 
  Link
=========================================================== */
.w-link > a,
.w-link {
  text-decoration: none !important;
  color: #1c1c1c;
  cursor: pointer;
}
.w-link > a:focus,
.w-link:focus,
.w-link > a:active,
.w-link:active,
.w-link > a:hover,
.w-link:hover {
  color: #8718c7;
}
/* =========================================================== 
  Max
=========================================================== */
.w-max {
  max-width: 600px;
}
.w-max-100 {
  max-width: 100%;
}
.w-max-2 {
  max-width: 1400px / 2;
}
.w-max-3 {
  max-width: 1400px / 3;
}
/* =========================================================== 
  Media
=========================================================== */
.w-image {
  display: block;
  position: relative;
  width: 100%;
}
/* image fit container-crop */
.w-image-fit {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* hover twist */
.w-image-hover-twist {
  overflow: hidden;
}
.w-image-hover-twist img {
  transform: scale(1) rotate(0deg);
  transition: transform 0.5s;
}
.w-image-hover-twist:hover img {
  transform: scale(1.25) rotate(10deg);
}
/* =========================================================== 
  SVG
=========================================================== */
.svg {
  display: inline-block;
  position: relative;
}
.svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.svg.svg-stroke {
  stroke: #666;
}
.svg.svg-stroke svg {
  stroke: inherit !important;
}
.svg.svg-fill {
  fill: #666;
}
.svg.svg-fill svg * {
  fill: inherit !important;
}
/* =========================================================== 
  Reset
=========================================================== */
.w-reset-btn {
  border: none;
  padding: 0;
  text-decoration: none;
  background: none;
}
.w-reset-btn:hover {
  cursor: pointer;
}
.w-reset-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.w-reset-link > a,
.w-reset-link {
  text-decoration: none !important;
  color: #000000 !important;
}
.w-reset-link > a:focus,
.w-reset-link:focus,
.w-reset-link > a:active,
.w-reset-link:active,
.w-reset-link > a:hover,
.w-reset-link:hover {
  color: #000000 !important;
}
/* =========================================================== 
  Text
=========================================================== */
.w-font {
  font-family: 'Quicksand', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji' !important;
}
.w-font-base {
  font-family: 'Quicksand', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji' !important;
}
.w-font-base:not(.w-text-up) {
  text-transform: none !important;
}
.w-text-primary {
  color: #a22ce6;
}
.w-text-up {
  text-transform: uppercase !important;
}
.w-text-low {
  text-transform: lowercase !important;
}
.w-text-bold {
  font-weight: bold !important;
}
.w-text-small {
  font-size: 0.85rem !important;
}
.w-text-large {
  font-size: 1.1rem;
}
.w-text-center {
  text-align: center !important;
}
.w-text-left {
  text-align: left !important;
}
.w-text-right {
  text-align: right !important;
}
.w-text-emphasis {
  color: #1c1c1c;
}
.w-text-muted {
  color: #707070;
}
.w-text-bg {
  background: #ffeeb5;
  color: #1c1c1c;
  text-fill-color: #1c1c1c;
  -webkit-text-fill-color: #1c1c1c;
  -mow-text-fill-color: #1c1c1c;
}
.w-h1 {
  font-size: 3.2rem;
}
.w-h2 {
  font-size: 2.5rem;
}
.w-h3 {
  font-size: 1.5rem;
}
.w-h4 {
  font-size: 1.2rem;
}
.w-h5 {
  font-size: 1.1rem;
}
@media (max-width: 640px) {
  .w-h1 {
    font-size: 2rem;
  }
  .w-h2 {
    font-size: 1.7rem;
  }
  .w-h3 {
    font-size: 1.3rem;
  }
  .w-h4 {
    font-size: 1.1rem;
  }
  .w-h5 {
    font-size: 1rem;
  }
}
/* =========================================================== 
  Margin
=========================================================== */
.w-margin-auto {
  margin-left: auto;
  margin-right: auto;
}
.w-margin-remove {
  margin: 0 !important;
}
.w-margin-remove-top {
  margin-top: 0 !important;
}
.w-margin-remove-bottom {
  margin-bottom: 0 !important;
}
.w-margin {
  margin-top: 20px;
  margin-bottom: 20px;
}
.w-margin-s {
  margin-top: 10px;
  margin-bottom: 10px;
}
.w-margin-m {
  margin-top: 35px;
  margin-bottom: 35px;
}
.w-margin-l {
  margin-top: 50px;
  margin-bottom: 50px;
}
.w-margin-top {
  margin-top: 20px;
}
.w-margin-top-s {
  margin-top: 10px;
}
.w-margin-top-m {
  margin-top: 35px;
}
.w-margin-top-l {
  margin-top: 50px;
}
.w-margin-bottom {
  margin-bottom: 20px;
}
.w-margin-bottom-s {
  margin-bottom: 10px;
}
.w-margin-bottom-m {
  margin-bottom: 35px;
}
.w-margin-bottom-l {
  margin-bottom: 50px;
}
.w-margin-left {
  margin-left: 20px;
}
.w-margin-left-s {
  margin-left: 10px;
}
.w-margin-left-l {
  margin-left: 50px;
}
.w-margin-right {
  margin-right: 20px;
}
.w-margin-right-s {
  margin-right: 10px;
}
.w-margin-right-l {
  margin-right: 50px;
}
@media (max-width: 768px) {
  .w-margin-m {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .w-margin-top-m {
    margin-top: 20px;
  }
  .w-margin-bottom-m {
    margin-bottom: 20px;
  }
  .w-margin-l {
    margin-top: 35px;
    margin-bottom: 35px;
  }
  .w-margin-top-l {
    margin-top: 35px;
  }
  .w-margin-bottom-l {
    margin-bottom: 35px;
  }
}
/* =========================================================== 
  Padding
=========================================================== */
.w-padding {
  padding: 30px;
}
.w-padding-s {
  padding: 20px;
}
.w-padding-m {
  padding: 35px;
}
@media (max-width: 640px) {
  .w-padding-m {
    padding: 30px;
  }
}
.w-padding-l {
  padding: 50px;
}
@media (max-width: 640px) {
  .w-padding-l {
    padding: 30px;
  }
}
.w-padding-top {
  padding-top: 30px;
}
.w-padding-top-s {
  padding-top: 20px;
}
.w-padding-top-l {
  padding-top: 50px;
}
.w-padding-bottom {
  padding-bottom: 30px;
}
.w-padding-bottom-s {
  padding-bottom: 20px;
}
.w-padding-bottom-l {
  padding-bottom: 50px;
}
.w-padding-left {
  padding-left: 30px;
}
.w-padding-left-s {
  padding-left: 20px;
}
.w-padding-left-l {
  padding-left: 50px;
}
.w-padding-right {
  padding-right: 30px;
}
.w-padding-right-s {
  padding-right: 20px;
}
.w-padding-right-l {
  padding-right: 50px;
}
/* =========================================================== 
  Backgroud
=========================================================== */
.w-light {
  color: rgba(255, 255, 255, 0.8);
}
.w-light .z-h1,
.w-light .z-h2,
.w-light .z-h3,
.w-light .z-h4,
.w-light .z-h5,
.w-light h1,
.w-light h2,
.w-light h3,
.w-light h4,
.w-light h5 {
  color: #ffffff;
}
.w-light .z-text-muted {
  color: rgba(255, 255, 255, 0.8);
}
.w-bg-primary {
  background: #a22ce6;
  color: rgba(255, 255, 255, 0.8);
}
.w-bg-primary .z-h1,
.w-bg-primary .z-h2,
.w-bg-primary .z-h3,
.w-bg-primary .z-h4,
.w-bg-primary .z-h5,
.w-bg-primary h1,
.w-bg-primary h2,
.w-bg-primary h3,
.w-bg-primary h4,
.w-bg-primary h5 {
  color: #ffffff;
}
.w-bg-primary .z-text-muted {
  color: rgba(255, 255, 255, 0.8);
}
.w-bg-muted {
  background: rgba(208, 208, 208, 0.6);
}
.w-bg-dark {
  background: #191D20;
  color: rgba(255, 255, 255, 0.8);
}
.w-bg-dark .z-h1,
.w-bg-dark .z-h2,
.w-bg-dark .z-h3,
.w-bg-dark .z-h4,
.w-bg-dark .z-h5,
.w-bg-dark h1,
.w-bg-dark h2,
.w-bg-dark h3,
.w-bg-dark h4,
.w-bg-dark h5 {
  color: #ffffff;
}
.w-bg-dark .z-text-muted {
  color: rgba(255, 255, 255, 0.8);
}
.w-bg-white {
  background: #ce8e8e;
}
.w-bg-image-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.w-bg-color-overlay {
  background-color: rgba(255, 255, 255, 0.8);
}
/* =========================================================== 
  Border
=========================================================== */
.w-border {
  border: 1px solid #ddd;
}
.w-border-top {
  border-top: 1px solid #ddd;
}
.w-border-bottom {
  border-bottom: 1px solid #ddd;
}
.w-border-radius {
  border-radius: 5px;
}
.w-border-radius-l {
  border-radius: 15px;
}
.w-border-circle {
  border-radius: 50%;
}
/* =========================================================== 
  Shadow
=========================================================== */
.w-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.w-media-container a {
  display: block;
  min-height: 100%;
  min-width: 100%;
}
.w-media {
  object-fit: cover;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}
.w-media.w-media-reset {
  object-fit: scale-down;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}
/* =========================================================== 
  Panel
=========================================================== */
.w-panel {
  box-sizing: border-box;
  position: relative;
  background: rgba(208, 208, 208, 0.6);
  padding: 30px;
  border-radius: 5px;
}
/* =========================================================== 
  Button
=========================================================== */
.w-btn {
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: middle;
  -webkit-appearance: none;
  line-height: 1.3em;
  padding: 0.5rem 20px;
  font-size: 0.9rem;
}
.w-btn:hover {
  cursor: pointer;
}
.w-btn-default {
  background: rgba(208, 208, 208, 0.6);
  color: #1c1c1c;
}
.w-btn-default:focus,
.w-btn-default:active,
.w-btn-default:hover {
  background: rgba(195, 195, 195, 0.6);
  color: #1c1c1c;
}
.w-btn-primary {
  background: #a22ce6;
  color: white;
}
.w-btn-primary:focus,
.w-btn-primary:active,
.w-btn-primary:hover {
  background: #971ade;
  color: white;
}
.w-btn-cta {
  font-size: 2rem;
  line-height: 3rem;
  padding: 0 2rem;
  border-radius: 2rem;
}
/* =========================================================== 
  Breadcrumbs
=========================================================== */
.w-breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.w-breadcrumb li > a {
  color: #707070;
  text-decoration: none;
}
.w-breadcrumb li:hover > a {
  color: #1c1c1c;
}
.w-breadcrumb li > span {
  color: #1c1c1c;
}
.w-breadcrumb li + li:before {
  content: "/";
  display: inline-block;
  margin-left: 10px;
  margin-right: 6px;
}
/* =========================================================== 
  Overlay
=========================================================== */
.w-overlay-container {
  position: relative;
}
.w-overlay {
  /* main */
  display: block;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  /* bg */
  /* show on hover */
  /* light */
  /* content center */
}
.w-overlay:before {
  content: "";
  display: block;
  background: rgba(17, 17, 17, 0.6);
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.w-overlay.w-overlay-hover {
  opacity: 0;
  transition: all 0.3s;
}
.w-overlay.w-overlay-hover:hover {
  opacity: 1;
}
.w-overlay.w-overlay-light:before {
  background: rgba(17, 17, 17, 0.3);
}
.w-overlay.w-overlay-center .w-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.w-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 100;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}
/* Modal Header */
.w-modal-header h2 {
  margin: 0;
}
/* Modal Body */
/* Modal Footer */
/* Modal Content */
.w-modal-content {
  position: relative;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.wo-block {
  position: relative;
}
.wo-block h2,
.wo-block h3 {
  color: #1c1c1c;
}
.wo-block h1.wo-bf-headline,
.wo-block h2.wo-bf-headline {
  margin: 0;
  color: #ff10a2;
}
.wo-block h3.wo-bf-subtitle {
  margin: 0;
  color: #a22ce6;
}
.wo-block .wo-is-featured {
  background: rgba(224, 224, 224, 0.6);
}
.wo-block .wo-has-background h1.wo-bf-headline,
.wo-block .wo-has-background h2.wo-bf-headline,
.wo-block .wo-has-background h3.wo-bf-subtitle,
.wo-block .wo-has-background .wo-bf-body,
.wo-block .wo-has-background .wo-bf-sidebar {
  color: white;
}
.wo-bf-content h2 {
  color: #ff10a2;
}
.wo-layers-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 300px;
}
.wo-img-layered {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.wo-img-layered img {
  object-fit: cover;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}
.wo-img-layered img.wo-img-contain {
  object-fit: contain;
}
.wo-layer-top {
  z-index: 30;
}
.wo-layer-middle {
  z-index: 20;
}
.wo-layer-bottom {
  z-index: 10;
}
.wo-bf-body {
  font-size: 1.2em;
  color: #1c1c1c;
}
.wo-edit-block {
  padding: 0.5rem;
  background: white;
  border: 1px solid #ff10a2;
  border-radius: 3rem;
  position: absolute;
  right: 2rem;
  top: 3rem;
  width: auto;
  z-index: 999;
}
.wo-edit-block div.wo-edit-inner {
  display: none;
}
.wo-edit-block:hover {
  width: auto;
}
.wo-edit-block:hover div.wo-edit-inner {
  display: flex;
}
.wo-edit-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ff10a2;
  cursor: pointer;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
}
/*# sourceMappingURL=import.css.map */