@charset "UTF-8";
/**
 * Global Project Specific Variables
 */
/* =========================================
		Paths
   ========================================= */
/**
 * Prefix paths with $p_ to make
 * them easier to find with
 * autocomplete
 *
 */
/* =========================================
		Color Index
   ========================================= */
/**
 * Prefix colors with $c_ this
 * makes them easily findable
 * with auto complete
 *
 * Give colors their names in the
 * index. This makes it easier to
 * arrange them reasonably in the
 * index
 */
/* =========================================
		Typography
   ========================================= */
/**
 * Prefix typography vars with $t_
 * to make them easier to find with
 * autocomplete
 *
 */
@font-face {
  font-family: "Blacker-Sans-Text-Light";
  font-display: swap;
  src: url("../fonts/Blacker-Sans-Text-Light.woff") format("woff");
}
@font-face {
  font-family: "peridotpe-regular-webfont";
  font-display: swap;
  src: url("../fonts/peridotpe-regular-webfont.woff") format("woff");
}
/* =========================================
		Dimensions
   ========================================= */
/**
 * Prefix dimensions with $d_
 * to make them easier to find
 * with autocomplete
 *
 */
/* =========================================
		Breakpoints
   ========================================= */
/**
 * Prefix breakpoints with $b_
 * this makes them easier to find
 * with autocomplete
 *
 * You can use the 'bp' mixin to
 * easily use these breakpoints
 * in your sass code.

 Reference: https://cdn-images-1.medium.com/max/2000/1*7YeOvzoYgUEDJdfQy2ERXg.png
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Bootstrap Grid variables
 *
 */
/**
 * Functions & Mixins & Animations
 * Uncomment if you what to use some of that functions!
 */
/* =========================================
		BP - Breakpoint Mixin
   ========================================= */
/**
 * Helper to make it
 * easier to print
 * media queries
 *
 * @param $query
 * @param $context
 */
/* =========================================
		Mixins -- Fluid Typography
   ========================================= */
/**
 *
 *
 * @link for more details, see:
 * https://css-tricks.com/snippets/css/fluid-typography/
 *
 */
/* =========================================
		Fade - Help to fade in elements
   ========================================= */
/* =========================================
		List
   ========================================= */
/* =========================================
		Visuallyhidden
   ========================================= */
/**
 * Clear the visuallyhidden styles from
 * an element given by the visuallyhidden
 * mixin
 *
 */
/**
 * Hide only visually, but have it available
 * for screenreaders: h5bp.com/v
 *
 */
/* =========================================
		Placeholder
   ========================================= */
/**
 * Convenience mixin to
 * help style input
 * placeholder
 * text
 *
 */
/**
 * Fonts, Icon Fonts & Sprites
 * ( - Each one requests external resources, keep out of critical css? - )
 */
/**
 * Vendor Styles
 * ( - Not Modified for Maintainability - )
 * ( - Reset/Normalize First - )
 */
/* normalize.css v1.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: none;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}

h3 {
  font-size: 1.17em;
  margin: 1em 0;
}

h4 {
  font-size: 1em;
  margin: 1.33em 0;
}

h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
}

h6 {
  font-size: 0.67em;
  margin: 2.33em 0;
}

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

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

blockquote {
  margin: 1em 40px;
}

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

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  box-sizing: border-box;
  height: 0;
}

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

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0;
}

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

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

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none;
}

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: "";
  content: none;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

dd {
  margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */
}

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

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

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

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

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */
}

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

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

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

/**
 * 1. Address box sizing set to border-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

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

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

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

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

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

/* =========================================
		Moz Background Picture
   ========================================= */
/**
 * Styles required to make
 * moz background picture
 * work relatively out of the
 * box
 *
 */
.moz-background-picture {
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* =========================================
		Utility Classes
   ========================================= */
/* =========================================
		Clearfix
   ========================================= */
/**
 * De-Collapse Floated content within
 * element
 *
 */
/* =========================================
		No Collapse
   ========================================= */
/**
 * De-Collapse Margins
 *
 * Prevent Margins within element
 * from collapsing
 */
/* =========================================
		Visuallyhidden
   ========================================= */
/**
 * Clear the visuallyhidden styles from
 * an element given by the visuallyhidden
 * mixin
 *
 */
/**
 * Hide only visually, but have it available
 * for screenreaders: h5bp.com/v
 *
 */
.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}

.nocollapse:before, .nocollapse:after {
  content: " ";
  /* No-break space character */
  display: block;
  overflow: hidden;
  height: 0;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden--no-js {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.no-js .visuallyhidden--no-js {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.visuallyhidden--focusable {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden--focusable:active, .visuallyhidden--focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*------------------------------------*\
    $CSSWIZARDRY-GRIDS
\*------------------------------------*/
/**
 * CONTENTS
 * INTRODUCTION.........How the grid system works.
 * VARIABLES............Your settings.
 * MIXINS...............Library mixins.
 * GRID SETUP...........Build the grid structure.
 * WIDTHS...............Build our responsive widths around our breakpoints.
 * PUSH.................Push classes.
 * PULL.................Pull classes.
 */
/*------------------------------------*\
    $INTRODUCTION
\*------------------------------------*/
/**
 * csswizardry grids provides you with widths to suit a number of breakpoints
 * designed around devices of a size you specify. Out of the box, csswizardry
 * grids caters to the following types of device:
 *
 * palm     --  palm-based devices, like phones and small tablets
 * lap      --  lap-based devices, like iPads or laptops
 * portable --  all of the above
 * desk     --  stationary devices, like desktop computers
 * regular  --  any/all types of device
 *
 * These namespaces are then used in the library to give you the ability to
 * manipulate your layouts based around them, for example:
 *
   <div class="grid__item  one-whole  lap--one-half  desk--one-third">
 *
 * This would give you a grid item which is 100% width unless it is on a lap
 * device, at which point it become 50% wide, or it is on a desktop device, at
 * which point it becomes 33.333% width.
 *
 * csswizardry grids also has push and pull classes which allow you to nudge
 * grid items left and right by a defined amount. These follow the same naming
 * convention as above, but are prepended by either `push--` or `pull--`, for
 * example:
 *
   `class="grid__item  one-half  push--one-half"`
 *
 * This would give you a grid item which is 50% width and pushed over to the
 * right by 50%.
 *
 * All classes in csswizardry grids follow this patten, so you should fairly
 * quickly be able to piece together any combinations you can imagine, for
 * example:
 *
   `class="grid__item  one-whole  lap--one-half  desk--one-third  push--desk--one-third"`
 *
   `class="grid__item  one-quarter  palm--one-half  push--palm--one-half"`
 *
   `class="grid__item  palm--one-third  desk--five-twelfths"`
 */
/*------------------------------------*\
    $VARIABLES
\*------------------------------------*/
/**
 * If you are building a non-responsive site but would still like to use
 * csswizardry-grids, set this to ‘false’:
 */
/**
 * Is this build mobile first? Setting to ‘true’ means that all grids will be
 * 100% width if you do not apply a more specific class to them.
 */
/**
 * Set the spacing between your grid items.
 */
/**
 * Would you like Sass’ silent classes, or regular CSS classes?
 */
/**
 * Would you like push and pull classes enabled?
 */
/**
 * Using `inline-block` means that the grid items need their whitespace removing
 * in order for them to work correctly. Set the following to true if you are
 * going to achieve this by manually removing/commenting out any whitespace in
 * your HTML yourself.
 *
 * Setting this to false invokes a hack which cannot always be guaranteed,
 * please see the following for more detail:
 *
 * github.com/csswizardry/csswizardry-grids/commit/744d4b23c9d2b77d605b5991e54a397df72e0688
 * github.com/csswizardry/inuit.css/issues/170#issuecomment-14859371
 */
/**
 * Define your breakpoints. The first value is the prefix that shall be used for
 * your classes (e.g. `.palm--one-half`), the second value is the media query
 * that the breakpoint fires at.
 */
/**
 * Define which namespaced breakpoints you would like to generate for each of
 * widths, push and pull. This is handy if you only need pull on, say, desk, or
 * you only need a new width breakpoint at mobile sizes. It allows you to only
 * compile as much CSS as you need. All are turned on by default, but you can
 * add and remove breakpoints at will.
 *
 * Push and pull shall only be used if `$push` and/or `$pull` and `$responsive`
 * have been set to ‘true’.
 */
/**
 * You do not need to edit anything from this line onward; csswizardry-grids is
 * good to go. Happy griddin’!
 */
/*------------------------------------*\
 $MIXINS
\*------------------------------------*/
/**
 * These mixins are for the library to use only, you should not need to modify
 * them at all.
 *
 * Enclose a block of code with a media query as named in `$breakpoints`.
 */
/**
 * Drop relative positioning into silent classes which can’t take advantage of
 * the `[class*="push--"]` and `[class*="pull--"]` selectors.
 */
/*------------------------------------*\
 $GRID SETUP
\*------------------------------------*/
/**
 * 1. Allow the grid system to be used on lists.
 * 2. Remove any margins and paddings that might affect the grid system.
 * 3. Apply a negative `margin-left` to negate the columns’ gutters.
 */
.grid {
  list-style: none;
  /* [1] */
  margin: 0;
  /* [2] */
  padding: 0;
  /* [2] */
  margin-left: -20px;
  /* [3] */
  letter-spacing: -0.41em;
}

/* Opera hack */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
}

/**
 * 1. Cause columns to stack side-by-side.
 * 2. Space columns apart.
 * 3. Align columns to the tops of each other.
 * 4. Full-width unless told to behave otherwise.
 * 5. Required to combine fluid widths and fixed gutters.
 */
.grid__item {
  display: inline-block;
  /* [1] */
  padding-left: 20px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  /* [5] */
  /* [5] */
  box-sizing: border-box;
  /* [5] */
  letter-spacing: normal;
  word-spacing: normal;
}

/**
 * Reversed grids allow you to structure your source in the opposite order to
 * how your rendered layout will appear. Extends `.grid`.
 */
.grid--rev {
  direction: rtl;
  text-align: left;
}
.grid--rev > .grid__item {
  direction: ltr;
  text-align: left;
}

/**
 * Gutterless grids have all the properties of regular grids, minus any spacing.
 * Extends `.grid`.
 */
.grid--full {
  margin-left: 0;
}
.grid--full > .grid__item {
  padding-left: 0;
}

/**
 * Align the entire grid to the right. Extends `.grid`.
 */
.grid--right {
  text-align: right;
}
.grid--right > .grid__item {
  text-align: left;
}

/**
 * Centered grids align grid items centrally without needing to use push or pull
 * classes. Extends `.grid`.
 */
.grid--center {
  text-align: center;
}
.grid--center > .grid__item {
  text-align: left;
}

/**
 * Align grid cells vertically (`.grid--middle` or `.grid--bottom`). Extends
 * `.grid`.
 */
.grid--middle > .grid__item {
  vertical-align: middle;
}

.grid--bottom > .grid__item {
  vertical-align: bottom;
}

/**
 * Create grids with narrower gutters. Extends `.grid`.
 */
.grid--narrow {
  margin-left: -10px;
}
.grid--narrow > .grid__item {
  padding-left: 10px;
}

/**
 * Create grids with wider gutters. Extends `.grid`.
 */
.grid--wide {
  margin-left: -40px;
}
.grid--wide > .grid__item {
  padding-left: 40px;
}

/*------------------------------------*\
 $WIDTHS
\*------------------------------------*/
/**
 * Create our width classes, prefixed by the specified namespace.
 */
/**
 * Our regular, non-responsive width classes.
 */
/**
 * Whole
 */
.one-whole {
  width: 100%;
}

/**
 * Halves
 */
.one-half, .six-twelfths, .five-tenths, .four-eighths, .three-sixths, .two-quarters {
  width: 50%;
}

/**
 * Thirds
 */
.one-third, .four-twelfths, .two-sixths {
  width: 33.333%;
}

.two-thirds, .eight-twelfths, .four-sixths {
  width: 66.666%;
}

/**
 * Quarters
 */
.one-quarter, .three-twelfths, .two-eighths {
  width: 25%;
}

.three-quarters, .nine-twelfths, .six-eighths {
  width: 75%;
}

/**
 * Fifths
 */
.one-fifth, .two-tenths {
  width: 20%;
}

.two-fifths, .four-tenths {
  width: 40%;
}

.three-fifths, .six-tenths {
  width: 60%;
}

.four-fifths, .eight-tenths {
  width: 80%;
}

/**
 * Sixths
 */
.one-sixth, .two-twelfths {
  width: 16.666%;
}

.five-sixths, .ten-twelfths {
  width: 83.333%;
}

/**
 * Eighths
 */
.one-eighth {
  width: 12.5%;
}

.three-eighths {
  width: 37.5%;
}

.five-eighths {
  width: 62.5%;
}

.seven-eighths {
  width: 87.5%;
}

/**
 * Tenths
 */
.one-tenth {
  width: 10%;
}

.three-tenths {
  width: 30%;
}

.seven-tenths {
  width: 70%;
}

.nine-tenths {
  width: 90%;
}

/**
 * Twelfths
 */
.one-twelfth {
  width: 8.333%;
}

.five-twelfths {
  width: 41.666%;
}

.seven-twelfths {
  width: 58.333%;
}

.eleven-twelfths {
  width: 91.666%;
}

/**
 * Our responsive classes, if we have enabled them.
 */
@media only screen and (min-width: 450px) {
  /**
   * Whole
   */
  .mob--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .mob--one-half, .mob--six-twelfths, .mob--five-tenths, .mob--four-eighths, .mob--three-sixths, .mob--two-quarters {
    width: 50%;
  }

  /**
   * Thirds
   */
  .mob--one-third, .mob--four-twelfths, .mob--two-sixths {
    width: 33.333%;
  }

  .mob--two-thirds, .mob--eight-twelfths, .mob--four-sixths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .mob--one-quarter, .mob--three-twelfths, .mob--two-eighths {
    width: 25%;
  }

  .mob--three-quarters, .mob--nine-twelfths, .mob--six-eighths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .mob--one-fifth, .mob--two-tenths {
    width: 20%;
  }

  .mob--two-fifths, .mob--four-tenths {
    width: 40%;
  }

  .mob--three-fifths, .mob--six-tenths {
    width: 60%;
  }

  .mob--four-fifths, .mob--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .mob--one-sixth, .mob--two-twelfths {
    width: 16.666%;
  }

  .mob--five-sixths, .mob--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .mob--one-eighth {
    width: 12.5%;
  }

  .mob--three-eighths {
    width: 37.5%;
  }

  .mob--five-eighths {
    width: 62.5%;
  }

  .mob--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .mob--one-tenth {
    width: 10%;
  }

  .mob--three-tenths {
    width: 30%;
  }

  .mob--seven-tenths {
    width: 70%;
  }

  .mob--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .mob--one-twelfth {
    width: 8.333%;
  }

  .mob--five-twelfths {
    width: 41.666%;
  }

  .mob--seven-twelfths {
    width: 58.333%;
  }

  .mob--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 600px) {
  /**
   * Whole
   */
  .tab--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .tab--one-half, .tab--six-twelfths, .tab--five-tenths, .tab--four-eighths, .tab--three-sixths, .tab--two-quarters {
    width: 50%;
  }

  /**
   * Thirds
   */
  .tab--one-third, .tab--four-twelfths, .tab--two-sixths {
    width: 33.333%;
  }

  .tab--two-thirds, .tab--eight-twelfths, .tab--four-sixths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .tab--one-quarter, .tab--three-twelfths, .tab--two-eighths {
    width: 25%;
  }

  .tab--three-quarters, .tab--nine-twelfths, .tab--six-eighths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .tab--one-fifth, .tab--two-tenths {
    width: 20%;
  }

  .tab--two-fifths, .tab--four-tenths {
    width: 40%;
  }

  .tab--three-fifths, .tab--six-tenths {
    width: 60%;
  }

  .tab--four-fifths, .tab--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .tab--one-sixth, .tab--two-twelfths {
    width: 16.666%;
  }

  .tab--five-sixths, .tab--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .tab--one-eighth {
    width: 12.5%;
  }

  .tab--three-eighths {
    width: 37.5%;
  }

  .tab--five-eighths {
    width: 62.5%;
  }

  .tab--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .tab--one-tenth {
    width: 10%;
  }

  .tab--three-tenths {
    width: 30%;
  }

  .tab--seven-tenths {
    width: 70%;
  }

  .tab--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .tab--one-twelfth {
    width: 8.333%;
  }

  .tab--five-twelfths {
    width: 41.666%;
  }

  .tab--seven-twelfths {
    width: 58.333%;
  }

  .tab--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 900px) {
  /**
   * Whole
   */
  .lap--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .lap--one-half, .lap--six-twelfths, .lap--five-tenths, .lap--four-eighths, .lap--three-sixths, .lap--two-quarters {
    width: 50%;
  }

  /**
   * Thirds
   */
  .lap--one-third, .lap--four-twelfths, .lap--two-sixths {
    width: 33.333%;
  }

  .lap--two-thirds, .lap--eight-twelfths, .lap--four-sixths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .lap--one-quarter, .lap--three-twelfths, .lap--two-eighths {
    width: 25%;
  }

  .lap--three-quarters, .lap--nine-twelfths, .lap--six-eighths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .lap--one-fifth, .lap--two-tenths {
    width: 20%;
  }

  .lap--two-fifths, .lap--four-tenths {
    width: 40%;
  }

  .lap--three-fifths, .lap--six-tenths {
    width: 60%;
  }

  .lap--four-fifths, .lap--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .lap--one-sixth, .lap--two-twelfths {
    width: 16.666%;
  }

  .lap--five-sixths, .lap--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .lap--one-eighth {
    width: 12.5%;
  }

  .lap--three-eighths {
    width: 37.5%;
  }

  .lap--five-eighths {
    width: 62.5%;
  }

  .lap--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .lap--one-tenth {
    width: 10%;
  }

  .lap--three-tenths {
    width: 30%;
  }

  .lap--seven-tenths {
    width: 70%;
  }

  .lap--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .lap--one-twelfth {
    width: 8.333%;
  }

  .lap--five-twelfths {
    width: 41.666%;
  }

  .lap--seven-twelfths {
    width: 58.333%;
  }

  .lap--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1200px) {
  /**
   * Whole
   */
  .desk--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .desk--one-half, .desk--six-twelfths, .desk--five-tenths, .desk--four-eighths, .desk--three-sixths, .desk--two-quarters {
    width: 50%;
  }

  /**
   * Thirds
   */
  .desk--one-third, .desk--four-twelfths, .desk--two-sixths {
    width: 33.333%;
  }

  .desk--two-thirds, .desk--eight-twelfths, .desk--four-sixths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .desk--one-quarter, .desk--three-twelfths, .desk--two-eighths {
    width: 25%;
  }

  .desk--three-quarters, .desk--nine-twelfths, .desk--six-eighths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .desk--one-fifth, .desk--two-tenths {
    width: 20%;
  }

  .desk--two-fifths, .desk--four-tenths {
    width: 40%;
  }

  .desk--three-fifths, .desk--six-tenths {
    width: 60%;
  }

  .desk--four-fifths, .desk--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .desk--one-sixth, .desk--two-twelfths {
    width: 16.666%;
  }

  .desk--five-sixths, .desk--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .desk--one-eighth {
    width: 12.5%;
  }

  .desk--three-eighths {
    width: 37.5%;
  }

  .desk--five-eighths {
    width: 62.5%;
  }

  .desk--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .desk--one-tenth {
    width: 10%;
  }

  .desk--three-tenths {
    width: 30%;
  }

  .desk--seven-tenths {
    width: 70%;
  }

  .desk--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .desk--one-twelfth {
    width: 8.333%;
  }

  .desk--five-twelfths {
    width: 41.666%;
  }

  .desk--seven-twelfths {
    width: 58.333%;
  }

  .desk--eleven-twelfths {
    width: 91.666%;
  }
}
@media only screen and (min-width: 1400px) {
  /**
   * Whole
   */
  .large--one-whole {
    width: 100%;
  }

  /**
   * Halves
   */
  .large--one-half, .large--six-twelfths, .large--five-tenths, .large--four-eighths, .large--three-sixths, .large--two-quarters {
    width: 50%;
  }

  /**
   * Thirds
   */
  .large--one-third, .large--four-twelfths, .large--two-sixths {
    width: 33.333%;
  }

  .large--two-thirds, .large--eight-twelfths, .large--four-sixths {
    width: 66.666%;
  }

  /**
   * Quarters
   */
  .large--one-quarter, .large--three-twelfths, .large--two-eighths {
    width: 25%;
  }

  .large--three-quarters, .large--nine-twelfths, .large--six-eighths {
    width: 75%;
  }

  /**
   * Fifths
   */
  .large--one-fifth, .large--two-tenths {
    width: 20%;
  }

  .large--two-fifths, .large--four-tenths {
    width: 40%;
  }

  .large--three-fifths, .large--six-tenths {
    width: 60%;
  }

  .large--four-fifths, .large--eight-tenths {
    width: 80%;
  }

  /**
   * Sixths
   */
  .large--one-sixth, .large--two-twelfths {
    width: 16.666%;
  }

  .large--five-sixths, .large--ten-twelfths {
    width: 83.333%;
  }

  /**
   * Eighths
   */
  .large--one-eighth {
    width: 12.5%;
  }

  .large--three-eighths {
    width: 37.5%;
  }

  .large--five-eighths {
    width: 62.5%;
  }

  .large--seven-eighths {
    width: 87.5%;
  }

  /**
   * Tenths
   */
  .large--one-tenth {
    width: 10%;
  }

  .large--three-tenths {
    width: 30%;
  }

  .large--seven-tenths {
    width: 70%;
  }

  .large--nine-tenths {
    width: 90%;
  }

  /**
   * Twelfths
   */
  .large--one-twelfth {
    width: 8.333%;
  }

  .large--five-twelfths {
    width: 41.666%;
  }

  .large--seven-twelfths {
    width: 58.333%;
  }

  .large--eleven-twelfths {
    width: 91.666%;
  }
}
/*------------------------------------*\
 $PUSH
\*------------------------------------*/
/**
 * Push classes, to move grid items over to the right by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*=push--] {
  position: relative;
}

.push--zero {
  left: 0;
}

/**
 * Whole
 */
.push--one-whole {
  left: 100%;
}

/**
 * Halves
 */
.push--one-half, .push--six-twelfths, .push--five-tenths, .push--four-eighths, .push--three-sixths, .push--two-quarters {
  left: 50%;
}

/**
 * Thirds
 */
.push--one-third, .push--four-twelfths, .push--two-sixths {
  left: 33.333%;
}

.push--two-thirds, .push--eight-twelfths, .push--four-sixths {
  left: 66.666%;
}

/**
 * Quarters
 */
.push--one-quarter, .push--three-twelfths, .push--two-eighths {
  left: 25%;
}

.push--three-quarters, .push--nine-twelfths, .push--six-eighths {
  left: 75%;
}

/**
 * Fifths
 */
.push--one-fifth, .push--two-tenths {
  left: 20%;
}

.push--two-fifths, .push--four-tenths {
  left: 40%;
}

.push--three-fifths, .push--six-tenths {
  left: 60%;
}

.push--four-fifths, .push--eight-tenths {
  left: 80%;
}

/**
 * Sixths
 */
.push--one-sixth, .push--two-twelfths {
  left: 16.666%;
}

.push--five-sixths, .push--ten-twelfths {
  left: 83.333%;
}

/**
 * Eighths
 */
.push--one-eighth {
  left: 12.5%;
}

.push--three-eighths {
  left: 37.5%;
}

.push--five-eighths {
  left: 62.5%;
}

.push--seven-eighths {
  left: 87.5%;
}

/**
 * Tenths
 */
.push--one-tenth {
  left: 10%;
}

.push--three-tenths {
  left: 30%;
}

.push--seven-tenths {
  left: 70%;
}

.push--nine-tenths {
  left: 90%;
}

/**
 * Twelfths
 */
.push--one-twelfth {
  left: 8.333%;
}

.push--five-twelfths {
  left: 41.666%;
}

.push--seven-twelfths {
  left: 58.333%;
}

.push--eleven-twelfths {
  left: 91.666%;
}

@media only screen and (min-width: 450px) {
  .push--mob--zero {
    left: 0;
  }

  /**
   * Whole
   */
  .push--mob--one-whole {
    left: 100%;
  }

  /**
   * Halves
   */
  .push--mob--one-half, .push--mob--six-twelfths, .push--mob--five-tenths, .push--mob--four-eighths, .push--mob--three-sixths, .push--mob--two-quarters {
    left: 50%;
  }

  /**
   * Thirds
   */
  .push--mob--one-third, .push--mob--four-twelfths, .push--mob--two-sixths {
    left: 33.333%;
  }

  .push--mob--two-thirds, .push--mob--eight-twelfths, .push--mob--four-sixths {
    left: 66.666%;
  }

  /**
   * Quarters
   */
  .push--mob--one-quarter, .push--mob--three-twelfths, .push--mob--two-eighths {
    left: 25%;
  }

  .push--mob--three-quarters, .push--mob--nine-twelfths, .push--mob--six-eighths {
    left: 75%;
  }

  /**
   * Fifths
   */
  .push--mob--one-fifth, .push--mob--two-tenths {
    left: 20%;
  }

  .push--mob--two-fifths, .push--mob--four-tenths {
    left: 40%;
  }

  .push--mob--three-fifths, .push--mob--six-tenths {
    left: 60%;
  }

  .push--mob--four-fifths, .push--mob--eight-tenths {
    left: 80%;
  }

  /**
   * Sixths
   */
  .push--mob--one-sixth, .push--mob--two-twelfths {
    left: 16.666%;
  }

  .push--mob--five-sixths, .push--mob--ten-twelfths {
    left: 83.333%;
  }

  /**
   * Eighths
   */
  .push--mob--one-eighth {
    left: 12.5%;
  }

  .push--mob--three-eighths {
    left: 37.5%;
  }

  .push--mob--five-eighths {
    left: 62.5%;
  }

  .push--mob--seven-eighths {
    left: 87.5%;
  }

  /**
   * Tenths
   */
  .push--mob--one-tenth {
    left: 10%;
  }

  .push--mob--three-tenths {
    left: 30%;
  }

  .push--mob--seven-tenths {
    left: 70%;
  }

  .push--mob--nine-tenths {
    left: 90%;
  }

  /**
   * Twelfths
   */
  .push--mob--one-twelfth {
    left: 8.333%;
  }

  .push--mob--five-twelfths {
    left: 41.666%;
  }

  .push--mob--seven-twelfths {
    left: 58.333%;
  }

  .push--mob--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (min-width: 600px) {
  .push--tab--zero {
    left: 0;
  }

  /**
   * Whole
   */
  .push--tab--one-whole {
    left: 100%;
  }

  /**
   * Halves
   */
  .push--tab--one-half, .push--tab--six-twelfths, .push--tab--five-tenths, .push--tab--four-eighths, .push--tab--three-sixths, .push--tab--two-quarters {
    left: 50%;
  }

  /**
   * Thirds
   */
  .push--tab--one-third, .push--tab--four-twelfths, .push--tab--two-sixths {
    left: 33.333%;
  }

  .push--tab--two-thirds, .push--tab--eight-twelfths, .push--tab--four-sixths {
    left: 66.666%;
  }

  /**
   * Quarters
   */
  .push--tab--one-quarter, .push--tab--three-twelfths, .push--tab--two-eighths {
    left: 25%;
  }

  .push--tab--three-quarters, .push--tab--nine-twelfths, .push--tab--six-eighths {
    left: 75%;
  }

  /**
   * Fifths
   */
  .push--tab--one-fifth, .push--tab--two-tenths {
    left: 20%;
  }

  .push--tab--two-fifths, .push--tab--four-tenths {
    left: 40%;
  }

  .push--tab--three-fifths, .push--tab--six-tenths {
    left: 60%;
  }

  .push--tab--four-fifths, .push--tab--eight-tenths {
    left: 80%;
  }

  /**
   * Sixths
   */
  .push--tab--one-sixth, .push--tab--two-twelfths {
    left: 16.666%;
  }

  .push--tab--five-sixths, .push--tab--ten-twelfths {
    left: 83.333%;
  }

  /**
   * Eighths
   */
  .push--tab--one-eighth {
    left: 12.5%;
  }

  .push--tab--three-eighths {
    left: 37.5%;
  }

  .push--tab--five-eighths {
    left: 62.5%;
  }

  .push--tab--seven-eighths {
    left: 87.5%;
  }

  /**
   * Tenths
   */
  .push--tab--one-tenth {
    left: 10%;
  }

  .push--tab--three-tenths {
    left: 30%;
  }

  .push--tab--seven-tenths {
    left: 70%;
  }

  .push--tab--nine-tenths {
    left: 90%;
  }

  /**
   * Twelfths
   */
  .push--tab--one-twelfth {
    left: 8.333%;
  }

  .push--tab--five-twelfths {
    left: 41.666%;
  }

  .push--tab--seven-twelfths {
    left: 58.333%;
  }

  .push--tab--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (min-width: 900px) {
  .push--lap--zero {
    left: 0;
  }

  /**
   * Whole
   */
  .push--lap--one-whole {
    left: 100%;
  }

  /**
   * Halves
   */
  .push--lap--one-half, .push--lap--six-twelfths, .push--lap--five-tenths, .push--lap--four-eighths, .push--lap--three-sixths, .push--lap--two-quarters {
    left: 50%;
  }

  /**
   * Thirds
   */
  .push--lap--one-third, .push--lap--four-twelfths, .push--lap--two-sixths {
    left: 33.333%;
  }

  .push--lap--two-thirds, .push--lap--eight-twelfths, .push--lap--four-sixths {
    left: 66.666%;
  }

  /**
   * Quarters
   */
  .push--lap--one-quarter, .push--lap--three-twelfths, .push--lap--two-eighths {
    left: 25%;
  }

  .push--lap--three-quarters, .push--lap--nine-twelfths, .push--lap--six-eighths {
    left: 75%;
  }

  /**
   * Fifths
   */
  .push--lap--one-fifth, .push--lap--two-tenths {
    left: 20%;
  }

  .push--lap--two-fifths, .push--lap--four-tenths {
    left: 40%;
  }

  .push--lap--three-fifths, .push--lap--six-tenths {
    left: 60%;
  }

  .push--lap--four-fifths, .push--lap--eight-tenths {
    left: 80%;
  }

  /**
   * Sixths
   */
  .push--lap--one-sixth, .push--lap--two-twelfths {
    left: 16.666%;
  }

  .push--lap--five-sixths, .push--lap--ten-twelfths {
    left: 83.333%;
  }

  /**
   * Eighths
   */
  .push--lap--one-eighth {
    left: 12.5%;
  }

  .push--lap--three-eighths {
    left: 37.5%;
  }

  .push--lap--five-eighths {
    left: 62.5%;
  }

  .push--lap--seven-eighths {
    left: 87.5%;
  }

  /**
   * Tenths
   */
  .push--lap--one-tenth {
    left: 10%;
  }

  .push--lap--three-tenths {
    left: 30%;
  }

  .push--lap--seven-tenths {
    left: 70%;
  }

  .push--lap--nine-tenths {
    left: 90%;
  }

  /**
   * Twelfths
   */
  .push--lap--one-twelfth {
    left: 8.333%;
  }

  .push--lap--five-twelfths {
    left: 41.666%;
  }

  .push--lap--seven-twelfths {
    left: 58.333%;
  }

  .push--lap--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (min-width: 1200px) {
  .push--desk--zero {
    left: 0;
  }

  /**
   * Whole
   */
  .push--desk--one-whole {
    left: 100%;
  }

  /**
   * Halves
   */
  .push--desk--one-half, .push--desk--six-twelfths, .push--desk--five-tenths, .push--desk--four-eighths, .push--desk--three-sixths, .push--desk--two-quarters {
    left: 50%;
  }

  /**
   * Thirds
   */
  .push--desk--one-third, .push--desk--four-twelfths, .push--desk--two-sixths {
    left: 33.333%;
  }

  .push--desk--two-thirds, .push--desk--eight-twelfths, .push--desk--four-sixths {
    left: 66.666%;
  }

  /**
   * Quarters
   */
  .push--desk--one-quarter, .push--desk--three-twelfths, .push--desk--two-eighths {
    left: 25%;
  }

  .push--desk--three-quarters, .push--desk--nine-twelfths, .push--desk--six-eighths {
    left: 75%;
  }

  /**
   * Fifths
   */
  .push--desk--one-fifth, .push--desk--two-tenths {
    left: 20%;
  }

  .push--desk--two-fifths, .push--desk--four-tenths {
    left: 40%;
  }

  .push--desk--three-fifths, .push--desk--six-tenths {
    left: 60%;
  }

  .push--desk--four-fifths, .push--desk--eight-tenths {
    left: 80%;
  }

  /**
   * Sixths
   */
  .push--desk--one-sixth, .push--desk--two-twelfths {
    left: 16.666%;
  }

  .push--desk--five-sixths, .push--desk--ten-twelfths {
    left: 83.333%;
  }

  /**
   * Eighths
   */
  .push--desk--one-eighth {
    left: 12.5%;
  }

  .push--desk--three-eighths {
    left: 37.5%;
  }

  .push--desk--five-eighths {
    left: 62.5%;
  }

  .push--desk--seven-eighths {
    left: 87.5%;
  }

  /**
   * Tenths
   */
  .push--desk--one-tenth {
    left: 10%;
  }

  .push--desk--three-tenths {
    left: 30%;
  }

  .push--desk--seven-tenths {
    left: 70%;
  }

  .push--desk--nine-tenths {
    left: 90%;
  }

  /**
   * Twelfths
   */
  .push--desk--one-twelfth {
    left: 8.333%;
  }

  .push--desk--five-twelfths {
    left: 41.666%;
  }

  .push--desk--seven-twelfths {
    left: 58.333%;
  }

  .push--desk--eleven-twelfths {
    left: 91.666%;
  }
}
@media only screen and (min-width: 1400px) {
  .push--large--zero {
    left: 0;
  }

  /**
   * Whole
   */
  .push--large--one-whole {
    left: 100%;
  }

  /**
   * Halves
   */
  .push--large--one-half, .push--large--six-twelfths, .push--large--five-tenths, .push--large--four-eighths, .push--large--three-sixths, .push--large--two-quarters {
    left: 50%;
  }

  /**
   * Thirds
   */
  .push--large--one-third, .push--large--four-twelfths, .push--large--two-sixths {
    left: 33.333%;
  }

  .push--large--two-thirds, .push--large--eight-twelfths, .push--large--four-sixths {
    left: 66.666%;
  }

  /**
   * Quarters
   */
  .push--large--one-quarter, .push--large--three-twelfths, .push--large--two-eighths {
    left: 25%;
  }

  .push--large--three-quarters, .push--large--nine-twelfths, .push--large--six-eighths {
    left: 75%;
  }

  /**
   * Fifths
   */
  .push--large--one-fifth, .push--large--two-tenths {
    left: 20%;
  }

  .push--large--two-fifths, .push--large--four-tenths {
    left: 40%;
  }

  .push--large--three-fifths, .push--large--six-tenths {
    left: 60%;
  }

  .push--large--four-fifths, .push--large--eight-tenths {
    left: 80%;
  }

  /**
   * Sixths
   */
  .push--large--one-sixth, .push--large--two-twelfths {
    left: 16.666%;
  }

  .push--large--five-sixths, .push--large--ten-twelfths {
    left: 83.333%;
  }

  /**
   * Eighths
   */
  .push--large--one-eighth {
    left: 12.5%;
  }

  .push--large--three-eighths {
    left: 37.5%;
  }

  .push--large--five-eighths {
    left: 62.5%;
  }

  .push--large--seven-eighths {
    left: 87.5%;
  }

  /**
   * Tenths
   */
  .push--large--one-tenth {
    left: 10%;
  }

  .push--large--three-tenths {
    left: 30%;
  }

  .push--large--seven-tenths {
    left: 70%;
  }

  .push--large--nine-tenths {
    left: 90%;
  }

  /**
   * Twelfths
   */
  .push--large--one-twelfth {
    left: 8.333%;
  }

  .push--large--five-twelfths {
    left: 41.666%;
  }

  .push--large--seven-twelfths {
    left: 58.333%;
  }

  .push--large--eleven-twelfths {
    left: 91.666%;
  }
}
/*------------------------------------*\
 $PULL
\*------------------------------------*/
/**
 * Pull classes, to move grid items back to the left by certain amounts.
 */
/**
 * Not a particularly great selector, but the DRYest way to do things.
 */
[class*=pull--] {
  position: relative;
}

.pull--zero {
  right: 0;
}

/**
 * Whole
 */
.pull--one-whole {
  right: 100%;
}

/**
 * Halves
 */
.pull--one-half, .pull--six-twelfths, .pull--five-tenths, .pull--four-eighths, .pull--three-sixths, .pull--two-quarters {
  right: 50%;
}

/**
 * Thirds
 */
.pull--one-third, .pull--four-twelfths, .pull--two-sixths {
  right: 33.333%;
}

.pull--two-thirds, .pull--eight-twelfths, .pull--four-sixths {
  right: 66.666%;
}

/**
 * Quarters
 */
.pull--one-quarter, .pull--three-twelfths, .pull--two-eighths {
  right: 25%;
}

.pull--three-quarters, .pull--nine-twelfths, .pull--six-eighths {
  right: 75%;
}

/**
 * Fifths
 */
.pull--one-fifth, .pull--two-tenths {
  right: 20%;
}

.pull--two-fifths, .pull--four-tenths {
  right: 40%;
}

.pull--three-fifths, .pull--six-tenths {
  right: 60%;
}

.pull--four-fifths, .pull--eight-tenths {
  right: 80%;
}

/**
 * Sixths
 */
.pull--one-sixth, .pull--two-twelfths {
  right: 16.666%;
}

.pull--five-sixths, .pull--ten-twelfths {
  right: 83.333%;
}

/**
 * Eighths
 */
.pull--one-eighth {
  right: 12.5%;
}

.pull--three-eighths {
  right: 37.5%;
}

.pull--five-eighths {
  right: 62.5%;
}

.pull--seven-eighths {
  right: 87.5%;
}

/**
 * Tenths
 */
.pull--one-tenth {
  right: 10%;
}

.pull--three-tenths {
  right: 30%;
}

.pull--seven-tenths {
  right: 70%;
}

.pull--nine-tenths {
  right: 90%;
}

/**
 * Twelfths
 */
.pull--one-twelfth {
  right: 8.333%;
}

.pull--five-twelfths {
  right: 41.666%;
}

.pull--seven-twelfths {
  right: 58.333%;
}

.pull--eleven-twelfths {
  right: 91.666%;
}

@media only screen and (min-width: 450px) {
  .pull--mob--zero {
    right: 0;
  }

  /**
   * Whole
   */
  .pull--mob--one-whole {
    right: 100%;
  }

  /**
   * Halves
   */
  .pull--mob--one-half, .pull--mob--six-twelfths, .pull--mob--five-tenths, .pull--mob--four-eighths, .pull--mob--three-sixths, .pull--mob--two-quarters {
    right: 50%;
  }

  /**
   * Thirds
   */
  .pull--mob--one-third, .pull--mob--four-twelfths, .pull--mob--two-sixths {
    right: 33.333%;
  }

  .pull--mob--two-thirds, .pull--mob--eight-twelfths, .pull--mob--four-sixths {
    right: 66.666%;
  }

  /**
   * Quarters
   */
  .pull--mob--one-quarter, .pull--mob--three-twelfths, .pull--mob--two-eighths {
    right: 25%;
  }

  .pull--mob--three-quarters, .pull--mob--nine-twelfths, .pull--mob--six-eighths {
    right: 75%;
  }

  /**
   * Fifths
   */
  .pull--mob--one-fifth, .pull--mob--two-tenths {
    right: 20%;
  }

  .pull--mob--two-fifths, .pull--mob--four-tenths {
    right: 40%;
  }

  .pull--mob--three-fifths, .pull--mob--six-tenths {
    right: 60%;
  }

  .pull--mob--four-fifths, .pull--mob--eight-tenths {
    right: 80%;
  }

  /**
   * Sixths
   */
  .pull--mob--one-sixth, .pull--mob--two-twelfths {
    right: 16.666%;
  }

  .pull--mob--five-sixths, .pull--mob--ten-twelfths {
    right: 83.333%;
  }

  /**
   * Eighths
   */
  .pull--mob--one-eighth {
    right: 12.5%;
  }

  .pull--mob--three-eighths {
    right: 37.5%;
  }

  .pull--mob--five-eighths {
    right: 62.5%;
  }

  .pull--mob--seven-eighths {
    right: 87.5%;
  }

  /**
   * Tenths
   */
  .pull--mob--one-tenth {
    right: 10%;
  }

  .pull--mob--three-tenths {
    right: 30%;
  }

  .pull--mob--seven-tenths {
    right: 70%;
  }

  .pull--mob--nine-tenths {
    right: 90%;
  }

  /**
   * Twelfths
   */
  .pull--mob--one-twelfth {
    right: 8.333%;
  }

  .pull--mob--five-twelfths {
    right: 41.666%;
  }

  .pull--mob--seven-twelfths {
    right: 58.333%;
  }

  .pull--mob--eleven-twelfths {
    right: 91.666%;
  }
}
@media only screen and (min-width: 600px) {
  .pull--tab--zero {
    right: 0;
  }

  /**
   * Whole
   */
  .pull--tab--one-whole {
    right: 100%;
  }

  /**
   * Halves
   */
  .pull--tab--one-half, .pull--tab--six-twelfths, .pull--tab--five-tenths, .pull--tab--four-eighths, .pull--tab--three-sixths, .pull--tab--two-quarters {
    right: 50%;
  }

  /**
   * Thirds
   */
  .pull--tab--one-third, .pull--tab--four-twelfths, .pull--tab--two-sixths {
    right: 33.333%;
  }

  .pull--tab--two-thirds, .pull--tab--eight-twelfths, .pull--tab--four-sixths {
    right: 66.666%;
  }

  /**
   * Quarters
   */
  .pull--tab--one-quarter, .pull--tab--three-twelfths, .pull--tab--two-eighths {
    right: 25%;
  }

  .pull--tab--three-quarters, .pull--tab--nine-twelfths, .pull--tab--six-eighths {
    right: 75%;
  }

  /**
   * Fifths
   */
  .pull--tab--one-fifth, .pull--tab--two-tenths {
    right: 20%;
  }

  .pull--tab--two-fifths, .pull--tab--four-tenths {
    right: 40%;
  }

  .pull--tab--three-fifths, .pull--tab--six-tenths {
    right: 60%;
  }

  .pull--tab--four-fifths, .pull--tab--eight-tenths {
    right: 80%;
  }

  /**
   * Sixths
   */
  .pull--tab--one-sixth, .pull--tab--two-twelfths {
    right: 16.666%;
  }

  .pull--tab--five-sixths, .pull--tab--ten-twelfths {
    right: 83.333%;
  }

  /**
   * Eighths
   */
  .pull--tab--one-eighth {
    right: 12.5%;
  }

  .pull--tab--three-eighths {
    right: 37.5%;
  }

  .pull--tab--five-eighths {
    right: 62.5%;
  }

  .pull--tab--seven-eighths {
    right: 87.5%;
  }

  /**
   * Tenths
   */
  .pull--tab--one-tenth {
    right: 10%;
  }

  .pull--tab--three-tenths {
    right: 30%;
  }

  .pull--tab--seven-tenths {
    right: 70%;
  }

  .pull--tab--nine-tenths {
    right: 90%;
  }

  /**
   * Twelfths
   */
  .pull--tab--one-twelfth {
    right: 8.333%;
  }

  .pull--tab--five-twelfths {
    right: 41.666%;
  }

  .pull--tab--seven-twelfths {
    right: 58.333%;
  }

  .pull--tab--eleven-twelfths {
    right: 91.666%;
  }
}
@media only screen and (min-width: 900px) {
  .pull--lap--zero {
    right: 0;
  }

  /**
   * Whole
   */
  .pull--lap--one-whole {
    right: 100%;
  }

  /**
   * Halves
   */
  .pull--lap--one-half, .pull--lap--six-twelfths, .pull--lap--five-tenths, .pull--lap--four-eighths, .pull--lap--three-sixths, .pull--lap--two-quarters {
    right: 50%;
  }

  /**
   * Thirds
   */
  .pull--lap--one-third, .pull--lap--four-twelfths, .pull--lap--two-sixths {
    right: 33.333%;
  }

  .pull--lap--two-thirds, .pull--lap--eight-twelfths, .pull--lap--four-sixths {
    right: 66.666%;
  }

  /**
   * Quarters
   */
  .pull--lap--one-quarter, .pull--lap--three-twelfths, .pull--lap--two-eighths {
    right: 25%;
  }

  .pull--lap--three-quarters, .pull--lap--nine-twelfths, .pull--lap--six-eighths {
    right: 75%;
  }

  /**
   * Fifths
   */
  .pull--lap--one-fifth, .pull--lap--two-tenths {
    right: 20%;
  }

  .pull--lap--two-fifths, .pull--lap--four-tenths {
    right: 40%;
  }

  .pull--lap--three-fifths, .pull--lap--six-tenths {
    right: 60%;
  }

  .pull--lap--four-fifths, .pull--lap--eight-tenths {
    right: 80%;
  }

  /**
   * Sixths
   */
  .pull--lap--one-sixth, .pull--lap--two-twelfths {
    right: 16.666%;
  }

  .pull--lap--five-sixths, .pull--lap--ten-twelfths {
    right: 83.333%;
  }

  /**
   * Eighths
   */
  .pull--lap--one-eighth {
    right: 12.5%;
  }

  .pull--lap--three-eighths {
    right: 37.5%;
  }

  .pull--lap--five-eighths {
    right: 62.5%;
  }

  .pull--lap--seven-eighths {
    right: 87.5%;
  }

  /**
   * Tenths
   */
  .pull--lap--one-tenth {
    right: 10%;
  }

  .pull--lap--three-tenths {
    right: 30%;
  }

  .pull--lap--seven-tenths {
    right: 70%;
  }

  .pull--lap--nine-tenths {
    right: 90%;
  }

  /**
   * Twelfths
   */
  .pull--lap--one-twelfth {
    right: 8.333%;
  }

  .pull--lap--five-twelfths {
    right: 41.666%;
  }

  .pull--lap--seven-twelfths {
    right: 58.333%;
  }

  .pull--lap--eleven-twelfths {
    right: 91.666%;
  }
}
@media only screen and (min-width: 1200px) {
  .pull--desk--zero {
    right: 0;
  }

  /**
   * Whole
   */
  .pull--desk--one-whole {
    right: 100%;
  }

  /**
   * Halves
   */
  .pull--desk--one-half, .pull--desk--six-twelfths, .pull--desk--five-tenths, .pull--desk--four-eighths, .pull--desk--three-sixths, .pull--desk--two-quarters {
    right: 50%;
  }

  /**
   * Thirds
   */
  .pull--desk--one-third, .pull--desk--four-twelfths, .pull--desk--two-sixths {
    right: 33.333%;
  }

  .pull--desk--two-thirds, .pull--desk--eight-twelfths, .pull--desk--four-sixths {
    right: 66.666%;
  }

  /**
   * Quarters
   */
  .pull--desk--one-quarter, .pull--desk--three-twelfths, .pull--desk--two-eighths {
    right: 25%;
  }

  .pull--desk--three-quarters, .pull--desk--nine-twelfths, .pull--desk--six-eighths {
    right: 75%;
  }

  /**
   * Fifths
   */
  .pull--desk--one-fifth, .pull--desk--two-tenths {
    right: 20%;
  }

  .pull--desk--two-fifths, .pull--desk--four-tenths {
    right: 40%;
  }

  .pull--desk--three-fifths, .pull--desk--six-tenths {
    right: 60%;
  }

  .pull--desk--four-fifths, .pull--desk--eight-tenths {
    right: 80%;
  }

  /**
   * Sixths
   */
  .pull--desk--one-sixth, .pull--desk--two-twelfths {
    right: 16.666%;
  }

  .pull--desk--five-sixths, .pull--desk--ten-twelfths {
    right: 83.333%;
  }

  /**
   * Eighths
   */
  .pull--desk--one-eighth {
    right: 12.5%;
  }

  .pull--desk--three-eighths {
    right: 37.5%;
  }

  .pull--desk--five-eighths {
    right: 62.5%;
  }

  .pull--desk--seven-eighths {
    right: 87.5%;
  }

  /**
   * Tenths
   */
  .pull--desk--one-tenth {
    right: 10%;
  }

  .pull--desk--three-tenths {
    right: 30%;
  }

  .pull--desk--seven-tenths {
    right: 70%;
  }

  .pull--desk--nine-tenths {
    right: 90%;
  }

  /**
   * Twelfths
   */
  .pull--desk--one-twelfth {
    right: 8.333%;
  }

  .pull--desk--five-twelfths {
    right: 41.666%;
  }

  .pull--desk--seven-twelfths {
    right: 58.333%;
  }

  .pull--desk--eleven-twelfths {
    right: 91.666%;
  }
}
@media only screen and (min-width: 1400px) {
  .pull--large--zero {
    right: 0;
  }

  /**
   * Whole
   */
  .pull--large--one-whole {
    right: 100%;
  }

  /**
   * Halves
   */
  .pull--large--one-half, .pull--large--six-twelfths, .pull--large--five-tenths, .pull--large--four-eighths, .pull--large--three-sixths, .pull--large--two-quarters {
    right: 50%;
  }

  /**
   * Thirds
   */
  .pull--large--one-third, .pull--large--four-twelfths, .pull--large--two-sixths {
    right: 33.333%;
  }

  .pull--large--two-thirds, .pull--large--eight-twelfths, .pull--large--four-sixths {
    right: 66.666%;
  }

  /**
   * Quarters
   */
  .pull--large--one-quarter, .pull--large--three-twelfths, .pull--large--two-eighths {
    right: 25%;
  }

  .pull--large--three-quarters, .pull--large--nine-twelfths, .pull--large--six-eighths {
    right: 75%;
  }

  /**
   * Fifths
   */
  .pull--large--one-fifth, .pull--large--two-tenths {
    right: 20%;
  }

  .pull--large--two-fifths, .pull--large--four-tenths {
    right: 40%;
  }

  .pull--large--three-fifths, .pull--large--six-tenths {
    right: 60%;
  }

  .pull--large--four-fifths, .pull--large--eight-tenths {
    right: 80%;
  }

  /**
   * Sixths
   */
  .pull--large--one-sixth, .pull--large--two-twelfths {
    right: 16.666%;
  }

  .pull--large--five-sixths, .pull--large--ten-twelfths {
    right: 83.333%;
  }

  /**
   * Eighths
   */
  .pull--large--one-eighth {
    right: 12.5%;
  }

  .pull--large--three-eighths {
    right: 37.5%;
  }

  .pull--large--five-eighths {
    right: 62.5%;
  }

  .pull--large--seven-eighths {
    right: 87.5%;
  }

  /**
   * Tenths
   */
  .pull--large--one-tenth {
    right: 10%;
  }

  .pull--large--three-tenths {
    right: 30%;
  }

  .pull--large--seven-tenths {
    right: 70%;
  }

  .pull--large--nine-tenths {
    right: 90%;
  }

  /**
   * Twelfths
   */
  .pull--large--one-twelfth {
    right: 8.333%;
  }

  .pull--large--five-twelfths {
    right: 41.666%;
  }

  .pull--large--seven-twelfths {
    right: 58.333%;
  }

  .pull--large--eleven-twelfths {
    right: 91.666%;
  }
}
/*!
 * Bootstrap Grid v4.6.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 450px) {
  .container-sm, .container {
    max-width: 400px;
  }
}
@media (min-width: 600px) {
  .container-md, .container-sm, .container {
    max-width: 560px;
  }
}
@media (min-width: 900px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 860px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 450px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 600px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 900px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

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

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

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

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

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

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

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

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

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

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

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 450px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 600px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 900px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 450px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 600px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 900px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 450px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 600px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 900px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
/*
 * Responsively Lazy
 * http://ivopetkov.com/b/lazy-load-responsive-images/
 * Copyright 2015-2017, Ivo Petkov
 * Free to use under the MIT license.
*/
.responsively-lazy:not(img) {
  position: relative;
  height: 0;
}

.responsively-lazy:not(img) > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

img.responsively-lazy {
  width: 100%;
}

/*!
 * Polyfill object-fit/object-position on <img>: IE9, IE10, IE11, Edge, Safari, ...
 * https://github.com/fregante/object-fit-images

    This mixin can be used to set the object-fit:
	@include object-fit(contain);
	or object-fit and object-position:
	@include object-fit(cover, top);
 */
.object-fit-cover img, .fancybox__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}

.object-fit-cover-left > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: left;
  object-position: left;
  font-family: "object-fit: cover; object-position: left";
}

@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  direction: ltr;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
  z-index: 0;
}

.plyr audio,
.plyr iframe,
.plyr video {
  display: block;
  height: 100%;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *,
.plyr--full-ui :after,
.plyr--full-ui :before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5464;
  background: var(--plyr-badge-background, #4a5464);
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: 20px;
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
  transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__caption div {
  display: inline;
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  fill: currentColor;
  display: block;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control.plyr__control--pressed .label--not-pressed,
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
a.plyr__control:after,
a.plyr__control:before {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child,
.plyr__controls .plyr__controls__item.plyr__time + .plyr__time,
.plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr [data-plyr=airplay],
.plyr [data-plyr=captions],
.plyr [data-plyr=fullscreen],
.plyr [data-plyr=pip],
.plyr__controls:empty {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay],
.plyr--captions-enabled [data-plyr=captions],
.plyr--fullscreen-enabled [data-plyr=fullscreen],
.plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container:after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: 14px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7 - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5464;
  color: var(--plyr-menu-color, #4a5464);
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: 4.66667px 10.5px;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7 / 1.5) calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5);
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control:after {
  border: 4px solid transparent;
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
  padding-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
}

.plyr__menu__container .plyr__control--forward:after {
  border-left-color: #728197;
  border-left-color: var(--plyr-menu-arrow-color, #728197);
  right: 6.5px;
  right: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--forward:hover:after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: 7px;
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: 3.5px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  padding-left: 28px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 4);
  position: relative;
  width: calc(100% - 14px);
  width: calc(100% - var(--plyr-control-spacing, 10px) * 0.7 * 2);
}

.plyr__menu__container .plyr__control--back:after {
  border-right-color: #728197;
  border-right-color: var(--plyr-menu-arrow-color, #728197);
  left: 6.5px;
  left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}

.plyr__menu__container .plyr__control--back:before {
  background: #dcdfe5;
  background: var(--plyr-menu-back-border-color, #dcdfe5);
  box-shadow: 0 1px 0 #fff;
  box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 3.5px;
  margin-top: calc(var(--plyr-control-spacing, 10px) * 0.7 / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus:after,
.plyr__menu__container .plyr__control--back:hover:after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after,
.plyr__menu__container .plyr__control[role=menuitemradio]:before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]:after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:before {
  background: #00b2ff;
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]:after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus:before,
.plyr__menu__container .plyr__control[role=menuitemradio]:hover:before {
  background: rgba(35, 40, 47, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) * 0.7 * -1 + 2px);
  overflow: hidden;
  padding-left: 24.5px;
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7 * 3.5);
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: #00b2ff;
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  display: block;
  height: 19px;
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  background-image: linear-gradient(90deg, currentColor 0, transparent 0);
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: -4px;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}

.plyr--full-ui input[type=range]::-ms-track {
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper,
.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  background: currentColor;
  border: 0;
  border-radius: 2.5px;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: 3px dotted #00b2ff;
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, #00b2ff))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: #000;
  background-color: var(--plyr-video-background, var(--plyr-video-background, #000));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}

.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time:before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  background: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: #4a5464;
  color: var(--plyr-tooltip-color, #4a5464);
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 5px 7.5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(var(--plyr-control-spacing, 10px) / 2 * 1.5);
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr .plyr__control:hover .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip:before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip:before {
  left: 16px;
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translateY(10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip:before {
  left: auto;
  right: 16px;
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + var(--plyr-control-spacing, 10px) * 0.7);
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0) scale(1);
}

.plyr__progress {
  left: 6.5px;
  left: calc(var(--plyr-range-thumb-height, 7px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}

.plyr__progress input[type=range],
.plyr__progress__buffer {
  margin-left: -6.5px;
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: -6.5px;
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  overflow-wrap: break-word;
  white-space: normal;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: -2.5px;
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 0, transparent 50%, rgba(35, 40, 47, 0.6) 0, rgba(35, 40, 47, 0.6) 75%, transparent 0, transparent);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: #fff;
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  align-items: center;
  display: flex;
  max-width: 37px;
  position: relative;
  width: 20%;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: 5px;
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  position: relative;
  z-index: 2;
}

.plyr--is-ios .plyr__volume {
  min-width: 0;
  width: auto;
}

.plyr--audio {
  display: block;
}

.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: #4a5464;
  color: var(--plyr-audio-control-color, #4a5464);
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}

.plyr--audio .plyr__control.plyr__tab-focus,
.plyr--audio .plyr__control:hover,
.plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b2ff;
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  background: var(--plyr-video-background, var(--plyr-video-background, #000));
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}

@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: 5px;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: 20px;
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: 35px;
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: #00b2ff;
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, #00b2ff)));
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: 15px;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus,
.plyr__control--overlaid:hover {
  opacity: 1;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}

.plyr--video .plyr__progress__buffer {
  color: rgba(255, 255, 255, 0.25);
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  margin: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads:after {
  background: #23282f;
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}

.plyr__ads:empty:after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  background-color: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: 10px;
  margin-bottom: calc(var(--plyr-control-spacing, 10px) / 2 * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translateY(10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0) scale(1);
}

.plyr__preview-thumb:before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: -4px;
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c8d1;
  border-radius: 4px;
  border-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img,
.plyr__preview-thumb__image-container:after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__image-container:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}

.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}

.plyr__preview-thumb__time-container {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(transparent, rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: 4px;
  border-bottom-left-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  border-bottom-right-radius: 4px;
  border-bottom-right-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

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

.plyr [hidden] {
  display: none !important;
}

/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.plyr__control--overlaid {
  background: transparent;
}

.plyr--video {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  pointer-events: all;
  overflow: visible;
  top: 0;
  left: 0;
  background: transparent;
}
@media all and (min-width: 600px) {
  .plyr--video {
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.plyr--video:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: opacity 0.6s ease;
}
.plyr--video.plyr--playing {
  /* width: calc(100% + 100px);
        height: calc(100% + 100px);
        top: -50px;
        left: -50px;
        z-index: 999; */
  /* max-width: 200%;
  max-height: 200vh;  */
}
@media all and (min-width: 600px) {
  .plyr--video.plyr--playing {
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
}
.plyr--video.plyr--playing:after {
  opacity: 0;
}
.plyr--video .plyr__controls {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  padding: 20px;
}
@media all and (min-width: 600px) {
  .plyr--video .plyr__controls {
    padding: 35px 30px;
  }
}
.plyr--video.plyr--playing .plyr__controls {
  opacity: 1;
  visibility: visible;
}
.scrolled .plyr--video {
  pointer-events: none;
}
.plyr--video iframe {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: flex;
}

.plyr__control.plyr__control--overlaid {
  width: 60px;
  height: 60px;
  top: calc(50% + 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  background-color: transparent;
  border: 1px solid #333333;
  transform: translate(-50%, 20px);
  transition: all 0.5s;
}
@media all and (min-width: 600px) {
  .plyr__control.plyr__control--overlaid {
    top: calc(50% + 70px);
    width: 60px;
    height: 60px;
  }
}
@media all and (min-width: 900px) {
  .plyr__control.plyr__control--overlaid {
    top: calc(50% + 80px);
    width: 100px;
    height: 100px;
  }
}
.plyr__control.plyr__control--overlaid:hover {
  background-color: rgba(51, 51, 51, 0.5);
  color: #fff;
}
.loaded .plyr__control.plyr__control--overlaid {
  opacity: 1;
  visibility: visible;
}
.loaded .plyr__control.plyr__control--overlaid::before {
  transform: translate3d(-50%, -50%, 0) scale(1, 1);
}
.plyr--playing .plyr__control.plyr__control--overlaid, .scrolled .plyr__control.plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}
.plyr--playing .plyr__control.plyr__control--overlaid::before, .scrolled .plyr__control.plyr__control--overlaid::before {
  transform: translate3d(-50%, -50%, 0) scale(0, 0);
}

.plyr__control.plyr__tab-focus {
  background: transparent;
  box-shadow: none;
}

.plyr__video-wrapper {
  padding: 0 !important;
  width: 100%;
  height: 100%;
}
.plyr__video-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  z-index: 1;
}
@media all and (max-width: 599px) {
  .plyr__video-wrapper .plyr__video-embed__container {
    width: 100% !important;
    height: 100% !important;
  }
}

.plyr--playing .plyr__video-wrapper::after {
  opacity: 0;
  visibility: hidden;
}

.plyr__poster {
  background-size: cover;
  transition: opacity 0.8s 0.4s ease, transform 1.2s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
  transform-origin: center;
}
.plyr__poster:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1b+0,1d1d1b+40,946e55+100&0.5+0,0.2+40,0.2+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5) 0%, rgba(29, 29, 27, 0.2) 40%, rgba(148, 110, 85, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#801d1d1b", endColorstr="#33946e55", GradientType=0);
  /* IE6-9 */
  opacity: 1;
  transition: opacity 0.6s ease;
}
.plyr--playing .plyr__poster {
  opacity: 0;
}
.plyr--paused .plyr__poster {
  opacity: 1;
  transition-delay: 0s;
  display: block !important;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding: 0;
  transform: translateY(0) !important;
  height: 100%;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  animation: f-spinner-dash 2s ease-in-out infinite;
}

@keyframes f-spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  animation: 0.175s ease-out both f-throwOutUp;
}

.f-throwOutDown {
  animation: 0.175s ease-out both f-throwOutDown;
}

@keyframes f-throwOutUp {
  to {
    transform: translate3d(0, -150px, 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    transform: translate3d(0, 150px, 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  animation: var(--f-transition-duration, 0.2s) ease-out 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown;
}

@keyframes f-zoomInUp {
  from {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-zoomOutDown {
  to {
    transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  animation: var(--f-transition-duration, 0.2s) ease both f-fadeOut;
  z-index: 1;
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@keyframes f-slideInPrev {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideOutNext {
  100% {
    transform: translateX(-100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@keyframes f-classicInNext {
  0% {
    transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    transform: translateX(75px);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicOutNext {
  100% {
    transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
    background-color: transparent;
  }
}
.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.15s ease;
  transform: var(--f-button-transform);
  filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 80%;
  transform: translateY(-50%);
}
@media all and (min-width: 1200px) {
  .is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
    top: 50%;
  }
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  transform: rotate(90deg);
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: #F2EDE9;
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

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

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  box-sizing: border-box;
  flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.fancybox__track {
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  overflow: auto;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 0;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}

.fancybox__content {
  align-self: center;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
  width: 100% !important;
  height: 100% !important;
  transform: unset !important;
}

.fancybox__content img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 100px 0 40px 0;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  transition: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,
.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content {
  visibility: hidden;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  filter: blur(0px);
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
  margin: 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  font-family: "peridotpe-regular-webfont", sans-serif !important;
  opacity: var(--fancybox-opacity, 1);
  font-size: 18px !important;
  cursor: auto;
  visibility: visible;
  bottom: 6vh;
  z-index: 99;
  left: 10%;
  text-align: center;
  color: #C46428 !important;
  margin-bottom: 50px;
}
.fancybox__caption::before {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 1px;
  background-color: #fff;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 85px;
  --f-button-height: 85px;
  --f-button-border-radius: 0px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 55px;
  --f-button-svg-height: 35px;
  position: absolute;
  top: -77px;
  right: -2px;
  top: 5px;
  right: 5px;
  opacity: 1;
  padding: 2px;
}
@media all and (min-width: 900px) {
  .fancybox__content > .f-button.is-close-btn {
    --f-button-width: 96px;
    padding: 25px;
    --f-button-height: 96px;
  }
}
@media all and (min-width: 1200px) {
  .fancybox__content > .f-button.is-close-btn {
    top: 20px;
    right: 45px;
  }
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
  display: none;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 0;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 32px;
  --f-button-svg-height: 37px;
  --f-button-svg-filter: none;
  top: 0px;
  right: 0px;
}
@media all and (min-width: 1200px) {
  .is-compact .fancybox__content > .f-button.is-close-btn {
    top: 5px;
    right: 5px;
  }
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: 37px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  background-image: url("../svg/arrow-next.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.f-button.is-prev:after {
  content: "";
  position: absolute;
  top: 33px;
  left: 10px;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
}
@media all and (min-width: 900px) {
  .f-button.is-prev:after {
    width: 60px;
    height: 60px;
    top: 28px;
    left: -20px;
  }
}

.f-button.is-next:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  box-sizing: border-box;
  z-index: -2;
  top: 33px;
  right: 10px;
}
@media all and (min-width: 900px) {
  .f-button.is-next:after {
    width: 60px;
    height: 60px;
    top: 28px;
    right: -20px;
  }
}

.is-idle .fancybox__nav {
  animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.25s ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  animation: 0.35s ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  animation: 0.15s ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  animation: 0.35s ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,
.fancybox__container:not(.is-compact) .has-map .fancybox__content,
.fancybox__container:not(.is-compact) .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

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

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  perspective: 1000px;
  transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.f-thumbs__track {
  display: flex;
  will-change: transform;
}

.f-thumbs__slide {
  position: relative;
  flex: 0 0 auto;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  min-width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(var(--left, 0) * 1px);
  width: calc(100% - var(--width, 0) * 1px);
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  --clip-path: inset(
    0 calc((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0))) round
      var(--f-thumb-border-radius, 0)
  );
  transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  transition: none;
  pointer-events: none;
}

.is-modern .f-thumbs__slide > * {
  clip-path: var(--clip-path);
}

.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within {
  filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.is-modern.in-touch .f-thumbs__slide {
  filter: none;
}

.is-modern.is-resting .f-thumbs__slide {
  transition: all 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide > * {
  transition: all 0.33s ease;
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: var(--f-thumb-offset);
  box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-thumbs.is-horizontal .f-thumbs__track {
  margin: 0 auto;
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  flex-wrap: wrap;
  margin: auto 0;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 20px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  flex-grow: 1;
  flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.f-button {
  width: 60px;
  height: 60px;
}
@media all and (min-width: 900px) {
  .f-button {
    width: 80px;
    height: 80px;
  }
}

.fancybox__nav svg {
  display: none;
}
.fancybox__nav .is-prev {
  margin-left: 15px;
}
.fancybox__nav .is-prev:before {
  transform: rotate(180deg);
}
@media all and (min-width: 900px) {
  .fancybox__nav .is-prev {
    margin-left: 50px;
  }
}
.fancybox__nav .is-next {
  margin-right: 15px;
}
@media all and (min-width: 900px) {
  .fancybox__nav .is-next {
    margin-right: 50px;
  }
}
.f-button.is-close-btn {
  width: 50px;
  height: 50px;
  padding: 5px !important;
}
@media all and (min-width: 900px) {
  .f-button.is-close-btn {
    width: 80px;
    height: 80px;
  }
}

.fancybox__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fancybox__content:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Your Custom Styles
 */
/* =========================================
        Site
   ========================================= */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site,
.site__body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.site__body {
  width: 100%;
  font-style: normal;
  line-height: 1.45em;
  color: #000;
  background-color: #F2EDE9;
}
.site__body.menu-open {
  overflow-y: hidden;
}

.otgs-development-site-front-end {
  display: none;
}

.btn.btn--arrow.text-link {
  transition: all 0.3s ease;
}
.btn.btn--arrow.text-link svg {
  width: 100%;
}
.btn.btn--arrow.text-link svg path {
  transition: all 0.3s ease;
}
.btn.btn--arrow.text-link:hover {
  color: #262626;
}
.btn.btn--arrow.text-link:hover svg path {
  stroke: #262626;
}

.btn.btn--arrow svg {
  width: 100%;
}

h1, h2, h3 {
  font-weight: normal;
  margin: unset;
}

.pum-theme-1397 .pum-title, .pum-theme-default-theme .pum-title {
  font-family: "Blacker-Sans-Text-Light", sans-serif !important;
  letter-spacing: 2.5px;
}

.pum-theme-1397 .pum-content, .pum-theme-default-theme .pum-content {
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif !important;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55em;
}

@media only screen and (max-width: 400px) {
  #popmake-1397 {
    max-width: 300px !important;
    padding: 15px !important;
  }

  #pum_popup_title_1397 {
    font-size: 20px !important;
  }
}
@media only screen and (min-width: 401px) {
  #pum_popup_title_1397 {
    font-size: 32px !important;
  }
}
.pum-overlay .text-link {
  color: #c46428;
}

:root {
  --moz-space-mobile: 60px;
  --moz-space-tablet: 80px;
  --moz-space-desktop: 120px;
}

.moz-space {
  margin-top: var(--moz-space-mobile);
}
@media all and (min-width: 600px) {
  .moz-space {
    margin-top: var(--moz-space-tablet);
  }
}
@media all and (min-width: 900px) {
  .moz-space {
    margin-top: var(--moz-space-desktop);
  }
}

/**
 * Site Container
 *
 */
.site__container {
  position: relative;
  width: 100%;
  padding: 0 30px;
}
@media all and (min-width: 450px) {
  .site__container {
    padding: 0 40px;
  }
}
@media all and (min-width: 600px) {
  .site__container {
    padding: 0 60px;
  }
}
@media all and (min-width: 900px) {
  .site__container {
    padding: 0;
  }
}

/**
 * Content style
 *
 */
.site__content h1, .site__content h2, .site__content h3, .site__content h4 {
  margin: 20px 0 10px;
}
.site__content b, .site__content strong {
  font-weight: 700;
}
.site__content small {
  font-size: 80%;
}
.site__content a {
  color: #000;
}
.site__content a:hover {
  color: #fff;
  color: #262626;
}

/**
 * Title classes
 *
 */
:root {
  --title-1: 45px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --title-1: calc(45px + 20 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --title-1: calc(65px + 15 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --title-1: 80px;
  }
}
:root {
  --text-link: 18px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --text-link: calc(18px + 0 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --text-link: calc(18px + 0 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --text-link: 18px;
  }
}
:root {
  --text-1: 18px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --text-1: calc(18px + 0 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --text-1: calc(18px + 0 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --text-1: 18px;
  }
}
:root {
  --title-2: 30px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --title-2: calc(30px + 25 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --title-2: calc(55px + 10 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --title-2: 65px;
  }
}
:root {
  --title-3: 30px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --title-3: calc(30px + 15 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --title-3: calc(45px + 0 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --title-3: 45px;
  }
}
:root {
  --title-4: 30px;
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  :root {
    --title-4: calc(30px + 0 * ((100vw - 500px) / 700));
  }
}
@media screen and (min-width: 1200px) and (max-width: 1920px) {
  :root {
    --title-4: calc(30px + 5 * ((100vw - 1200px) / 720));
  }
}
@media screen and (min-width: 1920px) {
  :root {
    --title-4: 35px;
  }
}
.title-1 {
  font-size: var(--title-1);
  line-height: 1em;
  letter-spacing: 8px;
}

.title-2 {
  font-size: var(--title-2);
  line-height: 1.25em;
  letter-spacing: 6.5px;
}

.title-3 {
  font-size: var(--title-3);
  line-height: 1.25em;
  letter-spacing: 5.5px;
}

.title-4 {
  font-size: var(--title-4);
  line-height: 1.4em;
  letter-spacing: 4.5px;
}
@media all and (min-width: 900px) {
  .title-4 {
    line-height: 1.8em;
  }
}

.text-link {
  font-size: var(--text-link);
  line-height: 2.1em;
}

.text-1 {
  font-size: var(--text-1);
  line-height: 1.55em;
}

/**
 * Fade
 *
 */
[data-fade="1"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="1"] {
  opacity: 1;
  transition-delay: 0.5s;
}

[data-fade="2"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="2"] {
  opacity: 1;
  transition-delay: 0.6s;
}

[data-fade="3"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="3"] {
  opacity: 1;
  transition-delay: 0.7s;
}

[data-fade="4"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="4"] {
  opacity: 1;
  transition-delay: 0.8s;
}

[data-fade="5"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="5"] {
  opacity: 1;
  transition-delay: 0.9s;
}

[data-fade="6"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="6"] {
  opacity: 1;
  transition-delay: 1s;
}

[data-fade="7"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="7"] {
  opacity: 1;
  transition-delay: 1.1s;
}

[data-fade="8"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="8"] {
  opacity: 1;
  transition-delay: 1.2s;
}

[data-fade="9"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="9"] {
  opacity: 1;
  transition-delay: 1.3s;
}

[data-fade="10"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="10"] {
  opacity: 1;
  transition-delay: 1.4s;
}

[data-fade="11"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="11"] {
  opacity: 1;
  transition-delay: 1.5s;
}

[data-fade="12"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="12"] {
  opacity: 1;
  transition-delay: 1.6s;
}

[data-fade="13"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="13"] {
  opacity: 1;
  transition-delay: 1.7s;
}

[data-fade="14"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="14"] {
  opacity: 1;
  transition-delay: 1.8s;
}

[data-fade="15"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="15"] {
  opacity: 1;
  transition-delay: 1.9s;
}

[data-fade="16"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="16"] {
  opacity: 1;
  transition-delay: 2s;
}

[data-fade="17"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="17"] {
  opacity: 1;
  transition-delay: 2.1s;
}

[data-fade="18"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="18"] {
  opacity: 1;
  transition-delay: 2.2s;
}

[data-fade="19"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="19"] {
  opacity: 1;
  transition-delay: 2.3s;
}

[data-fade="20"] {
  opacity: 0;
  transition: opacity 1.6s ease;
}
.is-visible [data-fade="20"] {
  opacity: 1;
  transition-delay: 2.4s;
}

[data-fadeup="1"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="1"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

[data-fadeup="2"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="2"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

[data-fadeup="3"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="3"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

[data-fadeup="4"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="4"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

[data-fadeup="5"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="5"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

[data-fadeup="6"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="6"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

[data-fadeup="7"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="7"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.1s;
}

[data-fadeup="8"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="8"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.2s;
}

[data-fadeup="9"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="9"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.3s;
}

[data-fadeup="10"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="10"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.4s;
}

[data-fadeup="11"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="11"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.5s;
}

[data-fadeup="12"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="12"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.6s;
}

[data-fadeup="13"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="13"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.7s;
}

[data-fadeup="14"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="14"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
}

[data-fadeup="15"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="15"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.9s;
}

[data-fadeup="16"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="16"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2s;
}

[data-fadeup="17"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="17"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.1s;
}

[data-fadeup="18"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="18"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.2s;
}

[data-fadeup="19"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="19"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.3s;
}

[data-fadeup="20"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1.6s ease, opacity 1.6s ease;
}
.is-visible [data-fadeup="20"] {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2.4s;
}

/**
 * Picture transition
 *
 */
[data-picture] {
  position: relative;
  overflow: hidden;
}
[data-picture]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: translateY(0);
  transition: transform 1.2s ease;
  z-index: 1;
}
[data-picture].is-picture:after {
  transform: translateY(100%);
}

[data-picture-cover] {
  position: relative;
  height: 100%;
}
[data-picture-cover]:before {
  content: "";
  display: block;
  padding-top: 100%;
}
[data-picture-cover] > div {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
[data-picture-cover] img {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

[data-picture-cover-55]:before {
  padding-top: 55%;
}

[data-picture-cover-70]:before {
  padding-top: 70%;
}

[data-picture-cover-90]:before {
  padding-top: 90%;
}

[data-picture-cover-110]:before {
  padding-top: 110%;
}

.site-header__menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 100;
  visibility: hidden;
  z-index: -1;
  overflow-y: auto;
  overflow-x: hidden;
}
.site-header__menu:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F2EDE9;
  transform: translateY(-100%);
  transition: transform 0.4s ease-out;
  z-index: -3;
}
.site-header__menu:before {
  content: "";
  background: var(--menu-bg-image);
  opacity: 0.3;
  z-index: -2;
  transition: transform 0.4s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.site-header__menu .z5 {
  z-index: 5;
}
.site-header__menu.open {
  visibility: visible;
  height: 100%;
}
.site-header__menu.open:after {
  transform: translateY(0);
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(1) > .menu__link {
  opacity: 1;
  transition-delay: 0.04s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(2) > .menu__link {
  opacity: 1;
  transition-delay: 0.08s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(3) > .menu__link {
  opacity: 1;
  transition-delay: 0.12s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(4) > .menu__link {
  opacity: 1;
  transition-delay: 0.16s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(5) > .menu__link {
  opacity: 1;
  transition-delay: 0.2s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(6) > .menu__link {
  opacity: 1;
  transition-delay: 0.24s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(7) > .menu__link {
  opacity: 1;
  transition-delay: 0.28s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(8) > .menu__link {
  opacity: 1;
  transition-delay: 0.32s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(9) > .menu__link {
  opacity: 1;
  transition-delay: 0.36s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(10) > .menu__link {
  opacity: 1;
  transition-delay: 0.4s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(11) > .menu__link {
  opacity: 1;
  transition-delay: 0.44s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(12) > .menu__link {
  opacity: 1;
  transition-delay: 0.48s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(13) > .menu__link {
  opacity: 1;
  transition-delay: 0.52s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(14) > .menu__link {
  opacity: 1;
  transition-delay: 0.56s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(15) > .menu__link {
  opacity: 1;
  transition-delay: 0.6s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(16) > .menu__link {
  opacity: 1;
  transition-delay: 0.64s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(17) > .menu__link {
  opacity: 1;
  transition-delay: 0.68s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(18) > .menu__link {
  opacity: 1;
  transition-delay: 0.72s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(19) > .menu__link {
  opacity: 1;
  transition-delay: 0.76s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(20) > .menu__link {
  opacity: 1;
  transition-delay: 0.8s;
  color: #C46428;
  text-decoration: none;
  text-transform: uppercase;
}
.site-header__menu.open .menu__list--level-0 > .menu__item--current a {
  text-decoration: underline;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(1) > span {
  opacity: 1;
  transition-delay: 0.04s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(2) > span {
  opacity: 1;
  transition-delay: 0.08s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(3) > span {
  opacity: 1;
  transition-delay: 0.12s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(4) > span {
  opacity: 1;
  transition-delay: 0.16s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(5) > span {
  opacity: 1;
  transition-delay: 0.2s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(6) > span {
  opacity: 1;
  transition-delay: 0.24s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(7) > span {
  opacity: 1;
  transition-delay: 0.28s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(8) > span {
  opacity: 1;
  transition-delay: 0.32s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(9) > span {
  opacity: 1;
  transition-delay: 0.36s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(10) > span {
  opacity: 1;
  transition-delay: 0.4s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(11) > span {
  opacity: 1;
  transition-delay: 0.44s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(12) > span {
  opacity: 1;
  transition-delay: 0.48s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(13) > span {
  opacity: 1;
  transition-delay: 0.52s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(14) > span {
  opacity: 1;
  transition-delay: 0.56s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(15) > span {
  opacity: 1;
  transition-delay: 0.6s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(16) > span {
  opacity: 1;
  transition-delay: 0.64s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(17) > span {
  opacity: 1;
  transition-delay: 0.68s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(18) > span {
  opacity: 1;
  transition-delay: 0.72s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(19) > span {
  opacity: 1;
  transition-delay: 0.76s;
}
.site-header__menu.open .menu__list--level-0 > .menu__item:nth-child(20) > span {
  opacity: 1;
  transition-delay: 0.8s;
}
.site-header__menu.open .site-header__menu__photos {
  opacity: 1;
  transition-delay: 0.4s;
}
.site-header__menu.submenu-opened .menu--secondary {
  visibility: hidden;
}
@media all and (min-width: 600px) {
  .site-header__menu.submenu-opened .menu--secondary {
    visibility: visible;
  }
}
@media all and (max-width: 449px) {
  .site-header__menu.submenu-opened .site-header__menu__photo {
    display: none;
  }
}
@media all and (max-width: 449px) {
  .site-header__menu.submenu-opened .site-header__menu__photo__mob {
    display: block;
    position: absolute;
    width: 200px;
    bottom: 0;
    right: 0;
  }
  .site-header__menu.submenu-opened .site-header__menu__photo__mob img {
    width: 100%;
  }
}
.site-header__menu.remove:after {
  transform: translateY(-100%);
  transition-delay: 0.7s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(1) > .menu__link {
  opacity: 0;
  transition-delay: 0.04s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(2) > .menu__link {
  opacity: 0;
  transition-delay: 0.08s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(3) > .menu__link {
  opacity: 0;
  transition-delay: 0.12s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(4) > .menu__link {
  opacity: 0;
  transition-delay: 0.16s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(5) > .menu__link {
  opacity: 0;
  transition-delay: 0.2s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(6) > .menu__link {
  opacity: 0;
  transition-delay: 0.24s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(7) > .menu__link {
  opacity: 0;
  transition-delay: 0.28s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(8) > .menu__link {
  opacity: 0;
  transition-delay: 0.32s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(9) > .menu__link {
  opacity: 0;
  transition-delay: 0.36s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(10) > .menu__link {
  opacity: 0;
  transition-delay: 0.4s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(11) > .menu__link {
  opacity: 0;
  transition-delay: 0.44s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(12) > .menu__link {
  opacity: 0;
  transition-delay: 0.48s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(13) > .menu__link {
  opacity: 0;
  transition-delay: 0.52s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(14) > .menu__link {
  opacity: 0;
  transition-delay: 0.56s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(15) > .menu__link {
  opacity: 0;
  transition-delay: 0.6s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(16) > .menu__link {
  opacity: 0;
  transition-delay: 0.64s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(17) > .menu__link {
  opacity: 0;
  transition-delay: 0.68s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(18) > .menu__link {
  opacity: 0;
  transition-delay: 0.72s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(19) > .menu__link {
  opacity: 0;
  transition-delay: 0.76s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(20) > .menu__link {
  opacity: 0;
  transition-delay: 0.8s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(1) > span {
  opacity: 0;
  transition-delay: 0.04s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(2) > span {
  opacity: 0;
  transition-delay: 0.08s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(3) > span {
  opacity: 0;
  transition-delay: 0.12s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(4) > span {
  opacity: 0;
  transition-delay: 0.16s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(5) > span {
  opacity: 0;
  transition-delay: 0.2s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(6) > span {
  opacity: 0;
  transition-delay: 0.24s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(7) > span {
  opacity: 0;
  transition-delay: 0.28s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(8) > span {
  opacity: 0;
  transition-delay: 0.32s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(9) > span {
  opacity: 0;
  transition-delay: 0.36s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(10) > span {
  opacity: 0;
  transition-delay: 0.4s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(11) > span {
  opacity: 0;
  transition-delay: 0.44s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(12) > span {
  opacity: 0;
  transition-delay: 0.48s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(13) > span {
  opacity: 0;
  transition-delay: 0.52s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(14) > span {
  opacity: 0;
  transition-delay: 0.56s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(15) > span {
  opacity: 0;
  transition-delay: 0.6s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(16) > span {
  opacity: 0;
  transition-delay: 0.64s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(17) > span {
  opacity: 0;
  transition-delay: 0.68s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(18) > span {
  opacity: 0;
  transition-delay: 0.72s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(19) > span {
  opacity: 0;
  transition-delay: 0.76s;
}
.site-header__menu.remove .menu__list--level-0 > .menu__item:nth-last-child(20) > span {
  opacity: 0;
  transition-delay: 0.8s;
}
.site-header__menu.remove .site-header__menu__photos {
  opacity: 0;
  transition-delay: 0s;
}
.site-header__menu__inner {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.site-header__menu__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.site-header__menu__photos {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media all and (min-width: 600px) {
  .site-header__menu__photos {
    display: block;
  }
}
.site-header__menu__photos__item {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
  max-width: 400px;
}
.site-header__menu__photos__item.active {
  opacity: 1;
}
.site-header__menu__photos__item.current {
  opacity: 1;
  z-index: 0;
}
.site-header__menu__photos__item img {
  width: 100%;
}
.site-header__menu__photo {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.site-header__menu__photo.active {
  opacity: 1;
}
.site-header__menu__photo > img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  left: 0%;
  bottom: 0;
}
.site-header__menu__photo__mob {
  display: none;
}

.menu--main {
  padding: 100px 0 0;
}
.menu--main .menu__list {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media all and (min-width: 600px) {
  .menu--main .menu__list {
    width: 260px;
    min-height: auto;
  }
}
@media all and (min-width: 600px) {
  .menu--main .menu__list {
    width: 320px;
  }
}
.menu--main .menu__list.menu__list--submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 100px);
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
@media all and (min-width: 400px) {
  .menu--main .menu__list.menu__list--submenu {
    left: calc(100% + 120px);
  }
}
@media all and (min-width: 450px) {
  .menu--main .menu__list.menu__list--submenu {
    left: 100%;
  }
}
@media all and (min-width: 600px) {
  .menu--main .menu__list.menu__list--submenu {
    height: auto;
    width: 100%;
    top: auto;
    margin-top: -31px;
  }
}
@media all and (min-width: 900px) {
  .menu--main .menu__list.menu__list--submenu {
    left: 120%;
  }
}
@media all and (min-width: 1200px) {
  .menu--main .menu__list.menu__list--submenu {
    left: 200%;
    width: calc(100% + 50px);
    margin-top: -55px;
  }
}
.menu--main .menu__list .menu__item {
  list-style: none;
  position: relative;
}
.menu--main .menu__list .menu__item span {
  display: none;
}
.menu--main .menu__list .menu__item.selected > .menu__image {
  opacity: 1;
}
.menu--main .menu__list .menu__item .menu__image {
  position: absolute;
  width: 380px;
  height: 473px;
  top: -230px;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: none;
  overflow: hidden;
}
@media all and (min-width: 600px) {
  .menu--main .menu__list .menu__item .menu__image {
    display: block;
  }
}
.menu--main .menu__list .menu__item .menu__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu--main .menu__list .menu__item .menu__image img {
  width: 100%;
  opacity: 0.7;
}
.menu--main .menu__list.menu__list--level-0 {
  transform: translateX(0);
  transition: transform 0.3s ease;
  position: relative;
}
.menu--main .menu__list.menu__list--level-0.submenu-open {
  transform: translateX(-155%);
}
@media all and (min-width: 450px) {
  .menu--main .menu__list.menu__list--level-0.submenu-open {
    transform: translateX(-105%);
  }
}
@media all and (min-width: 600px) {
  .menu--main .menu__list.menu__list--level-0.submenu-open {
    transform: translateX(0);
  }
}
.menu--main .menu__list.menu__list--level-0 .menu__item span {
  padding-right: 10px;
}
.menu--main .menu__list.menu__list--level-0 .menu__item:last-child {
  padding-bottom: 0;
}
.menu--main .menu__list.menu__list--level-0 .menu__item.menu__item--current > .menu__link a {
  text-decoration: underline;
}
.menu--main .menu__list.menu__list--level-0 .menu__item.menu__item--has-children {
  position: initial;
}
@media all and (min-width: 600px) {
  .menu--main .menu__list.menu__list--level-0 .menu__item.menu__item--has-children {
    position: relative;
  }
}
.menu--main .menu__list.menu__list--level-0 .menu__item.menu__item--has-children.active a {
  text-decoration: underline;
}
.menu--main .menu__list.menu__list--level-0 .menu__item--current a {
  text-decoration: underline !important;
}
.menu--main .menu__list.menu__list--level-0 .menu__item .menu__link {
  position: relative;
  display: inline-block;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 1.35em;
  color: #fff;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.4s ease-out;
  cursor: pointer;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  font-size: 19px;
  letter-spacing: 4.5px;
  margin: 10px 0;
}
@media all and (min-width: 900px) {
  .menu--main .menu__list.menu__list--level-0 .menu__item .menu__link {
    font-size: 30px;
    margin: 13px 0;
  }
}
@media all and (min-width: 1600px) {
  .menu--main .menu__list.menu__list--level-0 .menu__item .menu__link {
    font-size: 45px;
  }
}
.menu--main .menu__list.menu__list--level-0 .menu__item .menu__link > span {
  padding-right: 10px;
}
.menu--main .menu__list.menu__list--level-0 .menu__item .menu__link:hover {
  text-decoration: underline;
}
.menu--main .menu__list.menu__list--level-1 {
  visibility: hidden;
}
.menu--main .menu__list.menu__list--level-1.open {
  visibility: visible;
  overflow: visible;
  top: 0;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(1) > .menu__link {
  opacity: 1;
  transition-delay: 0.07s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(2) > .menu__link {
  opacity: 1;
  transition-delay: 0.14s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(3) > .menu__link {
  opacity: 1;
  transition-delay: 0.21s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(4) > .menu__link {
  opacity: 1;
  transition-delay: 0.28s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(5) > .menu__link {
  opacity: 1;
  transition-delay: 0.35s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(6) > .menu__link {
  opacity: 1;
  transition-delay: 0.42s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(7) > .menu__link {
  opacity: 1;
  transition-delay: 0.49s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(8) > .menu__link {
  opacity: 1;
  transition-delay: 0.56s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(9) > .menu__link {
  opacity: 1;
  transition-delay: 0.63s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(10) > .menu__link {
  opacity: 1;
  transition-delay: 0.7s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(11) > .menu__link {
  opacity: 1;
  transition-delay: 0.77s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(12) > .menu__link {
  opacity: 1;
  transition-delay: 0.84s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(13) > .menu__link {
  opacity: 1;
  transition-delay: 0.91s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(14) > .menu__link {
  opacity: 1;
  transition-delay: 0.98s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(15) > .menu__link {
  opacity: 1;
  transition-delay: 1.05s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(16) > .menu__link {
  opacity: 1;
  transition-delay: 1.12s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(17) > .menu__link {
  opacity: 1;
  transition-delay: 1.19s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(18) > .menu__link {
  opacity: 1;
  transition-delay: 1.26s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(19) > .menu__link {
  opacity: 1;
  transition-delay: 1.33s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(20) > .menu__link {
  opacity: 1;
  transition-delay: 1.4s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(1) > span {
  opacity: 1;
  transition-delay: 0.07s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(2) > span {
  opacity: 1;
  transition-delay: 0.14s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(3) > span {
  opacity: 1;
  transition-delay: 0.21s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(4) > span {
  opacity: 1;
  transition-delay: 0.28s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(5) > span {
  opacity: 1;
  transition-delay: 0.35s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(6) > span {
  opacity: 1;
  transition-delay: 0.42s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(7) > span {
  opacity: 1;
  transition-delay: 0.49s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(8) > span {
  opacity: 1;
  transition-delay: 0.56s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(9) > span {
  opacity: 1;
  transition-delay: 0.63s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(10) > span {
  opacity: 1;
  transition-delay: 0.7s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(11) > span {
  opacity: 1;
  transition-delay: 0.77s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(12) > span {
  opacity: 1;
  transition-delay: 0.84s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(13) > span {
  opacity: 1;
  transition-delay: 0.91s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(14) > span {
  opacity: 1;
  transition-delay: 0.98s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(15) > span {
  opacity: 1;
  transition-delay: 1.05s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(16) > span {
  opacity: 1;
  transition-delay: 1.12s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(17) > span {
  opacity: 1;
  transition-delay: 1.19s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(18) > span {
  opacity: 1;
  transition-delay: 1.26s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(19) > span {
  opacity: 1;
  transition-delay: 1.33s;
}
.menu--main .menu__list.menu__list--level-1.open > .menu__item:nth-child(20) > span {
  opacity: 1;
  transition-delay: 1.4s;
}
.menu--main .menu__list.menu__list--level-1 .menu__back-btn {
  position: relative;
  display: block;
  margin-bottom: 20px;
  padding-left: 55px;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 17px;
}
@media all and (min-width: 600px) {
  .menu--main .menu__list.menu__list--level-1 .menu__back-btn {
    display: none;
  }
}
.menu--main .menu__list.menu__list--level-1 .menu__back-btn:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  left: -4px;
  background-size: 100%;
  background-image: url(../svg//arrow-next.svg);
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(-180deg);
  top: -7px;
}
.menu--main .menu__list.menu__list--level-1 .menu__item {
  max-width: 190px;
}
@media all and (min-width: 1200px) {
  .menu--main .menu__list.menu__list--level-1 .menu__item {
    max-width: 100%;
  }
}
.menu--main .menu__list.menu__list--level-1 .menu__item .menu__link {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 17px;
  position: relative;
  display: inline-block;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 1.25em;
  color: #fff;
  transition: color 0.4s ease;
  opacity: 0;
  transition: color 0.3s ease, opacity 0.8s ease-out;
  color: #C46428;
  text-decoration: none !important;
  margin: 10px 0;
}
@media all and (min-width: 900px) {
  .menu--main .menu__list.menu__list--level-1 .menu__item .menu__link {
    margin: unset;
  }
}
@media all and (min-width: 1600px) {
  .menu--main .menu__list.menu__list--level-1 .menu__item .menu__link {
    font-size: 21px;
  }
}
.menu--main .menu__list.menu__list--level-1 .menu__item .menu__link:hover {
  text-decoration: underline !important;
}

@media all and (min-width: 600px) {
  .menu__list.menu__list--submenu.menu__list--level-1.open .menu__item {
    padding: 5px 0;
  }
}
@media all and (min-width: 1200px) {
  .menu__list.menu__list--submenu.menu__list--level-1.open .menu__item {
    padding: 7px 0;
  }
}
.menu__list.menu__list--submenu.menu__list--level-1.open .menu__item--current a {
  text-decoration: underline !important;
}

.menu__item.menu__item--ancestor.menu__item--parent.menu__item--has-children.active span.menu__link {
  text-decoration: underline;
}

body.menu-open .site-header__logo,
body.menu-open .site-header__book {
  display: none;
}
body.menu-open .component-hero-home__text {
  z-index: 1;
}

.menu__list.menu__list--level-0::after {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
@media all and (min-width: 600px) {
  .menu__list.menu__list--level-0::after {
    content: "";
    background-color: #C46428;
    position: absolute;
    width: 1px;
    height: 100%;
    bottom: 0;
    right: 30px;
  }
}
@media all and (min-width: 900px) {
  .menu__list.menu__list--level-0::after {
    right: -30px;
  }
}
@media all and (min-width: 1200px) {
  .menu__list.menu__list--level-0::after {
    right: -225px;
  }
}

.site-header__menu.open .menu__list.menu__list--level-0::after {
  opacity: 1;
}
.site-header__menu.remove .menu__list.menu__list--level-0::after {
  opacity: 0;
}

.menu--secondary {
  padding: 40px 0 0 0;
}
@media all and (min-width: 600px) {
  .menu--secondary {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 100px 0;
  }
}
@media all and (min-width: 900px) {
  .menu--secondary {
    position: relative;
    right: -43px;
  }
}
@media all and (min-width: 1400px) {
  .menu--secondary {
    right: unset;
  }
}
.menu--secondary .menu__list {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (min-width: 600px) {
  .menu--secondary .menu__list {
    flex-direction: row;
  }
}
.menu--secondary .menu__list .menu__item {
  list-style: none;
}
.menu--secondary .menu__list .menu__item {
  padding: 5px 0;
}
@media all and (min-width: 600px) {
  .menu--secondary .menu__list .menu__item {
    padding: 10px 20px 10px 0;
    display: inline-block;
    line-height: 1.2em;
  }
}
.menu--secondary .menu__list .menu__item:last-child {
  padding-bottom: 0;
  padding-right: 0;
}
.menu--secondary .menu__list .menu__item.menu__item--current > .menu__link a {
  text-decoration: underline !important;
}
.menu--secondary .menu__list .menu__item.menu--underline {
  margin-bottom: 15px;
}
.menu--secondary .menu__list .menu__item.menu--underline .menu__link {
  padding: 0 0 15px 0;
}
.menu--secondary .menu__list .menu__item .menu__link {
  font-size: 17px !important;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1em;
  color: #fff;
  transition: color 0.4s ease;
  transition: color 0.3s ease, transform 0.8s ease-out;
  cursor: pointer;
}
.menu--secondary .menu__list .menu__item .menu__link:hover {
  text-decoration: underline;
}
.menu--secondary .menu__list.menu__list--level-0:after {
  content: none;
}

.newsletter-dark-theme .yikes-easy-mc-form {
  position: relative;
}
.newsletter-dark-theme .yikes-easy-mc-form label {
  margin-bottom: 0;
}
.newsletter-dark-theme .yikes-easy-mc-form label > span {
  display: none;
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email] {
  display: block;
  z-index: 2;
  width: 100%;
  padding: 20px 100px 30px 0;
  outline: none;
  line-height: 1em;
  position: relative;
  color: #C46428;
  border: none;
  border-bottom: 1px solid #C46428;
  background-color: transparent;
  font-size: 15px;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form input[type=email] {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]::-webkit-input-placeholder {
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form input[type=email]::-webkit-input-placeholder {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
  opacity: 1;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-moz-placeholder {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]::-moz-placeholder {
  /* Firefox 19+ */
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
  opacity: 1;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form input[type=email]::-moz-placeholder {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-ms-input-placeholder {
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-ms-input-placeholder {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]:focus {
  outline: none;
}
.newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-webkit-autofill, .newsletter-dark-theme .yikes-easy-mc-form input[type=email]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 70px transparent inset !important;
  -webkit-text-fill-color: #C46428 !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label {
  padding-left: 40px;
  position: relative;
  margin-top: 10px;
  min-height: 35px;
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label input[type=checkbox]:checked + .yikes-mailchimp-eu-compliance-text:after {
  background-color: #C46428;
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text {
  font-size: 15px;
  line-height: 1.5em;
  cursor: pointer;
  max-width: 480px;
  display: block;
  width: auto;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (min-width: 900px) {
  .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text {
    font-size: 18px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:before, .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
  content: "";
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  margin-top: 3px;
  border: 1px solid #c46428;
  background-color: transparent;
  box-sizing: content-box;
  border-radius: none;
}
@media all and (min-width: 600px) {
  .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:before, .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
    width: 22px;
    height: 22px;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
  width: 20px;
  height: 20px;
  border: none;
  top: 0;
  left: 0;
}
@media all and (min-width: 600px) {
  .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
    width: 24px;
    height: 24px;
  }
}
@media all and (-ms-high-contrast: none) {
  .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
    /* IE11 */
  }
  .newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after *::-ms-backdrop,
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after .foo {
    color: #fff;
  }
}
.newsletter-dark-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text a {
  color: #C46428;
  text-decoration: underline;
}
.newsletter-dark-theme .yikes-easy-mc-success-message {
  background: transparent;
  color: #C46428;
  padding: 0;
  opacity: 1 !important;
  width: 100%;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
}
.newsletter-dark-theme .yikes-easy-mc-error-message {
  background: transparent;
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #C46428;
  font-size: 18px;
  font-weight: 400;
  padding: 0;
}
.newsletter-dark-theme .yikes-easy-mc-error-message a {
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #C46428;
  font-size: 18px;
  text-decoration: underline;
}
.newsletter-dark-theme .yikes-mailchimp-preloader {
  position: absolute;
  width: 25px;
  height: 25px;
}

.newsletter-light-theme .yikes-easy-mc-form {
  margin-top: 20px;
}
.newsletter-light-theme .yikes-easy-mc-form label {
  margin-bottom: 0;
}
.newsletter-light-theme .yikes-easy-mc-form label > span {
  display: none;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email] {
  display: block;
  z-index: 2;
  width: 100%;
  padding: 20px 50px 20px 20px;
  outline: none;
  font-weight: 400;
  line-height: 1em;
  position: relative;
  color: #000;
  border-bottom: 1px solid #C46428;
  background-color: transparent;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]::-webkit-input-placeholder {
  color: #000;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]:-moz-placeholder {
  /* Firefox 18- */
  color: #000;
  opacity: 1;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]::-moz-placeholder {
  /* Firefox 19+ */
  color: #000;
  opacity: 1;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]:-ms-input-placeholder {
  color: #000;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]:focus {
  outline: none;
}
.newsletter-light-theme .yikes-easy-mc-form input[type=email]:-webkit-autofill, .newsletter-light-theme .yikes-easy-mc-form input[type=email]:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 70px #fff inset;
  -webkit-text-fill-color: #000 !important;
  background-clip: content-box !important;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label {
  padding-left: 25px;
  position: relative;
  margin-top: 10px;
  min-height: 35px;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label input[type=checkbox]:checked + .yikes-mailchimp-eu-compliance-text:after {
  background-color: #000;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text {
  font-weight: 400;
  line-height: 1.2em;
  color: #000;
  cursor: pointer;
  display: block;
  width: auto;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:before, .newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  margin-top: -3px;
  border: 1px solid black;
  background-color: transparent;
  box-sizing: content-box;
  border-radius: none;
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
  width: 10px;
  height: 10px;
  border: none;
  top: 6px;
  left: 6px;
}
@media all and (-ms-high-contrast: none) {
  .newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after {
    /* IE11 */
  }
  .newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after *::-ms-backdrop,
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text:after .foo {
    color: #000;
  }
}
.newsletter-light-theme .yikes-easy-mc-form .yikes-mailchimp-eu-compliance-label .yikes-mailchimp-eu-compliance-text a {
  color: #000;
  text-decoration: underline;
}
.newsletter-light-theme .yikes-easy-mc-success-message {
  background: transparent;
  font-weight: 400;
  color: #000;
  padding: 0;
  opacity: 1 !important;
  width: 100%;
}
.newsletter-light-theme .yikes-easy-mc-error-message {
  background: transparent;
  color: #000;
  font-weight: 400;
  padding: 0;
}
.newsletter-light-theme .yikes-easy-mc-error-message a {
  color: #000;
  text-decoration: underline;
}
.newsletter-light-theme .yikes-mailchimp-preloader {
  position: absolute;
  width: 25px;
  height: 25px;
}

.galleries {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 100px 0 30px 0;
}
@media all and (min-width: 900px) {
  .galleries {
    padding: 150px 0 30px 0;
  }
}
@media all and (min-width: 1400px) {
  .galleries {
    padding: 280px 0 30px 0;
  }
}
.galleries__inner {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}
.galleries__inner .photo-gallery {
  background-color: #fff;
  padding: 25px 50px 85px 50px;
  width: calc(100% - 50px);
}
@media all and (min-width: 600px) {
  .galleries__inner .photo-gallery {
    width: calc(50% - 50px);
    padding: 25px 20px 80px 20px;
  }
}
@media all and (min-width: 1200px) {
  .galleries__inner .photo-gallery {
    width: calc(33% - 50px);
    padding: 50px 50px 110px 50px;
  }
}
.galleries__inner .photo-gallery img {
  aspect-ratio: 355/405;
  cursor: pointer;
}
.galleries__inner .photo-gallery__inner {
  height: 100%;
}
.galleries__inner .photo-gallery__content__title {
  text-align: center;
  margin-bottom: 20px;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (min-width: 900px) {
  .galleries__inner .photo-gallery__content__title {
    margin-bottom: 30px;
  }
}
.galleries__inner .photo-gallery__image {
  height: 100%;
}
.galleries__title {
  text-align: center;
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  margin-bottom: 40px;
}
@media all and (min-width: 900px) {
  .galleries__title {
    margin-bottom: 80px;
  }
}

.error404 {
  width: 100%;
  position: relative;
}
.error404__link {
  position: absolute;
  z-index: 1;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.error404__link a {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 17px;
}

#ccc #ccc-notify.ccc-notify__box {
  width: 330px !important;
  height: auto;
  padding: 20px !important;
  flex-direction: column;
  left: 10px;
  right: auto;
  bottom: 10px;
  top: auto;
  transform: translate(0);
  border-radius: 0 !important;
  animation-name: unset;
  max-height: unset;
}
@media all and (min-width: 600px) {
  #ccc #ccc-notify.ccc-notify__box {
    max-height: unset !important;
    height: auto !important;
    left: 10px !important;
    max-width: 600px;
    transform: translate(0) !important;
    top: unset !important;
  }
}
@media all and (min-width: 900px) {
  #ccc #ccc-notify.ccc-notify__box {
    width: auto !important;
    max-width: 460px !important;
  }
}
#ccc .ccc-notify-text h1 {
  padding-right: unset !important;
}
#ccc #ccc-icon {
  display: none;
}
#ccc .ccc-notify-button.ccc-link.ccc-tabbable {
  border: unset;
  border-bottom: 1px solid #262626;
  color: #262626 !important;
}
#ccc h1, #ccc h2, #ccc h3 {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 25px !important;
  font-weight: 500 !important;
}
@media all and (min-width: 900px) {
  #ccc h1, #ccc h2, #ccc h3 {
    font-size: 30px !important;
  }
}
#ccc .ccc-intro, #ccc #ccc-necessary-description {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px !important;
}
#ccc .optional-cookie p {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px !important;
}
#ccc #ccc-recommended-settings span, #ccc #ccc-reject-settings span {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 19px !important;
  text-transform: uppercase;
}
#ccc #ccc-dismiss-button span {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 19px !important;
  font-weight: 400 !important;
}
#ccc .ccc-notify-button, #ccc .ccc-module--popup #ccc-content {
  border-radius: 0 !important;
}
#ccc .ccc-content--light .ccc-button-solid {
  font-weight: unset !important;
}
#ccc .ccc-notify-buttons {
  padding-right: unset !important;
  align-self: flex-start !important;
}
#ccc .ccc-notify-buttons span {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px !important;
}
#ccc .ccc-notify-text p {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 14px !important;
}
#ccc #ccc-notify-accept {
  outline: none !important;
}
#ccc #ccc-notify-accept span {
  color: #C46428 !important;
}
#ccc #ccc-info-link {
  display: none !important;
}

#ccc #ccc-title {
  font-weight: 500 !important;
  font-size: 25px !important;
}
@media all and (min-width: 900px) {
  #ccc #ccc-title {
    font-size: 30px !important;
  }
}

#ccc-notify #ccc-notify-title {
  color: #262626 !important;
}
#ccc-notify .ccc-notify-text p {
  color: #262626 !important;
}

.ccc-notify-text h1 {
  line-height: 1.2em !important;
}

#ccc-button-holder button span {
  color: #C46428 !important;
}

#ccc #ccc-button-holder #ccc-recommended-settings, #ccc #ccc-button-holder #ccc-reject-settings {
  padding: 10px 8px 7px 8px !important;
  outline: none !important;
}
#ccc #ccc-dismiss-button {
  padding: 10px 8px 7px 8px !important;
}
#ccc .checkbox-toggle-toggle {
  border: 2px solid #fff !important;
}
#ccc .checkbox-toggle-toggle::after {
  left: 8px !important;
}

.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  padding: 20px 20px;
  z-index: 9;
  background-color: transparent;
  color: #000;
}
@media all and (min-width: 600px) {
  .site-header {
    padding: 25px 30px;
  }
}
@media all and (min-width: 900px) {
  .site-header {
    padding: 40px;
  }
}
@media all and (min-width: 1600px) {
  .site-header {
    padding: 40px 50px;
  }
}
.site-header:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-100%);
  background-color: #F2EDE9;
  transition: transform 0.4s easing("outQuart");
  z-index: -2;
}
.site-header--orange .site-header__logo svg path {
  fill: #C46428;
}
.site-header--orange .site-header__burger__icon svg path {
  stroke: #C46428;
}
.site-header--orange .site-header__burger__icon:hover svg path {
  stroke: #333333;
}
.site-header--orange .site-header__phone__icon svg path {
  stroke: #C46428;
}
.site-header--orange .site-header__phone__icon:hover svg path {
  stroke: #333333;
}
.site-header--orange .site-header__mail__icon svg path {
  stroke: #C46428;
}
.site-header--orange .site-header__mail__icon svg line {
  stroke: #C46428;
  fill: #C46428;
}
.site-header--orange .site-header__mail__icon svg rect {
  stroke: #C46428;
}
.site-header--orange .site-header__mail__icon:hover svg path {
  stroke: #333333;
}
.site-header--orange .site-header__mail__icon:hover svg line {
  stroke: #333333;
  fill: #333333;
}
.site-header--orange .site-header__mail__icon:hover svg rect {
  stroke: #333333;
}
.site-header--orange .lang .lang__current {
  color: #C46428 !important;
}
.site-header--orange .lang .lang__current:hover {
  color: #333333 !important;
}
.site-header--orange .lang .lang__list__item a {
  color: #C46428;
}
.site-header--orange .lang .lang__list__item a:hover {
  color: #333333;
}
.site-header--orange .site-header__book svg path {
  fill: #C46428;
  stroke: #C46428;
}
.site-header--orange .site-header__book .btn__text {
  color: #C46428 !important;
}
.site-header--orange .site-header__book:hover .btn__text {
  color: #333333 !important;
}
.site-header--orange .site-header__book:hover svg path {
  fill: #333333;
  stroke: #333333;
}
.site-header.scrolled {
  padding: 10px 20px;
}
@media all and (min-width: 1200px) {
  .site-header.scrolled {
    padding: 10px 50px;
  }
}
.site-header.scrolled:after {
  transform: translateY(0);
}
.site-header.scrolled .site-header__logo svg {
  display: none;
}
.site-header.scrolled .site-header__logo__noletters {
  display: block;
}
.site-header.scrolled .site-header__logo__noletters svg {
  display: block;
  max-width: 100px;
  height: auto;
}
@media all and (min-width: 900px) {
  .site-header.scrolled .site-header__logo__noletters svg {
    max-width: 170px;
  }
}
.site-header.scrolled .site-header__logo__noletters svg path {
  fill: #C46428;
}
.site-header.scrolled .site-header__burger__icon svg path {
  stroke: #C46428;
}
.site-header.scrolled .site-header__burger__icon:hover svg path {
  stroke: #333333;
}
.site-header.scrolled .site-header__phone__icon svg path {
  stroke: #C46428;
}
.site-header.scrolled .site-header__phone__icon:hover svg path {
  stroke: #333333;
}
.site-header.scrolled .site-header__mail__icon svg path {
  stroke: #C46428;
}
.site-header.scrolled .site-header__mail__icon svg line {
  stroke: #C46428;
  fill: #C46428;
}
.site-header.scrolled .site-header__mail__icon svg rect {
  stroke: #C46428;
}
.site-header.scrolled .site-header__mail__icon:hover svg path {
  stroke: #333333;
}
.site-header.scrolled .site-header__mail__icon:hover svg line {
  stroke: #333333;
  fill: #333333;
}
.site-header.scrolled .site-header__mail__icon:hover svg rect {
  stroke: #333333;
}
.site-header.scrolled .lang .lang__current {
  color: #C46428 !important;
}
.site-header.scrolled .lang .lang__current:hover {
  color: #333333 !important;
}
.site-header.scrolled .lang .lang__list__item a {
  color: #C46428;
}
.site-header.scrolled .lang .lang__list__item a:hover {
  color: #333333;
}
.site-header.scrolled .site-header__book svg path {
  fill: #C46428;
  stroke: #C46428;
}
.site-header.scrolled .site-header__book .btn__text {
  color: #C46428;
}
.site-header.scrolled .site-header__book .btn--solid {
  padding: 8px 16px;
}
.site-header.scrolled .site-header__book:hover .btn__text {
  color: #333333;
}
.site-header.scrolled .site-header__book:hover svg path {
  fill: #333333;
  stroke: #333333;
}
.site-header.is-visible .site-header__left {
  opacity: 1;
  transition-delay: 0.2s;
}
.site-header.is-visible .site-header__middle {
  opacity: 1;
  transition-delay: 0.3s;
}
.site-header.is-visible .site-header__right {
  opacity: 1;
  transition-delay: 0.4s;
}
body.page-template-template-simple .site-header .site-header__logo svg path, body.page-template-template-contact .site-header .site-header__logo svg path {
  fill: #333333;
}
body.page-template-template-simple .site-header .site-header__burger__icon svg path, body.page-template-template-contact .site-header .site-header__burger__icon svg path {
  stroke: #333333;
}
body.page-template-template-simple .site-header .site-header__phone__icon svg path, body.page-template-template-contact .site-header .site-header__phone__icon svg path {
  stroke: #333333;
}
.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__logo svg {
  display: block;
  max-width: 140px;
}
@media all and (min-width: 600px) {
  .site-header__logo svg {
    max-width: 180px;
  }
}
@media all and (min-width: 900px) {
  .site-header__logo svg {
    max-width: 210px;
  }
}
@media all and (min-width: 1600px) {
  .site-header__logo svg {
    max-width: 100%;
  }
}
.site-header__logo svg path {
  transition: fill 0.4s ease;
}
.site-header__logo__noletters {
  display: none;
}
.site-header__left {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.site-header__burger {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 900px) {
  .site-header__burger {
    transform-origin: center;
    transition: transform 0.4s ease;
  }
}
body.menu-open .site-header__burger {
  margin-top: 5px;
}
@media all and (min-width: 1200px) {
  body.menu-open .site-header__burger {
    margin-top: 15px;
  }
}
.site-header__burger__close {
  display: none;
}
.site-header__burger.open .site-header__burger__icon svg {
  display: none;
}
.site-header__burger.open .site-header__burger__icon svg .burger-close {
  opacity: 1;
  transform: rotate(180deg);
}
.site-header__burger.open .site-header__burger__icon svg .burger-open {
  opacity: 0;
  transform: rotate(180deg);
}
.site-header__burger.open .site-header__burger__close {
  display: block;
}
.site-header__burger.open .site-header__burger__close svg {
  display: block;
}
.site-header__burger__icon svg {
  display: block;
  width: 42px;
  height: 36px;
  visibility: visible;
}
.site-header__burger__icon svg path {
  transition: all 0.3s ease;
}
.site-header__burger__icon svg .burger-close {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform-origin: center center;
}
.site-header__burger__icon svg .burger-open {
  opacity: 1;
  stroke: #000;
  transition: stroke 0.4s ease, opacity 0.6s ease, transform 0.6s ease;
  transform-origin: center center;
}
.site-header__burger__icon:hover svg path {
  stroke: #C46428;
}
.site-header__middle {
  opacity: 0;
  transition: opacity 0.8s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body.menu-open .site-header__middle {
  display: none;
}
.site-header__right {
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.site-header__phone, .site-header__mail {
  margin-right: 50px;
}
.site-header__phone__icon svg, .site-header__mail__icon svg {
  display: block;
  width: 75%;
}
.site-header__phone__icon svg path, .site-header__phone__icon svg line, .site-header__phone__icon svg rect, .site-header__mail__icon svg path, .site-header__mail__icon svg line, .site-header__mail__icon svg rect {
  transition: all 0.3s ease;
}
@media all and (min-width: 1600px) {
  .site-header__phone__icon svg, .site-header__mail__icon svg {
    width: 100% !important;
  }
}
body.menu-open .site-header__phone, body.menu-open .site-header__mail {
  display: block;
}
@media all and (min-width: 900px) {
  body.menu-open .site-header__phone, body.menu-open .site-header__mail {
    display: none;
  }
}
body.menu-open .site-header__phone svg path, body.menu-open .site-header__phone svg line, body.menu-open .site-header__phone svg rect, body.menu-open .site-header__mail svg path, body.menu-open .site-header__mail svg line, body.menu-open .site-header__mail svg rect {
  stroke: #C46428;
}
.site-header__phone:hover svg path, .site-header__mail:hover svg path {
  stroke: #C46428;
}
.site-header__phone:hover svg line, .site-header__mail:hover svg line {
  stroke: #C46428;
  fill: #C46428;
}
.site-header__phone:hover svg rect, .site-header__mail:hover svg rect {
  stroke: #C46428;
}
body.menu-open .site-header__phone {
  margin-right: 0;
}
.site-header__mail {
  display: none;
}
@media all and (min-width: 900px) {
  .site-header__mail {
    display: inline-block;
  }
}
body.menu-open .site-header__mail {
  margin-right: 15px;
}
@media all and (max-width: 599px) {
  .site-header__phone {
    display: none;
  }
}
.site-header__book {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.site-header__book a {
  text-decoration: none;
}
.site-header__book svg {
  max-width: 80px;
}
@media all and (min-width: 1200px) {
  .site-header__book svg {
    max-width: 100%;
  }
}
.site-header__book svg path {
  transition: all 0.3s ease;
}
.site-header__book .btn--solid {
  padding: 5px 0;
}
@media all and (min-width: 1200px) {
  .site-header__book .btn--solid {
    padding: 7px 16px;
  }
}
@media all and (min-width: 1600px) {
  .site-header__book .btn--solid {
    padding: 14px 16px;
  }
}
.site-header__book .btn--solid .btn__text {
  color: #fff;
  font-size: 21px;
  letter-spacing: 2.3px;
  transition: all 0.3s ease;
}
@media all and (min-width: 900px) {
  .site-header__book .btn--solid .btn__text {
    font-size: 23px;
  }
}
.site-header__book .btn--solid .btn__icon {
  margin: 0;
}
@media all and (min-width: 600px) {
  .site-header__book .btn--solid .btn__icon {
    display: none;
  }
}
.site-header__book .btn--solid .btn__icon svg {
  width: 33px;
  height: 33px;
}
.site-header__book:hover .btn__text {
  color: #C46428;
}
.site-header__book:hover svg path {
  stroke: #C46428;
}

body.show .site-header {
  opacity: 1;
}

body.hide .site-header {
  opacity: 0;
  pointer-events: none;
}

.lang {
  left: -20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s 0.1s ease;
  font-size: 18px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  position: relative;
  top: auto;
  display: inline-block;
  margin-right: 20px;
  margin-left: 35px;
}
@media all and (min-width: 600px) {
  .lang {
    top: calc(100% + 10px);
  }
}
@media all and (min-width: 900px) {
  .lang {
    font-size: 23px;
    left: 0;
  }
}
body.menu-open .lang {
  display: none;
}
.site-header.scrolled .lang:after {
  background-color: #333333;
}
.site-header.scrolled .lang .lang__current {
  color: #333333;
}
@media all and (min-width: 900px) {
  .lang:hover .lang__list {
    visibility: visible;
    opacity: 1;
  }
}
body.menu-open .lang {
  opacity: 1;
  visibility: visible;
}
.lang__current {
  color: #fff;
  cursor: pointer;
  transition: color 0.4s ease;
  text-transform: uppercase;
}
@media all and (min-width: 900px) {
  .lang__current {
    padding: 15px;
  }
}
.lang__current:hover {
  color: #C46428;
}
.lang__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  text-align: center;
  visibility: hidden;
  opacity: 1;
  transition: opacity 0.3s 0.1s ease;
  z-index: 1;
  margin-top: 3px;
}
@media all and (min-width: 900px) {
  .lang__list {
    margin-top: 6px;
  }
}
@media all and (max-width: 899px) {
  .lang__list.active {
    visibility: visible;
  }
}
.lang__list__item {
  position: relative;
  display: inline-block;
}
.lang__list__item.active a {
  opacity: 1;
}
.lang__list__item a {
  font-weight: 400;
  letter-spacing: 0em;
  color: #fff;
  padding: 4px 7px;
  display: block;
  transition: color 0.4s ease;
  text-decoration: none;
  text-transform: uppercase;
}
@media all and (min-width: 900px) {
  .lang__list__item a {
    padding: 7px;
  }
}
.lang__list__item a:hover {
  color: #C46428;
}

.hero-slider03 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slider03__inner {
  position: relative;
  width: 100%;
  height: 70dvh;
}
@media all and (min-width: 900px) {
  .hero-slider03__inner {
    height: 120dvh;
  }
}
.hero-slider03__item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.hero-slider03__item.swiper-slide-active .hero-slider03__item__content {
  opacity: 1;
  transition-delay: 0.4s;
}
.hero-slider03__item.swiper-slide-active .hero-slider03__item__bg {
  transform: scale(1);
}
.hero-slider03__item.swiper-slide-active .hero-slider03__item__content__title > span {
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero-slider03__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: transform 1s ease;
}
.hero-slider03__item__bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.68) 1%, rgba(0, 0, 0, 0.58) 50%, rgba(0, 0, 0, 0.2) 100%);
  opacity: 0.4;
}
.hero-slider03__item__content {
  position: absolute;
  text-align: left;
  opacity: 0;
  transition: opacity 0.6s ease;
  font-family: "peridotpe-regular-webfont", sans-serif;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-slider03__item__content__subtitle {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.hero-slider03__item__content__title {
  color: #fff;
  padding: 0;
  max-width: 1000px;
  overflow: hidden;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.hero-slider03__item__content__link {
  margin-top: 40px;
}
.hero-slider03__navigation {
  position: absolute;
  right: 30px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 2;
  transition: opacity 1.2s ease;
  display: none;
}
@media all and (min-width: 600px) {
  .hero-slider03__navigation {
    display: block;
  }
}
body.touch-device .hero-slider03__navigation {
  display: none;
}
.hero-slider03__navigation__paging {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1em;
  color: #fff;
  transform: translate(30px, -50px) rotate(90deg);
  transform-origin: top left;
  display: none;
}
@media all and (min-width: 600px) {
  .hero-slider03__navigation__paging {
    display: block;
  }
}
.hero-slider03__navigation__next, .hero-slider03__navigation__prev {
  position: relative;
  display: block;
  cursor: pointer;
}
.hero-slider03__navigation__next:hover svg path, .hero-slider03__navigation__prev:hover svg path {
  fill: #fff;
}
.hero-slider03__navigation__next svg, .hero-slider03__navigation__prev svg {
  width: 17px;
  height: 33px;
}
.hero-slider03__navigation__next svg path, .hero-slider03__navigation__prev svg path {
  transition: fill 0.3s ease;
}

.video-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.video-hero--contain .video-hero__inner {
  aspect-ratio: 16/9;
  min-height: auto;
}
.video-hero--contain .plyr--video {
  max-height: unset;
}
.video-hero--contain .plyr--video iframe {
  top: auto;
  left: auto;
  transform: translate(0);
}
@media all and (min-width: 600px) {
  .video-hero__mobile-checker {
    display: none;
  }
}
.video-hero__inner {
  position: relative;
  width: 100%;
  min-height: 70svh;
}
@media all and (min-width: 900px) {
  .video-hero__inner {
    min-height: 100svh;
  }
}
.video-hero__inner video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
body.video-hero-playing .video-hero__inner video {
  z-index: 0;
}
@media all and (max-width: 599px) {
  .video-hero__main iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
.video-hero__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}
.video-hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1b+0,1d1d1b+40,946e55+100&0.5+0,0.2+40,0.2+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5) 0%, rgba(29, 29, 27, 0.2) 40%, rgba(148, 110, 85, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#801d1d1b", endColorstr="#33946e55", GradientType=0);
  /* IE6-9 */
  opacity: 1;
  transition: opacity 0.6s ease;
}
.video-hero__bg video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-hero .plyr--video:after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1b+0,1d1d1b+40,946e55+100&0.5+0,0.2+40,0.2+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5) 0%, rgba(29, 29, 27, 0.2) 40%, rgba(148, 110, 85, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#801d1d1b", endColorstr="#33946e55", GradientType=0);
  /* IE6-9 */
}
.video-hero .plyr--video .plyr__control {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 1px solid #fff;
}
.video-hero__muted {
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: block;
  z-index: 1;
  cursor: pointer;
}
body.video-hero-playing .video-hero__muted {
  opacity: 1;
}
.video-hero__muted svg {
  display: block;
  width: 50px;
  height: 50px;
}
.video-hero__muted svg path {
  stroke: #fff;
}
.video-hero__muted svg path.muted-on {
  display: none;
}
.video-hero__muted svg circle {
  stroke: #fff;
}
body.video-hero-muted .video-hero__muted svg path.muted-on {
  display: block;
}
body.video-hero-muted .video-hero__muted svg path.muted-off {
  display: none;
}
.video-hero__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
  padding: 20px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
body.video-hero-playing .video-hero__content {
  opacity: 0;
}
.video-hero__headline {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.video-hero__title {
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}
.video-hero__play {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
  display: block;
  cursor: pointer;
  margin-top: 20px;
}
@media all and (min-width: 900px) {
  .video-hero__play {
    margin-top: 40px;
  }
}
body.video-hero-playing .video-hero__play {
  opacity: 0;
}
.video-hero__play svg {
  display: block;
  width: 68px;
  height: 68px;
}
.video-hero__play svg path {
  stroke: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-slider__inner {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media all and (min-width: 600px) {
  .hero-slider__inner {
    height: 100vh;
  }
}
.hero-slider__item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.hero-slider__item.swiper-slide-active .hero-slider__item__content {
  opacity: 1;
  transition-delay: 0.4s;
}
.hero-slider__item.swiper-slide-active .hero-slider__item__bg {
  transform: scale(1);
}
.hero-slider__item.swiper-slide-active .hero-slider__item__content__title > span {
  transform: translateY(0);
  transition-delay: 0.5s;
}
.hero-slider__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: transform 1s ease;
}
.hero-slider__item__content {
  position: relative;
  text-align: left;
  padding: 0 20px 30px;
  opacity: 0;
  transition: opacity 0.6s ease;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.hero-slider__item__content__subtitle {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  color: #fff;
  margin-bottom: 10px;
}
.hero-slider__item__content__title {
  color: #fff;
  padding: 0;
  max-width: 1000px;
  overflow: hidden;
}
.hero-slider__item__content__link {
  margin-top: 40px;
}
body.error404 .hero-slider .hero-slider__item {
  align-items: center;
}
body.error404 .hero-slider .hero-slider__item__content__subtitle,
body.error404 .hero-slider .hero-slider__item__content__title {
  font-size: 20px;
}
.hero-slider__navigation {
  position: absolute;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 2;
  transition: opacity 1.2s ease;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 0 25px;
}
@media all and (min-width: 600px) {
  .hero-slider__navigation {
    padding: 0 50px;
  }
}
.hero-slider__navigation__next, .hero-slider__navigation__prev {
  position: relative;
  display: block;
  cursor: pointer;
}
.hero-slider__navigation__next svg, .hero-slider__navigation__prev svg {
  width: 75%;
}
@media all and (min-width: 900px) {
  .hero-slider__navigation__next svg, .hero-slider__navigation__prev svg {
    width: 100%;
  }
}
.hero-slider__navigation__next svg path, .hero-slider__navigation__prev svg path {
  stroke: #fff;
  transition: fill 0.3s ease;
}
.hero-slider__navigation__prev svg {
  transform: rotate(-180deg);
}

.error404 .hero-slider__item__content {
  text-align: center;
}

.video-block {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.video-block--contain .video-block__inner {
  aspect-ratio: 16/9;
  min-height: auto;
}
.video-block--contain .plyr--video {
  max-height: unset;
}
.video-block--contain .plyr--video iframe {
  top: auto;
  left: auto;
  transform: translate(0);
}
.video-block__inner {
  position: relative;
  width: 100%;
  min-height: 60vh;
}
@media all and (min-width: 900px) {
  .video-block__inner {
    min-height: 100vh;
  }
}
.video-block__inner video {
  position: absolute;
  z-index: -1;
}
.video-block-playing .video-block__inner video {
  z-index: 0;
}

.video-block__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.video-block__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1b+0,1d1d1b+40,946e55+100&0.5+0,0.2+40,0.2+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5) 0%, rgba(29, 29, 27, 0.2) 40%, rgba(148, 110, 85, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#801d1d1b", endColorstr="#33946e55", GradientType=0);
  /* IE6-9 */
  opacity: 1;
  transition: opacity 0.6s ease;
}
.video-block .plyr--video:after {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#1d1d1b+0,1d1d1b+40,946e55+100&0.5+0,0.2+40,0.2+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(29, 29, 27, 0.5) 0%, rgba(29, 29, 27, 0.2) 40%, rgba(148, 110, 85, 0.2) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#801d1d1b", endColorstr="#33946e55", GradientType=0);
  /* IE6-9 */
}
.video-block .plyr--video .plyr__control {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: 1px solid #fff;
}
.video-block__muted {
  opacity: 0;
  transition: opacity 0.4s ease;
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: block;
  z-index: 1;
  cursor: pointer;
}
.video-block-playing .video-block__muted {
  opacity: 1;
}

.video-block__muted svg {
  display: block;
  width: 50px;
  height: 50px;
}
.video-block__muted svg path {
  stroke: #fff;
}
.video-block__muted svg path.muted-on {
  display: none;
}
.video-block__muted svg circle {
  stroke: #fff;
}
.video-block-muted .video-block__muted svg path.muted-on {
  display: block;
}
.video-block-muted .video-block__muted svg path.muted-off {
  display: none;
}

.video-block__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.6s ease;
  padding: 20px;
}
.video-block-playing .video-block__content {
  opacity: 0;
}

.video-block__headline {
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.video-block__title {
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}
.video-block__play {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.4s ease;
  display: block;
  cursor: pointer;
  margin-top: 20px;
}
@media all and (min-width: 900px) {
  .video-block__play {
    margin-top: 40px;
  }
}
.video-block-playing .video-block__play {
  opacity: 0;
}

.video-block__play svg {
  display: block;
  width: 68px;
  height: 68px;
}
.video-block__play svg path {
  stroke: #fff;
}

.two-lines-title {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #C46428;
  text-align: center;
  padding-bottom: 20px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.two-lines-title__second {
  margin-top: 15px;
}
.two-lines-title__first, .two-lines-title__second {
  line-height: 1.2em;
}

.cross-banners01 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cross-banners01__inner {
  position: relative;
  width: 100%;
}
@media all and (max-width: 899px) {
  .cross-banners01__inner .row.no-gutters {
    flex-direction: column-reverse;
  }
}
.cross-banners01__right {
  margin-top: 40px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (min-width: 600px) {
  .cross-banners01__right {
    margin-top: 60px;
  }
}
@media all and (min-width: 900px) {
  .cross-banners01__right {
    margin-top: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.cross-banners01__title {
  margin: 25px 0;
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  line-height: 1.2em;
}
.cross-banners01__link {
  margin: 20px 0;
}
.cross-banners01__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cross-banners01__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.cross-banners01__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.cross-banners01__link:hover a {
  color: #262626;
}
.cross-banners01__link:hover svg path {
  stroke: #262626;
}
.cross-banners01__image img {
  display: block;
}
.cross-banners01__content h1, .cross-banners01__content h2, .cross-banners01__content h3 {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 15px;
}
@media all and (max-width: 899px) {
  .cross-banners01__image {
    width: 100%;
    margin: 60px auto 0 auto;
    z-index: 1;
  }
}

.carousel02 {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.carousel02__head__title {
  text-align: center;
  margin-bottom: 25px;
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
@media all and (min-width: 900px) {
  .carousel02__head__title {
    margin-bottom: 50px;
  }
}
.carousel02__items {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-left: 30px;
}
@media all and (min-width: 1400px) {
  .carousel02__items {
    margin-left: 150px;
  }
}
.carousel02__item {
  display: block;
  width: 100%;
}
@media all and (min-width: 900px) {
  .carousel02__item {
    max-width: 75vw;
  }
}
.carousel02__item__image {
  position: relative;
  width: 100%;
}
.carousel02__item__image img {
  display: block;
}
.carousel02__item__image__wrapper {
  position: relative;
}
.carousel02__item__image__wrapper::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.carousel02__item__big-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 100%;
  color: #fff;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  z-index: 1;
}
@media all and (min-width: 900px) {
  .carousel02__item__big-title {
    bottom: 40px;
    left: 40px;
  }
}
.carousel02__item__content {
  position: relative;
  width: 100%;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.carousel02__item__content__inner {
  position: relative;
  width: 100%;
  padding: 70px 20px 0;
}
@media all and (min-width: 600px) {
  .carousel02__item__content__inner {
    padding: 40px 140px 0 40px;
  }
}
@media all and (min-width: 900px) {
  .carousel02__item__content__inner {
    padding: 40px 160px 0 40px;
  }
}
.carousel02__item__text {
  max-width: 650px;
  padding-right: 15px;
}
.carousel02__item__link {
  margin-top: 20px;
}
.carousel02__item__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.carousel02__item__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.carousel02__item__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.carousel02__item__link:hover a {
  color: #262626;
}
.carousel02__item__link:hover svg path {
  stroke: #262626;
}
.carousel02__item__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.carousel02__item__features {
  margin-bottom: 20px;
}
.carousel02__navigation {
  position: absolute;
  right: 50px;
  top: calc(55vw + 20px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100px;
  transition: opacity 1.2s ease;
}
@media all and (min-width: 600px) {
  .carousel02__navigation {
    left: auto;
  }
}
@media all and (min-width: 900px) {
  .carousel02__navigation {
    right: calc(20% + 60px);
    top: calc(40vw + 20px);
  }
}
@media all and (min-width: 1200px) {
  .carousel02__navigation {
    width: 230px;
    top: calc(40vw + 50px);
  }
}
@media all and (min-width: 1400px) {
  .carousel02__navigation {
    right: calc(34% - 120px);
  }
}
.carousel02__navigation__next, .carousel02__navigation__prev {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.carousel02__navigation__next svg, .carousel02__navigation__prev svg {
  display: block;
  width: 35px;
  height: 60px;
}
@media all and (min-width: 1200px) {
  .carousel02__navigation__next svg, .carousel02__navigation__prev svg {
    width: 100%;
    height: 100%;
  }
}
.carousel02__navigation__next svg path, .carousel02__navigation__prev svg path {
  stroke: #C46428;
  transition: fill 0.3s ease;
}
.carousel02__navigation__prev svg {
  transform: rotate(-180deg);
}

.horizontal-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.horizontal-slider .heading__subtitle {
  margin-bottom: 50px;
}
.horizontal-slider__wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.horizontal-slider__slider {
  display: flex;
  gap: 40px;
  width: 100%;
  height: auto;
}
@media all and (max-width: 449px) {
  .horizontal-slider__slider {
    align-items: flex-start;
  }
}
.horizontal-slider__slide {
  pointer-events: none;
}
.horizontal-slider__slide img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 449px) {
  .horizontal-slider__slide img {
    height: auto;
    max-width: 300px;
  }
}

.text-with-images {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.text-with-images__left {
  width: 100%;
  height: 100%;
  background-color: #D37A38;
}
.text-with-images__left__smallimg {
  max-width: 300px;
  max-height: 300px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -100%);
  display: none;
  text-align: center;
}
@media all and (min-width: 900px) {
  .text-with-images__left__smallimg {
    display: block;
  }
}
.text-with-images__left__smallimg img {
  width: 50%;
  vertical-align: bottom;
}
@media all and (min-width: 1200px) {
  .text-with-images__left__smallimg img {
    width: 75%;
  }
}
@media all and (min-width: 1400px) {
  .text-with-images__left__smallimg img {
    width: 100%;
  }
}
.text-with-images__left__title {
  color: #fff;
  text-align: center;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 30px 0 30px;
}
@media all and (min-width: 900px) {
  .text-with-images__left__title {
    font-size: 25px;
  }
}
@media all and (min-width: 1200px) {
  .text-with-images__left__title {
    padding: 100px 30px 0 30px;
  }
}
@media all and (min-width: 1400px) {
  .text-with-images__left__title {
    font-size: 40px;
  }
}
@media all and (min-width: 1800px) {
  .text-with-images__left__title {
    font-size: 58px;
  }
}
.text-with-images__left__link {
  text-align: center;
  margin: 25px 0;
}
.text-with-images__left__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.text-with-images__left__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.text-with-images__left__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.text-with-images__left__link:hover a {
  color: #262626;
}
.text-with-images__left__link:hover svg path {
  stroke: #262626;
}
.text-with-images__left__link a {
  color: #fff;
}
.text-with-images__left__link a svg path {
  stroke: #fff;
}
.text-with-images__right__bigimg img {
  max-height: 1100px;
  vertical-align: bottom;
}

.text-with-button .row {
  margin: auto;
  text-align: center;
  font-family: "peridotpe-regular-webfont", sans-serif;
}

.zig-zag2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.zig-zag2__head {
  padding: 0 8.3333333333%;
  text-align: center;
}
.zig-zag2__head__title {
  margin-bottom: 40px;
}
.zig-zag2__head__subtitle {
  font-weight: normal;
  line-height: 1.2em;
  color: #000;
  margin-bottom: 15px;
}
.zig-zag2__head__button {
  margin-bottom: 60px;
}
.zig-zag2__elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media all and (min-width: 900px) {
  .zig-zag2__elements {
    flex-direction: row-reverse;
  }
}
.zig-zag2__item {
  width: 100%;
  margin-bottom: 100px;
}
.zig-zag2__item:last-child {
  margin-bottom: 0px;
}
@media all and (min-width: 900px) {
  .zig-zag2__item {
    width: calc(33.3333333333% + 40px);
    margin-bottom: 0px;
  }
  .zig-zag2__item:nth-child(2n+2) {
    margin-top: -200px;
  }
}
@media all and (min-width: 900px) {
  .zig-zag2__item__image {
    margin-top: 200px;
  }
}
.zig-zag2__item__title {
  margin-top: 45px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  color: #C46428;
  letter-spacing: 5.5px;
}
.zig-zag2__item__subtitle {
  margin-top: 10px;
  font-weight: normal;
  line-height: 1.1em;
  color: #000;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.zig-zag2__item__excerpt {
  font-family: "peridotpe-regular-webfont", sans-serif;
  margin-top: 25px;
}
.zig-zag2__item__button {
  margin-top: 25px;
}
.zig-zag2__item__button a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zig-zag2__item__button svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.zig-zag2__item__button svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.zig-zag2__item__button:hover a {
  color: #262626;
}
.zig-zag2__item__button:hover svg path {
  stroke: #262626;
}

.banners-with-bg {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #D37A38;
  z-index: -1;
  padding: 60px 30px;
}
@media all and (min-width: 1200px) {
  .banners-with-bg {
    padding: 130px 0;
  }
}
.banners-with-bg__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banners-with-bg__bg svg {
  width: 100%;
  height: 100%;
}
.banners-with-bg__info {
  padding: 30px 0;
  text-align: center;
}
@media all and (min-width: 900px) {
  .banners-with-bg__info {
    padding: 0 35px;
  }
}
@media all and (min-width: 1200px) {
  .banners-with-bg__info {
    padding: 0 75px;
  }
}
.banners-with-bg__title {
  color: #fff;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
@media all and (min-width: 900px) {
  .banners-with-bg__title {
    font-size: 19px;
  }
}
@media all and (min-width: 1200px) {
  .banners-with-bg__title {
    font-size: 26px;
  }
}
@media all and (min-width: 1400px) {
  .banners-with-bg__title {
    font-size: 38px;
  }
}
@media all and (min-width: 1600px) {
  .banners-with-bg__title {
    font-size: 50px;
  }
}
.banners-with-bg__link {
  margin-top: 20px;
}
.banners-with-bg__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.banners-with-bg__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.banners-with-bg__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.banners-with-bg__link:hover a {
  color: #262626;
}
.banners-with-bg__link:hover svg path {
  stroke: #262626;
}
@media all and (min-width: 900px) {
  .banners-with-bg__link {
    margin-top: 70px;
  }
}
.banners-with-bg__link a {
  color: #fff;
}
.banners-with-bg__link svg path {
  stroke: #fff;
}

.site-footer {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #fff;
  padding: 60px 0 20px;
}
@media all and (min-width: 900px) {
  .site-footer {
    padding: 80px 0 20px;
  }
}
.site-footer__title {
  margin-bottom: 10px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  color: #C46428;
}
.site-footer__info {
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.45em;
  color: #fff;
  margin-bottom: 40px;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (min-width: 900px) {
  .site-footer__info {
    margin-bottom: 60px;
  }
}
.site-footer__info a {
  color: #C46428;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer__info a:hover {
  color: #262626;
}
.site-footer__logo {
  margin-bottom: 25px;
}
@media all and (max-width: 600px) {
  .site-footer__logo svg {
    width: 65%;
  }
}
.site-footer__socials {
  display: flex;
  margin-bottom: 40px;
}
@media all and (min-width: 900px) {
  .site-footer__socials {
    margin-bottom: 60px;
  }
}
.site-footer__socials__item {
  margin-right: 30px;
}
.site-footer__socials__item:hover svg path {
  fill: #262626;
}
.site-footer__socials__item svg {
  display: block;
  width: 75%;
}
@media all and (min-width: 600px) {
  .site-footer__socials__item svg {
    width: 100%;
  }
}
.site-footer__socials__item svg path {
  fill: #C46428;
  transition: fill 0.4s ease;
}
.site-footer__menu {
  margin-bottom: 10px;
  margin-top: 0px;
}
@media all and (min-width: 900px) {
  .site-footer__menu {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.site-footer__menu .menu--footer .menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.site-footer__menu .menu--footer .menu__list .menu__item {
  padding: 2px 130px 2px 0;
}
.site-footer__menu .menu--footer .menu__list .menu__link {
  letter-spacing: 0em;
  line-height: 1.2em;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer__menu .menu--footer .menu__list .menu__link:hover {
  color: #262626;
}
.site-footer__newsletter {
  position: relative;
  margin-bottom: 40px;
}
.site-footer__newsletter__form {
  display: block;
  width: 100%;
  position: relative;
  margin: 0;
  position: relative;
}
@media all and (min-width: 600px) {
  .site-footer__newsletter__form {
    width: calc(100% - 80px);
  }
}
.site-footer__newsletter__form__btn {
  position: absolute;
  right: 0px;
  top: 10px;
  background-color: transparent;
  border: none;
  outline: none !important;
  transition: 0.4s ease;
  display: block;
}
@media all and (min-width: 600px) {
  .site-footer__newsletter__form__btn {
    z-index: 2;
  }
}
.site-footer__newsletter__form__btn svg {
  width: 75%;
}
@media all and (min-width: 600px) {
  .site-footer__newsletter__form__btn svg {
    width: 100%;
  }
}
.site-footer__newsletter__form__btn svg path {
  stroke: #C46428;
  transition: fill 0.4s ease;
}
.site-footer__newsletter__form .edit-link {
  display: none;
}
.site-footer__time-weather {
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.2em;
  color: #fff;
  margin-bottom: 60px;
}
@media all and (min-width: 900px) {
  .site-footer__time-weather {
    margin-bottom: 60px;
  }
}
.site-footer__copyright {
  letter-spacing: 0em;
  line-height: 1.2em;
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #C46428;
  font-size: 16px;
}
.site-footer__signature {
  letter-spacing: 0em;
  line-height: 1.2em;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 16px;
}
.site-footer__signature__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.site-footer__signature a {
  color: #C46428;
  text-decoration: none;
  transition: all 0.3s ease;
}
.site-footer__signature a:hover {
  color: #262626;
}
.site-footer__signature svg {
  position: relative;
  top: 2px;
}
.site-footer__signature svg path {
  fill: #C46428;
}
.site-footer__cookie-preferences {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 60px;
  height: 60px;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.site-footer__cookie-preferences svg path#triangle {
  fill: #C46428;
}

.title {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: #C46428;
  text-align: center;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.title__big {
  margin-top: 20px;
  padding-bottom: 10px;
}
.title.mt {
  margin-top: 100px;
}
@media all and (min-width: 1600px) {
  .title.mt {
    margin-top: 220px;
  }
}
.title__image {
  max-width: 120px;
  margin-bottom: 20px;
}
@media all and (min-width: 900px) {
  .title__image {
    max-width: 200px;
    margin-bottom: 50px;
  }
}

.cross-banners04 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cross-banners04__inner {
  position: relative;
  width: 100%;
}
@media all and (min-width: 900px) {
  .cross-banners04__inner {
    padding-bottom: 45px;
  }
}
@media all and (min-width: 900px) {
  .cross-banners04__inner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
    margin: 0 auto;
    gap: 35px;
  }
}
.cross-banners04__item {
  position: relative;
  margin-bottom: 40px;
  width: 100%;
}
@media all and (min-width: 900px) {
  .cross-banners04__item {
    width: calc(50% - 40px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 150px;
  }
}
@media all and (min-width: 1400px) {
  .cross-banners04__item {
    margin-bottom: 100px;
  }
}
.cross-banners04__item__content {
  position: relative;
}
@media all and (min-width: 900px) {
  .cross-banners04__item__content {
    min-height: 350px;
  }
}
.cross-banners04__item__title {
  margin-top: 25px;
  margin-bottom: 10px;
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  text-transform: uppercase;
}
.cross-banners04__item__subtitle {
  margin-bottom: 10px;
  color: #333333;
}
.cross-banners04__item__image {
  width: 100%;
}
.cross-banners04__item__image img {
  display: block;
}
.cross-banners04__item__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.cross-banners04__item__features {
  margin-top: 25px;
}
.cross-banners04__item__description {
  color: #262626;
  margin-top: 20px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.cross-banners04__item__link {
  margin-top: 15px;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
}
.cross-banners04__item__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cross-banners04__item__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.cross-banners04__item__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.cross-banners04__item__link:hover a {
  color: #262626;
}
.cross-banners04__item__link:hover svg path {
  stroke: #262626;
}

.main-content01 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-content01__title {
  letter-spacing: 0em;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.main-content01__subtitle {
  margin-bottom: 20px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  color: #C46428;
}
.main-content01__inner {
  margin-bottom: 0px;
}
@media all and (min-width: 900px) {
  .main-content01__inner {
    margin-bottom: 60px;
  }
}
.main-content01__content {
  letter-spacing: 0.04em;
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #262626;
}
.main-content01__content p:first-child {
  margin-top: 0;
}
.main-content01__body {
  position: relative;
  width: 100%;
}
.main-content01__more-content {
  overflow: hidden;
  height: 0;
}
.main-content01__more-content__wrapper {
  font-family: "peridotpe-regular-webfont", sans-serif;
  margin-top: 1em;
  color: #262626;
}
.main-content01__more-content__wrapper > p:first-child {
  margin-top: 0;
}
.main-content01__more-button {
  margin: 20px 0 0;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content01__more-button a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-content01__more-button svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.main-content01__more-button svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.main-content01__more-button:hover a {
  color: #262626;
}
.main-content01__more-button:hover svg path {
  stroke: #262626;
}
.main-content01__more-button a {
  color: #C46428;
  cursor: pointer;
}
.main-content01__more-button a.open svg path.svg-minus {
  display: none;
}
.main-content01__more-button .btn__icon {
  right: 0;
  top: 18px;
  position: absolute;
}
.main-content01__more-button:hover .btn__text {
  text-decoration: none !important;
}
.main-content01__links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media all and (min-width: 600px) {
  .main-content01__links {
    margin-top: 40px;
  }
}
.main-content01__link {
  position: relative;
  margin-right: 60px;
  margin-bottom: 40px;
}
.main-content01__link:last-child:after {
  content: none;
}
.main-content01__link:after {
  content: "";
  position: absolute;
  right: -30px;
  top: 0;
  width: 1px;
  height: 100%;
}

.main-content02 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.main-content02.offers-reverse {
  margin: 50px 0;
}
.main-content02.offers-reverse .row {
  flex-direction: row-reverse;
}
@media all and (min-width: 900px) {
  .main-content02.offers-reverse {
    margin: 100px 0;
  }
}
.main-content02__logo {
  max-width: 135px;
  margin: 20px 0;
}
.main-content02__title {
  color: #C46428;
  margin-bottom: 20px;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.main-content02__subtitle {
  margin-bottom: 20px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content02__inner {
  margin-bottom: 0px;
}
@media all and (min-width: 900px) {
  .main-content02__inner {
    margin-bottom: 60px;
  }
}
.main-content02__content {
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content02__content p:first-child {
  margin-top: 0;
}
.main-content02__body {
  position: relative;
  width: 100%;
}
.main-content02__more-content {
  overflow: hidden;
  height: 0;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content02__more-content__wrapper {
  margin-top: 1em;
}
.main-content02__more-content__wrapper > p:first-child {
  margin-top: 0;
}
.main-content02__more-button {
  margin: 20px 0 0;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content02__more-button a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.main-content02__more-button svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.main-content02__more-button svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.main-content02__more-button:hover a {
  color: #262626;
}
.main-content02__more-button:hover svg path {
  stroke: #262626;
}
.main-content02__more-button a {
  color: #C46428;
  cursor: pointer;
}
.main-content02__more-button .btn__icon {
  right: 0;
  top: 18px;
  position: absolute;
}
.main-content02__more-button:hover .btn__text {
  text-decoration: none !important;
}
.main-content02__links {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (min-width: 600px) {
  .main-content02__links {
    margin-top: 40px;
  }
}
.main-content02__link {
  position: relative;
  margin-right: 60px;
}
.main-content02__link a {
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #C46428;
  text-decoration: none;
}
.main-content02__link svg {
  width: 100%;
}
.main-content02__link svg path {
  stroke: #C46428;
}
.main-content02__link .btn.offers-button {
  text-decoration: none;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  text-transform: uppercase;
}
.main-content02__link:first-child {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
.main-content02__link:first-child a {
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  text-decoration: none !important;
}
.main-content02__link:first-child svg {
  display: block !important;
}
.main-content02__link:last-child:after {
  content: none;
}
.main-content02__link:last-child a {
  text-decoration: underline;
  font-size: 18px;
}
.main-content02__link:last-child svg {
  display: none;
}
.main-content02__image {
  text-align: center;
  margin-bottom: 20px;
}
@media all and (min-width: 900px) {
  .main-content02__image {
    margin-bottom: 0;
  }
}
.main-content02__image img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
.main-content02__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  margin-bottom: 5px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.main-content02__features {
  padding: 25px 0 25px 0;
}
@media all and (min-width: 1400px) {
  .main-content02__features {
    padding: 80px 0 25px 0;
  }
}

.btn--read-more {
  display: inline-flex;
  align-items: center;
}
.btn--read-more .btn__text {
  line-height: 1em;
  letter-spacing: 0.04em;
  transition: transform 0.4s ease;
}
.btn--read-more .btn__icon {
  transition: transform 0.4s ease;
}
.btn--read-more .btn__icon svg {
  display: block;
  width: 25px;
  height: 25px;
}
.btn--read-more .btn__icon svg path.svg-minus, .btn--read-more .btn__icon svg path.svg-plus {
  opacity: 1;
  transform-origin: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.btn--read-more:hover .btn__icon svg {
  opacity: 1;
}
.btn--read-more:hover .btn__icon svg path.svg-minus {
  opacity: 1;
  transform: rotate(360deg);
}
.btn--read-more:hover .btn__icon svg path.svg-plus {
  opacity: 1;
  transform: rotate(360deg);
}
.btn--read-more:hover .btn__text {
  text-decoration: underline;
}

.list {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.list__items {
  padding-bottom: 10px;
}
@media all and (min-width: 600px) {
  .list__items {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
@media all and (min-width: 900px) {
  .list__items {
    -moz-column-count: 3;
         column-count: 3;
  }
}
@media all and (min-width: 1200px) {
  .list__items {
    -moz-column-gap: 100px;
         column-gap: 100px;
  }
}
.list__inner {
  width: 100%;
}
@media all and (max-width: 899px) {
  .list__inner {
    display: flex;
    justify-content: center;
  }
}
.list__item {
  font-family: "peridotpe-regular-webfont", sans-serif;
  line-height: 2em;
  letter-spacing: 0px;
  color: #262626;
  position: relative;
}

.related-rooms {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.related-rooms__room {
  padding-bottom: 50px;
}
.related-rooms__room__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-rooms__room__title {
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  text-transform: uppercase;
  margin: 15px 0 25px 0;
}
.related-rooms__room__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
  letter-spacing: 0px;
  line-height: 0;
  margin-bottom: 15px;
}
.related-rooms__room__features {
  margin-top: 10px;
}
.related-rooms__room__description {
  letter-spacing: 0px;
  color: #262626;
  margin-top: 25px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.related-rooms__room__link {
  line-height: 0.25em;
  font-family: "peridotpe-regular-webfont", sans-serif;
  letter-spacing: 0px;
}
.related-rooms__room__link a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.related-rooms__room__link svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.related-rooms__room__link svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.related-rooms__room__link:hover a {
  color: #262626;
}
.related-rooms__room__link:hover svg path {
  stroke: #262626;
}

.sticky-banners {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
@media all and (min-width: 900px) {
  .sticky-banners {
    padding: 0;
  }
}
.sticky-banners__inner {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media all and (min-width: 900px) {
  .sticky-banners__inner {
    margin-top: 0;
  }
}
.sticky-banners__items {
  position: relative;
  width: 100%;
}
@media all and (min-width: 900px) {
  .sticky-banners__items {
    display: block;
  }
}
.sticky-banners__item {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media all and (min-width: 900px) {
  .sticky-banners__item {
    min-height: calc(100vh - 120px);
    padding: 200px 0;
    justify-content: center;
  }
}
.sticky-banners__item__title {
  position: relative;
  margin-bottom: 20px;
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
}
.sticky-banners__item__content {
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.sticky-banners__item__number {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (min-width: 900px) {
  .sticky-banners__item__number {
    margin-bottom: 50px;
  }
}
.sticky-banners__item__number-line {
  width: 170px;
  position: relative;
}
.sticky-banners__item__number-line::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #C46428;
  width: 90%;
  left: 5%;
}
.sticky-banners__right {
  position: relative;
  width: 100%;
  height: calc(50vh - 69px);
}
@media all and (min-width: 600px) {
  .sticky-banners__right {
    height: calc(60vh - 79px);
  }
}
@media all and (min-width: 900px) {
  .sticky-banners__right {
    height: calc(100vh - 120px);
  }
}
.sticky-banners__right__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.sticky-banners__right__photo.active {
  opacity: 1;
  pointer-events: inherit;
}
.sticky-banners__right__photo.active > a {
  visibility: visible;
}
.sticky-banners__right__photo.has-gallery {
  cursor: pointer;
}
.sticky-banners__right__photo:hover > span svg {
  transform: scale(1.2);
}
.sticky-banners__right__photo > span {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media all and (min-width: 900px) {
  .sticky-banners__right__photo > span {
    top: 40px;
    right: 40px;
  }
}
.sticky-banners__right__photo > span svg {
  display: block;
  width: 50px;
  height: 50px;
  transition: transform 0.4s ease;
}
.sticky-banners__right__photo > span svg path {
  fill: #fff;
}

.location-map {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.location-map .mozmap {
  height: 80vh;
}
.location-map .mozmap__item {
  height: 80vh;
}
@media all and (min-width: 768px) {
  .location-map .mozmap__menubar {
    bottom: 0;
    width: 320px;
    top: unset;
  }
}
@media all and (min-width: 900px) {
  .location-map .mozmap__menubar {
    width: 400px;
  }
}
@media all and (min-width: 768px) {
  .location-map .mozmap__navcategories {
    padding: 25px 0;
  }
}
.location-map .mozmap__navcategories ul {
  background-color: #262626;
  padding: 35px 0;
}
.location-map .mozmap__navcategory {
  text-align: center;
  border-color: #fff;
}
.location-map .mozmap__navcategory:last-child {
  border-bottom: none;
}
@media all and (min-width: 768px) {
  .location-map .mozmap__navcategory {
    margin: 0 50px;
  }
}
.location-map .mozmap__navcategory.active .mozmap__navcategory__icon svg path {
  fill: #fff;
}
.location-map .mozmap__navcategory.active .mozmap__navcategory__name {
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  line-height: 1.2em;
}
@media all and (min-width: 768px) {
  .location-map .mozmap__navcategory__icon {
    display: none;
  }
}
.location-map .mozmap__navcategory__icon svg path {
  fill: #fff;
  stroke: #fff;
}
.location-map .mozmap__navcategory__name {
  font-family: "peridotpe-regular-webfont", sans-serif;
  line-height: 1em;
  letter-spacing: 0em;
  color: #fff;
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
}
.location-map .mozmap__closenav svg path {
  fill: #fff;
}
.location-map .mozmap__category--list {
  padding: unset !important;
}
@media all and (max-width: 767px) {
  .location-map .mozmap__category--list__title {
    display: block;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: 0em;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
  }
}
.location-map .mozmap__categories {
  height: 100%;
  background-color: #262626;
}
@media all and (max-width: 767px) {
  .location-map .mozmap__categories {
    padding: 50px 0px;
  }
}
.location-map .mozmap__direction {
  font-weight: 400;
  line-height: 1.45em;
  letter-spacing: 0em;
  color: #000;
  text-align: center;
}
.location-map .mozmap__direction:after {
  content: none;
}
.location-map .mozmap__direction.current .mozmap__location--title {
  text-decoration: underline;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
  line-height: 1.25em;
}
.location-map .mozmap__direction--title {
  text-transform: uppercase;
  text-transform: uppercase;
  font-size: 16px;
  color: #262626;
  letter-spacing: 1.1px;
  line-height: 30px;
}
@media all and (min-width: 900px) {
  .location-map .mozmap__direction--title {
    font-size: 22px;
  }
}
.location-map .mozmap__location {
  font-weight: 500;
  line-height: 1.45em;
  letter-spacing: 0em;
  text-align: center;
}
.location-map .mozmap__location:after {
  content: none;
}
.location-map .mozmap__location.current .mozmap__location--title {
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #C46428;
  line-height: 1.25em;
}
.location-map .mozmap__location--title {
  color: #fff;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
  letter-spacing: 1.1px;
  line-height: 1.25em;
}
.location-map .mozmap__scroll--info, .location-map .mozmap__scroll--directions {
  font-weight: unset;
  background: white;
  padding: 15px;
  text-transform: uppercase;
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
}
.location-map .mozmap .gmnoprint {
  right: auto !important;
  left: 0 !important;
}
.location-map .mozmap__content {
  top: auto;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .location-map .mozmap__content {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .location-map .mozmap__content {
    width: 450px;
  }
}
.location-map .mozmap__content--title {
  margin: 0 0 -10px 0;
  text-transform: uppercase;
  color: #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-weight: unset;
  font-size: 18px;
}
.location-map .mozmap__content--body {
  color: #262626;
  margin-top: 35px;
}
.location-map .mozmap__content--body p {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
}
.location-map .mozmap__content--container {
  padding: 80px 60px;
}
.location-map .mozmap__content--image {
  margin-bottom: 30px;
}
.location-map .mozmap__content__google-maps-link {
  line-height: 1em;
  letter-spacing: 0em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.location-map .mozmap__content__google-maps-link a {
  color: #262626;
}
.location-map .mozmap__content .mozmap-close {
  background-size: 40px;
  background-image: url("../svg//close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
  position: absolute;
  width: 50px;
  height: 60px;
  right: 15px;
  top: 15px;
}
.location-map .gmnoprint {
  display: none;
}
.location-map .adp-directions {
  color: #262626;
}
.location-map .adp-summary span {
  color: #262626;
}

.page-template-contact .mozmap__menubar, .page-template-contact .gmnoprint {
  display: none;
}
.page-template-contact .mozmap, .page-template-contact .mozmap__item {
  height: 40vh;
}
@media all and (min-width: 900px) {
  .page-template-contact .mozmap, .page-template-contact .mozmap__item {
    height: 100vh;
  }
}

.zig-zag1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.zig-zag1__head {
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media all and (min-width: 900px) {
  .zig-zag1__head {
    margin: 0 auto 60px;
  }
}
.zig-zag1__head__title {
  margin-bottom: 20px;
}
.zig-zag1__head__button {
  margin-top: 20px;
}
.zig-zag1__elements {
  position: relative;
  width: 100%;
}
.zig-zag1__item {
  width: 100%;
}
@media all and (min-width: 900px) {
  .zig-zag1__item {
    margin-bottom: 150px;
  }
}
.zig-zag1__item__content {
  padding: 20px 0 60px;
}
@media all and (min-width: 600px) {
  .zig-zag1__item__content {
    padding: 40px 0 80px;
  }
}
@media all and (min-width: 900px) {
  .zig-zag1__item__content {
    padding: 40px 0;
  }
}
.zig-zag1__item__images {
  overflow: hidden;
  height: 100%;
}
.zig-zag1__item__images:not([data-slides="1"]) {
  cursor: grab;
}
.zig-zag1__item__images__slide {
  height: initial;
}
.zig-zag1__item__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.zig-zag1__item__title {
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  line-height: 1.25em;
}
.zig-zag1__item__subtitle {
  color: #333333;
  margin-top: 10px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.zig-zag1__item__excerpt {
  margin-top: 25px;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.zig-zag1__item__button {
  margin-top: 25px;
}
.zig-zag1__item__button a {
  color: #C46428;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}
.zig-zag1__item__button svg {
  position: absolute;
  border: 0;
  bottom: -3px;
  left: 0;
  width: -webkit-fill-available;
}
.zig-zag1__item__button svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.zig-zag1__item__button:hover a {
  color: #262626;
}
.zig-zag1__item__button:hover svg path {
  stroke: #262626;
}
.zig-zag1__item__arrows {
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  height: 65px;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (min-width: 900px) {
  .zig-zag1__item__arrows {
    bottom: 65px;
    height: 80px;
  }
}
.zig-zag1__item__images[data-slides="1"] .zig-zag1__item__arrows {
  display: none;
}

[data-slides-amount="1"] .zig-zag1__item__arrows {
  display: none;
}

.zig-zag1__item__arrow {
  border: none;
  background: none;
  padding: 0;
  margin: 0 32px;
  width: 27px;
  height: 54px;
  cursor: pointer;
  background-size: cover !important;
  transition: 0.3s ease-out;
}
[data-slides-amount="1"] .zig-zag1__item__arrow {
  cursor: initial;
}

@media all and (max-width: 899px) {
  .zig-zag1__item__arrow {
    margin: 0 20px;
    cursor: pointer;
  }
}
@media all and (min-width: 900px) {
  .zig-zag1__item__arrow:hover > span {
    opacity: 1 !important;
  }
}
.zig-zag1__item__arrow--next {
  background: url(../svg/arrow-next.svg);
}
.zig-zag1__item__arrow--next:hover {
  transform: translateX(10px);
}
.zig-zag1__item__arrow--prev {
  background: url(../svg/arrow-prev.svg);
}
.zig-zag1__item__arrow--prev:hover {
  transform: translateX(-10px);
}

.map-with-info {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.map-with-info .mozmap__menubar, .map-with-info .gmnoprint {
  display: none;
}
.map-with-info .mozmap, .map-with-info .mozmap__item {
  height: 40vh;
}
@media all and (min-width: 900px) {
  .map-with-info .mozmap, .map-with-info .mozmap__item {
    height: 100vh;
  }
}
.map-with-info__info {
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
@media all and (max-width: 899px) {
  .map-with-info__info {
    margin-bottom: 50px;
    padding: 0 25px;
  }
}
.map-with-info__info a {
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
}
.map-with-info__info__title {
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  color: #C46428;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.contact-form {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contact-form__title {
  color: #C46428;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  text-align: center;
  margin-bottom: 50px;
}
.contact-form p, .contact-form pre {
  margin: 0;
}
.contact-form__item-label {
  font-family: "peridotpe-regular-webfont", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  color: #262626;
  opacity: 1;
  letter-spacing: 0px;
}
.contact-form input, .contact-form textarea {
  border: none;
  background: transparent;
  padding: 18px 10px 30px 0;
  width: 100%;
  outline: none;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
  color: #262626;
  letter-spacing: 0.85px;
  border-bottom: 1px solid #262626;
}
.contact-form input:-webkit-autofill, .contact-form textarea:-webkit-autofill {
  background-color: transparent !important;
  color: #262626 !important;
  -webkit-box-shadow: 0 0 0 33px #F2EDE9 inset;
  -webkit-text-fill-color: #262626 !important;
}
.contact-form input:focus::-webkit-input-placeholder, .contact-form textarea:focus::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  opacity: 0;
}
.contact-form input:focus::-moz-placeholder, .contact-form textarea:focus::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 0;
}
.contact-form input:focus:-ms-input-placeholder, .contact-form textarea:focus:-ms-input-placeholder {
  /* IE 10+ */
  opacity: 0;
}
.contact-form input:focus:-moz-placeholder, .contact-form textarea:focus:-moz-placeholder {
  /* Firefox 18- */
  opacity: 0;
}
.contact-form input::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  font-family: "peridotpe-regular-webfont", sans-serif;
  text-transform: uppercase;
  font-size: 17px;
  color: #262626;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  letter-spacing: 0px;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 17px;
  letter-spacing: 0px;
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #262626;
  text-transform: uppercase;
  opacity: 1;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.contact-form input:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder {
  /* IE 10+ */
  font-family: "peridotpe-regular-webfont", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0px;
  color: #262626;
  font-size: 17px;
  opacity: 1;
  -ms-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.contact-form input:-moz-placeholder, .contact-form textarea:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
  letter-spacing: 0px;
  text-transform: uppercase;
  font-family: "peridotpe-regular-webfont", sans-serif;
  color: #262626;
  font-size: 17px;
  -moz-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.contact-form__disclaimer {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
  color: #262626;
  display: flex;
  align-items: center;
  padding-left: 2px;
}
.contact-form__disclaimer p:nth-child(2) {
  margin-top: 5px;
  margin-left: 5px;
}
.contact-form__disclaimer p a {
  color: #262626;
  text-decoration: underline;
}
.contact-form__disclaimer label {
  display: flex;
  align-items: center;
}
.contact-form__disclaimer input[type=checkbox] {
  width: 17px !important;
  height: 17px !important;
  position: relative;
  cursor: pointer;
  top: 10px;
  opacity: 0;
}
.contact-form__disclaimer label:before {
  content: "";
  cursor: pointer;
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: -3px;
  left: -2px;
  background-color: #F2EDE9;
  border: 1px solid #262626;
  z-index: 1;
}
@supports (-moz-appearance: none) {
  .contact-form__disclaimer label:before {
    top: -10px;
  }
}
.contact-form__disclaimer input[type=checkbox]:checked + span:before {
  content: "";
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: -3px;
  left: -2px;
  background-color: #262626;
  z-index: 2;
}
@supports (-moz-appearance: none) {
  .contact-form__disclaimer input[type=checkbox]:checked + span:before {
    top: -10px;
  }
}
.contact-form__disclaimer .wpcf7-list-item {
  margin: 0;
}
.contact-form__disclaimer .wpcf7-list-item-label {
  margin: 10px 0 0 15px;
}
.contact-form__item {
  margin-bottom: 20px;
}
.contact-form__item .hidden-field {
  display: none;
  visibility: hidden;
}
.contact-form__submit {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
.contact-form__submit input {
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease;
  width: auto;
  position: relative;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  font-size: 17px;
  color: #C46428;
  border: none;
  padding: 0;
}
@media all and (min-width: 1200px) {
  .contact-form__submit input {
    font-size: 23px;
  }
}
.contact-form__submit input:hover {
  color: #000;
}
.contact-form__submit svg path {
  transition: all 0.3s ease;
  stroke: #C46428;
}
.contact-form__submit:hover svg path {
  stroke: #262626;
}
.contact-form__submit:hover input {
  color: #262626;
}
.contact-form__submit p {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form__submit .wpcf7-spinner, .contact-form__submit br {
  display: none;
}
.contact-form .site-footer__newsletter__form {
  margin: auto;
}

.wpcf7-not-valid-tip {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 12px !important;
  width: 250px;
  line-height: 1.5em !important;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
  border: 1px solid #262626;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 15px;
  padding: 0.7em 2em;
  color: #dc3232;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #262626 !important;
}

body:has(.contact-form .site-footer__newsletter__form) .site-footer .site-footer__newsletter {
  display: none !important;
}

.privacy-policy {
  width: 100%;
  position: relative;
}
.privacy-policy__title {
  color: #C46428;
  text-align: center;
  font-family: "Blacker-Sans-Text-Light", sans-serif;
  margin-bottom: 50px;
}
.privacy-policy__content {
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-weight: normal;
}
.privacy-policy__content h1, .privacy-policy__content h2, .privacy-policy__content h3, .privacy-policy__content h4, .privacy-policy__content h5, .privacy-policy__content h6 {
  font-weight: normal;
  color: #C46428;
  font-family: "peridotpe-regular-webfont", sans-serif;
  font-size: 18px;
}
.privacy-policy__content a {
  color: #C46428;
}
.privacy-policy__content li::marker {
  color: #C46428;
}
.privacy-policy__content ul {
  padding-left: 18px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
@media all and (min-width: 600px) {
  .hero-slider {
    height: 100vh;
  }
}
.hero-slider--dark .slide__content__title-1,
.hero-slider--dark .slide__content__title-2,
.hero-slider--dark .slide__content__bottom {
  color: #fff !important;
}
.hero-slider--dark .slider__inner:after {
  background-color: #000 !important;
}
body.load-hero .hero-slider .slider__inner:after {
  opacity: 0.2;
}
body.load-hero .hero-slider .slide__content {
  opacity: 1;
}
body.load-hero .hero-slider .slider__next,
body.load-hero .hero-slider .slider__prev {
  opacity: 1;
  transition-delay: 0.8s;
}
.hero-slider .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slider .slider__wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media all and (min-width: 600px) {
  .hero-slider .slider__wrapper {
    height: 100vh;
  }
}
.hero-slider .slider__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}
.hero-slider .slider__inner:after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 110%;
  height: 110%;
  background-color: #fff;
  opacity: 0.8;
  transition: opacity 0.8s ease;
}
.hero-slider .slider__next, .hero-slider .slider__prev {
  position: absolute;
  bottom: 20px;
  width: 100px;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}
@media all and (min-width: 450px) {
  .hero-slider .slider__next, .hero-slider .slider__prev {
    width: 80px;
    top: 0;
    bottom: auto;
    height: 100%;
  }
}
@media all and (min-width: 600px) {
  .hero-slider .slider__next, .hero-slider .slider__prev {
    display: flex;
  }
}
@media all and (min-width: 900px) {
  .hero-slider .slider__next, .hero-slider .slider__prev {
    width: 20%;
  }
}
@media all and (min-width: 1400px) {
  .hero-slider .slider__next, .hero-slider .slider__prev {
    width: 30%;
  }
}
.hero-slider .slider__next__inner, .hero-slider .slider__prev__inner {
  position: relative;
}
.hero-slider .slider__next__inner svg, .hero-slider .slider__prev__inner svg {
  display: block;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
@media all and (min-width: 600px) {
  .hero-slider .slider__next__inner svg, .hero-slider .slider__prev__inner svg {
    width: 70px;
    height: 70px;
  }
}
@media all and (min-width: 900px) {
  .hero-slider .slider__next__inner svg, .hero-slider .slider__prev__inner svg {
    width: 80px;
    height: 80px;
  }
}
@media all and (min-width: 1400px) {
  .hero-slider .slider__next__inner svg, .hero-slider .slider__prev__inner svg {
    width: 100px;
    height: 100px;
  }
}
.hero-slider .slider__prev {
  left: 0;
}
.hero-slider .slider__next {
  right: 0;
}
.hero-slider .slider canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
.hero-slider .slide {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
}
.hero-slider .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 100%;
}
@media all and (min-width: 900px) {
  .hero-slider .slide__content {
    width: auto;
  }
}
.hero-slider .slide__content__inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 28px;
}
@media all and (min-width: 600px) {
  .hero-slider .slide__content__inner {
    padding: 0 40px;
  }
}
.hero-slider .slide__content__title-1 {
  font-feature-settings: "calt" 0, "liga" 0;
  font-size: 30px;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}
@media all and (min-width: 900px) {
  .hero-slider .slide__content__title-1 {
    font-size: 45px;
  }
}
@media all and (min-width: 1400px) {
  .hero-slider .slide__content__title-1 {
    font-size: 70px;
  }
}
.hero-slider .slide__content__title-2 {
  font-size: 36px;
  color: #333333;
  letter-spacing: 0.2em;
  line-height: 1.2em;
  word-break: break-word;
  margin: 0;
}
@media all and (min-width: 600px) {
  .hero-slider .slide__content__title-2 {
    word-break: normal;
  }
}
@media all and (min-width: 900px) {
  .hero-slider .slide__content__title-2 {
    font-size: 50px;
  }
}
@media all and (min-width: 1400px) {
  .hero-slider .slide__content__title-2 {
    font-size: 80px;
  }
}
@media all and (max-width: 599px) {
  body.page-template-events .hero-slider .slide__content__title-2 {
    font-size: 31px;
    letter-spacing: 0.1em;
  }
}
.hero-slider .slide__content__bottom {
  color: #333333;
}

.home-video {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}
@media all and (min-width: 600px) {
  .home-video {
    height: 100vh;
  }
}
.home-video__inner {
  width: 100%;
  height: 100%;
}
.home-video__title-1, .home-video__title-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 55px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  z-index: 2;
  font-feature-settings: "calt" 0, "liga" 0;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2em;
}
@media all and (min-width: 600px) {
  .home-video__title-1, .home-video__title-2 {
    display: none;
  }
  .home-video__title-1.show, .home-video__title-2.show {
    display: block;
  }
}
@media all and (min-width: 900px) {
  .home-video__title-1, .home-video__title-2 {
    font-size: 45px;
    top: 40%;
    transform: translate(-50%, -40%);
  }
}
@media all and (min-width: 1400px) {
  .home-video__title-1, .home-video__title-2 {
    font-size: 70px;
  }
}
.home-video__title-2 {
  font-size: 36px;
  letter-spacing: 0.2em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  word-break: break-word;
  margin-top: 60px;
}
@media all and (min-width: 450px) {
  .home-video__title-2 {
    margin-top: 45px;
  }
}
@media all and (min-width: 600px) {
  .home-video__title-2 {
    word-break: normal;
    display: none;
  }
  .home-video__title-2.show {
    display: block;
  }
}
@media all and (min-width: 900px) {
  .home-video__title-2 {
    font-size: 50px;
    margin-top: 85px;
    top: 40%;
    transform: translate(-50%, -40%);
  }
}
@media all and (min-width: 1400px) {
  .home-video__title-2 {
    font-size: 80px;
    margin-top: 130px;
  }
}
.home-video__image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  display: block;
  opacity: 1;
  transition: opacity 0.8s ease;
  z-index: 2;
}
.home-video__image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-video__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,ffffff+100&0.3+0,0+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4d000000", endColorstr="#00ffffff",GradientType=0 );
  /* IE6-9 */
}
.home-video__image.hidden {
  opacity: 0;
}
.home-video__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 600px) {
  .home-video__video {
    top: 0;
    height: 100vh;
  }
}
.home-video__video iframe {
  height: 100%;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  opacity: 0;
}
body.isloaded .home-video__video iframe {
  opacity: 1;
}
.home-video__controls {
  position: absolute;
  bottom: 15px;
  left: 0;
  display: flex;
  z-index: 3;
}
@media all and (min-width: 600px) {
  .home-video__controls {
    left: 30px;
    bottom: 40px;
  }
}
@media all and (min-width: 900px) {
  .home-video__controls {
    left: 60px;
  }
}
.home-video__pause {
  cursor: pointer;
  padding: 0 10px;
}
.home-video__pause svg {
  display: none;
}
.home-video__pause svg:first-child {
  display: block;
}
.home-video__pause.active svg {
  display: block;
}
.home-video__pause.active svg:first-child {
  display: none;
}
.home-video__volume {
  padding: 0 10px;
  cursor: pointer;
}
.home-video__volume svg {
  display: none;
}
.home-video__volume svg:first-child {
  display: block;
}
.home-video__volume.active svg {
  display: block;
}
.home-video__volume.active svg:first-child {
  display: none;
}
/*# sourceMappingURL=main.css.map */
