@charset "UTF-8";
/*****
  Import the things that dont output anything
*****/
:root {
  --vh-offset: 0px;
  --width: 100vw;
  --full-width: 100vw;
  --angle: -7deg;
  /*-----------------
  Magic Number Alert:

  the 0.09719 is calculated by this formula:
  tan(11°) / 2
  11° is the current skewY value.
  ------------------*/
  --magic-number: 0.09719;
  --skew-padding: calc(var(--width) * var(--magic-number));
  --clip-padding: calc(var(--full-width) * var(--magic-number));
}

/*****
  Now import the things that do output stuff
*****/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

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

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

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

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

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

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

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

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

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

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

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

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

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

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

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

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 15px;
  height: 1px;
  background-color: #ffffff;
  border-radius: 0;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
          transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
@-webkit-keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-progress {
  to {
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: var(--plyr-font-family, inherit);
  font-variant-numeric: tabular-nums;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.plyr__badge {
  background: var(--plyr-badge-background, hsl(216deg, 15%, 34%));
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: var(--plyr-badge-text-color, #fff);
  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 {
  -webkit-animation: plyr-fade-in 0.3s ease;
          animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    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 {
  -webkit-transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
          transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}

.plyr__caption {
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  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: transparent;
  border: 0;
  border-radius: var(--plyr-control-radius, 3px);
  color: inherit;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.plyr__tab-focus {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  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: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  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:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
          animation: plyr-popup 0.2s ease;
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-menu-radius, 4px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-menu-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: var(--plyr-menu-color, hsl(216deg, 15%, 34%));
  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;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  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: 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: calc(((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7)) - (var(--plyr-menu-arrow-size, 4px) / 2));
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--plyr-menu-color, hsl(216deg, 15%, 34%));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: var(--plyr-menu-arrow-color, hsl(216deg, 15%, 52%));
  right: calc((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: var(--plyr-font-weight-regular, 400);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - (calc(var(--plyr-control-spacing, 10px) * 0.7) * 2));
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: var(--plyr-menu-arrow-color, hsl(216deg, 15%, 52%));
  left: calc((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: var(--plyr-menu-back-border-color, hsl(216deg, 15%, 88%));
  -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
          box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc(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: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 16px;
  margin-right: var(--plyr-control-spacing, 10px);
  -webkit-transition: all 0.3s ease;
  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%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(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 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: calc(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: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  display: block;
  height: calc((var(--plyr-range-thumb-active-shadow-width, 3px) * 2) + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  -webkit-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));
          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: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
          appearance: none;
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  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: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  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: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  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: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.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: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  outline: var(--plyr-tab-focus-color, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%)))) dotted 3px;
  outline-offset: 2px;
}

.plyr__poster {
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  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: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-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: var(--plyr-tooltip-color, hsl(216deg, 15%, 34%));
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) 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;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
          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: calc((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7));
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc((var(--plyr-control-icon-size, 18px) / 2) + calc(var(--plyr-control-spacing, 10px) * 0.7));
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}

.plyr__progress {
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  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;
}

.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc((var(--plyr-range-track-height, 5px) / 2) * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  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: 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 {
  -webkit-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  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: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr__progress__marker {
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}

.plyr__volume {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 110px;
  min-width: 80px;
  position: relative;
  width: 20%;
}
.plyr__volume input[type=range] {
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  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: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: var(--plyr-audio-control-color, hsl(216deg, 15%, 34%));
  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: var(--plyr-audio-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  color: var(--plyr-audio-control-color-hover, #fff);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  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: 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: 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 {
  -webkit-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));
          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: 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: 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: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}

.plyr--video {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  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;
  -webkit-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%);
}

.plyr--video .plyr__controls {
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  color: var(--plyr-video-control-color-hover, #fff);
}

.plyr__control--overlaid {
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, var(--plyr-color-main, hsl(198deg, 100%, 50%))));
  border: 0;
  border-radius: 100%;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  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: 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: 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: 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 {
  -webkit-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));
          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: 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: 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: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  display: block;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  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: 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: hsl(216deg, 15%, 16%);
  border-radius: 2px;
  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: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  -webkit-box-shadow: var(--plyr-tooltip-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: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, rgba(255, 255, 255, 0.9));
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216deg, 15%, 79%);
  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;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
          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: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(var(--plyr-tooltip-radius, 5px) - 1px);
  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: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}

.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  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 {
  -webkit-transition: none !important;
  transition: none !important;
}

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

.plyr [hidden] {
  display: none !important;
}

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

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

#media-queries:before {
  content: '("tiny": 320px, "mobile": 400px, "large_mobile": 500px, "phablet": 600px, "small_tablet": 700px, "tablet": 800px, "medium_tablet": 900px, "large_tablet": 1000px, "larger_tablet": 1100px, "small_desktop": 1300px, "desktop": 1400px, "huge": 1800px)';
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  width: 0;
  visibility: hidden;
  overflow: hidden;
}

[data-href] {
  cursor: pointer;
}

/*****
  Generic styles used site-wide
*****/
@font-face {
  font-family: "Lato Hairline";
  src: local("Lato-Hairline"), url("../fonts/Lato-Hairline.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Hairline";
  src: local("Lato-HairlineItalic"), url("../fonts/Lato-HairlineItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato-Light"), url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato-LightItalic"), url("../fonts/Lato-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Regular"), local("Lato-Regular"), url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Italic"), local("Lato-Italic"), url("../fonts/Lato-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Bold"), local("Lato-Bold"), url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Bold Italic"), local("Lato-BoldItalic"), url("../fonts/Lato-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Black"), local("Lato-Black"), url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: local("Lato Black Italic"), local("Lato-BlackItalic"), url("../fonts/Lato-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat Thin Italic"), url("../fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 600 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: local("Montserrat"), url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 600 800;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
@media (max-width: 499px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  body {
    font-size: 17px;
  }
}
@media (min-width: 900px) {
  body {
    font-size: 18px;
  }
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

h1, .h1 {
  font-size: 30px;
  letter-spacing: 0.34em;
}
@media (min-width: 500px) {
  h1, .h1 {
    font-size: 40px;
  }
}
@media (min-width: 900px) {
  h1, .h1 {
    font-size: 60px;
  }
}

@media (max-width: 499px) {
  h2, .h2 {
    font-size: 26px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  h2, .h2 {
    font-size: 29px;
  }
}
@media (min-width: 900px) {
  h2, .h2 {
    font-size: 32px;
  }
}

@media (max-width: 499px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  h3, .h3 {
    font-size: 26px;
  }
}
@media (min-width: 900px) {
  h3, .h3 {
    font-size: 28px;
  }
}

@media (max-width: 499px) {
  h4, .h4 {
    font-size: 21px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  h4, .h4 {
    font-size: 23px;
  }
}
@media (min-width: 900px) {
  h4, .h4 {
    font-size: 25px;
  }
}

@media (max-width: 499px) {
  h5, .h5 {
    font-size: 18px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  h5, .h5 {
    font-size: 20px;
  }
}
@media (min-width: 900px) {
  h5, .h5 {
    font-size: 22px;
  }
}

@media (max-width: 499px) {
  h6, .h6 {
    font-size: 18px;
  }
}
@media (min-width: 500px) and (max-width: 899px) {
  h6, .h6 {
    font-size: 19px;
  }
}
@media (min-width: 900px) {
  h6, .h6 {
    font-size: 20px;
  }
}

.nice-type h1, .nice-type h2, .nice-type h3, .nice-type h4, .nice-type h5, .nice-type h6 {
  margin-top: 1em;
  font-weight: 700;
  line-height: 1.5;
}
.nice-type p, .nice-type ul, .nice-type ol, .nice-type pre, .nice-type details, .nice-type table {
  margin-top: 1em;
  margin-bottom: 1em;
}
.nice-type ul ul,
.nice-type ol ol,
.nice-type ul ol,
.nice-type ol ul {
  margin: 0;
}
.nice-type h1 a, .nice-type h2 a, .nice-type h3 a, .nice-type h4 a, .nice-type h5 a, .nice-type h6 a, .nice-type p a, .nice-type li a {
  color: #ac0849;
  text-decoration: underline;
}
.nice-type h1 a:hover, .nice-type h2 a:hover, .nice-type h3 a:hover, .nice-type h4 a:hover, .nice-type h5 a:hover, .nice-type h6 a:hover, .nice-type p a:hover, .nice-type li a:hover {
  text-decoration: underline;
  color: #100b1a;
}
.nice-type p b,
.nice-type p strong, .nice-type li b,
.nice-type li strong {
  font-weight: 600;
}
.nice-type pre {
  overflow: auto;
  background: #eee;
  border: 1px solid #ccc;
  padding: 1em 1.5em;
}
.nice-type pre code {
  font-size: 90%;
}
.nice-type details {
  padding: 1em 1.5em;
  background: #eee;
  border: 1px solid #ccc;
}
.nice-type [class*=wp-image] {
  margin-top: 3em;
  margin-bottom: 3em;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.nice-type blockquote,
.nice-type .blockquote {
  margin: 1em 0;
  padding: 0.5rem 0 0.5rem 2rem;
  border-left: 5px solid #ac0849;
  font-size: 1.15rem;
  line-height: 2rem;
}
.nice-type img {
  max-width: 100%;
  height: auto;
}
.nice-type > *:first-child {
  margin-top: 0;
}
.nice-type > *:last-child {
  margin-bottom: 0;
}

table {
  border: 1px solid #E8E8E8;
  border-collapse: collapse;
  font-size: 90%;
  line-height: 1.4;
  width: 100%;
}
table th {
  text-align: left;
  font-weight: 600;
  background: #F5F5F5;
}
table th,
table td {
  border: 1px solid #E8E8E8;
  padding: 8px 20px 8px 11px;
  vertical-align: top;
}

a {
  color: #ac0849;
  -webkit-transition: color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out;
  text-decoration: underline;
}
a:hover {
  color: #100b1a;
}

article p a {
  text-decoration: underline;
}
article p a:hover {
  text-decoration: none;
}

svg {
  -webkit-transition: fill 0.15s ease-in-out;
  transition: fill 0.15s ease-in-out;
}

.button {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #100b1a;
}
.button {
  padding-top: 13px;
}
@media screen and (min-width: 400px) {
  .button {
    padding-top: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button {
    padding-top: 24px;
  }
}
.button {
  padding-bottom: 13px;
}
@media screen and (min-width: 400px) {
  .button {
    padding-bottom: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button {
    padding-bottom: 24px;
  }
}
.button {
  padding-left: 20px;
}
@media screen and (min-width: 400px) {
  .button {
    padding-left: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button {
    padding-left: 30px;
  }
}
.button {
  padding-right: 20px;
}
@media screen and (min-width: 400px) {
  .button {
    padding-right: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button {
    padding-right: 30px;
  }
}
.button {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .button {
    font-size: calc(13px + 2 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button {
    font-size: 15px;
  }
}

.button-filled {
  border-color: #ac0849;
  background: #ac0849;
  color: #ffffff;
}
.button-filled:hover {
  border-color: rgba(172, 8, 73, 0.7);
  background: rgba(172, 8, 73, 0.7);
  color: #ffffff;
}

.button-blue {
  border-color: #100b1a;
  background: #100b1a;
  color: #ffffff;
}
.button-blue:hover {
  border-color: rgba(16, 11, 26, 0.7);
  background: rgba(16, 11, 26, 0.7);
  color: #ffffff;
}

.button-dark-purple {
  border-color: #160F22;
  background: #160F22;
  color: #ffffff;
}
.button-dark-purple:hover {
  border-color: rgba(22, 15, 34, 0.7);
  background: rgba(22, 15, 34, 0.7);
  color: #ffffff;
}

.button-white, .card-text-inner-text-button-ghost:hover, .card-text-inner-text-button {
  border-color: #ffffff;
  background: #ffffff;
  color: #100b1a;
}
.button-white:hover, .card-text-inner-text-button-ghost:hover, .card-text-inner-text-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  color: #100b1a;
}

.button-ghost, .card-text-inner-text-button-ghost {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #100b1a;
}
.button-ghost, .card-text-inner-text-button-ghost {
  padding-top: 13px;
}
@media screen and (min-width: 400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-top: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-top: 24px;
  }
}
.button-ghost, .card-text-inner-text-button-ghost {
  padding-bottom: 13px;
}
@media screen and (min-width: 400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-bottom: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-bottom: 24px;
  }
}
.button-ghost, .card-text-inner-text-button-ghost {
  padding-left: 20px;
}
@media screen and (min-width: 400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-left: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-left: 30px;
  }
}
.button-ghost, .card-text-inner-text-button-ghost {
  padding-right: 20px;
}
@media screen and (min-width: 400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-right: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    padding-right: 30px;
  }
}
.button-ghost, .card-text-inner-text-button-ghost {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    font-size: calc(13px + 2 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .button-ghost, .card-text-inner-text-button-ghost {
    font-size: 15px;
  }
}

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

body {
  background: #F8F8F8;
}

.wrapper, .padded-wrapper {
  width: 100%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1399px) {
  .padded, .padded-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (min-width: 1400px) {
  .padded, .padded-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media (min-width: 700px) {
  .grid {
    gap: 24px;
  }
}

.grid-col {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 50%;
}

.grid-col--2,
.grid-col--3 {
  display: none;
}

@media (min-width: 700px) {
  .grid-col {
    display: block;
    width: calc(50% - 5px);
  }
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.site-header .site-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.site-header .site-header-inner {
  padding-top: 30px;
}
@media screen and (min-width: 400px) {
  .site-header .site-header-inner {
    padding-top: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header .site-header-inner {
    padding-top: 60px;
  }
}
.site-header .site-header-inner {
  padding-left: 30px;
}
@media screen and (min-width: 400px) {
  .site-header .site-header-inner {
    padding-left: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header .site-header-inner {
    padding-left: 60px;
  }
}
.site-header .site-header-inner {
  padding-right: 30px;
}
@media screen and (min-width: 400px) {
  .site-header .site-header-inner {
    padding-right: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header .site-header-inner {
    padding-right: 60px;
  }
}

.site-header-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-header-logo img {
  max-width: 200px;
}
@media screen and (min-width: 400px) {
  .site-header-logo img {
    max-width: calc(200px + 128 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-logo img {
    max-width: 328px;
  }
}

.site-menu-open {
  position: relative;
  cursor: pointer;
}
.site-menu-open {
  top: -4px;
}
@media screen and (min-width: 400px) {
  .site-menu-open {
    top: calc(-4px + 4 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-open {
    top: 0px;
  }
}
.site-menu-open svg {
  display: block;
  fill: #ffffff;
}
.site-menu-open svg {
  width: 31.5px;
}
@media screen and (min-width: 400px) {
  .site-menu-open svg {
    width: calc(31.5px + 13.5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-open svg {
    width: 45px;
  }
}
.site-menu-open svg {
  height: 24.5px;
}
@media screen and (min-width: 400px) {
  .site-menu-open svg {
    height: calc(24.5px + 10.5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-open svg {
    height: 35px;
  }
}

.site-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 200;
  background-color: #160f22;
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.01s ease 0.31s;
  transition: opacity 0.3s ease, -webkit-transform 0.01s ease 0.31s;
  transition: transform 0.01s ease 0.31s, opacity 0.3s ease;
  transition: transform 0.01s ease 0.31s, opacity 0.3s ease, -webkit-transform 0.01s ease 0.31s;
}
body.use-ios-offset .site-header-nav {
  height: calc(100vh - var(--vh-offset));
}
html[data-nav-state=open] .site-header-nav {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.3s ease 0.02s, -webkit-transform 0.01s ease;
  transition: opacity 0.3s ease 0.02s, -webkit-transform 0.01s ease;
  transition: transform 0.01s ease, opacity 0.3s ease 0.02s;
  transition: transform 0.01s ease, opacity 0.3s ease 0.02s, -webkit-transform 0.01s ease;
}
.site-header-nav .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}
.site-header-nav .inner {
  margin-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .inner {
    margin-bottom: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .inner {
    margin-bottom: 40px;
  }
}
.site-header-nav .site-header-nav-menu {
  list-style: none;
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}
.site-header-nav .site-header-nav-menu {
  padding: 30px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu {
    padding: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu {
    padding: 60px;
  }
}
.site-header-nav .site-header-nav-menu li.parent > a:after {
  content: "+";
}
.site-header-nav .site-header-nav-menu > li + li {
  margin-top: 20px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu > li + li {
    margin-top: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu > li + li {
    margin-top: 40px;
  }
}
.site-header-nav .site-header-nav-menu > li + li {
  margin-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu > li + li {
    margin-bottom: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu > li + li {
    margin-bottom: 40px;
  }
}
.site-header-nav .site-header-nav-menu li:last-child {
  margin-bottom: 0;
}
.site-header-nav .site-header-nav-menu .menu-item-has-children.open.parent > a:after {
  content: "-";
}
.site-header-nav .site-header-nav-menu .menu-item-has-children.open .sub-menu {
  max-height: 200px;
}
.site-header-nav .site-header-nav-menu .sub-menu {
  -webkit-transition: max-height 350ms ease-in-out;
  transition: max-height 350ms ease-in-out;
  max-height: 0;
  overflow: hidden;
}
.site-header-nav .site-header-nav-menu .sub-menu {
  padding-left: 10px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu .sub-menu {
    padding-left: calc(10px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu .sub-menu {
    padding-left: 20px;
  }
}
.site-header-nav .site-header-nav-menu .sub-menu > li {
  margin-top: 10px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu .sub-menu > li {
    margin-top: calc(10px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu .sub-menu > li {
    margin-top: 20px;
  }
}
.site-header-nav .site-header-nav-menu .sub-menu > li {
  margin-bottom: 10px;
}
@media screen and (min-width: 400px) {
  .site-header-nav .site-header-nav-menu .sub-menu > li {
    margin-bottom: calc(10px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav .site-header-nav-menu .sub-menu > li {
    margin-bottom: 20px;
  }
}
.site-header-nav .site-header-nav-menu .sub-menu > li:last-child {
  margin-bottom: 0;
}
.site-header-nav .site-header-nav-menu .sub-menu > li > a:before {
  content: "-";
}
.site-header-nav a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  line-height: 1.2;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header-nav a {
  gap: 20px;
}
@media screen and (min-width: 400px) {
  .site-header-nav a {
    gap: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav a {
    gap: 40px;
  }
}
.site-header-nav a {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  .site-header-nav a {
    font-size: calc(18px + 6 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav a {
    font-size: 24px;
  }
}
.site-header-nav a:hover {
  color: #ac0849;
}

.site-menu-close {
  position: absolute;
  z-index: 210;
  cursor: pointer;
}
.site-menu-close {
  top: 30px;
}
@media screen and (min-width: 400px) {
  .site-menu-close {
    top: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-close {
    top: 60px;
  }
}
.site-menu-close {
  right: 30px;
}
@media screen and (min-width: 400px) {
  .site-menu-close {
    right: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-close {
    right: 60px;
  }
}
.site-menu-close svg {
  display: block;
  fill: #ffffff;
}
.site-menu-close svg {
  width: 31.5px;
}
@media screen and (min-width: 400px) {
  .site-menu-close svg {
    width: calc(31.5px + 13.5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-close svg {
    width: 45px;
  }
}
.site-menu-close svg {
  height: 24.5px;
}
@media screen and (min-width: 400px) {
  .site-menu-close svg {
    height: calc(24.5px + 10.5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-menu-close svg {
    height: 35px;
  }
}

.site-header-nav-extras {
  max-width: 950px;
  width: 100%;
  margin: 0 auto;
}
.site-header-nav-extras {
  padding-left: 30px;
}
@media screen and (min-width: 400px) {
  .site-header-nav-extras {
    padding-left: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav-extras {
    padding-left: 60px;
  }
}
.site-header-nav-extras {
  padding-right: 30px;
}
@media screen and (min-width: 400px) {
  .site-header-nav-extras {
    padding-right: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-header-nav-extras {
    padding-right: 60px;
  }
}
@media (min-width: 1100px) {
  .site-header-nav-extras {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
  }
}

.site-header-nav-clock iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.site-header-nav-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}
.site-header-nav-social li {
  list-style: none;
}
.site-header-nav-social svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.site-header-nav-social li + li {
  margin-left: 30px;
}
@media (min-width: 1100px) {
  .site-header-nav-social {
    margin: 0;
  }
}

.footer-newsletter {
  background-color: #221c1f;
  color: #ffffff;
  padding-top: 70px;
  padding-bottom: 70px;
}
.footer-newsletter .wrapper, .footer-newsletter .padded-wrapper {
  max-width: 1140px;
}
@media (min-width: 700px) {
  .footer-newsletter .wrapper, .footer-newsletter .padded-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 699px) {
  .footer-newsletter-text {
    margin-bottom: 30px;
  }
}
@media (min-width: 700px) {
  .footer-newsletter-text {
    width: calc(50% - 20px);
  }
}
.footer-newsletter-text.home-bio-text-top-header h2 {
  padding-right: 0;
}
.footer-newsletter-text.home-bio-text-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .footer-newsletter-text.home-bio-text-top-header h2 {
    font-size: calc(26px + 24 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .footer-newsletter-text.home-bio-text-top-header h2 {
    font-size: 50px;
  }
}

@media (min-width: 700px) {
  .footer-newsletter-form {
    width: calc(50% - 20px);
  }
}
.footer-newsletter-form form {
  position: relative;
  border-bottom: 2px solid #ffffff;
}
.footer-newsletter-form .newsletter-email-field {
  padding: 8px 0 8px;
  border: 0;
  background-color: transparent;
  border-radius: 0;
  display: block;
  width: calc(100% - 26px);
  padding-right: 20px;
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field::-webkit-input-placeholder {
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field::-moz-placeholder {
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field:-ms-input-placeholder {
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field::-ms-input-placeholder {
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field::placeholder {
  color: #ffffff;
}
.footer-newsletter-form .newsletter-email-field:focus {
  outline: 0;
}
.footer-newsletter-form button[type=submit] {
  width: 26px;
  height: 26px;
  background-color: transparent;
  position: absolute;
  bottom: 5px;
  right: 0;
  border: 0;
}
.footer-newsletter-form button[type=submit]:focus {
  outline: 0;
}
.footer-newsletter-form button[type=submit] svg {
  display: block;
  width: 26px;
  height: 16px;
  fill: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.press-filter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #CCC;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-transform: uppercase;
}
.press-filter {
  margin-top: 10px;
}
@media screen and (min-width: 400px) {
  .press-filter {
    margin-top: calc(10px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .press-filter {
    margin-top: 30px;
  }
}
.press-filter {
  margin-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .press-filter {
    margin-bottom: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .press-filter {
    margin-bottom: 30px;
  }
}

.press-type-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  gap: 2rem;
}
.press-type-filter .button {
  border: none;
  color: #FFF;
  padding: 0;
  text-decoration: none;
}
.press-type-filter .button.active, .press-type-filter .button:hover {
  color: #ac0849;
}

.site-footer {
  background-color: #0e0915;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  text-align: center;
}
.site-footer {
  padding: 30px;
}
@media screen and (min-width: 400px) {
  .site-footer {
    padding: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-footer {
    padding: 60px;
  }
}
@media (min-width: 1100px) {
  .site-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.site-footer img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.site-footer img {
  max-width: 200px;
}
@media screen and (min-width: 400px) {
  .site-footer img {
    max-width: calc(200px + 128 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .site-footer img {
    max-width: 328px;
  }
}
@media (min-width: 1100px) {
  .site-footer img {
    margin: 0 auto 0 0;
  }
}
.site-footer iframe {
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .site-footer .site-footer__content {
    margin: 0 0 0 auto;
  }
}

.site-footer-copyright {
  display: block;
  font-style: normal;
  font-size: inherit;
}
@media (min-width: 1100px) {
  .site-footer-copyright {
    margin: 0 0 10px;
  }
}

.site-footer-maker {
  display: block;
  font-style: normal;
  font-size: inherit;
}
.site-footer-maker a {
  color: #fff;
  text-decoration: none;
}
.site-footer-maker a:hover {
  color: #ac0849;
}

.site-footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 50px;
  padding: 0;
}
@media (min-width: 1100px) {
  .site-footer-social {
    margin: 0 0 10px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.site-footer-social li {
  list-style: none;
}
.site-footer-social svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}
.site-footer-social li + li {
  margin-left: 30px;
}

@media (min-width: 1100px) {
  .site-footer__legals {
    text-align: right;
  }
}

.load-more-wrapper {
  text-align: center;
}
.load-more-wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 400px) {
  .load-more-wrapper {
    margin-top: calc(60px + 60 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .load-more-wrapper {
    margin-top: 120px;
  }
}
.load-more-wrapper {
  margin-bottom: 60px;
}
@media screen and (min-width: 400px) {
  .load-more-wrapper {
    margin-bottom: calc(60px + 60 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .load-more-wrapper {
    margin-bottom: 120px;
  }
}
.load-more-wrapper .js-load-more svg {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
.load-more-wrapper .js-load-more.loading svg {
  display: block;
}

.load-more-wrapper__progress {
  max-width: 350px;
  margin: 0 auto;
}
.load-more-wrapper__progress {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .load-more-wrapper__progress {
    font-size: calc(12px + 2 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .load-more-wrapper__progress {
    font-size: 14px;
  }
}
.load-more-wrapper__progress p {
  margin-bottom: 20px;
}
.load-more-wrapper__progress .load-more-wrapper__progress-bar {
  height: 2px;
  width: 100%;
  background: #dcdcdc;
  margin-bottom: 25px;
}
.load-more-wrapper__progress .load-more-wrapper__progress-bar-inner {
  -webkit-transition: width 350ms ease-in-out;
  transition: width 350ms ease-in-out;
  height: 2px;
  background-color: #ac0849;
}

.blockquote {
  margin: 0;
  padding: 0;
}

[data-accordion-item] {
  border-bottom: 1px solid red;
}

[data-accordion-item-toggle] {
  position: relative;
  cursor: pointer;
}
[data-accordion-item-toggle] h3 {
  position: relative;
}

[data-accordion-item-toggle-icon] {
  position: absolute;
}
[data-accordion-item-toggle-icon]:before, [data-accordion-item-toggle-icon]:after {
  content: "";
  display: block;
  background: red;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
[data-accordion-item-toggle-icon]:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
[data-accordion-item=open] [data-accordion-item-toggle-icon]:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  opacity: 0;
}

[data-accordion-item-content] {
  display: none;
}

@media (max-width: 699px) {
  [data-accordion-item] {
    padding-bottom: 10px;
  }
  [data-accordion-item-toggle] {
    padding-right: 60px;
  }
  [data-accordion-item-toggle] h3 {
    font-size: 15px;
    line-height: 24px;
    padding-top: 20px;
    padding-bottom: 30px;
    padding-bottom: 6px;
  }
  [data-accordion-item-toggle-icon] {
    width: 18px;
    height: 18px;
    top: 20px;
    right: 0;
  }
  [data-accordion-item-toggle-icon]:before, [data-accordion-item-toggle-icon]:after {
    width: 18px;
    height: 2px;
    margin-top: -1px;
    margin-left: -13px;
  }
  [data-accordion-item-content] > *:last-child {
    padding-bottom: 18px;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  [data-accordion-item] {
    padding-bottom: 14px;
  }
  [data-accordion-item-toggle] {
    padding-right: 60px;
  }
  [data-accordion-item-toggle] h3 {
    padding-top: 24px;
    padding-bottom: 30px;
    padding-bottom: 6px;
  }
  [data-accordion-item-toggle-icon] {
    width: 18px;
    height: 18px;
    top: 26px;
    right: 0;
  }
  [data-accordion-item-toggle-icon]:before, [data-accordion-item-toggle-icon]:after {
    width: 18px;
    height: 2px;
    margin-top: -1px;
    margin-left: -13px;
  }
  [data-accordion-item-content] > *:last-child {
    padding-bottom: 18px;
  }
}
@media (min-width: 1000px) {
  [data-accordion-item] {
    padding-bottom: 14px;
  }
  [data-accordion-item-toggle] {
    padding-right: 60px;
  }
  [data-accordion-item-toggle] h3 {
    padding-top: 35px;
    padding-bottom: 30px;
    padding-bottom: 17px;
  }
  [data-accordion-item-toggle-icon] {
    width: 26px;
    height: 26px;
    top: 34px;
    right: 6px;
  }
  [data-accordion-item-toggle-icon]:before, [data-accordion-item-toggle-icon]:after {
    width: 26px;
    height: 2px;
    margin-top: -1px;
    margin-left: -13px;
  }
  [data-accordion-item-content] > *:last-child {
    padding-bottom: 18px;
  }
}
.ajax-window {
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  left: 100vw;
  -webkit-transition: opacity 0.5s ease, left 0.5s ease 0.55s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, left 0.5s ease 0.55s, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.5s ease, left 0.5s ease 0.55s;
  transition: transform 0.5s ease, opacity 0.5s ease, left 0.5s ease 0.55s, -webkit-transform 0.5s ease;
  z-index: 500;
  opacity: 0;
  -webkit-box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
}
.ajax-window.show {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  left: 0;
  -webkit-transition: opacity 0.5s ease 0.1s, left 0.05s ease, -webkit-transform 0.5s ease 0.1s;
  transition: opacity 0.5s ease 0.1s, left 0.05s ease, -webkit-transform 0.5s ease 0.1s;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s, left 0.05s ease;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s, left 0.05s ease, -webkit-transform 0.5s ease 0.1s;
}
.ajax-window .ajax-window-content {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.ajax-window.temp-hide .ajax-window-content {
  opacity: 0;
}

.ajax-window-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 510;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

[data-ajax-close] {
  cursor: pointer;
  width: 23px;
  height: 23px;
  fill: #000000;
}
[data-ajax-close]:hover {
  fill: #000000;
}

.ajax-window-top-close {
  cursor: pointer;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
  -webkit-transition: color 0.15s ease;
  transition: color 0.15s ease;
  position: absolute;
  top: 32px;
  right: 31px;
  z-index: 520;
}

.ajax-window-bottom-close-inner {
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 699px) {
  .ajax-window-inner {
    padding: 60px 0 40px;
  }
  .ajax-window-bottom-close {
    margin-top: 50px;
  }
  .ajax-window-bottom-close-inner {
    padding-top: 40px;
  }
}
@media (min-width: 700px) {
  .ajax-window-inner {
    padding: 80px 0;
  }
  .ajax-window-bottom-close {
    margin-top: 71px;
  }
  .ajax-window-bottom-close-inner {
    padding-top: 63px;
  }
}
body .fancybox-bg {
  background-color: #ffffff;
}
body .fancybox-content {
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}
body .fancybox-is-open .fancybox-bg {
  opacity: 1;
}
body .fancybox-button {
  background: transparent;
  outline: 0;
}
body .fancybox-button svg {
  fill: #000000;
}
body .fancybox-button.fancybox-button--close {
  margin-top: 18px;
  margin-right: 12px;
}
body .fancybox-toolbar {
  top: 1.2vw;
  right: 1.2vw;
}
body .fancybox-slide.fancybox-slide--video .lightbox-custom-caption {
  display: block;
}
@media (max-width: 599px) {
  body .fancybox-slide {
    padding: 5vh 53px 20vh;
  }
  body .fancybox-slide.fancybox-slide--video {
    padding: 5vh 53px 35vh;
  }
}
@media (min-width: 600px) and (max-width: 999px) {
  body .fancybox-slide {
    padding: 10vh 12vw 20vh;
  }
  body .fancybox-slide.fancybox-slide--video {
    padding: 100px 12vw 300px;
  }
}
@media (min-width: 1000px) {
  body .fancybox-slide {
    padding: 100px 120px 160px;
  }
  body .fancybox-slide.fancybox-slide--video {
    padding: 120px 140px 300px;
  }
}

.fancybox-is-open.fancybox-container .page-header {
  opacity: 1;
}

.fancybox-button.fancybox-button--arrow_left,
.fancybox-button.fancybox-button--arrow_right {
  cursor: pointer;
}
.fancybox-button.fancybox-button--arrow_left svg,
.fancybox-button.fancybox-button--arrow_right svg {
  width: 24px;
  height: 15px;
}
.fancybox-button.fancybox-button--arrow_left:hover,
.fancybox-button.fancybox-button--arrow_right:hover {
  opacity: 0.3;
}
@media (max-width: 599px) {
  .fancybox-button.fancybox-button--arrow_left,
  .fancybox-button.fancybox-button--arrow_right {
    width: 53px;
    height: 43px;
    padding: 14px;
  }
}
@media (min-width: 600px) {
  .fancybox-button.fancybox-button--arrow_left,
  .fancybox-button.fancybox-button--arrow_right {
    width: 65px;
    height: 55px;
    padding: 20px;
  }
}

.fancybox-button.fancybox-button--arrow_left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 599px) {
  .fancybox-button.fancybox-button--arrow_left {
    left: 0;
  }
}
@media (min-width: 600px) {
  .fancybox-button.fancybox-button--arrow_left {
    left: 20px;
  }
}

@media (max-width: 599px) {
  .fancybox-button.fancybox-button--arrow_right {
    right: 0;
  }
}
@media (min-width: 600px) {
  .fancybox-button.fancybox-button--arrow_right {
    right: 20px;
  }
}

.lightbox-custom-caption {
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 1em;
  padding-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (min-width: 900px) {
  .lightbox-custom-caption {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.lightbox-custom-caption p.lightbox-caption {
  text-align: center;
}
.lightbox-custom-caption p.lightbox-caption {
  font-size: 12px;
}
@media screen and (min-width: 400px) {
  .lightbox-custom-caption p.lightbox-caption {
    font-size: calc(12px + 3 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .lightbox-custom-caption p.lightbox-caption {
    font-size: 15px;
  }
}
@media (min-width: 900px) {
  .lightbox-custom-caption p.lightbox-caption {
    text-align: right;
  }
}
.page-header {
  background: #000000;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffffff;
}
.page-header {
  padding-bottom: 50px;
}
@media screen and (min-width: 400px) {
  .page-header {
    padding-bottom: calc(50px + 50 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .page-header {
    padding-bottom: 100px;
  }
}
.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(42%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.83)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.83));
  z-index: 15;
}

.page-header.has-image {
  height: 100vmin;
}
@media (orientation: portrait) {
  .page-header.has-image {
    height: 130vmin;
    max-height: 100vh;
  }
}
.page-header.has-image:before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(42%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.83)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.83));
}

.page-header.no-image {
  height: 50vw;
  max-height: 592px;
  background: rgb(92, 54, 145);
  background: linear-gradient(-53deg, rgb(92, 54, 145) 8%, rgb(92, 54, 145) 19%, rgb(172, 8, 73) 100%);
}
.page-header.no-image:before {
  background: rgba(0, 0, 0, 0.45);
}

.page-header-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  z-index: 10;
}

.page-header-wrapper {
  position: relative;
  z-index: 20;
}
.page-header-wrapper.wrapper, .page-header-wrapper.padded-wrapper {
  position: relative;
  z-index: 30;
}

.page-header-before-title {
  font-family: "Montserrat", sans-serif;
  display: block;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-header-title {
  line-height: 1;
  width: 100%;
  line-height: 1.2;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}
.page-header-title::after {
  content: "";
  width: 1px;
  position: absolute;
  left: calc(50% - 1px);
  background: #ffffff;
}
.page-header-title::after {
  height: 30px;
}
@media screen and (min-width: 400px) {
  .page-header-title::after {
    height: calc(30px + 70 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .page-header-title::after {
    height: 100px;
  }
}
.page-header-title::after {
  bottom: -50px;
}
@media screen and (min-width: 400px) {
  .page-header-title::after {
    bottom: calc(-50px + -50 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .page-header-title::after {
    bottom: -100px;
  }
}

.page-header.type-header .page-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page-header.type-header .page-header-wrapper.wrapper, .page-header.type-header .page-header-wrapper.padded-wrapper {
  max-width: 1160px;
}
.page-header.type-header .page-header-title {
  line-height: 1.2;
  letter-spacing: 0.34em;
}
.page-header.type-header .page-header-title {
  font-size: 30px;
}
@media screen and (min-width: 400px) {
  .page-header.type-header .page-header-title {
    font-size: calc(30px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .page-header.type-header .page-header-title {
    font-size: 60px;
  }
}
.page-header.type-header .page-header-title {
  padding-bottom: 0px;
}
@media screen and (min-width: 400px) {
  .page-header.type-header .page-header-title {
    padding-bottom: calc(0px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .page-header.type-header .page-header-title {
    padding-bottom: 30px;
  }
}

.home-social {
  background-color: #eee;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-social {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .home-social {
    padding-top: calc(40px + 80 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-social {
    padding-top: 120px;
  }
}
.home-social {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .home-social {
    padding-bottom: calc(40px + 30 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-social {
    padding-bottom: 70px;
  }
}
.home-social:before {
  content: "";
  position: absolute;
  top: 0;
  right: -48px;
  width: 613px;
  height: 920px;
  background-image: url("../images/tea-2.jpg");
  background-repeat: top left;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
}
.home-social:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 999px;
  height: 666px;
  background-image: url("../images/tea-4.jpg");
  background-repeat: top left;
  background-size: contain;
  background-repeat: no-repeat;
  mix-blend-mode: multiply;
  -webkit-transform: scaleX(-1) scaleY(-1) translateX(50%);
          transform: scaleX(-1) scaleY(-1) translateX(50%);
}

.social-items-outer {
  position: relative;
  z-index: 10;
}
.social-items-outer .home-bio-text-top-header {
  text-align: left;
}
.social-items-outer .home-bio-text-top-header {
  margin-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .social-items-outer .home-bio-text-top-header {
    margin-bottom: calc(40px + 80 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .social-items-outer .home-bio-text-top-header {
    margin-bottom: 120px;
  }
}
.social-items-outer .home-bio-text-top-header ul {
  margin: 15px 0 -5px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-items-outer .home-bio-text-top-header li {
  display: inline-block;
  margin-right: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.social-items-outer .home-bio-text-top-header li span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.social-items-outer .home-bio-text-top-header li span {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .social-items-outer .home-bio-text-top-header li span {
    font-size: calc(13px + 2 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .social-items-outer .home-bio-text-top-header li span {
    font-size: 15px;
  }
}
.social-items-outer .home-bio-text-top-header .button {
  min-width: 180px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  padding: 15px 20px;
}
.social-items-outer .home-bio-text-top-header .button:hover svg {
  fill: #ffffff;
}
.social-items-outer .home-bio-text-top-header svg[data-icon=instagram] {
  display: block;
  width: 22px;
  height: 22px;
  margin-top: -5px;
  margin-bottom: -5px;
}
.social-items-outer .home-bio-text-top-header svg[data-icon=twitter] {
  display: block;
  width: 23px;
  height: 19px;
  margin-top: -5px;
  margin-bottom: -5px;
}
.social-items-outer .wrapper, .social-items-outer .padded-wrapper {
  max-width: 1146px;
}

.social-items {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 999px) {
  .social-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.social-grid-item {
  position: relative;
  display: block;
  background-color: #ffffff;
}
@media (max-width: 699px) {
  .social-grid-item {
    width: 100%;
    margin-bottom: 24px;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .social-grid-item {
    width: calc(50% - 12px);
    margin-bottom: 24px;
  }
}
@media (min-width: 1000px) {
  .social-grid-item {
    width: calc(33.33% - 16px);
    margin-bottom: 24px;
  }
  .social-grid-item:nth-child(3n+1), .social-grid-item:nth-child(3n+2) {
    margin-right: 24px;
  }
}
.social-grid-item:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
.social-grid-item .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.social-grid-item svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}
.social-grid-item.ig .inner {
  background-size: cover;
}
.social-grid-item.ig svg {
  position: absolute;
  top: 20px;
  left: 20px;
}
.social-grid-item.ig img {
  display: block;
  width: 100%;
}
.social-grid-item.tw {
  border: 1px solid #e4e4e4;
}
.social-grid-item.tw .inner {
  padding: 10px 20px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
.social-grid-item.tw svg {
  fill: #181818;
}

.tw-username {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 18px;
  padding-bottom: 18px;
}

.tw-text {
  line-height: 1.65;
}
@media (max-width: 999px) {
  .tw-text {
    font-size: 15px;
  }
}
@media (min-width: 1000px) {
  .tw-text {
    font-size: 18px;
  }
}
.tw-text a {
  color: #d49153;
}

.social-grid-item-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.social-grid-item-2 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.social-grid-item-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.social-grid-item-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.social-grid-item-5 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.social-grid-item-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media (max-width: 799px) {
  .card-item:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 799px) and (min-width: 400px) {
  .card-item:nth-child(n+2) {
    margin-top: calc(20px + 30 * ((100vw - 400px) / 400));
  }
}
@media screen and (max-width: 799px) and (min-width: 800px) {
  .card-item:nth-child(n+2) {
    margin-top: 50px;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(n+2) {
    margin-top: 70px;
  }
}
.card-item .wrapper, .card-item .padded-wrapper {
  max-width: 960px;
}
@media (min-width: 800px) {
  .card-item .wrapper, .card-item .padded-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.card-media {
  position: relative;
  z-index: 5;
  overflow: hidden;
  background: #180c2b;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media (max-width: 799px) {
  .card-media {
    display: block;
  }
  .has-image .card-media:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
  }
}
@media (min-width: 800px) {
  .card-media {
    width: 53.5%;
  }
}

.card-media-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-filter: grayscale(100%) opacity(0.63);
          filter: grayscale(100%) opacity(0.63);
  opacity: 0.75;
  mix-blend-mode: screen;
}

@media (min-width: 800px) {
  .card-media-date {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.card-media-date p {
  margin: 0;
}
.card-media-date span {
  display: block;
  line-height: 0.8;
  color: #ffffff;
  opacity: 0.12;
  font-weight: 800;
  text-transform: uppercase;
}
.card-media-date span {
  font-size: 60px;
}
@media screen and (min-width: 800px) {
  .card-media-date span {
    font-size: calc(60px + 86 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-media-date span {
    font-size: 146px;
  }
}

.card-text {
  position: relative;
  z-index: 10;
  color: #ffffff;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  display: block;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.card-text {
  padding: 20px;
}
@media screen and (min-width: 400px) {
  .card-text {
    padding: calc(20px + 30 * ((100vw - 400px) / 400));
  }
}
@media screen and (min-width: 800px) {
  .card-text {
    padding: 50px;
  }
}
@media (min-width: 800px) {
  .card-text {
    margin-top: 99px;
    margin-bottom: 97px;
    padding: 50px 60px 50px;
  }
  .card-type-post .card-text {
    padding-bottom: 90px;
  }
}
@media (min-width: 1300px) {
  .card-text {
    min-height: 680px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.card-text-meta {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.card-text-meta.page-header-before-title {
  margin-bottom: 0.75em;
}

.card-text-body {
  margin-top: 2.85em;
}

.card-text-play {
  border-radius: 100px;
  background-color: #ffffff;
  position: relative;
  margin: 0 auto 10px;
  width: 78px;
  height: 78px;
}
.card-text-play svg {
  fill: #181818;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  width: 20px;
  height: 22px;
}

.card-text-inner-text-button {
  margin: 1.4em auto 0;
}

.card-text-inner-text-button-ghost {
  border: 1px solid;
  margin: 1.4em 0 0;
  padding: 1em 1.5em;
  width: 175px;
}
.card-text-inner-text-button-ghost {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .card-text-inner-text-button-ghost {
    font-size: calc(12px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-text-inner-text-button-ghost {
    font-size: 15px;
  }
}
.card-item.card-type-post .card-text-body {
  position: relative;
}
@media (min-width: 800px) {
  .card-item.card-type-post .card-text-body:before {
    content: "";
    position: absolute;
    top: calc(1em - 2px);
    width: 245px;
    height: 1px;
    background: #d49153;
    -webkit-transition: background 0.3s ease;
    transition: background 0.3s ease;
  }
}

@media (min-width: 800px) {
  .card-item:nth-child(odd) .card-text {
    width: calc(46.5% + 133px);
    margin-left: -133px;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(odd).card-type-post .card-text-body {
    margin-left: 7em;
  }
  .card-item:nth-child(odd).card-type-post .card-text-body:before {
    left: -265px;
  }
}
.card-item:nth-child(odd) .card-media-date {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
@media (max-width: 799px) {
  .card-item:nth-child(odd) .card-media-date {
    padding: 20px;
  }
}
@media screen and (max-width: 799px) and (min-width: 400px) {
  .card-item:nth-child(odd) .card-media-date {
    padding: calc(20px + 30 * ((100vw - 400px) / 400));
  }
}
@media screen and (max-width: 799px) and (min-width: 800px) {
  .card-item:nth-child(odd) .card-media-date {
    padding: 50px;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(odd) .card-media-date {
    padding: 0 140px 10px 70px;
  }
}

.card-item:nth-child(even) .wrapper, .card-item:nth-child(even) .padded-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 800px) {
  .card-item:nth-child(even) .card-text {
    width: calc(46.5% + 133px);
    margin-right: -133px;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(even) .card-text-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    left: 130px !important;
    right: -130px !important;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(even) .card-text-inner-text-button {
    margin: 1.4em 0 0;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(even).card-type-post .card-text-meta,
  .card-item:nth-child(even).card-type-post .card-text-title {
    text-align: right;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(even).card-type-post .card-text-body {
    margin-right: 7em;
    text-align: right;
  }
  .card-item:nth-child(even).card-type-post .card-text-body:before {
    right: -265px;
  }
}
@media (max-width: 799px) {
  .card-item:nth-child(even) .card-media-date {
    padding: 20px;
  }
}
@media screen and (max-width: 799px) and (min-width: 400px) {
  .card-item:nth-child(even) .card-media-date {
    padding: calc(20px + 30 * ((100vw - 400px) / 400));
  }
}
@media screen and (max-width: 799px) and (min-width: 800px) {
  .card-item:nth-child(even) .card-media-date {
    padding: 50px;
  }
}
@media (min-width: 800px) {
  .card-item:nth-child(even) .card-media-date {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
    padding: 0 70px 10px 140px;
  }
}

.card-item .wrapper[data-href]:hover .card-media, .card-item [data-href].padded-wrapper:hover .card-media {
  background: #ac0849;
}
.card-item .wrapper[data-href]:hover .card-media-image, .card-item [data-href].padded-wrapper:hover .card-media-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: grayscale(100%) brightness(0.5) contrast(1.2);
          filter: grayscale(100%) brightness(0.5) contrast(1.2);
  opacity: 0.75;
  mix-blend-mode: screen;
}
.card-item .wrapper[data-href]:hover .card-text-meta, .card-item [data-href].padded-wrapper:hover .card-text-meta,
.card-item .wrapper[data-href]:hover .card-text,
.card-item [data-href].padded-wrapper:hover .card-text {
  color: #ffffff;
}
.card-item.no-image .wrapper[data-href]:hover .card-media, .card-item.no-image [data-href].padded-wrapper:hover .card-media {
  background: #181818;
}

.card-item.card-type-gallery:nth-of-type(3n + 1) .wrapper[data-href] .card-media, .card-item.card-type-gallery:nth-of-type(3n + 1) [data-href].padded-wrapper .card-media {
  background: #ac0849;
}
.card-item.card-type-gallery:nth-of-type(3n + 2) .wrapper[data-href] .card-media, .card-item.card-type-gallery:nth-of-type(3n + 2) [data-href].padded-wrapper .card-media {
  background: #181818;
}
.card-item.card-type-gallery:nth-of-type(3n + 3) .wrapper[data-href] .card-media, .card-item.card-type-gallery:nth-of-type(3n + 3) [data-href].padded-wrapper .card-media {
  background: #160F22;
}

.card-item.card-type-post {
  margin: 0 0 40px;
}
.card-item.card-type-post .padded, .card-item.card-type-post .padded-wrapper {
  padding: 0;
}
.card-item.card-type-post .wrapper, .card-item.card-type-post .padded-wrapper {
  position: relative;
  text-decoration: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 799px) {
  .card-item.card-type-post .wrapper, .card-item.card-type-post .padded-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 15rem;
  }
}
.card-item.card-type-post .wrapper:hover .card-media-image, .card-item.card-type-post .padded-wrapper:hover .card-media-image {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card-item.card-type-post .card-media {
  background: rgb(119, 10, 59);
  background: linear-gradient(135deg, rgb(119, 10, 59) 0%, rgb(67, 40, 106) 100%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 315px;
          flex: 0 0 315px;
}
.card-item.card-type-post.has-image .card-media:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75%;
}
.card-item.card-type-post .card-media-image {
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.card-item.card-type-post .card-text {
  color: #FFFFFF;
  margin: auto;
  min-height: 0;
  text-decoration: none;
  text-transform: unset;
  width: 100%;
}
.card-item.card-type-post .card-text {
  padding: 10px;
}
@media screen and (min-width: 400px) {
  .card-item.card-type-post .card-text {
    padding: calc(10px + 40 * ((100vw - 400px) / 400));
  }
}
@media screen and (min-width: 800px) {
  .card-item.card-type-post .card-text {
    padding: 50px;
  }
}
.card-item.card-type-post .card-text .page-header-before-title {
  text-align: left;
}
.card-item.card-type-post .card-text .card-text-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
}
.card-item.card-type-post .card-text .card-text-title {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .card-item.card-type-post .card-text .card-text-title {
    font-size: calc(20px + 10 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-item.card-type-post .card-text .card-text-title {
    font-size: 30px;
  }
}
.card-item.card-type-post .card-text .card-text-body {
  margin-top: 0;
  margin-left: 0;
  margin-right: unset;
  padding: 10px 0;
  text-align: left;
}
.card-item.card-type-post .card-text .card-text-body:before {
  display: none;
}
.card-item.card-type-post .card-text .card-text-body .nice-type p {
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}
.card-item.card-type-post .card-text .card-text-body .nice-type p {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .card-item.card-type-post .card-text .card-text-body .nice-type p {
    font-size: calc(12px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-item.card-type-post .card-text .card-text-body .nice-type p {
    font-size: 15px;
  }
}
@media (max-width: 599px) {
  .card-item.card-type-post.no-image .card-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100%;
    min-width: 100%;
    width: auto;
  }
  .card-item.card-type-post.no-image .card-media {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
  }
  .card-item.card-type-post.has-image .wrapper, .card-item.card-type-post.has-image .padded-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 600px) {
  .card-item.card-type-post.no-image .card-text {
    margin: 0;
    margin-left: -300px;
  }
}

.card-item.card-type-video {
  background: #ffffff;
  margin: 0 0 40px;
}
.card-item.card-type-video .padded, .card-item.card-type-video .padded-wrapper {
  padding: 0;
}
.card-item.card-type-video .wrapper, .card-item.card-type-video .padded-wrapper {
  display: block;
  text-decoration: none;
}
.card-item.card-type-video .wrapper:hover .card-media-image, .card-item.card-type-video .padded-wrapper:hover .card-media-image {
  opacity: 1;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.card-item.card-type-video .card-media {
  background: #000000;
  width: 100%;
}
.card-item.card-type-video.has-image .card-media:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 75%;
}
.card-item.card-type-video .card-media-image {
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.card-item.card-type-video .card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.card-item.card-type-video .card-text {
  padding: 20px 0 0;
  color: #160f22;
  margin: auto;
  width: 100%;
  min-height: 0;
}
.card-item.card-type-video .card-text .card-text-title {
  letter-spacing: 0.1em;
}
.card-item.card-type-video .card-text .card-text-title {
  font-size: 15px;
}
@media screen and (min-width: 800px) {
  .card-item.card-type-video .card-text .card-text-title {
    font-size: calc(15px + 5 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-item.card-type-video .card-text .card-text-title {
    font-size: 20px;
  }
}
.card-item.card-type-video .card-text .card-text-body {
  margin-top: 0;
}
.card-item.card-type-video .card-text .card-text-body .nice-type p {
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}
.card-item.card-type-video .card-text .card-text-body .nice-type p {
  font-size: 12px;
}
@media screen and (min-width: 800px) {
  .card-item.card-type-video .card-text .card-text-body .nice-type p {
    font-size: calc(12px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .card-item.card-type-video .card-text .card-text-body .nice-type p {
    font-size: 15px;
  }
}
@media (min-width: 800px) {
  .card-item.card-type-video {
    width: 100%;
    margin: 0;
  }
}

/*****
  Larger groups of styles for larger parts
*****/
.page-template-template-home {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, rgb(22, 15, 34)), color-stop(55%, rgb(5, 7, 7)));
  background: linear-gradient(0deg, rgb(22, 15, 34) 45%, rgb(5, 7, 7) 55%);
}
.page-template-template-home .page {
  overflow: hidden;
}
.page-template-template-home .page > :last-child {
  padding-bottom: 5rem;
}

.home-header {
  position: relative;
}
.home-header .home-hero-image {
  left: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.home-header .wrapper, .home-header .padded-wrapper {
  max-width: 2560px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 100px;
}
.home-header .wrapper, .home-header .padded-wrapper {
  height: 340px;
}
@media screen and (min-width: 320px) {
  .home-header .wrapper, .home-header .padded-wrapper {
    height: calc(340px + 750 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-header .wrapper, .home-header .padded-wrapper {
    height: 1090px;
  }
}

.home-bio-text {
  color: #ffffff;
}
.home-bio-text {
  padding-top: 40px;
}
@media screen and (min-width: 320px) {
  .home-bio-text {
    padding-top: calc(40px + 44 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-bio-text {
    padding-top: 84px;
  }
}
@media (max-width: 799px) {
  .home-bio-text.padded, .home-bio-text.padded-wrapper {
    padding: 15px;
  }
}
.home-bio-text .wrapper, .home-bio-text .padded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 1144px;
  position: relative;
}
.home-bio-text .wrapper .content-outer, .home-bio-text .padded-wrapper .content-outer {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 3rem;
  z-index: 10;
}
@media (max-width: 799px) {
  .home-bio-text .wrapper .content-outer, .home-bio-text .padded-wrapper .content-outer {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 1rem;
    text-align: center;
  }
}

@media (max-width: 799px) {
  .home-bio-image {
    position: absolute;
    height: 100%;
    width: 100%;
  }
}
.home-bio-image img {
  height: 100%;
  max-width: 100%;
}
@media (max-width: 799px) {
  .home-bio-image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    width: 100%;
  }
}

.home-bio-text-top-header {
  position: relative;
}
.home-bio-text-top-header {
  margin-bottom: 10px;
}
@media screen and (min-width: 320px) {
  .home-bio-text-top-header {
    margin-bottom: calc(10px + 50 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-bio-text-top-header {
    margin-bottom: 60px;
  }
}
.home-bio-text-top-header p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d49153;
  margin: 0 0 0.3em 0;
}
.home-bio-text-top-header p {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .home-bio-text-top-header p {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-bio-text-top-header p {
    font-size: 17px;
  }
}
.home-bio-text-top-header h2 {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 70px;
  line-height: 1.2;
  padding-right: 15%;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.home-bio-text-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-bio-text-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-bio-text-top-header h2 {
    font-size: 60px;
  }
}
@media (max-width: 799px) {
  .home-bio-text-top-header h2 {
    position: relative;
    padding-right: 0;
  }
}
.home-bio-text-top-header h2 span.letter {
  margin-left: 2px;
}
@media screen and (min-width: 320px) {
  .home-bio-text-top-header h2 span.letter {
    margin-left: calc(2px + 68 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-bio-text-top-header h2 span.letter {
    margin-left: 70px;
  }
}

.home-bio-text-press {
  margin-bottom: 0;
  text-align: right;
}
@media (max-width: 799px) {
  .home-bio-text-press {
    text-align: center;
  }
}
.home-bio-text-press .button {
  border-color: #ffffff;
  text-decoration: none;
}

@media (max-width: 799px) {
  .home-bio-text-top,
  .home-bio-text-press {
    width: 100%;
    max-width: 668px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-bio-text-top {
    margin-top: 52px;
  }
  .home-bio-text-press {
    margin-top: 2em;
  }
}
@media (min-width: 800px) {
  .home-bio-text-top,
  .home-bio-text-press {
    width: 100%;
    max-width: 668px;
  }
  .home-bio-text-top {
    margin-left: auto;
    margin-top: 52px;
  }
  .home-bio-text-press {
    margin-left: auto;
    margin-top: 75px;
  }
}
.home-feature-text {
  color: #ffffff;
  position: relative;
}
.home-feature-text {
  margin-top: 40px;
}
@media screen and (min-width: 320px) {
  .home-feature-text {
    margin-top: calc(40px + 60 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-feature-text {
    margin-top: 100px;
  }
}
@media (max-width: 799px) {
  .home-feature-text.padded, .home-feature-text.padded-wrapper {
    padding: 15px;
  }
}
.home-feature-text .home-feature-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -120%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (min-width: 600px) {
  .home-feature-text .home-feature-bg {
    width: 100%;
  }
}
.home-feature-text .wrapper, .home-feature-text .padded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  max-width: 1144px;
  position: relative;
}
.home-feature-text .wrapper .content-outer, .home-feature-text .padded-wrapper .content-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 3rem;
  z-index: 10;
}
@media (max-width: 799px) {
  .home-feature-text .wrapper .content-outer, .home-feature-text .padded-wrapper .content-outer {
    padding: 1rem;
    text-align: center;
  }
}

@media (max-width: 799px) {
  .home-feature-image {
    height: 100%;
    position: absolute;
    width: 100%;
  }
}
.home-feature-image img {
  height: 100%;
  max-width: 100%;
}
@media (max-width: 799px) {
  .home-feature-image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    width: 100%;
  }
}

.home-feature-text-top-header {
  position: relative;
  white-space: nowrap;
}
.home-feature-text-top-header {
  margin-bottom: 10px;
}
@media screen and (min-width: 320px) {
  .home-feature-text-top-header {
    margin-bottom: calc(10px + 50 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-feature-text-top-header {
    margin-bottom: 60px;
  }
}
@media (max-width: 799px) {
  .home-feature-text-top-header {
    white-space: unset;
  }
  .home-feature-text-top-header h2 {
    padding-right: 0;
  }
}
.home-feature-text-top-header p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d49153;
  margin: 0 0 0.3em 0;
}
.home-feature-text-top-header p {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .home-feature-text-top-header p {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-feature-text-top-header p {
    font-size: 17px;
  }
}
.home-feature-text-top-header h2 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 70px;
  line-height: 1.2;
  padding-right: 15%;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.home-feature-text-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-feature-text-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-feature-text-top-header h2 {
    font-size: 60px;
  }
}
@media (max-width: 799px) {
  .home-feature-text-top-header h2 {
    padding-right: 0;
  }
}
.home-feature-text-top-header h2 span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-feature-text-top-header h2 span.letter {
    margin-right: calc(2px + 48 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-feature-text-top-header h2 span.letter {
    margin-right: 50px;
  }
}

.home-feature-text-press {
  margin-bottom: 0;
}
.home-feature-text-press .button {
  border-color: #ffffff;
  text-decoration: none;
}

@media (max-width: 799px) {
  .home-feature-text-top,
  .home-feature-text-press {
    width: 100%;
    max-width: 668px;
    margin-left: auto;
    margin-right: auto;
  }
  .home-feature-text-top {
    margin-top: 52px;
  }
  .home-feature-text-press {
    margin-top: 2em;
  }
}
@media (min-width: 800px) {
  .home-feature-text-top,
  .home-feature-text-press {
    width: 100%;
    max-width: 668px;
  }
  .home-feature-text-top {
    margin-left: auto;
    margin-top: 52px;
  }
  .home-feature-text-press {
    margin-left: auto;
    margin-top: 75px;
  }
}
.home-experience-items {
  margin: 15rem 0 5rem;
}
.home-experience-items .wrapper, .home-experience-items .padded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.home-experience-items .wrapper .content, .home-experience-items .padded-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
@media (max-width: 799px) {
  .home-experience-items .wrapper .content, .home-experience-items .padded-wrapper .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.home-experience-top-header {
  text-align: center;
}
.home-experience-top-header h2 {
  color: #FFF;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-experience-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-experience-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-experience-top-header h2 {
    font-size: 60px;
  }
}
.home-experience-top-header h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 320px) {
  .home-experience-top-header h2 {
    margin-bottom: calc(40px + 50 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-experience-top-header h2 {
    margin-bottom: 90px;
  }
}
.home-experience-top-header h2 span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-experience-top-header h2 span.letter {
    margin-right: calc(2px + 28 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-experience-top-header h2 span.letter {
    margin-right: 30px;
  }
}

.experience-item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 524px;
  padding: 20px;
  text-decoration: none;
  width: 315px;
}
@media (max-width: 799px) {
  .experience-item {
    margin-top: 20px;
  }
}
@media (min-width: 800px) {
  .experience-item:nth-of-type(2) {
    margin-top: 15%;
  }
  .experience-item:nth-of-type(3) {
    margin-top: 30%;
  }
}
.experience-item .title {
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.experience-item .title {
  font-size: 24px;
}
@media screen and (min-width: 320px) {
  .experience-item .title {
    font-size: calc(24px + 6 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .experience-item .title {
    font-size: 30px;
  }
}
.experience-item .description {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .experience-item .description {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .experience-item .description {
    font-size: 17px;
  }
}

.home-performances {
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  position: relative;
  text-transform: uppercase;
}
.home-performances {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .home-performances {
    padding-top: calc(40px + 88 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances {
    padding-top: 128px;
  }
}
.home-performances {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .home-performances {
    padding-bottom: calc(40px + 48 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances {
    padding-bottom: 88px;
  }
}
.home-performances {
  margin-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .home-performances {
    margin-bottom: calc(40px + 80 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances {
    margin-bottom: 120px;
  }
}
.home-performances {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-performances {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances {
    font-size: 60px;
  }
}
.home-performances .home-performances-bg {
  position: absolute;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media (min-width: 600px) {
  .home-performances .home-performances-bg {
    width: 100%;
  }
}
.home-performances span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-performances span.letter {
    margin-right: calc(2px + 28 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances span.letter {
    margin-right: 30px;
  }
}
.home-performances .event-items .event-item {
  border-color: #999;
}
.home-performances .event-items .event-item .event-item-date {
  color: #ffffff;
  font-weight: normal;
  letter-spacing: 0;
}
.home-performances .event-items .event-item .event-item-date {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .home-performances .event-items .event-item .event-item-date {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances .event-items .event-item .event-item-date {
    font-size: 17px;
  }
}
.home-performances .event-items .event-item .event-item-date p {
  margin: 0;
}
.home-performances .event-items .event-item .event-item-title {
  font-weight: normal;
}
.home-performances .event-items .event-item .event-item-location {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
}
.home-performances .event-items .event-item .event-item-text-accompanying-artists {
  letter-spacing: 0;
  text-transform: none;
}
.home-performances .event-items .event-item .event-item-text-accompanying-artists {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .home-performances .event-items .event-item .event-item-text-accompanying-artists {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances .event-items .event-item .event-item-text-accompanying-artists {
    font-size: 17px;
  }
}
.home-performances .event-items .event-item .event-item-text-accompanying-artists p {
  margin: 0;
}
.home-performances .event-items .event-item .event-item-button {
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.home-performances-top-header {
  margin-top: 50px;
}
@media screen and (min-width: 400px) {
  .home-performances-top-header {
    margin-top: calc(50px + 70 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances-top-header {
    margin-top: 120px;
  }
}
.home-performances-top-header {
  margin-bottom: 10px;
}
@media screen and (min-width: 400px) {
  .home-performances-top-header {
    margin-bottom: calc(10px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances-top-header {
    margin-bottom: 50px;
  }
}
.home-performances-top-header .wrapper, .home-performances-top-header .padded-wrapper {
  max-width: 1140px;
}
.home-performances-top-header h2 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.home-performances-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-performances-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances-top-header h2 {
    font-size: 60px;
  }
}
.home-performances-top-header h2 span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-performances-top-header h2 span.letter {
    margin-right: calc(2px + 18 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances-top-header h2 span.letter {
    margin-right: 20px;
  }
}

.home-performances-button-outer {
  margin-top: 25px;
}

.home-performances-more {
  text-align: center;
}
.home-performances-more {
  margin-top: 40px;
}
@media screen and (min-width: 400px) {
  .home-performances-more {
    margin-top: calc(40px + 56 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-performances-more {
    margin-top: 96px;
  }
}

.page-template-template-gallery .site-header,
.page-template-template-gallery .page-header-image,
.page-template-template-gallery .page-header-content,
.page-template-template-gallery .site-footer {
  position: relative;
  z-index: 100;
}
.page-template-template-gallery #main_wrapper {
  overflow: hidden;
}

.gallery-titles {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
.gallery-titles a {
  display: block;
  width: 400px;
  height: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -35px;
  margin-left: -200px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.gallery-titles a.active {
  opacity: 1;
  z-index: 10;
}
.gallery-titles a h1 {
  color: #ffffff;
}
.gallery-titles a:hover h1:after {
  width: 200px;
}

.photo-gallery-group {
  position: relative;
}
.photo-gallery-group h1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #ffffff;
  z-index: 20;
}
.photo-gallery-group h1 a {
  outline: 0;
}
.photo-gallery-group.hovered .photo-1:after,
.photo-gallery-group.hovered .photo-2:after,
.photo-gallery-group.hovered .photo-3:after {
  opacity: 0.4;
}

.photo-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.photo-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 64.6%;
}

.photo-1,
.photo-2,
.photo-3 {
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.photo-1:after,
.photo-2:after,
.photo-3:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  opacity: 0.1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.photo-1 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.photo-1:after {
  opacity: 0.3;
}

.photo-2,
.photo-3 {
  z-index: 1;
}
.photo-2:before,
.photo-3:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 62%;
}

@media (max-width: 999px) {
  .gallery-items {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .gallery-items.padded-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
  .photo-gallery-group + .photo-gallery-group {
    margin-top: 15px;
  }
  .photo-wrapper {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
  }
  .photo-wrapper:before {
    display: none;
  }
  .photo-1,
  .photo-2,
  .photo-3 {
    display: block;
    position: relative;
  }
  .photo-1:before,
  .photo-2:before,
  .photo-3:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 64%;
  }
}
@media (min-width: 1000px) and (max-width: 1299px) {
  .gallery-items {
    margin-top: 70px;
    padding-bottom: 200px;
  }
  .photo-gallery-group {
    height: 100vw;
  }
  .photo-gallery-group + .photo-gallery-group {
    margin-top: 150px;
  }
  .photo-wrapper {
    width: 90%;
  }
  .photo-2,
  .photo-3 {
    width: 40%;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  .photo-2 {
    bottom: -7%;
    left: -7%;
  }
  .photo-3 {
    top: -7%;
    right: -7%;
  }
  .gallery-titles:before {
    width: 200px;
    height: 50px;
    margin-top: -25px;
    margin-left: -100px;
    -webkit-filter: blur(70px);
            filter: blur(70px);
  }
}
@media (min-width: 1300px) {
  .gallery-items {
    margin-top: 70px;
    padding-bottom: 200px;
  }
  .photo-gallery-group {
    height: 823px;
  }
  .photo-gallery-group + .photo-gallery-group {
    margin-top: 150px;
  }
  .photo-wrapper {
    width: 950px;
  }
  .photo-2,
  .photo-3 {
    width: 452px;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  }
  .photo-2 {
    bottom: -105px;
    left: -150px;
  }
  .photo-3 {
    top: -105px;
    right: -150px;
  }
  .photo-gallery-group:nth-child(even) .photo-2 {
    top: -105px;
    left: -150px;
    bottom: auto;
    right: auto;
  }
  .photo-gallery-group:nth-child(even) .photo-3 {
    bottom: -105px;
    right: -150px;
    top: auto;
    left: auto;
  }
  .photo-gallery-group:last-child() {
    margin-bottom: calc(100vh - 1200px);
  }
  .gallery-titles:before {
    width: 400px;
    height: 70px;
    margin-top: -35px;
    margin-left: -200px;
    -webkit-filter: blur(90px);
            filter: blur(90px);
  }
}
.home-video-items {
  position: relative;
}
.home-video-items .wrapper, .home-video-items .padded-wrapper {
  position: relative;
  z-index: 2;
}
.home-video-items:after {
  content: "";
  background-color: #f8f8f8;
  width: 150%;
  height: 100%;
  position: absolute;
  top: 15%;
  left: -25%;
  rotate: -5deg;
  z-index: 1;
}
.home-video-items .home-videos {
  text-align: center;
}
.home-video-items .home-videos .button {
  text-decoration: none;
}

.home-video-top-header {
  position: relative;
  text-align: center;
  z-index: 10;
}
.home-video-top-header h2 {
  color: #FFF;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-video-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-video-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-video-top-header h2 {
    font-size: 60px;
  }
}
.home-video-top-header h2 span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-video-top-header h2 span.letter {
    margin-right: calc(2px + 18 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-video-top-header h2 span.letter {
    margin-right: 20px;
  }
}

.home-videos-carousel-arrow {
  border: 0;
  padding: 0;
  outline: 0;
  background: transparent;
  z-index: 20;
  position: absolute;
  top: -1px;
}
@media (max-width: 799px) {
  .home-videos-carousel-arrow {
    display: none;
  }
}
.home-videos-carousel-arrow:nth-child(1) {
  left: -40px;
  top: 35%;
}
.home-videos-carousel-arrow:nth-child(2) {
  right: -40px;
  top: 35%;
}
.home-videos-carousel-arrow:nth-child(2) svg {
  fill: #000;
}
.home-videos-carousel-arrow svg {
  display: block;
  width: 34px;
  height: 34px;
}

.home-videos-carousel {
  position: relative;
  overflow: hidden;
  margin-top: -90px;
  padding-top: 60px;
}
.home-videos-carousel:before {
  content: "";
  display: block;
  position: absolute;
  background: #AC0849;
  left: 32%;
  height: 30%;
  top: 0;
  width: 36%;
}
.home-videos-carousel .flickity-viewport {
  overflow: hidden;
}
.home-videos-carousel .flickity-viewport .card-item.card-type-video {
  background-color: transparent;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-media {
  aspect-ratio: 16/9;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-media:before {
  content: none;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
  text-align: center;
  width: 75%;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-text h2 {
  margin-bottom: 10px;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-text h2 {
  font-size: 22px;
}
@media screen and (min-width: 320px) {
  .home-videos-carousel .flickity-viewport .carousel-cell .card-text h2 {
    font-size: calc(22px + 8 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-videos-carousel .flickity-viewport .carousel-cell .card-text h2 {
    font-size: 30px;
  }
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-text .nice-type {
  letter-spacing: 0;
  text-transform: none;
}
.home-videos-carousel .flickity-viewport .carousel-cell .card-text .nice-type {
  font-size: 12px;
}
@media screen and (min-width: 320px) {
  .home-videos-carousel .flickity-viewport .carousel-cell .card-text .nice-type {
    font-size: calc(12px + 5 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-videos-carousel .flickity-viewport .carousel-cell .card-text .nice-type {
    font-size: 17px;
  }
}
.home-videos-carousel .flickity-page-dots {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #AC0849;
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 3.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: auto;
  margin-top: -13rem;
  margin-bottom: 13rem;
  padding: 0;
  position: relative;
  width: 36%;
  z-index: -1;
}
.home-videos-carousel .flickity-page-dots .dot {
  display: none;
  font-size: 15px;
}
.home-videos-carousel .flickity-page-dots .dot.is-selected {
  display: block;
}

.video-play-button {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -23px;
  margin-left: -23px;
}
.video-play-button:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 11px;
  border-color: transparent transparent transparent #000000;
  position: absolute;
  top: 17px;
  left: 19px;
  z-index: 10;
}
.video-play-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.5;
  border-radius: 100px;
  z-index: 2;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (max-width: 599px) {
  .video-play-button {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

.video-play-button-text {
  position: absolute;
  top: 56px;
  left: 50%;
  width: 60px;
  margin-left: -30px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #ffffff;
}

[data-video]:hover .video-play-button:after {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.video-items {
  margin-bottom: 100px;
}

@media (max-width: 799px) {
  .video-items .video-item + .video-item {
    margin-top: 50px;
  }
}
.home-videos-lower {
  color: #ffffff;
}
@media (max-width: 799px) {
  .home-videos-lower {
    padding-bottom: 50px;
  }
}
@media (min-width: 800px) {
  .home-videos-lower {
    padding-bottom: 100px;
  }
}
.home-videos-lower .gallery-items {
  margin-top: 0;
  padding-bottom: 0;
}
.home-videos-lower .gallery-items .photo-gallery-group {
  margin-bottom: 0;
}

.home-video-num {
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.15);
}

.photo-gallery-group .home-video-num {
  top: 10px;
  left: 10px;
}

.home-videos-lower-key {
  margin-left: auto;
}
@media (max-width: 799px) {
  .home-videos-lower-key {
    margin-top: 25px;
  }
}
@media (min-width: 800px) {
  .home-videos-lower-key {
    width: 50%;
    margin-top: -15px;
  }
}
.home-videos-lower-key .item {
  margin-top: 25px;
  position: relative;
  padding-left: 62px;
  max-width: 620px;
}
.home-videos-lower-key .item:first-child {
  margin-top: 0;
}
.home-videos-lower-key .item .home-video-num {
  top: 4px;
}
.home-videos-lower-key .item h6 {
  margin-bottom: 3px;
}
.home-videos-lower-key .item p {
  font-size: 14px;
}

@media (max-width: 999px) {
  .home-video .photo-gallery-group {
    height: auto;
  }
  .home-video .photo-gallery-group .photo-wrapper {
    width: 100%;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home-video .photo-gallery-group .photo-wrapper:before {
    display: none;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-1 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-2 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-3 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-1,
  .home-video .photo-gallery-group .photo-wrapper .photo-2,
  .home-video .photo-gallery-group .photo-wrapper .photo-3 {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    width: 100%;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-1:before,
  .home-video .photo-gallery-group .photo-wrapper .photo-2:before,
  .home-video .photo-gallery-group .photo-wrapper .photo-3:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 54%;
  }
  .home-video .photo-gallery-group .photo-wrapper .photo-1,
  .home-video .photo-gallery-group .photo-wrapper .photo-2,
  .home-video .photo-gallery-group .photo-wrapper .photo-3 {
    margin-top: 15px;
  }
  .home-videos-lower-key {
    margin-top: 20px;
  }
}
@media (min-width: 1000px) and (max-width: 1299px) {
  .home-video .photo-gallery-group {
    height: 65vw;
  }
  .home-video .photo-gallery-group .photo-wrapper {
    width: 85%;
  }
}
.home-video {
  margin-top: 64px;
}
@media screen and (min-width: 320px) {
  .home-video {
    margin-top: calc(64px + 200 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-video {
    margin-top: 264px;
  }
}
.home-video .wrapper, .home-video .padded-wrapper {
  max-width: 1240px;
}
.home-video .home-bio-text-top-header {
  margin-bottom: 10px;
}

.home-videos-more {
  text-align: center;
}
.home-videos-more {
  margin-top: 60px;
}
@media screen and (min-width: 320px) {
  .home-videos-more {
    margin-top: calc(60px + 60 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-videos-more {
    margin-top: 120px;
  }
}

.home-recordings {
  background: #F8F8F8;
  position: relative;
  z-index: 2;
}
.home-recordings {
  padding-top: 40px;
}
@media screen and (min-width: 320px) {
  .home-recordings {
    padding-top: calc(40px + 90 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings {
    padding-top: 130px;
  }
}
.home-recordings > .wrapper:before, .home-recordings > .padded-wrapper:before {
  background-color: #ebe8ee;
  content: " ";
  height: 188px;
  position: absolute;
  top: 125px;
  left: 50%;
  margin-left: -110px;
  width: 188px;
  z-index: -1;
}
.home-recordings > .wrapper:after, .home-recordings > .padded-wrapper:after {
  background-color: #ebe8ee;
  content: " ";
  height: 325px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  margin-left: -255px;
  width: 515px;
  z-index: -1;
  max-width: 100%;
}
@media (max-width: 799px) {
  .home-recordings > .wrapper:after, .home-recordings > .padded-wrapper:after {
    left: 0;
    margin-left: 0;
  }
}
.home-recordings .wrapper, .home-recordings .padded-wrapper {
  position: relative;
}
.home-recordings .wrapper .discography_featured__album, .home-recordings .padded-wrapper .discography_featured__album {
  background-color: transparent;
  padding: 0;
}
.home-recordings .wrapper .discography_featured__album:before, .home-recordings .padded-wrapper .discography_featured__album:before {
  display: none;
}
.home-recordings .wrapper .discography_featured__album .wrapper .cover-image, .home-recordings .padded-wrapper .discography_featured__album .wrapper .cover-image, .home-recordings .wrapper .discography_featured__album .padded-wrapper .cover-image, .home-recordings .padded-wrapper .discography_featured__album .padded-wrapper .cover-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 16%;
          flex: 1 1 16%;
  padding-left: 3%;
}
.home-recordings .wrapper .discography_featured__album .wrapper .cover-image img, .home-recordings .padded-wrapper .discography_featured__album .wrapper .cover-image img, .home-recordings .wrapper .discography_featured__album .padded-wrapper .cover-image img, .home-recordings .padded-wrapper .discography_featured__album .padded-wrapper .cover-image img {
  height: auto;
  width: 100%;
}
.home-recordings .wrapper .discography_featured__album .album-content-outer, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer {
  color: #160F22;
  padding-right: 0;
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .album-description, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .album-description {
  font-size: 14px;
}
@media screen and (min-width: 320px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .album-description, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .album-description {
    font-size: calc(14px + 3 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .album-description, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .album-description {
    font-size: 17px;
  }
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
  margin-bottom: 15px;
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
  padding-top: 10px;
}
@media screen and (min-width: 400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-top: calc(10px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-top: 15px;
  }
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
  padding-bottom: 10px;
}
@media screen and (min-width: 400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-bottom: calc(10px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-bottom: 15px;
  }
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
  padding-left: 25px;
}
@media screen and (min-width: 400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-left: calc(25px + 17 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-left: 42px;
  }
}
.home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
  padding-right: 25px;
}
@media screen and (min-width: 400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-right: calc(25px + 17 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-recordings .wrapper .discography_featured__album .album-content-outer .button, .home-recordings .padded-wrapper .discography_featured__album .album-content-outer .button {
    padding-right: 42px;
  }
}

.home-recording-top-header {
  position: relative;
  text-align: center;
}
.home-recording-top-header {
  margin-bottom: 50px;
}
@media screen and (min-width: 400px) {
  .home-recording-top-header {
    margin-bottom: calc(50px + 50 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .home-recording-top-header {
    margin-bottom: 100px;
  }
}
.home-recording-top-header h2 {
  color: #160F22;
  font-size: 70px;
  line-height: 1.2;
  text-transform: uppercase;
}
.home-recording-top-header h2 {
  font-size: 26px;
}
@media screen and (min-width: 320px) {
  .home-recording-top-header h2 {
    font-size: calc(26px + 34 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-recording-top-header h2 {
    font-size: 60px;
  }
}
.home-recording-top-header h2 span.letter {
  margin-right: 2px;
}
@media screen and (min-width: 320px) {
  .home-recording-top-header h2 span.letter {
    margin-right: calc(2px + 18 * ((100vw - 320px) / 1080));
  }
}
@media screen and (min-width: 1400px) {
  .home-recording-top-header h2 span.letter {
    margin-right: 20px;
  }
}

.page-template-template-biography {
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

.bio-text > div {
  padding-left: 30px;
  padding-right: 30px;
}
.bio-text > div {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .bio-text > div {
    padding-top: calc(40px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .bio-text > div {
    padding-top: 80px;
  }
}
.bio-text > div {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .bio-text > div {
    padding-bottom: calc(40px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .bio-text > div {
    padding-bottom: 80px;
  }
}
.bio-text .wrapper, .bio-text .padded-wrapper {
  max-width: 854px;
  margin: 0 auto;
}
.bio-text .wrapper--image {
  max-width: 940px;
  margin: 0 auto;
}

.bio-text-bottom,
.bio-text-press {
  background-color: #100b1a;
  color: #ffffff;
}

.bio-text-bottom__button {
  max-width: 854px;
  margin-left: auto;
  margin-right: auto;
}
.bio-text-bottom__button {
  margin-top: 40px;
}
@media screen and (min-width: 400px) {
  .bio-text-bottom__button {
    margin-top: calc(40px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .bio-text-bottom__button {
    margin-top: 80px;
  }
}

.bio-text-image {
  position: relative;
  overflow: hidden;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.bio-text-image ::after {
  content: "";
  background-color: #100b1a;
  width: 150%;
  height: 100%;
  position: absolute;
  bottom: -55%;
  left: -25%;
  rotate: -5deg;
  z-index: 1;
}
.bio-text-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
}

.recordings-outer {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .recordings-outer {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .recordings-outer {
    padding-top: 92px;
  }
}
.recordings-outer {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .recordings-outer {
    padding-bottom: calc(40px + 65 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .recordings-outer {
    padding-bottom: 105px;
  }
}
.recordings-outer .wrapper, .recordings-outer .padded-wrapper {
  max-width: 1140px;
}

.recordings-item {
  background: #ffffff;
  color: #181818;
  border: 1px solid rgba(24, 24, 24, 0.1);
  position: relative;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  --plyr-audio-controls-background: #ffffff;
  --plyr-range-fill-background: #d49153;
  --plyr-audio-control-color: #181818;
  --plyr-control-spacing: 0px;
  --plyr-audio-control-background-hover: #181818;
}
.recordings-item:before {
  content: "" attr(data-num);
  position: absolute;
  color: #181818;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 699px) {
  .recordings-item:before {
    top: 12px;
    left: 20px;
    line-height: 1;
    font-weight: 600;
  }
}
@media (min-width: 700px) {
  .recordings-item:before {
    top: 50%;
    left: 20px;
    font-size: 18px;
    line-height: 22px;
    margin-top: -11px;
    font-weight: 800;
  }
}
.recordings-item:hover, .recordings-item.is-playing {
  background: #181818;
  color: #ffffff;
  --plyr-audio-controls-background: #181818;
  --plyr-range-fill-background: #d49153;
  --plyr-audio-control-color: #ffffff;
}
.recordings-item:hover:before, .recordings-item.is-playing:before {
  color: #ffffff;
}
.recordings-item:hover .plyr__controls__item.plyr__control[data-plyr=play], .recordings-item.is-playing .plyr__controls__item.plyr__control[data-plyr=play] {
  border-color: #ffffff;
}
.recordings-item .plyr__controls {
  background-color: transparent;
}
.recordings-item .plyr__controls__item.plyr__menu,
.recordings-item .plyr__controls__item.plyr__volume {
  display: none;
}
.recordings-item .plyr__controls__item.plyr__control[data-plyr=play] {
  border: 2px solid #181818;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 699px) {
  .recordings-item {
    padding: 15px 20px 20px 20px;
  }
  .recordings-item .plyr__progress {
    margin-left: 20px;
    margin-right: 20px;
  }
  .recordings-item .plyr__controls__item.plyr__control[data-plyr=play] {
    width: 50px;
    height: 50px;
  }
}
@media (min-width: 700px) {
  .recordings-item {
    padding: 40px 30px 40px 50px;
  }
  .recordings-item .plyr__progress {
    margin-left: 30px;
    margin-right: 30px;
  }
  .recordings-item .plyr__controls__item.plyr__control[data-plyr=play] {
    width: 80px;
    height: 80px;
  }
  .recordings-item .plyr__controls__item.plyr__time--current.plyr__time,
  .recordings-item .plyr__controls__item.plyr__progress__container {
    position: relative;
    bottom: -20px;
  }
  .recordings-item .recordings-item-title {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 50px;
    left: 160px;
    z-index: 10;
  }
}

.recordings-item:nth-child(n+2) {
  margin-top: 10px;
}

.contact-wrapper-outer {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .contact-wrapper-outer {
    padding-top: calc(40px + 83 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .contact-wrapper-outer {
    padding-top: 123px;
  }
}
.contact-wrapper-outer {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .contact-wrapper-outer {
    padding-bottom: calc(40px + 65 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .contact-wrapper-outer {
    padding-bottom: 105px;
  }
}

.contact-wrapper.wrapper, .contact-wrapper.padded-wrapper {
  max-width: 1256px;
}

@media (max-width: 699px) {
  .contact-block:nth-child(n+2) {
    margin-top: 50px;
  }
}
@media (min-width: 700px) and (max-width: 799px) {
  .contact-block:nth-child(n+2) {
    margin-top: 20px;
  }
}
@media screen and (min-width: 700px) and (max-width: 799px) and (min-width: 400px) {
  .contact-block:nth-child(n+2) {
    margin-top: calc(20px + 8 * ((100vw - 400px) / 400));
  }
}
@media screen and (min-width: 700px) and (max-width: 799px) and (min-width: 800px) {
  .contact-block:nth-child(n+2) {
    margin-top: 28px;
  }
}
@media (min-width: 800px) {
  .contact-block:nth-child(n+2) {
    margin-top: 28px;
  }
}

.contact-block-left {
  background-color: #181818;
  color: #ffffff;
  text-align: center;
}

.contact-block-company {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}
.contact-block-company:before {
  content: "";
  display: block;
  width: 1.5em;
  height: 0.2em;
  background-color: currentColor;
  margin-top: 1.7em;
  margin-bottom: 1.25em;
  margin-left: auto;
  margin-right: auto;
}

.contact-block-name {
  font-weight: 600;
}

.contact-block-position {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0;
}
.contact-block-position {
  font-size: 15px;
}
@media screen and (min-width: 400px) {
  .contact-block-position {
    font-size: calc(15px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .contact-block-position {
    font-size: 20px;
  }
}
.contact-block-position {
  margin-bottom: 25px;
}
@media screen and (min-width: 400px) {
  .contact-block-position {
    margin-bottom: calc(25px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .contact-block-position {
    margin-bottom: 30px;
  }
}

.contact-block-website {
  margin: 0;
}

.contact-block-phone {
  margin: 0;
}
.contact-block-phone a {
  text-decoration: none;
}

.contact-block-email {
  margin: 0;
}
.contact-block-email a {
  text-decoration: none;
}

@media (max-width: 699px) {
  .contact-block-left {
    width: 100%;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .contact-block-left {
    padding-right: 20px;
  }
}
@media screen and (max-width: 699px) and (min-width: 800px) {
  .contact-block-left {
    padding-right: calc(20px + 40 * ((100vw - 800px) / 600));
  }
}
@media screen and (max-width: 699px) and (min-width: 1400px) {
  .contact-block-left {
    padding-right: 60px;
  }
}
@media (max-width: 699px) {
  .contact-block-left {
    padding-left: 20px;
  }
}
@media screen and (max-width: 699px) and (min-width: 800px) {
  .contact-block-left {
    padding-left: calc(20px + 40 * ((100vw - 800px) / 600));
  }
}
@media screen and (max-width: 699px) and (min-width: 1400px) {
  .contact-block-left {
    padding-left: 60px;
  }
}
@media (max-width: 699px) {
  .contact-block-right {
    width: 100%;
  }
  .contact-block-right {
    padding-top: 20px;
  }
}
@media screen and (max-width: 699px) and (min-width: 800px) {
  .contact-block-right {
    padding-top: calc(20px + 20 * ((100vw - 800px) / 600));
  }
}
@media screen and (max-width: 699px) and (min-width: 1400px) {
  .contact-block-right {
    padding-top: 40px;
  }
}
@media (min-width: 700px) {
  .contact-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contact-block-left {
    width: 52.8%;
    position: relative;
  }
  .contact-block-left:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 102.7%;
  }
  .contact-block-left-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
  }
  .contact-block-right {
    width: 47.2%;
  }
  .contact-block-right {
    padding-left: 40px;
  }
}
@media screen and (min-width: 700px) and (min-width: 800px) {
  .contact-block-right {
    padding-left: calc(40px + 30 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 700px) and (min-width: 1400px) {
  .contact-block-right {
    padding-left: 70px;
  }
}
/*****
  Post type & section styles
*****/
.blog {
  background-color: #150F21;
}
.blog .load-more-wrapper {
  color: #ffffff;
}

.news-items-outer {
  padding-top: 30px;
}
@media screen and (min-width: 400px) {
  .news-items-outer {
    padding-top: calc(30px + 100 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .news-items-outer {
    padding-top: 130px;
  }
}

@media (max-width: 799px) {
  .news-items {
    padding: 15px;
  }
}

.news-type-filter {
  padding-top: 30px;
}
@media screen and (min-width: 400px) {
  .news-type-filter {
    padding-top: calc(30px + 36 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .news-type-filter {
    padding-top: 66px;
  }
}
.news-type-filter {
  padding-bottom: 30px;
}
@media screen and (min-width: 400px) {
  .news-type-filter {
    padding-bottom: calc(30px + 36 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .news-type-filter {
    padding-bottom: 66px;
  }
}
.news-type-filter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-type-filter li {
  margin: 5px;
}
.news-type-filter a {
  min-width: 128px;
}
.news-type-filter a.active {
  border-color: #ac0849;
  background: #ac0849;
  color: #ffffff;
}
.news-type-filter a.active:hover {
  border-color: rgba(172, 8, 73, 0.7);
  background: rgba(172, 8, 73, 0.7);
  color: #ffffff;
}

@media (max-width: 499px) {
  body.single-post .page-header.no-image {
    min-height: 45vh;
  }
}

.news-single-outer {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .news-single-outer {
    padding-top: calc(40px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .news-single-outer {
    padding-top: 80px;
  }
}
.news-single-outer {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .news-single-outer {
    padding-bottom: calc(40px + 40 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .news-single-outer {
    padding-bottom: 80px;
  }
}

.news-single .page-header.type-header .page-header-title {
  font-weight: 700;
  text-transform: none;
}
.news-single .page-header.type-header .page-header-title {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .news-single .page-header.type-header .page-header-title {
    font-size: calc(20px + 20 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .news-single .page-header.type-header .page-header-title {
    font-size: 40px;
  }
}

.news-single-content {
  width: 100%;
  max-width: 854px;
  margin-left: auto;
  margin-right: auto;
}

.archive.tax-presstype,
.post-type-archive-press {
  background-color: #150F21;
}
.archive.tax-presstype .load-more-wrapper,
.post-type-archive-press .load-more-wrapper {
  color: #ffffff;
}

.events-outer {
  background-image: url("../images/tea-1.jpg");
  background-position: top left;
  background-repeat: no-repeat;
}
@media (max-width: 799px) {
  .events-outer {
    background-size: 50%;
  }
}

.events-past-present {
  text-align: right;
}
.events-past-present {
  padding-top: 30px;
}
@media screen and (min-width: 400px) {
  .events-past-present {
    padding-top: calc(30px + 36 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .events-past-present {
    padding-top: 66px;
  }
}
.events-past-present {
  padding-bottom: 30px;
}
@media screen and (min-width: 400px) {
  .events-past-present {
    padding-bottom: calc(30px + 36 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .events-past-present {
    padding-bottom: 66px;
  }
}
.events-past-present .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.events-past-present .wrapper, .events-past-present .padded-wrapper,
.event-items-outer .wrapper,
.event-items-outer .padded-wrapper {
  max-width: 1140px;
}

.event-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 699px) {
  .event-items .event-item {
    width: 100%;
  }
  .event-items .event-item:nth-child(n+2) {
    margin-top: 30px;
  }
}
@media (min-width: 700px) {
  .event-items .event-item {
    width: calc(50% - 13px);
  }
  .event-items .event-item:nth-child(2n+1) {
    margin-right: 26px;
  }
  .event-items .event-item:nth-child(n+3) {
    margin-top: 26px;
  }
}

.event-item {
  border: 1px solid #181818;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.event-item-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #181818;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.event-item-media span {
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background-size: cover;
  background-position: center center;
  opacity: 0.6;
}

.event-item-date {
  font-weight: 700;
  display: block;
  color: #181818;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
.event-item-date {
  font-size: 15px;
}
@media screen and (min-width: 800px) {
  .event-item-date {
    font-size: calc(15px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .event-item-date {
    font-size: 18px;
  }
}
.event-item-date p {
  margin: 0;
}
.event-item-date p:nth-of-type(2) {
  margin-top: -0.5rem;
}

.event-item-text {
  width: 100%;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 5;
}

.event-item-text-pre-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  margin: -0.55em 0 0.3em 0;
}

.event-item-title {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 1rem 0;
  text-transform: uppercase;
}
.event-item-title {
  font-size: 25px;
}
@media screen and (min-width: 800px) {
  .event-item-title {
    font-size: calc(25px + 5 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .event-item-title {
    font-size: 30px;
  }
}

.event-item-location {
  margin: 1rem 0;
}

.event-item-text-description {
  margin-top: 1.1em;
  margin-bottom: 1.4em;
}

.event-item-text-accompanying-artists {
  margin: 0.5rem 0 2rem;
}
.event-item-text-accompanying-artists p {
  margin: 0;
}
.event-item-text-accompanying-artists p:nth-of-type(2) {
  margin-top: -0.5rem;
}

.event-item-button {
  margin-top: auto;
  color: #181818;
  text-decoration: none;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.event-item[data-href]:hover {
  background: rgb(119, 10, 59);
  background: linear-gradient(135deg, rgb(119, 10, 59) 0%, rgb(67, 40, 106) 100%);
  color: #ffffff;
}
.event-item[data-href]:hover .event-item-date {
  color: #ffffff;
}
.event-item[data-href]:hover .event-item-button {
  border-color: #ffffff;
  background: #ffffff;
  color: #100b1a;
}
.event-item[data-href]:hover .event-item-button:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.7);
  color: #100b1a;
}
.event-item[data-href]:hover .event-item-button:hover {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #100b1a;
}
.event-item[data-href]:hover .event-item-button:hover {
  padding-top: 13px;
}
@media screen and (min-width: 400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-top: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-top: 24px;
  }
}
.event-item[data-href]:hover .event-item-button:hover {
  padding-bottom: 13px;
}
@media screen and (min-width: 400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-bottom: calc(13px + 11 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-bottom: 24px;
  }
}
.event-item[data-href]:hover .event-item-button:hover {
  padding-left: 20px;
}
@media screen and (min-width: 400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-left: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-left: 30px;
  }
}
.event-item[data-href]:hover .event-item-button:hover {
  padding-right: 20px;
}
@media screen and (min-width: 400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-right: calc(20px + 10 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    padding-right: 30px;
  }
}
.event-item[data-href]:hover .event-item-button:hover {
  font-size: 13px;
}
@media screen and (min-width: 400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    font-size: calc(13px + 2 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .event-item[data-href]:hover .event-item-button:hover {
    font-size: 15px;
  }
}
.event-item[data-href]:hover .event-item-media {
  opacity: 1;
}

@media (max-width: 699px) {
  .event-item-text {
    padding: 24px 20px 24px 20px;
  }
  .event-item-text-pre-title {
    font-size: 14px;
  }
  .event-item-title {
    font-size: 26px;
  }
  .event-item-location,
  .event-item-text-description {
    font-size: 16px;
  }
  .event-item-button {
    min-width: 170px;
  }
}
@media (min-width: 700px) {
  .event-item-text {
    padding: 32px 30px 40px 30px;
  }
  .event-item-title {
    font-size: 30px;
  }
  .event-item-location {
    font-size: 18px;
  }
  .event-item-button {
    min-width: 190px;
  }
}
.discography_featured__top {
  background-color: #100b1a;
  color: #ffffff;
  text-align: center;
}
.discography_featured__top {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .discography_featured__top {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__top {
    padding-top: 92px;
  }
}
.discography_featured__top {
  padding-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .discography_featured__top {
    padding-bottom: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__top {
    padding-bottom: 40px;
  }
}
.discography_featured__top h2 {
  letter-spacing: 0.34rem;
  text-transform: uppercase;
}
.discography_featured__top h2 {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .discography_featured__top h2 {
    font-size: calc(20px + 18 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__top h2 {
    font-size: 38px;
  }
}

.discography_featured__album {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-bottom: var(--skew-padding);
  padding-top: 1rem;
}
.discography_featured__album::before {
  content: "";
  background-color: #100b1a;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transform: skewy(var(--angle));
          transform: skewy(var(--angle));
  -webkit-transform-origin: 0% 0;
          transform-origin: 0% 0;
  z-index: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.discography_featured__album .wrapper, .discography_featured__album .padded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 2rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 799px) {
  .discography_featured__album .wrapper, .discography_featured__album .padded-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.discography_featured__album .wrapper .cover-image, .discography_featured__album .padded-wrapper .cover-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10%;
          flex: 1 1 10%;
  padding-top: 3%;
  position: relative;
}
.discography_featured__album .wrapper .cover-image:before, .discography_featured__album .padded-wrapper .cover-image:before {
  content: "";
  background-color: #ac0849;
  bottom: 8%;
  left: -5%;
  position: absolute;
  top: -1%;
  width: 100%;
  z-index: -1;
}
.discography_featured__album .wrapper .cover-image img, .discography_featured__album .padded-wrapper .cover-image img {
  max-width: 100%;
}
@media (max-width: 799px) {
  .discography_featured__album .wrapper .cover-image img, .discography_featured__album .padded-wrapper .cover-image img {
    width: 100%;
  }
}
.discography_featured__album .wrapper .album-content-outer, .discography_featured__album .padded-wrapper .album-content-outer {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3%;
}
.discography_featured__album .wrapper .album-content-outer .album-description, .discography_featured__album .padded-wrapper .album-content-outer .album-description {
  font-size: 14px;
}
@media screen and (min-width: 800px) {
  .discography_featured__album .wrapper .album-content-outer .album-description, .discography_featured__album .padded-wrapper .album-content-outer .album-description {
    font-size: calc(14px + 1 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__album .wrapper .album-content-outer .album-description, .discography_featured__album .padded-wrapper .album-content-outer .album-description {
    font-size: 15px;
  }
}
.discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
  text-decoration: none;
}
.discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
  padding-top: 7px;
}
@media screen and (min-width: 400px) {
  .discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
    padding-top: calc(7px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
    padding-top: 12px;
  }
}
.discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
  padding-bottom: 7px;
}
@media screen and (min-width: 400px) {
  .discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
    padding-bottom: calc(7px + 5 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__album .wrapper .album-content-outer .button, .discography_featured__album .padded-wrapper .album-content-outer .button {
    padding-bottom: 12px;
  }
}
.discography_featured__album .wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title, .discography_featured__album .padded-wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.discography_featured__album .wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title, .discography_featured__album .padded-wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title {
  font-size: 14px;
}
@media screen and (min-width: 800px) {
  .discography_featured__album .wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title, .discography_featured__album .padded-wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title {
    font-size: calc(14px + 1 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .discography_featured__album .wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title, .discography_featured__album .padded-wrapper .album-content-outer .album-buy-links-outer .album-buy-links-title {
    font-size: 15px;
  }
}
.discography_featured__album .wrapper .album-content-outer .album-buy-links-outer .album-buy-link:first-of-type, .discography_featured__album .padded-wrapper .album-content-outer .album-buy-links-outer .album-buy-link:first-of-type {
  margin-right: 15px;
}

.album-title h4 {
  font-weight: 700;
}

.discography-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
.discography-items {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .discography-items {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .discography-items {
    padding-top: 92px;
  }
}
.discography-items .card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 100%;
          flex: 1 100%;
}
@media (min-width: 600px) {
  .discography-items .card-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 calc(50% - 20px);
            flex: 0 calc(50% - 20px);
  }
}
.discography-items .card-item .wrapper:hover .card-text, .discography-items .card-item .padded-wrapper:hover .card-text {
  color: #160f22;
}
.discography-items .card-item .padded, .discography-items .card-item .padded-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
  padding: 0;
}
@media (max-width: 799px) {
  .discography-items .card-item .padded, .discography-items .card-item .padded-wrapper {
    width: 100%;
  }
}
.discography-items .card-item .padded .wrapper, .discography-items .card-item .padded-wrapper .wrapper, .discography-items .card-item .padded .padded-wrapper, .discography-items .card-item .padded-wrapper .padded-wrapper {
  display: block;
}
.discography-items .card-item.card-type-album.has-image .card-media:before {
  content: "";
  display: block;
  padding-bottom: 75%;
  width: 100%;
}
.discography-items .card-item:nth-child(n+2) {
  margin-top: 0;
}
.discography-items .card-item .card-media {
  width: 100%;
}
.discography-items .card-item .card-media .card-media-image {
  opacity: 1;
  -webkit-filter: none;
          filter: none;
}
.discography-items .card-item .card-text {
  color: #160f22;
  margin: auto;
  min-height: 0;
  padding: 20px 0 0;
  text-decoration: none;
  width: 100%;
}
.discography-items .card-item .card-text-meta {
  display: none;
}
.discography-items .card-item .card-text-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.discography-items .card-item .card-text-title {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .discography-items .card-item .card-text-title {
    font-size: calc(20px + 10 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .discography-items .card-item .card-text-title {
    font-size: 30px;
  }
}

.single-album .page-header,
.single-dvd .page-header,
.single-book .page-header {
  padding-bottom: 10vw;
}
@media (max-width: 599px) {
  .single-album .page-header,
  .single-dvd .page-header,
  .single-book .page-header {
    padding-bottom: 25vh;
  }
}
@media (max-width: 599px) {
  .single-album .page-header.type-header,
  .single-dvd .page-header.type-header,
  .single-book .page-header.type-header {
    height: 50vh;
  }
}
.single-album .page-header.type-header .page-header-before-title,
.single-dvd .page-header.type-header .page-header-before-title,
.single-book .page-header.type-header .page-header-before-title {
  margin-bottom: 10px;
}
.single-album .page-header.type-header .page-header-title,
.single-dvd .page-header.type-header .page-header-title,
.single-book .page-header.type-header .page-header-title {
  font-weight: 700;
}
.single-album .page-header.type-header .page-header-title,
.single-dvd .page-header.type-header .page-header-title,
.single-book .page-header.type-header .page-header-title {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .single-album .page-header.type-header .page-header-title,
  .single-dvd .page-header.type-header .page-header-title,
  .single-book .page-header.type-header .page-header-title {
    font-size: calc(20px + 6 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .single-album .page-header.type-header .page-header-title,
  .single-dvd .page-header.type-header .page-header-title,
  .single-book .page-header.type-header .page-header-title {
    font-size: 26px;
  }
}
.single-album .page-header.type-header .page-header-title:after,
.single-dvd .page-header.type-header .page-header-title:after,
.single-book .page-header.type-header .page-header-title:after {
  display: none;
}
.single-album .album-single-outer,
.single-dvd .album-single-outer,
.single-book .album-single-outer {
  margin-top: -10vw;
}
.single-album .album-single-outer,
.single-dvd .album-single-outer,
.single-book .album-single-outer {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .single-album .album-single-outer,
  .single-dvd .album-single-outer,
  .single-book .album-single-outer {
    padding-bottom: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .single-album .album-single-outer,
  .single-dvd .album-single-outer,
  .single-book .album-single-outer {
    padding-bottom: 92px;
  }
}
@media (max-width: 599px) {
  .single-album .album-single-outer,
  .single-dvd .album-single-outer,
  .single-book .album-single-outer {
    margin-top: -20vh;
  }
}
.single-album .album-single-inner,
.single-dvd .album-single-inner,
.single-book .album-single-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-album .album-single-meta,
.single-dvd .album-single-meta,
.single-book .album-single-meta {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.single-album .album-single-image-meta-inner.wrapper, .single-album .album-single-image-meta-inner.padded-wrapper,
.single-dvd .album-single-image-meta-inner.wrapper,
.single-dvd .album-single-image-meta-inner.padded-wrapper,
.single-book .album-single-image-meta-inner.wrapper,
.single-book .album-single-image-meta-inner.padded-wrapper {
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-album .album-single-image-meta-inner h6,
.single-dvd .album-single-image-meta-inner h6,
.single-book .album-single-image-meta-inner h6 {
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 50px 0 25px;
  text-transform: uppercase;
}
.single-album .album-single-image-meta-inner h6,
.single-dvd .album-single-image-meta-inner h6,
.single-book .album-single-image-meta-inner h6 {
  font-size: 13px;
}
@media screen and (min-width: 800px) {
  .single-album .album-single-image-meta-inner h6,
  .single-dvd .album-single-image-meta-inner h6,
  .single-book .album-single-image-meta-inner h6 {
    font-size: calc(13px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .single-album .album-single-image-meta-inner h6,
  .single-dvd .album-single-image-meta-inner h6,
  .single-book .album-single-image-meta-inner h6 {
    font-size: 16px;
  }
}
.single-album .album-single-image-meta-inner ul,
.single-dvd .album-single-image-meta-inner ul,
.single-book .album-single-image-meta-inner ul {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.single-album .album-single-image-meta-inner ul .button,
.single-dvd .album-single-image-meta-inner ul .button,
.single-book .album-single-image-meta-inner ul .button {
  padding: 15px 30px;
  text-decoration: none;
}
.single-album .album-single-image,
.single-dvd .album-single-image,
.single-book .album-single-image {
  max-width: 600px;
  position: relative;
  width: 100%;
  z-index: 100;
}
.single-album .album-single-description h6,
.single-album .album-single-info h6,
.single-dvd .album-single-description h6,
.single-dvd .album-single-info h6,
.single-book .album-single-description h6,
.single-book .album-single-info h6 {
  font-weight: 700;
  margin: 50px 0 25px;
  text-transform: uppercase;
}
.single-album .album-single-description h6,
.single-album .album-single-info h6,
.single-dvd .album-single-description h6,
.single-dvd .album-single-info h6,
.single-book .album-single-description h6,
.single-book .album-single-info h6 {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .single-album .album-single-description h6,
  .single-album .album-single-info h6,
  .single-dvd .album-single-description h6,
  .single-dvd .album-single-info h6,
  .single-book .album-single-description h6,
  .single-book .album-single-info h6 {
    font-size: calc(20px + 5 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .single-album .album-single-description h6,
  .single-album .album-single-info h6,
  .single-dvd .album-single-description h6,
  .single-dvd .album-single-info h6,
  .single-book .album-single-description h6,
  .single-book .album-single-info h6 {
    font-size: 25px;
  }
}
.single-album .album-single-description .nice-type,
.single-album .album-single-info .nice-type,
.single-dvd .album-single-description .nice-type,
.single-dvd .album-single-info .nice-type,
.single-book .album-single-description .nice-type,
.single-book .album-single-info .nice-type {
  font-size: 13px;
}
@media screen and (min-width: 800px) {
  .single-album .album-single-description .nice-type,
  .single-album .album-single-info .nice-type,
  .single-dvd .album-single-description .nice-type,
  .single-dvd .album-single-info .nice-type,
  .single-book .album-single-description .nice-type,
  .single-book .album-single-info .nice-type {
    font-size: calc(13px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .single-album .album-single-description .nice-type,
  .single-album .album-single-info .nice-type,
  .single-dvd .album-single-description .nice-type,
  .single-dvd .album-single-info .nice-type,
  .single-book .album-single-description .nice-type,
  .single-book .album-single-info .nice-type {
    font-size: 16px;
  }
}
.single-album .album-single-description .nice-type p,
.single-album .album-single-info .nice-type p,
.single-dvd .album-single-description .nice-type p,
.single-dvd .album-single-info .nice-type p,
.single-book .album-single-description .nice-type p,
.single-book .album-single-info .nice-type p {
  margin: 0.3em 0;
}

.photo-items-outer {
  background-color: #100b1a;
}

.photo-items {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .photo-items {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .photo-items {
    padding-top: 92px;
  }
}
.photo-items {
  padding-bottom: 40px;
}
@media screen and (min-width: 400px) {
  .photo-items {
    padding-bottom: calc(40px + 65 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .photo-items {
    padding-bottom: 105px;
  }
}

@media (max-width: 799px) {
  .card-item.card-type-gallery .card-text {
    text-align: center;
  }
}
@media (min-width: 800px) {
  .card-item.card-type-gallery .card-text:before {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 100%;
  }
  .card-item.card-type-gallery .card-text .card-text-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    text-align: center;
  }
}
@media (max-width: 799px) {
  .card-item.card-type-gallery .card-media:before {
    padding-bottom: 130%;
  }
}

.photo-single-images-outer.padded, .photo-single-images-outer.padded-wrapper {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .photo-single-images-outer.padded, .photo-single-images-outer.padded-wrapper {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .photo-single-images-outer.padded, .photo-single-images-outer.padded-wrapper {
    padding-top: 92px;
  }
}

.photo-single-images.wrapper, .photo-single-images.padded-wrapper {
  max-width: 1140px;
}
.photo-single-images .grid-col--2 {
  display: block;
}

.photo-single-images-item {
  display: block;
  background-color: #000000;
  position: relative;
}
.photo-single-images-item img {
  display: block;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 699px) {
  .photo-single-images-item:nth-child(n+2) {
    margin-top: 10px;
  }
}
@media (min-width: 700px) {
  .photo-single-images-item:nth-child(n+2) {
    margin-top: 24px;
  }
}
.photo-single-images-item:hover img {
  opacity: 0.4;
}
.photo-single-images-item:hover .photo-single-images-item-plus {
  opacity: 1;
}

.photo-single-images-item-plus {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  border-radius: 100px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.photo-single-images-item-plus:before, .photo-single-images-item-plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #ffffff;
}
.photo-single-images-item-plus:before {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.photo-single-images-item-plus:after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.video-items {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .video-items {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .video-items {
    padding-top: 92px;
  }
}
@media (min-width: 800px) {
  .video-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .video-items .card-item {
    width: calc(50% - 20px);
  }
}

.video-featured__top {
  background-color: #100b1a;
  color: #ffffff;
  text-align: center;
}
.video-featured__top {
  padding-top: 40px;
}
@media screen and (min-width: 400px) {
  .video-featured__top {
    padding-top: calc(40px + 52 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__top {
    padding-top: 92px;
  }
}
.video-featured__top {
  padding-bottom: 20px;
}
@media screen and (min-width: 400px) {
  .video-featured__top {
    padding-bottom: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__top {
    padding-bottom: 40px;
  }
}
.video-featured__top h2 {
  letter-spacing: 0.34rem;
  text-transform: uppercase;
}
.video-featured__top h2 {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .video-featured__top h2 {
    font-size: calc(20px + 18 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__top h2 {
    font-size: 38px;
  }
}

.video-featured__bottom {
  text-align: center;
}
.video-featured__bottom {
  padding-top: 20px;
}
@media screen and (min-width: 400px) {
  .video-featured__bottom {
    padding-top: calc(20px + 20 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__bottom {
    padding-top: 40px;
  }
}
.video-featured__bottom h3 {
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.video-featured__bottom h3 {
  font-size: 18px;
}
@media screen and (min-width: 800px) {
  .video-featured__bottom h3 {
    font-size: calc(18px + 2 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__bottom h3 {
    font-size: 20px;
  }
}
.video-featured__bottom p {
  max-width: 762px;
  margin: 20px auto;
}
.video-featured__bottom p {
  font-size: 14px;
}
@media screen and (min-width: 800px) {
  .video-featured__bottom p {
    font-size: calc(14px + 3 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .video-featured__bottom p {
    font-size: 17px;
  }
}

.video-featured__video {
  position: relative;
  overflow: hidden;
  background-color: #100b1a;
}
.video-featured__video::after {
  content: "";
  background-color: #ffffff;
  width: 150%;
  height: 100%;
  position: absolute;
  bottom: -55%;
  left: -25%;
  rotate: -5deg;
  z-index: 1;
}
.video-featured__video .wrapper, .video-featured__video .padded-wrapper {
  position: relative;
  z-index: 2;
}
.video-featured__video .card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}
.video-featured__video .card-item {
  margin: 0;
}
.video-featured__video .card-item .card-text {
  display: none;
}
.video-featured__video .card-item.card-type-video.has-image .card-media:before {
  padding-bottom: 56.25%;
}

.video-item {
  background-size: cover;
  background-position: center center;
  position: relative;
  width: 100%;
  display: block;
}
.video-item:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 50%;
}
.video-item:after {
  content: "";
  position: absolute;
  height: 100%;
  max-height: 200px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(35%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.42)));
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.42) 100%);
}

.video-item-text {
  position: relative;
  z-index: 20;
  padding: 20px;
  color: #ffffff;
}

.advocacy-items {
  padding-top: 60px;
}
@media screen and (min-width: 400px) {
  .advocacy-items {
    padding-top: calc(60px + 60 * ((100vw - 400px) / 1000));
  }
}
@media screen and (min-width: 1400px) {
  .advocacy-items {
    padding-top: 120px;
  }
}

.advocacy-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 30px;
}

.advocacy-item__content {
  padding: 30px 20px;
}

.advocacy-item__title {
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 20px;
  line-height: 1.25;
}
.advocacy-item__title {
  font-size: 20px;
}
@media screen and (min-width: 800px) {
  .advocacy-item__title {
    font-size: calc(20px + 4 * ((100vw - 800px) / 600));
  }
}
@media screen and (min-width: 1400px) {
  .advocacy-item__title {
    font-size: 24px;
  }
}

.advocacy-item__image {
  display: block;
  width: 100%;
}

.advocacy-item__more {
  display: block;
  margin: 20px 0 0;
}
/*# sourceMappingURL=app.css.map */