/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/assets/styles/main.scss ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,500,900);
/*!***************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/resolve-url-loader/index.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[3]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/assets/styles/main.scss (1) ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
* 7-1 Sass Architecture
* https:*sass-guidelin.es/#the-7-1-pattern
* Essential Vendors
* external libraries that should be loaded before
*/
/**
 * Retrieves a color value from the $material-colors Sass map
 * Inspired by https://github.com/nilskaspersson/Google-Material-UI-Color-Palette/
 *
 * @function
 * @param {string} color-name             - quoted, lower-case, dasherized color
 *                                          name (e.g. 'pink', 'amber')
 * @param {string} [color-variant='500']  - quoted, lowercase color variant (e.g.
 *                                          '200', 'a100')
 */
/*
* Abstracts
* - tools and helpers
*/
/*
* -----------------------------------------------------------------------------
* Functions
* -----------------------------------------------------------------------------
*/
/*
* Helper: Remove (strip) Units
* @author Bourbon / Thoughbot
*
* @parameter {Value} $value -Value, assumed number with unit
*
* @example  scss - Usage
*   line-height: strip-unit(1.5em);
* @example css - Output
*   line-height: 1.5;
*/
/*
* Return WCAG2.0 relative luminance
* Helper: Calculate Luminance of a single color
* @author Sérgio Gomes
* Adapted from: https://medium.com/dev-channel/using-sass-to-automatically-pick-text-colors-4ba7645d2796
*
* @require {list} $linear-channel-values (custom)
* @require {function} nth (core Sass)
* @require {function} red, green, blue (core Sass)
*
* @param {Valid Color Value} Color to retreive luminance from
*
* Note: White luminance is 1, Black luminance is 0
*
* Note: To be used in other functions or mixins — creates non-standard CSS output:
* @example scss - Usage
*    .sample { luminance: luminanceOf(#c00); }
*
* @example css - Output
*    .sample { luminance: 12.83679; }
*
*/
/*
* Helper: Calculate "readability" as defined by WCAG 2.1
* @author Sérgio Gomes and J. Hogue
* Adapted from: https://github.com/LeaVerou/contrast-ratio/blob/gh-pages/color.js
*
* @require {function} luminance (Custom)
* @require {function} round (core Sass)
*
* @param {Valid Color Value} Color 1
* @param {Valid Color Value} Color 2
*
* Note: Low contrast is 0, High contrast is 21.0
*
* Note: To be used in other functions or mixins — creates non-standard CSS output:
* @example scss - Usage
*    .sample { contrast-ratio: contrast-ratio(#c00, #fff); }
*
* @example css - Output
*    .sample { contrast-ratio: 5.89; }
*
*/
/*
* Helper: Depending on the unit recalculate a font size value into unitless pixels
* @author J. Hogue
*
* @require {function} unit (core Sass)
* @require {function} strip-unit (custom)
*
* @param {String} Number with or without unit
*
* Note: To be used in other functions or mixins — creates non-standard CSS output:
* @example scss - Usage
*    .sample { validate-font-size: validate-font-size(1em); }
*
* @example css - Output
*    .sample { validate-font-size: 16; }
*
*/
/*
* Helper: Determine the correct ratio value to use based on font-size and WCAG Level
* @author J. Hogue
*
* @require {function} validate-font-size (custom)
*
* @param {String} Level. 'AA' or 'AAA' expected, 'AA' default
* @param {Number} Font size in unitless px expected, 16 default
* @param {Boolean} Whether or not the fontis bold, false default
*
* Note: To be used in other functions or mixins — creates non-standard CSS output:
* @example scss - Usage
*    .sample { get-ratio: get-ratio('AAA', 19, true); }
*
* @example css - Output
*    .sample { get-ratio: 4.5; }
*
*/
/*
* Helper: Use contrast against white or black to determine if a color is "light" or "dark"
* @author Sérgio Gomes and J. Hogue
* Adapted from: https://medium.com/dev-channel/using-sass-to-automatically-pick-text-colors-4ba7645d2796
*
* @require {function} contrast-ratio (custom)
*
* @param {String} {Valid Color Value} Color
*
* Note: To be used in other functions or mixins — creates non-standard CSS output:
* @example scss - Usage
*    .sample { light-or-dark: light-or-dark(#c00); }
*
* @example css - Output
*    .sample { light-or-dark: "light"; }
*
*/
/*
* Also useful: Given one color, which is most readable with it, black or white?
* @author Sérgio Gomes and J. Hogue
*
* @require {function} light-or-dark (custom)
*
* @param {String} {Valid Color Value} Color
*
* @example scss - Usage
*     .sample {
*       background-color: #c00;
*       color: high-contrast-color(#c00);
*     }
*
* @example css - Output
*     .sample {
*       background-color: #c00;
*       color: #fff;
*     }
*
*/
/*
* Return a color that passes for the chosen WCAG level without changing the Hue of the color
* @author A. Hosseini, J. Hogue
*
* @require {function} validate-font-size (custom)
* @require {function} get-ratio (custom)
* @require {function} contrast-ratio (custom)
* @require {function} light-or-dark (custom)
* @require {function} scale-color (core Sass)
*
* @param {String} {Valid Color Value} Color 1
* @param {String} {Valid Color Value} Color 2
* @param {String} Level. 'AA' or 'AAA' expected, 'AA' default
* @param {Number} Font size in unitless px expected, 16 default
* @param {Boolean} Whether or not the fontis bold, false default
*
* @example scss - Usage
*     .sample {
*       background-color: #000;
*       color: a11y-color(#c0c, #000);
*     }
*
* @example css - Output
*     .sample {
*       background-color: #000;
*       color: #d200d2;
*     }
*
*/
/*
* Converts hex to rgb form
* @param {String} {Valid Color Value}
* @param {Boolean} {Value in rgb() function or values only} 2
*/
/**
 * Commonly used Mixins (no CSS output)
 */
/**
 * Very simple breakpoints
 *
 * Usage:
 * @include breakpoint([from])
 * @include breakpoint([from], [to])
 *
 * @param {Number} $min-width
 * @param {Number} $max-width
 */
/**
 * Clearfix
 */
/**
 * Object Fit for Image
 */
/**
 * Forces a composited layer to prevent rendering issues on animated elements
 */
/**
 * Visually hidden, but available for screen readers
 * Source: http://hugogiraudel.com/2016/10/13/css-hide-and-seek/
 */
/**
 * Apply a fixed ratio to an image (and its container)
 *
 * @param  {string} $ratio    The ratio the image should have
 * @param  {string} $position The containers position property value
 */
/**
 * Sets a containers aspect ratio. Handy if a ratio changes
 *
 * @param  {string} $ratio    The ratio the image should have
 */
/*
  Vertical align an element
  Please note, the parent container needs to have a fixed height.
  Usage:
  @include vertical-align();
*/
/*
  horizontal align an element
  Please note, the parent container needs to have a fixed width.
  Usage:
  @include horizontal-align();
*/
/*
  Makes image fluid width aka responsive
  Usage:
  @include fluid-image();
*/
/*
  Default transition for link hovers
  Usage:
  @include default-hover-transition();
*/
/*
  Default after/before settings
  Usage:
  @include before-after-default();
*/
/*
  Zoom in effect for images
  Usage:
  @include zoom-hover();
*/
/*
  Just all available image ratios
  Usage:
  @include image-ratios();
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* stylelint-disable */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, 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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* 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 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  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.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-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.
 */
[type=search]::-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 Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* stylelint-enable */
/**
 * Print styles.
 * Taken from https://github.com/h5bp/html5-boilerplate
 */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/**
 * Box Sizing
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

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

/*
* Vendors
* - CSS from external libraries and frameworks
*/
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url(../fonts/fontawesome-webfont-8b43027f47b20503057d.eot?v=4.7.0);
  src: url(../fonts/fontawesome-webfont-8b43027f47b20503057d.eot?#iefix&v=4.7.0) format("embedded-opentype"), url(../fonts/fontawesome-webfont-20fd1704ea223900efa9.woff2?v=4.7.0) format("woff2"), url(../fonts/fontawesome-webfont-f691f37e57f04c152e23.woff?v=4.7.0) format("woff"), url(../fonts/fontawesome-webfont-1e59d2330b4c6deb84b3.ttf?v=4.7.0) format("truetype"), url(../images/c1e38fd9e0e74ba58f7a.svg#fontawesomeregular) format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  animation: fa-spin 1s infinite steps(8);
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

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

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

/**
* Base
* - standard styles for commonly elements
*/
/**
 * Transition Speeds
 */
/**
 * Z-Index Layers
 */
/**
 * Typography Text Types
 *
 * Definition of all typographic styles that are available
 * across the project. Just extend wherever you need them.
 *
 * Consolidate all of the text types here, with the help of the designer in charge.
 *
 * Example usage:
 *
 * .richtext h2 {
 *     @include base-text-type--example;
 *     margin-bottom: $base-space;
 * }
 */
.body-headline-title-1 {
  font-family: "quincy-cf", serif;
  font-weight: 100;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
@media (min-width:375px) {
  .body-headline-title-1 {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
@media (min-width:900px) {
  .body-headline-title-1 {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 7.2rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
@media (min-width:961px) {
  .body-headline-title-1 {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 9.6rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
@media (min-width:1280px) {
  .body-headline-title-1 {
    font-size: 5.75vw;
  }
}

.body-text-caps-1 {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width:1280px) {
  .body-text-caps-1 {
    font-size: 1.075vw;
    line-height: 1;
  }
}

.body-text-caps-2 {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width:1280px) {
  .body-text-caps-2 {
    font-size: 0.95vw;
    line-height: 1;
  }
}

.body-text-content-4 {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
@media (min-width:1280px) {
  .body-text-content-4 {
    font-size: 1.215vw;
  }
}

.body-text-content-5 {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:1280px) {
  .body-text-content-5 {
    font-size: 1.05vw;
  }
}

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

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.25);
}
html ::-moz-selection {
  background: #b9b9b9;
  color: #121f17;
}
html ::selection {
  background: #b9b9b9;
  color: #121f17;
}
html ::-moz-selection {
  background: #b9b9b9;
  color: #121f17;
}

body {
  position: relative;
  background-color: #fcf9f2;
  color: #121f17;
  overflow-x: hidden;
  height: 100%;
}
body.loading {
  position: relative;
  overflow: hidden;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
}
body.theme-white {
  background-color: #ffffff;
}
body.theme-dark {
  background-color: #121f17;
}

.shopify-buy__layout-vertical {
  text-align: left;
}

figure {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.no-js picture img[srcset] {
  display: none;
}

.js .no-js-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.bigtablet {
  display: none !important;
}
@media (max-width:767px) {
  .bigtablet {
    display: block !important;
  }
}

.not--bigtablet {
  display: block !important;
}
@media (max-width:767px) {
  .not--bigtablet {
    display: none !important;
  }
}

.midtablet {
  display: none;
}
@media (max-width:899px) {
  .midtablet {
    display: block !important;
  }
}

.not--midtablet {
  display: block;
}
@media (max-width:899px) {
  .not--midtablet {
    display: none !important;
  }
}

.mobile {
  display: none;
}
@media (max-width:599px) {
  .mobile {
    display: block !important;
  }
}

.not--mobile {
  display: block;
}
@media (max-width:599px) {
  .not--mobile {
    display: none !important;
  }
}

.fluid-img {
  max-width: 100%;
  height: auto;
}
.fluid-img.full {
  width: 100%;
}

/* LabGrotesque Light */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Light-ae68f9117847119ab0d7.woff) format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
/* LabGrotesque Light Italic */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-LightItalic-ddf052ffe73900d5853c.woff) format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
/* LabGrotesque Regular */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Regular-6e75ff9a29ddbc6e40d9.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* LabGrotesque Italic */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Italic-49ee46a689ac9abb12e7.woff) format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
/* LabGrotesque Medium */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Medium-ec452c37dcca13c7c859.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* LabGrotesque Medium Italic */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-MediumItalic-18d50bbc093b650f6a2c.woff) format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
/* LabGrotesque Bold */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Bold-ba5d3cb7836f2926827e.woff) format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* LabGrotesque Bold Italic */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-BoldItalic-ae8fb34fcc876623ccb3.woff) format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
/* LabGrotesque Black */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-Black-cc52fd13a6f74174a62f.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
/* LabGrotesque Black Italic */
@font-face {
  font-family: "LabGrotesque";
  src: url(../fonts/LabGrotesque-BlackItalic-bb734608af02cf55bae0.woff) format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
/**
 *
 * Note: This is only very basic, element based (!) typography styling.
 *       Everything else should be scoped to components, for best flexibility(!)
 *       You shouldn’t change much here.
 */
html {
  font-family: "canada-type-gibson", sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote {
  margin: 0;
}

a:link, a:visited, a:hover {
  color: inherit;
}

/**
 * IMPORTANT: Please don’t use any element styles (e.g. styling lists or
 *            paragraphs without the scope of a components class).
 *            Chances are that you will have to reset them in different
 *            components. The navigation for example needs unstyled lists while
 *            lists within richtext areas need a list style.
 *
 *            Styling elements without the scope of a component class leads to
 *            regression bugs as the project evolves. So let’s don’t do that.
 *
 * Take away: Only style elements with the scope of a component class. E.g. .richtext p {}
 *            Even better: don’t style elements at all. Just use classes wherever possible.
 *
 */
/**
 * Layout
 */
.button-dashed {
  border-radius: 0.25em;
  padding: 17px 18px 14px 18px;
  border: 0.08vw dashed #121f17;
  text-decoration: none;
}
.button-dashed span {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  line-height: 1;
}

.button-cta {
  display: inline-block;
  text-decoration: none;
  border-radius: 9999px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
  border: 0;
  outline: 0;
  padding: 2.4rem 3.2rem;
  border-radius: 0.6em;
}
.button-cta.button-has-icon {
  padding: 14px 52px 14px 40px;
}
.button-cta .button-cta__title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
  position: relative;
  display: inline-block;
}
.button-cta .button-cta__external {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: -5px;
  right: -13px;
}
.button-cta .button-cta__external svg {
  width: 100%;
  height: auto;
  transform: rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.button-cta .button-cta__external svg path {
  fill: #ffffff;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.button-cta.theme-filled-bright {
  background-color: #fcf9f2;
  border: 1px solid #fcf9f2;
}
.button-cta.theme-filled-bright .button-cta__title {
  color: #1c3326;
}
.button-cta.theme-filled-bright:hover {
  background-color: #e8dec5;
  cursor: pointer;
}
.button-cta.theme-filled-bright:hover .button-cta__title {
  color: #121f17;
}
.button-cta.theme-filled-bright:hover .button-cta__external svg path {
  fill: #121f17;
}
.button-cta.theme-transparent-bright {
  background: transparent;
  border: 1px solid #fcf9f2;
}
.button-cta.theme-transparent-bright .button-cta__title {
  color: #fcf9f2;
}
.button-cta.theme-transparent-bright:hover {
  background: #fcf9f2;
  cursor: pointer;
}
.button-cta.theme-transparent-bright:hover .button-cta__title {
  color: #1c3326;
}
.button-cta.theme-transparent-bright:hover .button-cta__external svg path {
  fill: #121f17;
}
.button-cta.theme-filled-dark {
  background-color: #1c3326;
}
.button-cta.theme-filled-dark .button-cta__title {
  color: #fcf9f2;
}
.button-cta.theme-filled-dark:hover {
  background-color: #2a4a38;
  cursor: pointer;
}
.button-cta.theme-filled-dark:hover .button-cta__title {
  color: #fcf9f2;
}
.button-cta.theme-filled-dark:hover .button-cta__external svg path {
  fill: #121f17;
}
.button-cta.theme-no-borders {
  background: transparent !important;
  border: 1px solid #121f17;
  padding: 14px 20px;
}
.button-cta.theme-no-borders:hover .button-cta__title {
  color: #b9b9b9;
}

.button-circle {
  background-color: #121f17;
  position: relative;
  overflow: hidden;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
  -webkit-tap-highlight-color: transparent;
}
.button-circle .button-circle__icon {
  display: block;
  width: 11px;
  height: 9px;
}
.button-circle .button-circle__icon svg {
  width: 100%;
  height: auto;
}
.button-circle .button-circle__icon svg path {
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
  stroke: #ffffff;
}
.button-circle .button-circle__icon.icon-arrow-right svg {
  transform: translate(1px, -1px) rotate(-90deg);
}
.button-circle.is-active .button-circle__icon svg path {
  stroke: #121f17;
}
.button-circle:hover {
  background-color: #b9b9b9 !important;
  border-color: #b9b9b9 !important;
}
.button-circle:hover svg path {
  stroke: #121f17 !important;
}
.button-circle.button-circle-theme-bright {
  background: #ffffff;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
.button-circle.button-circle-theme-bright:hover {
  background: #a86040;
}

.container-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4.2vw;
}
@media (min-width:375px) {
  .container-inner {
    padding: 0 3vw;
  }
}

.container {
  padding: 0 4.8vw;
}
@media (min-width:768px) {
  .container {
    padding: 0 2.4vw;
    max-width: 1600px;
    margin: 0 auto;
  }
}

.container-outer {
  padding: 0 4.2vw;
}
@media (min-width:375px) {
  .container-outer {
    padding: 0 3vw;
  }
}

.footer {
  background: #121f17;
  color: #fcf9f2;
  padding: 6rem 0 3.6rem;
}
.footer .list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title {
  color: #fcf9f2;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-main .footer-main__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-main .footer-main__title .footer-main__title__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}
@media (min-width:600px) {
  .footer-main .footer-main__title .footer-main__title__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.footer-main .footer-main__title .footer-main__title__mail {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  margin-top: 1.2rem;
  position: relative;
}
.footer-main .footer-main__title .footer-main__title__mail:after, .footer-main .footer-main__title .footer-main__title__mail:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background: currentColor;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.footer-main .footer-main__title .footer-main__title__mail:after {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.footer-main .footer-main__title .footer-main__title__mail:before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
  opacity: 1;
}
.footer-main .footer-main__title .footer-main__title__mail:hover:before, .footer-main .footer-main__title .footer-main__title__mail.active:before {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.footer-main .footer-main__title .footer-main__title__mail:hover:after, .footer-main .footer-main__title .footer-main__title__mail.active:after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
}
.footer-main .footer-main__logo {
  padding: 6rem 0 6rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (min-width:600px) {
  .footer-main .footer-main__logo {
    padding: 6rem 0 6rem 0;
  }
}
.footer-main .footer-main__logo a {
  max-width: 12vw;
  flex-basis: 12vw;
  height: auto;
  display: block;
}
.footer-main .footer-main__logo a svg {
  width: 100%;
  height: auto;
}
.footer-main .footer-main__logo a svg path {
  fill: #fcf9f2 !important;
}
.footer-main .footer-main__attention {
  display: flex;
  flex-direction: column;
  border-top: 0.086rem dashed #fcf9f2;
  border-bottom: 0.086rem dashed #fcf9f2;
  padding: 3rem 0 3rem 0;
  text-align: center;
}
@media (min-width:600px) {
  .footer-main .footer-main__attention {
    padding: 3rem 15% 3rem 15%;
  }
}
.footer-main .footer-main__attention .footer-main__attention__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  display: inline-block;
}
.footer-main .footer-main__attention .footer-main__attention__button {
  margin-top: 2.4rem;
}
.footer-main .footer-main__bottom .footer-main__bottom__wrapper {
  padding-top: 2.4rem;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
@media (min-width:900px) {
  .footer-main .footer-main__bottom .footer-main__bottom__wrapper {
    justify-content: space-between;
    flex-direction: row;
    padding-top: 3.6rem;
  }
}
.footer-main .footer-main__bottom__copyright {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  padding-bottom: 1.8rem;
  text-align: center;
}
@media (min-width:900px) {
  .footer-main .footer-main__bottom__copyright {
    padding-bottom: 0;
    text-align: left;
  }
}

.grid {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.grid-row {
  position: relative;
  margin: -0.6rem;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.grid-row .grid-item {
  padding: 0.6rem;
}

.header {
  position: fixed;
  background: #fcf9f2;
  width: 100%;
  height: 52px;
  top: 0;
  left: 0;
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
  z-index: 4;
}
@media (min-width:600px) {
  .header {
    height: 77px;
  }
}
.header:after {
  display: block;
  content: "";
  position: absolute;
  background: #e8dec5;
  position: absolute;
  bottom: 0;
  height: 0.15rem;
  width: 100%;
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.header .container-outer,
.header .header-wrapper {
  height: 100%;
}
.header .header-menu-mobile {
  position: absolute;
  left: 4.2vw;
  transform: translate(0, 0.4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  top: -5px;
}
@media (min-width:375px) {
  .header .header-menu-mobile {
    left: 3vw;
  }
}
@media (min-width:961px) {
  .header .header-menu-mobile {
    display: none;
  }
}
.header .header-menu {
  position: absolute;
  left: 4.2vw;
  transform: translate(0, 0.4rem);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  top: -5px;
}
@media (min-width:375px) {
  .header .header-menu {
    left: 3vw;
  }
}
@media (min-width:961px) {
  .header .header-menu {
    display: flex;
  }
}
.header .header-logo {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 49px;
  top: 16px;
  display: block;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header .header-logo {
    max-width: 56px;
  }
}
.header .header-logo svg {
  width: 100%;
  height: auto;
}
.header .header-aside {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  position: absolute;
  top: 0;
  height: 100%;
  right: 4.2vw;
}
@media (min-width:375px) {
  .header .header-aside {
    right: 3vw;
  }
}
.header .header-aside .header-aside__cta {
  display: none;
}
@media (min-width:961px) {
  .header .header-aside .header-aside__cta {
    display: block;
  }
}
.header .header-burger-menu {
  position: relative;
  display: block;
  width: 32px;
  height: 20px;
  cursor: pointer;
  margin-left: 2.4rem;
}
.header .header-burger-menu::after, .header .header-burger-menu::before {
  display: block;
  content: "";
  position: absolute;
  height: 1.5px;
  background: #121f17;
  display: block;
  position: absolute;
  transition: all 0.3s ease-in-out;
  transform-origin: center center;
}

body:not(.menu-open) .header-burger-menu:before {
  width: 32px;
  top: 6px;
}

body:not(.menu-open) .header-burger-menu:after {
  width: 32px;
  top: 14px;
}

body.menu-open .header {
  background: #121f17;
}
body.menu-open .header::after {
  opacity: 0;
}
body.menu-open .header .header-menu {
  display: none;
}
body.menu-open .header-burger-menu:before, body.menu-open .header-burger-menu:after {
  background: #fcf9f2;
}
body.menu-open .header-logo svg path {
  fill: #fcf9f2 !important;
}
body.menu-open .header-aside__button {
  opacity: 0;
  visibility: hidden;
}
body.menu-open .header-aside__list {
  opacity: 0;
  visibility: hidden;
}
body.menu-open .header-aside__listlang {
  opacity: 0;
  visibility: hidden;
}
body.menu-open .header-burger-menu::after {
  width: 17px;
  top: 11px;
  right: 7px;
  transform: rotate(45deg);
}
body.menu-open .header-burger-menu::before {
  width: 17px;
  top: 11px;
  right: 7px;
  transform: rotate(-45deg);
}
body.menu-open .header-nav {
  transform: translate(0);
}
body.menu-open .header-nav:after {
  opacity: 1;
}

.header-nav {
  position: fixed;
  background: #121f17;
  width: 100%;
  height: 65vh;
  overflow-y: scroll;
  scrollbar-width: none;
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
  z-index: 3;
  top: 52px;
  transform: translateY(calc(-100% - 52px));
}
@media (min-width:600px) {
  .header-nav {
    height: 80vh;
    top: 72px;
    transform: translateY(calc(-100% - 72px));
  }
}
.header-nav:after {
  display: block;
  content: "";
  position: absolute;
  background: #121f17;
  position: absolute;
  bottom: 0;
  height: 0.15rem;
  width: 100%;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.header-nav .header-nav__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  padding: 6vw 4.2vw;
}
@media (min-width:375px) {
  .header-nav .header-nav__wrapper {
    padding: 6vw 3vw 6vw 3vw;
  }
}
@media (min-width:600px) {
  .header-nav .header-nav__wrapper {
    padding: 3vw;
  }
}
.header-nav .header-nav__lang {
  padding-top: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width:600px) {
  .header-nav .header-nav__lang {
    padding-top: 3.6rem;
  }
}
.header-nav .header-nav__lang .lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.header-nav .header-nav__lang .lang-switch .lang-switch__title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-style: italic;
  color: #fcf9f2;
  display: block;
  margin-bottom: 1.2rem;
}
.header-nav .header-nav__lang .lang-switch .lang-switch__list {
  list-style: none;
  position: relative;
  display: table;
  padding: 0;
  margin: 0;
}
@media (min-width:600px) {
  .header-nav .header-nav__lang .lang-switch .lang-switch__item {
    margin-bottom: 0.6rem;
  }
}
.header-nav .header-nav__lang .lang-switch .lang-switch__item .lang-switch__cta {
  color: #b9b9b9;
}
.header-nav .header-nav__lang .lang-switch .lang-switch__item.is-active .lang-switch__cta {
  color: #fcf9f2;
}
.header-nav .header-nav__lang .lang-switch .lang-switch__item:hover .lang-switch__cta {
  color: #fcf9f2;
}
.header-nav .header-nav__lang .lang-switch .lang-switch__cta {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fcf9f2;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header-nav .header-nav__lang .lang-switch .lang-switch__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .header-nav .header-nav__lang .lang-switch .lang-switch__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:1440px) {
  .header-nav .header-nav__lang .lang-switch .lang-switch__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.header-nav .header-nav__main {
  flex: 1;
}
.header-nav .header-nav__bottom {
  width: 100%;
}
.header-nav .header-nav__mainlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item {
  list-style: none;
  position: relative;
  display: table;
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item .header-nav-mainlist__external {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: -11px;
  right: -13px;
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item .header-nav-mainlist__external svg {
  width: 100%;
  height: auto;
  transform: rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item .header-nav-mainlist__external svg path {
  fill: #fcf9f2;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header-nav .header-nav__mainlist .header-nav-mainlist__item {
    margin-bottom: 0.6rem;
  }
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item:hover .header-nav-mainlist__cta {
  color: #b9b9b9;
}
.header-nav .header-nav__mainlist .header-nav-mainlist__item:hover .header-nav-mainlist__external svg path {
  fill: #b9b9b9;
}
.header-nav .header-nav__mainlist .header-nav-mainlist__cta {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fcf9f2;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header-nav .header-nav__mainlist .header-nav-mainlist__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .header-nav .header-nav__mainlist .header-nav-mainlist__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:1440px) {
  .header-nav .header-nav__mainlist .header-nav-mainlist__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.header-nav .header-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width:600px) {
  .header-nav .header-nav-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.header-nav .header-nav-list .header-nav-list__item {
  list-style: none;
  position: relative;
  display: table;
}
.header-nav .header-nav-list .header-nav-list__item .header-nav-list__external {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  top: -11px;
  right: -13px;
}
.header-nav .header-nav-list .header-nav-list__item .header-nav-list__external svg {
  width: 100%;
  height: auto;
  transform: rotate(-45deg);
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
.header-nav .header-nav-list .header-nav-list__item .header-nav-list__external svg path {
  fill: #fcf9f2;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header-nav .header-nav-list .header-nav-list__item:nth-child(2) {
    text-align: center;
  }
}
.header-nav .header-nav-list .header-nav-list__item:hover .header-nav-list__cta {
  color: #b9b9b9;
}
.header-nav .header-nav-list .header-nav-list__item:hover .header-nav-list__external svg path {
  fill: #b9b9b9;
}
.header-nav .header-nav-list .header-nav-list__cta {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fcf9f2;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.24, 0.68, 0.4, 1);
}
@media (min-width:600px) {
  .header-nav .header-nav-list .header-nav-list__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .header-nav .header-nav-list .header-nav-list__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:1440px) {
  .header-nav .header-nav-list .header-nav-list__cta {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.photo {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.photo img {
  width: 100%;
  height: 100%;
  display: block;
  background: transparent !important;
}

.photo .photo-ratio-normal img {
  position: relative;
  width: 100%;
  height: auto;
}

.photo-ratio {
  background-color: #b9b9b9;
}
.photo-ratio.photo-ratio-no-bg {
  background: transparent;
}
.photo-ratio figure,
.photo-ratio picture {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.photo-ratio img {
  width: calc(100% + 2px) !important;
  height: calc(100% + 2px) !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.photo-ratio._square {
  position: relative;
}
.photo-ratio._square:after {
  display: block;
  content: "";
  padding-top: 100%;
}
.photo-ratio._square img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.photo-ratio._full-size {
  position: relative;
}
.photo-ratio._full-size:after {
  display: block;
  content: "";
  padding-top: 100%;
}
.photo-ratio._full-size img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.photo-ratio._para-hori {
  position: relative;
}
.photo-ratio._para-hori:after {
  display: block;
  content: "";
  padding-top: 56.25%;
}
.photo-ratio._para-hori img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.photo-ratio._normal-hori {
  position: relative;
}
.photo-ratio._normal-hori:after {
  display: block;
  content: "";
  padding-top: 66.6666666667%;
}
.photo-ratio._normal-verti {
  position: relative;
}
.photo-ratio._normal-verti:after {
  display: block;
  content: "";
  padding-top: 150%;
}
.photo-ratio._medium-verti {
  position: relative;
}
.photo-ratio._medium-verti:after {
  display: block;
  content: "";
  padding-top: 133.33%;
}

.section-head {
  padding: 0 0 3rem 0;
}
@media (min-width:600px) {
  .section-head {
    padding: 0 0 6rem 0;
  }
}
@media (min-width:961px) {
  .section-head {
    padding: 0 0 9rem 0;
  }
}
.section-head .section-head__main__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-bottom: 1.2rem;
}
@media (min-width:375px) {
  .section-head .section-head__main__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:600px) {
  .section-head .section-head__main__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.section-head .section-head__main__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .section-head .section-head__main__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .section-head .section-head__main__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.section-head .section-head__main__title span {
  font-style: italic;
}
.section-head .section-head__text {
  padding-top: 1.8rem;
}
.section-head .section-head__text p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .section-head .section-head__text p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .section-head .section-head__text p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.section-footer {
  margin-top: 3rem;
}
@media (min-width:600px) {
  .section-footer {
    margin-top: 6rem;
  }
}
@media (min-width:961px) {
  .section-footer {
    margin-top: 12rem;
  }
}
.section-footer .section-footer__wrapper {
  display: flex;
  flex-direction: column;
  border-top: 0.086rem solid #121f17;
  padding: 3rem 0 0 0;
  text-align: center;
}
@media (min-width:961px) {
  .section-footer .section-footer__wrapper {
    padding: 6rem 15% 0 15%;
  }
}
.section-footer .section-footer__title .section-footer__title__content {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .section-footer .section-footer__title .section-footer__title__content {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .section-footer .section-footer__title .section-footer__title__content {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.section-footer .section-footer__subtitle {
  padding-top: 2.4rem;
}
.section-footer .section-footer__subtitle .section-footer__subtitle__content {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
}
@media (min-width:375px) {
  .section-footer .section-footer__subtitle .section-footer__subtitle__content {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
@media (min-width:961px) {
  .section-footer .section-footer__subtitle .section-footer__subtitle__content {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}

.section .section-head__main__title span {
  color: #c8886a;
}

.section-bg-color--pine {
  background: #1c3326;
  color: #fcf9f2;
}
.section-bg-color--pine .section-head__main .section-head__main__toptitle {
  color: #4e7260;
}
.section-bg-color--pine .table-trio .table-trio__block__number {
  color: #4e7260;
}
.section-bg-color--pine .table-trio .table-trio__wrapper .table-trio__item:after {
  background: #4e7260;
}
.section-bg-color--pine .table-trio .table-trio__wrapper .table-trio__item:before {
  background: #4e7260;
}
.section-bg-color--pine .section-footer .section-footer__wrapper {
  border-color: #4e7260;
}
.section-bg-color--pine .section-head__main__title span {
  color: #c8886a;
}

.section-bg-color--clay {
  background: #c8886a;
  color: #fcf9f2;
}
.section-bg-color--clay .section-head__main__title span {
  color: #fcf9f2;
}
.section-bg-color--clay .section-footer__wrapper {
  border-top: 0.086rem solid #fcf9f2;
}

.section-space-top--menu {
  padding-top: 52px;
}
@media (min-width:600px) {
  .section-space-top--menu {
    padding-top: 72px;
  }
}

.section-space--medium {
  padding: 6rem 0;
}
@media (min-width:600px) {
  .section-space--medium {
    padding: 6.6rem 0;
  }
}
@media (min-width:768px) {
  .section-space--medium {
    padding: 7.8rem 0;
  }
}
@media (min-width:900px) {
  .section-space--medium {
    padding: 9rem 0;
  }
}
@media (min-width:961px) {
  .section-space--medium {
    padding: 12rem 0;
  }
}
@media (min-width:1280px) {
  .section-space--medium {
    padding: 15rem 0;
  }
}
@media (min-width:1440px) {
  .section-space--medium {
    padding: 18rem 0;
  }
}

.section-space--small-bottom {
  padding-bottom: 3.6rem;
}
@media (min-width:600px) {
  .section-space--small-bottom {
    padding-bottom: 3.6rem;
  }
}
@media (min-width:768px) {
  .section-space--small-bottom {
    padding-bottom: 4.2rem;
  }
}
@media (min-width:900px) {
  .section-space--small-bottom {
    padding-bottom: 4.8rem;
  }
}
@media (min-width:961px) {
  .section-space--small-bottom {
    padding-bottom: 5.4rem;
  }
}
@media (min-width:1280px) {
  .section-space--small-bottom {
    padding-bottom: 6rem;
  }
}
@media (min-width:1440px) {
  .section-space--small-bottom {
    padding-bottom: 6.6rem;
  }
}

.section-space--small-top {
  padding-top: 3.6rem;
}
@media (min-width:600px) {
  .section-space--small-top {
    padding-top: 3.6rem;
  }
}
@media (min-width:768px) {
  .section-space--small-top {
    padding-top: 4.2rem;
  }
}
@media (min-width:900px) {
  .section-space--small-top {
    padding-top: 4.8rem;
  }
}
@media (min-width:961px) {
  .section-space--small-top {
    padding-top: 5.4rem;
  }
}
@media (min-width:1280px) {
  .section-space--small-top {
    padding-top: 6rem;
  }
}
@media (min-width:1440px) {
  .section-space--small-top {
    padding-top: 6.6rem;
  }
}

/**
 * Modules
 */
.advantages {
  position: relative;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 105vh;
}
.advantages .advantages-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 9rem 0;
}
.advantages .advantages-background {
  background: #3d3d3d;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.advantages .advantages-background img {
  opacity: 0.68;
  display: block;
  width: calc(100% + 2px) !important;
  height: calc(100% + 2px) !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.advantages .advantages-top__label {
  color: #fcf9f2;
  border-color: #fcf9f2;
}
.advantages .advantages-top__title {
  text-align: center;
  margin-top: 2.4rem;
  color: #fcf9f2;
}
.advantages .advantages-top__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-top: 2.4rem;
  color: #fcf9f2;
  max-width: 28vw;
  margin: 2.4rem 0 3.6rem 0;
}
.advantages .advantages-slider {
  position: relative;
  background: rgba(144, 140, 135, 0.3411764706);
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  border-radius: 0.65em;
  width: 48vw;
  z-index: 1;
}
.advantages .advantages-slider__item {
  display: flex;
  align-items: center;
  gap: 3vw;
  height: 22vw;
  padding: 6.3% 3vw;
}
.advantages .advantages-slider__item__graphic {
  position: relative;
  width: 100%;
  max-width: 15vw;
  padding: 0 0 0.8% 0;
  height: 100%;
}
.advantages .advantages-slider__item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}
.advantages .advantages-slider__item__label {
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  padding: 0.9rem;
  border-radius: 50em;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  color: #fcf9f2;
  border: 0.08vw dashed #fcf9f2;
}
.advantages .advantages-slider__item__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fcf9f2;
  margin-top: 0.9rem;
}
.advantages .advantages-slider__item__text {
  padding-top: 2.4rem;
  color: #fcf9f2;
  margin: 2.4rem 0 0 0;
  max-width: 28vw;
}
.advantages .advantages-slider__item__text p {
  display: inline-block;
  color: #fcf9f2;
}
.advantages .advantages-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6rem;
}
.advantages .advantages-button .advantages-button__title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: block;
  color: #fcf9f2;
  margin-bottom: 1.2rem;
}

/**
 * Components
 */
.label-badge {
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  color: #121f17;
  border: 1px dashed #121f17;
  padding: 1.2rem 1.8rem;
  border-radius: 50em;
}
@media (min-width:1280px) {
  .label-badge {
    border: 0.08vw dashed #121f17;
    height: 2.4vw;
    padding: 0 1.1vw;
  }
}

.about-me {
  position: relative;
  overflow: unset;
  width: 100%;
}
.about-me .about-me__wrapper {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.about-me .about-me___aside {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  max-width: 100%;
  padding-right: 5%;
}
@media (min-width:900px) {
  .about-me .about-me___aside {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.about-me .about-me___main {
  flex-basis: 100%;
  max-width: 100%;
  border-top: 0.086rem solid #121f17;
  padding-top: 3rem;
  margin-top: 3rem;
}
@media (min-width:900px) {
  .about-me .about-me___main {
    flex-basis: 50%;
    max-width: 50%;
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
  }
}
.about-me .about-me__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  padding-bottom: 1.2rem;
}
@media (min-width:375px) {
  .about-me .about-me__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
@media (min-width:600px) {
  .about-me .about-me__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
.about-me .about-me__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width:375px) {
  .about-me .about-me__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1;
  }
}
@media (min-width:961px) {
  .about-me .about-me__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1;
  }
}
.about-me .about-me__title span {
  font-style: italic;
}
.about-me .about-me__subtitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  display: block;
  padding-top: 1.2rem;
}
@media (min-width:375px) {
  .about-me .about-me__subtitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
@media (min-width:600px) {
  .about-me .about-me__subtitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
.about-me .about-me__aside__top {
  padding-bottom: 3rem;
}
.about-me .about-me__aside__bottom {
  padding-top: 1.2rem;
  margin-top: auto;
}
@media (min-width:600px) {
  .about-me .about-me__aside__bottom {
    padding-top: 3rem;
    padding-right: 15%;
  }
}
.about-me .about-me__list .about-me__list__item__title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: block;
  padding-bottom: 0.3rem;
}
@media (min-width:600px) {
  .about-me .about-me__list .about-me__list__item__title {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .about-me .about-me__list .about-me__list__item__title {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.about-me .about-me__list .about-me__list__item__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
}
.about-me .about-me__list .about-me__list__item {
  border: 1px solid #fcf9f2;
  border-radius: 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  background: #fcf9f2;
  padding: 3rem;
  margin-bottom: 1.8rem;
  margin-top: 1.8rem;
}
@media (min-width:600px) {
  .about-me .about-me__list .about-me__list__item {
    margin-bottom: 2.4rem;
  }
}
.about-me .about-me__introtext p {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .about-me .about-me__introtext p {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
@media (min-width:961px) {
  .about-me .about-me__introtext p {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
@media (min-width:1280px) {
  .about-me .about-me__introtext p {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1.2;
  }
}
.about-me .about-me__introtext p span {
  font-style: italic;
  color: #c8886a;
}
.about-me .about-me__subintrotext {
  padding: 3rem 0;
}
.about-me .about-me__subintrotext p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .about-me .about-me__subintrotext p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .about-me .about-me__subintrotext p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.about-me .about-me__abouttext {
  padding: 0 0 0 0;
}
@media (min-width:600px) {
  .about-me .about-me__abouttext {
    padding: 3rem 0 0 0;
  }
}
.about-me .about-me__abouttext .about-me__abouttext__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-style: italic;
  padding-bottom: 0.6rem;
  display: block;
}
.about-me .about-me__abouttext p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .about-me .about-me__abouttext p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .about-me .about-me__abouttext p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.about-me .about-me__quote {
  border-top: 0.086rem solid #121f17;
  border-bottom: 0.086rem solid #121f17;
  margin: 3rem 0;
  padding: 3rem 0;
}
.about-me .about-me__quote .about-me__quote__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-style: italic;
  display: block;
}
@media (min-width:375px) {
  .about-me .about-me__quote .about-me__quote__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    font-style: italic;
    line-height: 1.2;
  }
}
@media (min-width:961px) {
  .about-me .about-me__quote .about-me__quote__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    font-style: italic;
    line-height: 1.2;
  }
}
.about-me .about-me__quote .about-me__quote__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  padding-top: 1.2rem;
  display: block;
}

.content-counter-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content-counter-quote .content-counter-quote__trust {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0.086rem solid #e8dec5;
  gap: clamp(2.4rem, 1.7vw, 3.6rem);
  padding-bottom: 3.6rem;
  justify-content: center;
}
.content-counter-quote .content-counter-quote__item {
  flex-shrink: 0;
  white-space: nowrap;
  text-align: center;
}
.content-counter-quote .content-counter-quote__itemtitle {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 3.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width:961px) {
  .content-counter-quote .content-counter-quote__itemtitle {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.content-counter-quote .content-counter-quote__itemsubtitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  padding-top: 1.2rem;
}
@media (min-width:961px) {
  .content-counter-quote .content-counter-quote__itemsubtitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
}
.content-counter-quote .content-counter-quote__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 3.6rem;
  text-align: center;
}
@media (min-width:961px) {
  .content-counter-quote .content-counter-quote__text {
    padding: 0 20%;
  }
}
.content-counter-quote .content-counter-quote__text p {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-style: italic;
}
@media (min-width:600px) {
  .content-counter-quote .content-counter-quote__text p {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
    font-style: italic;
  }
}

.faqlib .faqlib-list .faqlib-item {
  position: relative;
  border-radius: 40px;
  border: 0.08vw dashed #121f17;
  padding: 1.8rem 1.8rem 1.8rem 1.8rem;
  margin-bottom: 1.8rem;
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item {
    padding: 4.2rem 4.2rem 4.2rem 4.2rem;
    margin-bottom: 3.6rem;
    border-radius: 40px;
  }
}
.faqlib .faqlib-list .faqlib-item:last-child {
  margin-bottom: 0;
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__wrapper {
  display: flex;
  flex-direction: row;
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__aside {
  width: 100%;
  display: none;
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__aside {
    min-width: 96px;
    width: auto;
    display: block;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner {
  height: 0;
  overflow: hidden;
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  padding: 2.4rem 60px 2.4rem 0;
}
@media (min-width:600px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner ul {
  margin: 0;
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner ul li {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (min-width:600px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner ul li {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner ul li {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__contenttext .faqlib-item__contenttext__inner ul li {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #4e7260;
  padding-right: 60px;
}
@media (min-width:600px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__text {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__text {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
@media (min-width:961px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__text {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__button {
  position: absolute;
  display: block;
  margin-top: 0;
  right: 1.8rem;
  bottom: 1.8rem;
}
@media (min-width:600px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__button {
    right: 1.8rem;
    bottom: 1.8rem;
  }
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-item__button {
    right: 4.2rem;
    bottom: 3.6rem;
    margin-top: 2.4rem;
    top: auto;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-item__button .button-circle {
  border: 1px solid;
}
.faqlib .faqlib-list .faqlib-item .faqlib-icon {
  background-color: #4e7260;
  position: relative;
  text-align: center;
  border-radius: 20px;
}
.faqlib .faqlib-list .faqlib-item .faqlib-icon svg path {
  fill: #4e7260;
}
@media (min-width:768px) {
  .faqlib .faqlib-list .faqlib-item .faqlib-icon:after {
    display: block;
    content: "";
    padding-top: 100%;
  }
}
.faqlib .faqlib-list .faqlib-item .faqlib-icon .faqlib-icon__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
}
.faqlib .faqlib-list .faqlib-item .faqlib-icon .faqlib-icon__content svg {
  width: 100%;
  height: auto;
}
.faqlib .faqlib-list .faqlib-item__content {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
}
.faqlib .faqlib-list .faqlib-item__title {
  padding-bottom: 0.6rem;
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  padding-right: 50px;
}
@media (min-width:600px) {
  .faqlib .faqlib-list .faqlib-item__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
    padding-bottom: 1.2rem;
    padding-right: 50px;
  }
}
@media (min-width:961px) {
  .faqlib .faqlib-list .faqlib-item__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    padding-bottom: 0;
  }
}

.lm-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 26px;
  min-width: 0;
}

.lm-input {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 1px solid #121f17;
  padding: 1.8rem 1.8rem;
  transition: border-color 0.25s;
  border-radius: 1.2rem;
}
@media (min-width:600px) {
  .lm-input {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding: 1.8rem 2.4rem;
  }
}
.lm-input:focus {
  outline: none;
}

.lm-success {
  display: none;
  padding-top: 0.6rem;
}
.lm-success p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.lm-mini {
  display: inline-block;
  padding-top: 1.2rem;
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  opacity: 0.6;
}

.lm-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lm-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lm-consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex: none;
  accent-color: #1c3326;
  cursor: pointer;
}
.lm-consent label {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
}

.list-link .list-link__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0 -0.75rem;
}
.list-link .list-link__list .list-link__cta {
  text-decoration: none;
}
.list-link .list-link__list.horizontal {
  flex-direction: row;
}
.list-link .list-link__list.menu-space {
  margin: 0 -2.5vw;
}
.list-link .list-link__list.menu-space .list-link__item {
  padding: 0 2.5vw;
}
.list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title:after, .list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: currentColor;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title:after {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-size .list-link__cta .list-link__cta-title:before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
  opacity: 0;
}
.list-link .list-link__list.menu-size .list-link__cta:hover .list-link__cta-title:before, .list-link .list-link__list.menu-size .list-link__cta.active .list-link__cta-title:before {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-size .list-link__cta:hover .list-link__cta-title:after, .list-link .list-link__list.menu-size .list-link__cta.active .list-link__cta-title:after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
}
.list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
@media (min-width:600px) {
  .list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    line-height: 1.2;
  }
}
.list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title:after, .list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: currentColor;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title:after {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-header-size .list-link__cta .list-link__cta-title:before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
  opacity: 0;
}
.list-link .list-link__list.menu-header-size .list-link__cta:hover .list-link__cta-title:before, .list-link .list-link__list.menu-header-size .list-link__cta.active .list-link__cta-title:before {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-header-size .list-link__cta:hover .list-link__cta-title:after, .list-link .list-link__list.menu-header-size .list-link__cta.active .list-link__cta-title:after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
}
.list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
@media (min-width:600px) {
  .list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-transform: uppercase;
    line-height: 1.2;
  }
}
.list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title:after, .list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: currentColor;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title:after {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-footer-size .list-link__cta .list-link__cta-title:before {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
  opacity: 0;
}
.list-link .list-link__list.menu-footer-size .list-link__cta:hover .list-link__cta-title:before, .list-link .list-link__list.menu-footer-size .list-link__cta.active .list-link__cta-title:before {
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0s;
}
.list-link .list-link__list.menu-footer-size .list-link__cta:hover .list-link__cta-title:after, .list-link .list-link__list.menu-footer-size .list-link__cta.active .list-link__cta-title:after {
  transform: scaleX(1);
  transform-origin: left center;
  transition-delay: 0.1s;
}

.newsletter {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.newsletter .newsletter__wrapper {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media (min-width:900px) {
  .newsletter .newsletter__wrapper {
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.newsletter .newsletter__media {
  position: relative;
  overflow: hidden;
  flex-basis: 100%;
  max-width: 100%;
  border-top-right-radius: 1.2rem;
  border-bottom-right-radius: 1.2rem;
}
@media (min-width:900px) {
  .newsletter .newsletter__media {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.newsletter .newsletter__media .photo {
  height: 100%;
}
@media (min-width:900px) {
  .newsletter .newsletter__media .photo .photo-ratio {
    width: calc(100% + 2px) !important;
    height: calc(100% + 2px) !important;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.newsletter .newsletter__content {
  flex-basis: 100%;
  max-width: 100%;
  padding: 6rem 4.2vw;
}
@media (min-width:900px) {
  .newsletter .newsletter__content {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media (min-width:375px) {
  .newsletter .newsletter__content {
    padding: 6rem 3vw;
  }
}
@media (min-width:600px) {
  .newsletter .newsletter__content {
    padding: 6.6rem 3vw;
  }
}
@media (min-width:768px) {
  .newsletter .newsletter__content {
    padding: 7.8rem 3vw;
  }
}
@media (min-width:900px) {
  .newsletter .newsletter__content {
    padding: 9rem 3vw;
  }
}
@media (min-width:961px) {
  .newsletter .newsletter__content {
    padding: 12rem 3vw;
  }
}
@media (min-width:1280px) {
  .newsletter .newsletter__content {
    padding: 15rem 3vw;
  }
}
@media (min-width:1440px) {
  .newsletter .newsletter__content {
    padding: 18rem 3vw;
  }
}
.newsletter .newsletter__content__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  padding: 0.6rem;
  border-radius: 50em;
  height: 2.4vw;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  padding: 0 1.1vw;
  color: #121f17;
  border: 0.08vw dashed #121f17;
}
.newsletter .newsletter__content__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .newsletter .newsletter__content__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .newsletter .newsletter__content__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 2.4rem 0 2.4rem 0;
  }
}
.newsletter .newsletter__content__title span {
  font-style: italic;
}
.newsletter .newsletter-card__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .newsletter .newsletter-card__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
@media (min-width:600px) {
  .newsletter .newsletter-card__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.newsletter .newsletter__content__text {
  margin: 0 0 2.4rem 0;
}
.newsletter .newsletter__content__text p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  color: #121f17;
}
.newsletter .newsletter__content__bottom {
  border: 0.08vw dashed #121f17;
  position: relative;
  margin-top: 3rem;
  padding: 1.8rem;
  border-radius: 2.4rem;
}
@media (min-width:600px) {
  .newsletter .newsletter__content__bottom {
    padding: 3rem;
  }
}

.site-intro .site-intro__wrapper {
  min-height: 100vh;
}
.site-intro .site-intro__main {
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width:961px) {
  .site-intro .site-intro__main {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.site-intro .site-intro__main .site-intro__main__wrapper {
  padding-left: 4.2vw;
  padding-right: 4.2vw;
  padding-bottom: 5vh;
}
@media (min-width:375px) {
  .site-intro .site-intro__main .site-intro__main__wrapper {
    padding-left: 3vw;
    padding-right: 6vw;
    padding-bottom: 5vh;
  }
}
@media (min-width:375px) and (min-width:961px) {
  .site-intro .site-intro__main .site-intro__main__wrapper {
    padding-bottom: 8vh;
  }
}
@media (min-width:375px) and (min-width:1280px) {
  .site-intro .site-intro__main .site-intro__main__wrapper {
    padding-bottom: 12vh;
  }
}
.site-intro .site-intro__about {
  flex-basis: 100%;
  max-width: 100%;
}
@media (min-width:961px) {
  .site-intro .site-intro__about {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.site-intro .site-intro__main__top {
  padding-top: 3.5vh;
  padding-bottom: 3.5vh;
}
@media (min-width:961px) {
  .site-intro .site-intro__main__top {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }
}
@media (min-width:1280px) {
  .site-intro .site-intro__main__top {
    padding-top: 8vh;
    padding-bottom: 4vh;
  }
}
.site-intro .site-intro__main__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-bottom: 1.2rem;
}
@media (min-width:375px) {
  .site-intro .site-intro__main__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}
.site-intro .site-intro__main__title {
  font-family: "quincy-cf", serif;
  font-weight: 100;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  padding-bottom: 1.8rem;
}
@media (min-width:375px) {
  .site-intro .site-intro__main__title {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 6rem;
    line-height: 1;
    letter-spacing: -0.02em;
    padding-bottom: 2.4rem;
  }
}
@media (min-width:900px) {
  .site-intro .site-intro__main__title {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 7.2rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
@media (min-width:1280px) {
  .site-intro .site-intro__main__title {
    font-family: "quincy-cf", serif;
    font-weight: 100;
    font-size: 9.6rem;
    line-height: 1;
    letter-spacing: -0.02em;
  }
}
.site-intro .site-intro__main__title span {
  font-style: italic;
  color: #a86040;
}
.site-intro .site-intro__main__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .site-intro .site-intro__main__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.site-intro .site-intro__main__text span {
  font-style: italic;
}
.site-intro .site-intro__main__action {
  padding: 3rem;
  border-radius: 40px;
  margin-bottom: 40px;
  border: 0.08vw dashed #121f17;
  max-width: 475px;
  width: 75%;
}
.site-intro .site-intro__main__action .site-intro__main__actiontext {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  display: inline-block;
  padding-bottom: 2.4rem;
}
.site-intro .site-intro__main__action .site-intro__main__actiontext span {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  display: block;
}
@media (min-width:375px) {
  .site-intro .site-intro__main__action .site-intro__main__actiontext span {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:1280px) {
  .site-intro .site-intro__main__action .site-intro__main__actiontext span {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1;
    padding-top: 3rem;
  }
}
.site-intro .site-intro__main__action .site-intro__main__actionsubline {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  padding-top: 1.2rem;
  display: inline-block;
}
.site-intro .site-intro__about__wrapper {
  height: 100%;
  width: 100%;
}
.site-intro .site-intro__about__media {
  position: relative;
  height: 100%;
  width: 100%;
  aspect-ratio: 2/3;
}
@media (min-width:961px) {
  .site-intro .site-intro__about__media {
    aspect-ratio: unset;
  }
}
.site-intro .site-intro__about__media img {
  width: calc(100% + 2px) !important;
  height: calc(100% + 2px) !important;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.site-intro .site-intro__about__info {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 0 4.2vw 1.8rem;
  z-index: 2;
}
@media (min-width:375px) {
  .site-intro .site-intro__about__info {
    padding: 0 3vw 3.6rem;
  }
}
.site-intro .site-intro__about__info:before {
  display: block;
  content: "";
  position: absolute;
  background: #2a7b9b;
  background: linear-gradient(180deg, rgba(42, 123, 155, 0) 0%, rgba(87, 199, 133, 0) 42%, rgb(28, 51, 38) 100%);
  height: 112%;
  width: 100%;
  bottom: 0%;
  left: 0;
  opacity: 0.46;
  -webkit-backdrop-filter: blur(6px) saturate(110%);
          backdrop-filter: blur(6px) saturate(110%);
}
.site-intro .site-intro__about__info .site-intro__about__info__wrapper {
  border-top: 1px dashed #fcf9f2;
  padding-top: 1.2rem;
  position: relative;
  z-index: 3;
  max-width: auto;
  -webkit-backdrop-filter: blur(6px) saturate(110%);
          backdrop-filter: blur(6px) saturate(110%);
}
.site-intro .site-intro__about__topinfo {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  color: #fcf9f2;
}
@media (min-width:375px) {
  .site-intro .site-intro__about__topinfo {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
.site-intro .site-intro__about__maininfo {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fcf9f2;
}
@media (min-width:375px) {
  .site-intro .site-intro__about__maininfo {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.site-intro .site-intro__about__subinfo {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  display: block;
  padding: 1.2rem 0;
  color: #fcf9f2;
}
@media (min-width:375px) {
  .site-intro .site-intro__about__subinfo {
    padding: 1.8rem 0;
  }
}

.cons-teas .cons-teas__head {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.cons-teas .cons-teas__head__title {
  font-family: "quincy-cf", serif;
  font-weight: 100;
  font-size: 6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
}
.cons-teas .cons-teas__head__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  padding-bottom: 2.4rem;
  color: rgba(77, 63, 50, 0.8);
  max-width: 28vw;
  margin: 2.4rem 0;
}
.cons-teas .cons-teas__table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cons-teas .cons-teas__table .cons-teas__table__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.08vw dashed #121f17;
  padding: 12.5% 3.5vw;
}
.cons-teas .cons-teas__table .cons-teas__table__item:first-of-type {
  border-right: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.cons-teas .cons-teas__table .cons-teas__table__item:last-of-type {
  border-left: 0;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.cons-teas .cons-teas__table .cons-teas__table__item-number {
  font-family: "quincy-cf", serif;
  font-weight: 100;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(77, 63, 50, 0.8);
}
.cons-teas .cons-teas__table .cons-teas__table__item-subtitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2.4rem;
  text-align: center;
}
.cons-teas .cons-teas__bottom {
  margin: 7.5vw 0 5vw 0;
}
.cons-teas .cons-teas__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cons-teas .cons-teas__footer .const-teas__footer-title {
  font-family: "quincy-cf", serif;
  font-weight: 100;
  font-size: 9.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 2.4rem;
}
.cons-teas .const-teas__footer-label {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  padding: 0.6rem;
  border-radius: 50em;
  height: 2.4vw;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  padding: 0 1.1vw;
  color: #fcf9f2;
  background: #c8886a;
}
.cons-teas .cons-teas__iconlist {
  padding: 3.6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cons-teas .cons-teas__iconlist__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12.5% 3.5vw;
}
.cons-teas .cons-teas__iconlist__item:first-of-type {
  border-right: 0.08vw dashed rgba(77, 63, 50, 0.8);
}
.cons-teas .cons-teas__iconlist__item:last-of-type {
  border-left: 0.08vw dashed rgba(77, 63, 50, 0.8);
}
.cons-teas .cons-teas__iconlist__item .cons-teas__iconlist__item-icon {
  border-radius: 100%;
  border: 0.08vw dashed rgba(77, 63, 50, 0.8);
  width: 9rem;
  height: 9rem;
  position: relative;
}
.cons-teas .cons-teas__iconlist__item .cons-teas__iconlist__item-icon .cons-teas__iconlist__item-icon-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 93%;
  width: 93%;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cons-teas .cons-teas__iconlist__item .cons-teas__iconlist__item-icon .cons-teas__iconlist__item-icon-inner svg {
  width: 60%;
  height: auto;
  fill: #121f17;
}
.cons-teas .cons-teas__iconlist__item .cons-teas__iconlist__item-title {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 2.4rem;
  text-align: center;
  color: rgba(77, 63, 50, 0.8);
}

.image-splitter-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.image-splitter-simple .image-splitter-simple__image {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}
.image-splitter-simple .image-splitter-simple__image img {
  width: 100%;
  height: auto;
}

.feeback {
  display: flex;
  width: 100%;
}
.feeback .feedback-sect {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50vw;
  padding: 0 10vw;
}
.feeback .feedback-sect .feedback-sect-badge-info {
  display: flex;
  align-items: center;
  gap: 0.9vw;
  padding-bottom: 3rem;
}
.feeback .feedback-sect .feedback-sect-badge {
  display: flex;
  align-items: center;
  background-color: #c8886a;
  border-radius: 50em;
  height: 2.4vw;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  padding: 0 1.1vw;
}
.feeback .feedback-sect .feedback-sect-badge .feedback-sect-badge-inner {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fcf9f2;
}
.feeback .feedback-sect .feedback-sect-badge .feedback-sect-badge-inner svg path {
  fill: #fcf9f2;
}
.feeback .feedback-sect .feedback-sect-badge-link {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}
.feeback .feedback-sect .feedback-sect-title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: #121f17;
  margin: 0 0 2.4rem 0;
}
.feeback .feedback-sect .feedback-sect-subtitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  display: inline-block;
  color: #121f17;
  margin-bottom: 6rem;
}
.feeback .feedback-sect .feedback-sect-reviews-item-quote {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  padding-bottom: 3rem;
}
.feeback .feedback-sect .feedback-sect-reviews-item-rating {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 1.2rem;
}
.feeback .feedback-sect .feedback-sect-reviews-item-rating .feedback-sect-reviews-item-rating-name {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.feeback .feedback-sect .feedback-sect-reviews-item-date {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 0.6rem;
}
.feeback .feedback-sect .feedback-sect-reviews-item-products {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  gap: 0.4vw;
}
.feeback .feedback-sect .feedback-slider {
  position: relative;
  flex-grow: 1;
}
.feeback .feedback-sect .feedback-slider-indicator {
  display: flex;
  gap: 0.4vw;
  position: absolute;
  bottom: 0;
  left: 0;
}
.feeback .feedback-sect .feedback-slider-indicator .feedback-slider-indicator-dot {
  width: 0.35vw;
  height: 0.35vw;
  border-radius: 50%;
  background-color: #121f17;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.feeback .feedback-sect .feedback-slider-indicator .feedback-slider-indicator-dot.active {
  opacity: 1;
}
.feeback .feedback-media {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  width: 50vw;
}

.trust-section {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.trust-section .trust-container {
  align-items: center;
  flex-direction: column;
  display: flex;
  width: 100%;
  padding: 0 3vw;
}
.trust-section .trust-section__wrapper {
  display: flex;
  align-items: center;
  gap: 3vw;
  background: transparent;
  border: 0.08vw dashed #121f17;
  border-radius: 2.4rem;
  padding: 3vw;
}
.trust-section .trust-section__content {
  padding-right: 3vw;
}
.trust-section .trust-section__content .trust-section__label {
  font-family: "courier-std", monospace;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: 50em;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  color: #121f17;
  border: 0.08vw dashed #121f17;
}
.trust-section .trust-section__content .trust-section__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}
.trust-section .trust-section__content .trust-section__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.trust-section .trust-section__media {
  position: relative;
  display: flex;
  border-radius: 10px;
  width: 15vw;
  overflow: hidden;
}
.trust-section .trust-section__text {
  max-width: 30vw;
}
.trust-section .trust-section-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 6rem;
}

.table-trio .table-trio__wrapper {
  margin: -3.6rem;
}
.table-trio .table-trio__wrapper .table-trio__item {
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
  padding: 3.6rem;
  align-items: stretch;
  display: flex;
}
@media (min-width:961px) {
  .table-trio .table-trio__wrapper .table-trio__item {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
}
.table-trio .table-trio__block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: unset;
  flex: 1;
  min-width: 0;
  padding: 3rem;
  border: 1px solid;
  border-radius: 40px;
}
@media (min-width:961px) {
  .table-trio .table-trio__block {
    aspect-ratio: 7/5;
  }
}
.table-trio .table-trio__block__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  padding-bottom: 1.8rem;
}
@media (min-width:600px) {
  .table-trio .table-trio__block__top {
    padding-bottom: 3.6rem;
  }
}
.table-trio .table-trio__block__number {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 500;
  position: relative;
}
@media (min-width:600px) {
  .table-trio .table-trio__block__number {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .table-trio .table-trio__block__number {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    transform: translate(0, 6px);
  }
}
.table-trio .table-trio__block__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-style: italic;
  max-width: 90%;
  align-self: center;
  margin-left: auto;
}
@media (min-width:375px) {
  .table-trio .table-trio__block__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
    max-width: 85%;
  }
}
@media (min-width:1280px) {
  .table-trio .table-trio__block__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.table-trio .table-trio__block__text {
  margin-top: auto;
}
.table-trio .table-trio__block__text p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .table-trio .table-trio__block__text p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}

.table-listo.grid {
  overflow: unset;
}
.table-listo .table-listo__wrapper {
  margin: -1.8rem;
}
@media (min-width:600px) {
  .table-listo .table-listo__wrapper {
    margin: -3.6rem;
  }
}
.table-listo .table-listo__wrapper .table-listo__item {
  position: relative;
  flex-basis: 100%;
  max-width: 100%;
  padding: 1.8rem;
  border-top: 0.08vw dashed #121f17;
}
@media (min-width:600px) {
  .table-listo .table-listo__wrapper .table-listo__item {
    padding: 3.6rem;
  }
}
.table-listo .table-listo__block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 4.2vw;
}
@media (min-width:375px) {
  .table-listo .table-listo__block {
    padding: 0 3vw;
  }
}
.table-listo .table-listo__block__top {
  display: flex;
  text-align: right;
  justify-content: space-between;
  align-items: center;
}
.table-listo .table-listo__block__number {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  position: relative;
  padding-right: 6vw;
  opacity: 0.6;
}
@media (min-width:600px) {
  .table-listo .table-listo__block__number {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1;
    padding-right: 3vw;
  }
}
@media (min-width:961px) {
  .table-listo .table-listo__block__number {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    line-height: 1;
    transform: translate(0, 0);
  }
}
.table-listo .table-list__block__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 1.2rem;
}
@media (min-width:375px) {
  .table-listo .table-list__block__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
@media (min-width:600px) {
  .table-listo .table-list__block__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
  }
}
.table-listo .table-listo__block__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
  font-style: italic;
}
@media (min-width:375px) {
  .table-listo .table-listo__block__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:1280px) {
  .table-listo .table-listo__block__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.table-listo .table-listo__block__text {
  margin-top: 1.2rem;
}
.table-listo .table-listo__block__text p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .table-listo .table-listo__block__text p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
  }
}

.decor-text .decor-text__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 1.8rem;
}
@media (min-width:375px) {
  .decor-text .decor-text__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
}
@media (min-width:961px) {
  .decor-text .decor-text__toptitle {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 2.4rem;
  }
}
.decor-text .decor-text__content {
  padding-bottom: 2.4rem;
}
.decor-text .decor-text__content .decor-text__content__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .decor-text .decor-text__content .decor-text__content__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .decor-text .decor-text__content .decor-text__content__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.decor-text .decor-text__content .decor-text__content__text span {
  font-style: italic;
  color: #c8886a;
}
.decor-text .decor-text__subcontent {
  border: 1px solid;
  padding: 3rem;
  border-radius: 40px;
  margin-top: 2.4rem;
}
.decor-text .decor-text__subcontent .decor-text__subcontent__text {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .decor-text .decor-text__subcontent .decor-text__subcontent__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.1rem;
    line-height: 1.4;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .decor-text .decor-text__subcontent .decor-text__subcontent__text {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
.decor-text .decor-text__subcontent .decor-text__subcontent__text span {
  font-style: italic;
  color: #c8886a;
}

@media (min-width:961px) {
  .teaser-hero {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 15%;
  }
}
.teaser-hero .teaser-hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.teaser-hero__toptitle {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
  line-height: 1;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
  padding: 0.6rem;
  border-radius: 50em;
  height: 2.4vw;
  max-width: -moz-fit-content;
  max-width: fit-content;
  white-space: nowrap;
  padding: 0 1.1vw;
  color: #121f17;
  border: 0.08vw dashed #121f17;
}

.teaser-hero__title {
  font-family: "quincy-cf", serif;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width:375px) {
  .teaser-hero__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 3.6rem;
    line-height: 1.2;
    letter-spacing: 0;
  }
}
@media (min-width:961px) {
  .teaser-hero__title {
    font-family: "quincy-cf", serif;
    font-weight: 400;
    font-size: 4.6rem;
    line-height: 1.2;
    letter-spacing: 0;
    margin: 2.4rem 0 2.4rem 0;
  }
}
.teaser-hero__title span {
  font-style: italic;
  color: #c8886a;
}

.teaser-hero__text {
  padding-top: 2.4rem;
}
.teaser-hero__text p {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
@media (min-width:600px) {
  .teaser-hero__text p {
    font-family: "canada-type-gibson", sans-serif;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
    display: inline-block;
  }
}

.teaser-hero__button {
  padding: 3rem 0 1.2rem 0;
}

.teaser-hero__attention .teaser-hero__attention__text {
  font-family: "canada-type-gibson", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0;
  padding-top: 1.2rem;
  display: inline-block;
}

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