/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */.lity{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;white-space:nowrap;background:#0b0b0b;background:rgba(0,0,0,0.9);outline:none !important;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}.lity.lity-opened{opacity:1}.lity.lity-closed{opacity:0}.lity *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lity-wrap{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;text-align:center;outline:none !important}.lity-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-0.25em}.lity-loader{z-index:9991;color:#fff;position:absolute;top:50%;margin-top:-0.8em;width:100%;text-align:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;opacity:0;-webkit-transition:opacity .3s ease;-o-transition:opacity .3s ease;transition:opacity .3s ease}.lity-loading .lity-loader{opacity:1}.lity-container{z-index:9992;position:relative;text-align:left;vertical-align:middle;display:inline-block;white-space:normal;max-width:100%;max-height:100%;outline:none !important}.lity-content{z-index:9993;width:100%;-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;-o-transition:-o-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease, -webkit-transform .3s ease, -o-transform .3s ease}.lity-loading .lity-content,.lity-closed .lity-content{-webkit-transform:scale(.8);-ms-transform:scale(.8);-o-transform:scale(.8);transform:scale(.8)}.lity-content:after{content:'';position:absolute;left:0;top:0;bottom:0;display:block;right:0;width:auto;height:auto;z-index:-1;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.6);box-shadow:0 0 8px rgba(0,0,0,0.6)}.lity-close{z-index:9994;width:35px;height:35px;position:fixed;right:0;top:0;-webkit-appearance:none;cursor:pointer;text-decoration:none;text-align:center;padding:0;color:#fff;font-style:normal;font-size:35px;font-family:Arial,Baskerville,monospace;line-height:35px;text-shadow:0 1px 2px rgba(0,0,0,0.6);border:0;background:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.lity-close::-moz-focus-inner{border:0;padding:0}.lity-close:hover,.lity-close:focus,.lity-close:active,.lity-close:visited{text-decoration:none;text-align:center;padding:0;color:#fff;font-style:normal;font-size:35px;font-family:Arial,Baskerville,monospace;line-height:35px;text-shadow:0 1px 2px rgba(0,0,0,0.6);border:0;background:none;outline:none;-webkit-box-shadow:none;box-shadow:none}.lity-close:active{top:1px}.lity-image img{max-width:100%;display:block;line-height:0;border:0}.lity-iframe .lity-container,.lity-youtube .lity-container,.lity-vimeo .lity-container,.lity-facebookvideo .lity-container,.lity-googlemaps .lity-container{width:100%;max-width:964px}.lity-iframe-container{width:100%;height:0;padding-top:56.25%;overflow:auto;pointer-events:auto;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-overflow-scrolling:touch}.lity-iframe-container iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;-webkit-box-shadow:0 0 8px rgba(0,0,0,0.6);box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}.lity-hide{display:none}/** Import everything from autoload */

/**
* Styles
*/

/**
 *  Media Queries and Breakpoints
 */

/**
*  Library
*
*  Contains mixins and functions.
*/

/**
*  Layout
*/

/**
 *  Settings
 */

/**
* Custom Mixins
**/

/**
 * Placeholder
 */

/**
 *  Center element
 *  parent element must have position: relative;
 *
 *  @variables: xy, x, y
 *  Default: xy
 */

/**
 *  Border Radius
 *
 *  @variables: $radius (px, em, rem value)
 */

/**
 *  Font size map by Jonathan Suh
 *  https://www.smashingmagazine.com/2015/06/responsive-typography-with-sass-maps/
 */

/**
*  Media Query Mixins.
*  Sorted by Minimum, Maximum and Between
*/

/**
*  Minimums
* eg.
* @include minimum(tablet){ @content };
* css will be active on tablet size and beyond
*
* @variables: tablet, small-desktop, desktop
*/

/**
*  Maximums
* eg.
* @include maximum(tablet){ @content };
* css will be active on tablet size size and beyond
*
* @variables: mobile, tablet, small-desktop, desktop
*/

/**
* Betweens
* eg.
* @include between(tablet,desktop){ @content };
* css will be active between tablet and desktop breakpoints.
*
* @variables: tablet, desktop
**/

/*! 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.
 */

/* line 10, resources/assets/styles/helpers/_normalize.scss */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

/* line 23, resources/assets/styles/helpers/_normalize.scss */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

/* line 32, resources/assets/styles/helpers/_normalize.scss */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* line 42, resources/assets/styles/helpers/_normalize.scss */

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

/* line 55, resources/assets/styles/helpers/_normalize.scss */

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

/* line 66, resources/assets/styles/helpers/_normalize.scss */

pre {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

/* line 79, resources/assets/styles/helpers/_normalize.scss */

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

/* line 89, resources/assets/styles/helpers/_normalize.scss */

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

/* line 100, resources/assets/styles/helpers/_normalize.scss */

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

/* line 111, resources/assets/styles/helpers/_normalize.scss */

code,
kbd,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

/* line 123, resources/assets/styles/helpers/_normalize.scss */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

/* line 133, resources/assets/styles/helpers/_normalize.scss */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 142, resources/assets/styles/helpers/_normalize.scss */

sub {
  bottom: -0.25em;
}

/* line 147, resources/assets/styles/helpers/_normalize.scss */

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

/* line 159, resources/assets/styles/helpers/_normalize.scss */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

/* line 171, resources/assets/styles/helpers/_normalize.scss */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
  outline: none;
  border: none;
  background: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0;
  -webkit-appearance: none;
  color: inherit;
  cursor: pointer;
}

/* line 190, resources/assets/styles/helpers/_normalize.scss */

button:focus,
input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: none;
}

/**
 * Remove the inner border and padding in Firefox.
 */

/* line 199, resources/assets/styles/helpers/_normalize.scss */

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

/* line 211, resources/assets/styles/helpers/_normalize.scss */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

/* line 223, resources/assets/styles/helpers/_normalize.scss */

button,
input {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

/* line 233, resources/assets/styles/helpers/_normalize.scss */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

/* line 243, resources/assets/styles/helpers/_normalize.scss */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */

/* line 255, resources/assets/styles/helpers/_normalize.scss */

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

/* line 266, resources/assets/styles/helpers/_normalize.scss */

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

/* line 280, resources/assets/styles/helpers/_normalize.scss */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/* line 289, resources/assets/styles/helpers/_normalize.scss */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

/* line 299, resources/assets/styles/helpers/_normalize.scss */

[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.
 */

/* line 310, resources/assets/styles/helpers/_normalize.scss */

[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.
 */

/* line 321, resources/assets/styles/helpers/_normalize.scss */

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

/* line 331, resources/assets/styles/helpers/_normalize.scss */

[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.
 */

/* line 341, resources/assets/styles/helpers/_normalize.scss */

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/* line 354, resources/assets/styles/helpers/_normalize.scss */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

/* line 363, resources/assets/styles/helpers/_normalize.scss */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

/* line 374, resources/assets/styles/helpers/_normalize.scss */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

/* line 383, resources/assets/styles/helpers/_normalize.scss */

[hidden] {
  display: none;
}

/**
 * Resets ul's and ol's - Bone addition
 */

/* line 392, resources/assets/styles/helpers/_normalize.scss */

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 399, resources/assets/styles/helpers/_normalize.scss */

ul li,
ol li {
  padding: 0;
  margin: 0;
}

/* line 19, resources/assets/styles/components/_colours.scss */

:root {
  --background: #ffffff;
  --text: #000000;
  --svg1: #ec008c;
  --svg2: #231f20;
  --svg3: #6d6e71;
  --svg4: #ffffff;
  --svg5: #231f20;
}

/**
 *  Typography
 */

@font-face {
  font-family: 'MarsSansCond';
  src: url(/app/themes/alga/dist/fonts/MarrSansCondensed-Semibold-Web.woff2);
  src: url(/app/themes/alga/dist/fonts/MarrSansCondensed-Semibold-Web.woff2) format("woff2"), url(/app/themes/alga/dist/fonts/MarrSansCondensed-Semibold-Web.woff) format("woff");
  font-weight: 600;
  font-style: normal;
}

/**
 *  Font weight variables
 */

/* line 99, resources/assets/styles/components/_type.scss */

p,
h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter", sans-serif;
}

/* line 109, resources/assets/styles/components/_type.scss */

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 109, resources/assets/styles/components/_type.scss */

  p {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 109, resources/assets/styles/components/_type.scss */

  p {
    font-size: 16px;
  }
}

/* line 116, resources/assets/styles/components/_type.scss */

body {
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
}

@media screen and (min-width: 1000px) {
  /* line 116, resources/assets/styles/components/_type.scss */

  body {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 116, resources/assets/styles/components/_type.scss */

  body {
    font-size: 16px;
  }
}

/* line 122, resources/assets/styles/components/_type.scss */

h1 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 34px;
  line-height: 1.32;
}

@media screen and (min-width: 1000px) {
  /* line 122, resources/assets/styles/components/_type.scss */

  h1 {
    font-size: 34px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 122, resources/assets/styles/components/_type.scss */

  h1 {
    font-size: 67px;
  }
}

/* line 130, resources/assets/styles/components/_type.scss */

h2 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 22px;
  line-height: 1.1;
}

@media screen and (min-width: 1000px) {
  /* line 130, resources/assets/styles/components/_type.scss */

  h2 {
    font-size: 22px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 130, resources/assets/styles/components/_type.scss */

  h2 {
    font-size: 30px;
  }
}

/* line 138, resources/assets/styles/components/_type.scss */

h3 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  /* line 138, resources/assets/styles/components/_type.scss */

  h3 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 138, resources/assets/styles/components/_type.scss */

  h3 {
    font-size: 25px;
  }
}

/* line 146, resources/assets/styles/components/_type.scss */

h4 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.18;
}

@media screen and (min-width: 1000px) {
  /* line 146, resources/assets/styles/components/_type.scss */

  h4 {
    font-size: 20px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 146, resources/assets/styles/components/_type.scss */

  h4 {
    font-size: 30px;
  }
}

/* line 154, resources/assets/styles/components/_type.scss */

h5 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  /* line 154, resources/assets/styles/components/_type.scss */

  h5 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 154, resources/assets/styles/components/_type.scss */

  h5 {
    font-size: 20px;
  }
}

/* line 162, resources/assets/styles/components/_type.scss */

h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  /* line 162, resources/assets/styles/components/_type.scss */

  h6 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 162, resources/assets/styles/components/_type.scss */

  h6 {
    font-size: 20px;
  }
}

/* line 170, resources/assets/styles/components/_type.scss */

small {
  font-weight: normal;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.18;
}

@media screen and (min-width: 1000px) {
  /* line 170, resources/assets/styles/components/_type.scss */

  small {
    font-size: 12px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 170, resources/assets/styles/components/_type.scss */

  small {
    font-size: 16px;
  }
}

/* line 178, resources/assets/styles/components/_type.scss */

a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}

/* line 189, resources/assets/styles/components/_type.scss */

.content h1,
body#tinymce.wp-editor h1 {
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  /* line 189, resources/assets/styles/components/_type.scss */

  .content h1,
  body#tinymce.wp-editor h1 {
    font-size: 22px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 189, resources/assets/styles/components/_type.scss */

  .content h1,
  body#tinymce.wp-editor h1 {
    font-size: 30px;
  }
}

@media (max-width: 1000px) {
  /* line 189, resources/assets/styles/components/_type.scss */

  .content h1,
  body#tinymce.wp-editor h1 {
    margin-bottom: 10px;
  }
}

/* line 201, resources/assets/styles/components/_type.scss */

.content figure,
body#tinymce.wp-editor figure {
  width: 100% !important;
  margin: 0 0 1.3em 0;
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  /* line 201, resources/assets/styles/components/_type.scss */

  .content figure,
  body#tinymce.wp-editor figure {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 201, resources/assets/styles/components/_type.scss */

  .content figure,
  body#tinymce.wp-editor figure {
    font-size: 20px;
  }
}

/* line 207, resources/assets/styles/components/_type.scss */

.content figure img,
body#tinymce.wp-editor figure img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* line 216, resources/assets/styles/components/_type.scss */

.content figure figcaption,
body#tinymce.wp-editor figure figcaption {
  margin-top: 25px;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 216, resources/assets/styles/components/_type.scss */

  .content figure figcaption,
  body#tinymce.wp-editor figure figcaption {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 216, resources/assets/styles/components/_type.scss */

  .content figure figcaption,
  body#tinymce.wp-editor figure figcaption {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  /* line 216, resources/assets/styles/components/_type.scss */

  .content figure figcaption,
  body#tinymce.wp-editor figure figcaption {
    margin-top: 10px;
  }
}

/* line 229, resources/assets/styles/components/_type.scss */

.content h2,
body#tinymce.wp-editor h2 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
}

@media screen and (min-width: 1000px) {
  /* line 229, resources/assets/styles/components/_type.scss */

  .content h2,
  body#tinymce.wp-editor h2 {
    font-size: 18px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 229, resources/assets/styles/components/_type.scss */

  .content h2,
  body#tinymce.wp-editor h2 {
    font-size: 25px;
  }
}

@media (max-width: 1000px) {
  /* line 229, resources/assets/styles/components/_type.scss */

  .content h2,
  body#tinymce.wp-editor h2 {
    margin-bottom: 10px;
  }
}

/* line 241, resources/assets/styles/components/_type.scss */

.content * > a,
body#tinymce.wp-editor * > a {
  text-decoration: underline;
  color: #ec008c;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 247, resources/assets/styles/components/_type.scss */

.content * > a:hover,
body#tinymce.wp-editor * > a:hover {
  color: inherit;
}

/* line 253, resources/assets/styles/components/_type.scss */

.content .issuuembed,
body#tinymce.wp-editor .issuuembed {
  width: 100% !important;
  min-height: 480px !important;
}

@media (max-width: 1000px) {
  /* line 253, resources/assets/styles/components/_type.scss */

  .content .issuuembed,
  body#tinymce.wp-editor .issuuembed {
    min-height: 320px !important;
  }
}

/* line 264, resources/assets/styles/components/_type.scss */

.content h3,
body#tinymce.wp-editor h3,
.content h4,
body#tinymce.wp-editor h4,
.content h5,
body#tinymce.wp-editor h5,
.content h6,
body#tinymce.wp-editor h6 {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 1.3em;
}

@media screen and (min-width: 1000px) {
  /* line 264, resources/assets/styles/components/_type.scss */

  .content h3,
  body#tinymce.wp-editor h3,
  .content h4,
  body#tinymce.wp-editor h4,
  .content h5,
  body#tinymce.wp-editor h5,
  .content h6,
  body#tinymce.wp-editor h6 {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 264, resources/assets/styles/components/_type.scss */

  .content h3,
  body#tinymce.wp-editor h3,
  .content h4,
  body#tinymce.wp-editor h4,
  .content h5,
  body#tinymce.wp-editor h5,
  .content h6,
  body#tinymce.wp-editor h6 {
    font-size: 20px;
  }
}

/* line 273, resources/assets/styles/components/_type.scss */

.content p,
body#tinymce.wp-editor p,
.content ul,
body#tinymce.wp-editor ul,
.content ol,
body#tinymce.wp-editor ol {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 1.3em;
}

@media screen and (min-width: 1000px) {
  /* line 273, resources/assets/styles/components/_type.scss */

  .content p,
  body#tinymce.wp-editor p,
  .content ul,
  body#tinymce.wp-editor ul,
  .content ol,
  body#tinymce.wp-editor ol {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 273, resources/assets/styles/components/_type.scss */

  .content p,
  body#tinymce.wp-editor p,
  .content ul,
  body#tinymce.wp-editor ul,
  .content ol,
  body#tinymce.wp-editor ol {
    font-size: 20px;
  }
}

/* line 281, resources/assets/styles/components/_type.scss */

.content a,
body#tinymce.wp-editor a {
  font-size: inherit;
}

/* line 290, resources/assets/styles/components/_type.scss */

.content ul.unstyled li,
body#tinymce.wp-editor ul.unstyled li {
  padding-left: 0;
}

/* line 294, resources/assets/styles/components/_type.scss */

.content ul.unstyled li::before,
body#tinymce.wp-editor ul.unstyled li::before {
  display: none;
}

/* line 301, resources/assets/styles/components/_type.scss */

.content ul li,
body#tinymce.wp-editor ul li {
  position: relative;
  padding-left: 1.3em;
}

/* line 306, resources/assets/styles/components/_type.scss */

.content ul li::before,
body#tinymce.wp-editor ul li::before {
  top: -0.03em;
  left: 0;
  display: inline-block;
  position: absolute;
  content: '\2022';
}

/* line 317, resources/assets/styles/components/_type.scss */

.content ol,
body#tinymce.wp-editor ol {
  counter-reset: list;
}

/* line 321, resources/assets/styles/components/_type.scss */

.content ol li,
body#tinymce.wp-editor ol li {
  position: relative;
  padding-left: 1.5em;
  counter-increment: list;
}

/* line 327, resources/assets/styles/components/_type.scss */

.content ol li::before,
body#tinymce.wp-editor ol li::before {
  top: 0;
  left: 0;
  display: inline-block;
  position: absolute;
  content: counter(list) ".";
}

/* line 340, resources/assets/styles/components/_type.scss */

.content .no-style li,
body#tinymce.wp-editor .no-style li {
  padding-left: 0;
}

/* line 344, resources/assets/styles/components/_type.scss */

.content .no-style li::before,
body#tinymce.wp-editor .no-style li::before {
  display: none;
}

/* line 351, resources/assets/styles/components/_type.scss */

.content > *:last-child,
body#tinymce.wp-editor > *:last-child {
  margin-bottom: 0;
}

/* line 357, resources/assets/styles/components/_type.scss */

body#tinymce.wp-editor {
  padding: 10px !important;
  border-top: 2px solid #ec008c;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.kerned,
.header-nav li {
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.display,
.post-card__info::after,
.header-nav li {
  font-family: "MarsSansCond", sans-serif;
  font-weight: 600;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.ucase {
  text-transform: uppercase;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.fw--bold,
.content h1,
body#tinymce.wp-editor h1,
.content h2,
body#tinymce.wp-editor h2,
.popup-nav,
.table-column--primary {
  font-weight: 700;
}

/**
 *  General
 */

/* line 5, resources/assets/styles/components/_elements.scss */

* {
  -webkit-font-smoothing: antialiased;
  font-family: "Inter", sans-serif;
}

/* line 11, resources/assets/styles/components/_elements.scss */

img {
  max-width: 100%;
  display: block;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.button {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .button {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .button {
    font-size: 16px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.social-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 33, resources/assets/styles/components/_elements.scss */

.social-nav__item:hover svg {
  -webkit-transform: scale(0.9);
       -o-transform: scale(0.9);
          transform: scale(0.9);
}

/* line 39, resources/assets/styles/components/_elements.scss */

.social-nav__item a,
.social-nav__item button {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 47, resources/assets/styles/components/_elements.scss */

.social-nav__item svg {
  pointer-events: none;
  height: 100%;
  width: auto;
  display: block;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 69, resources/assets/styles/helpers/_bem.scss */

.social-nav--visit .social-nav__item {
  height: 32px;
  margin-right: 42px;
}

@media (max-width: 1480px) {
  /* line 69, resources/assets/styles/helpers/_bem.scss */

  .social-nav--visit .social-nav__item {
    height: 20px;
  }
}

@media (max-width: 1000px) {
  /* line 69, resources/assets/styles/helpers/_bem.scss */

  .social-nav--visit .social-nav__item {
    height: 18px;
    margin-right: 16px;
  }
}

/* line 75, resources/assets/styles/components/_elements.scss */

.social-nav--visit .social-nav__item:last-child {
  margin-right: 0;
}

/* line 80, resources/assets/styles/components/_elements.scss */

.social-nav--visit .social-nav__item svg {
  fill: #9b9b9b;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.social-nav--copy {
  position: relative;
}

/* line 69, resources/assets/styles/helpers/_bem.scss */

.social-nav--share .social-nav__item {
  margin-right: 12px;
  height: 35px;
  width: 35px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 105, resources/assets/styles/components/_elements.scss */

.social-nav--share .social-nav__item:last-child {
  margin-right: 0;
}

/* line 110, resources/assets/styles/components/_elements.scss */

.social-nav--share .social-nav__item a,
.social-nav--share .social-nav__item button {
  height: 19px;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 119, resources/assets/styles/components/_elements.scss */

.social-nav--share .social-nav__item svg {
  height: 100%;
}

/* line 128, resources/assets/styles/components/_elements.scss */

.social-nav--email svg {
  height: 80%;
}

/* line 138, resources/assets/styles/components/_elements.scss */

.social-nav--twitter.social-nav__item svg {
  height: 80%;
}

/* line 146, resources/assets/styles/components/_elements.scss */

.lity,
.lity-wrap,
.lity-content,
.lity-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.lity {
  overflow: hidden;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.lity-wrap {
  padding: 60px 150px;
}

@media (max-width: 1640px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-wrap {
    padding: 30px 60px;
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-wrap {
    padding: 24px 50px;
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-wrap {
    padding: 16px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.lity-container {
  height: 100%;
}

/* line 189, resources/assets/styles/components/_elements.scss */

.lity-content::after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 197, resources/assets/styles/components/_elements.scss */

.lity-image img {
  max-height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
  -webkit-box-shadow: 0 0 5px #000000;
          box-shadow: 0 0 5px #000000;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 205, resources/assets/styles/components/_elements.scss */

.lity-image img.zoom {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
  -webkit-transform: scale(1.2);
       -o-transform: scale(1.2);
          transform: scale(1.2);
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.lity-close {
  -webkit-transform: translateY(46px);
       -o-transform: translateY(46px);
          transform: translateY(46px);
  margin-right: 150px;
  width: 25px !important;
  height: 18px !important;
  color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 9999;
  -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;
  font-size: 0 !important;
}

@media (max-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-close {
    -webkit-transform: translateY(38px);
         -o-transform: translateY(38px);
            transform: translateY(38px);
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-close {
    -webkit-transform: translate(-15px, 31px);
         -o-transform: translate(-15px, 31px);
            transform: translate(-15px, 31px);
  }
}

/* line 236, resources/assets/styles/components/_elements.scss */

.lity-close:hover {
  color: transparent;
}

/* line 241, resources/assets/styles/components/_elements.scss */

.lity-close:focus {
  color: transparent;
}

/* line 246, resources/assets/styles/components/_elements.scss */

.lity-close:active {
  top: 0;
}

/* line 251, resources/assets/styles/components/_elements.scss */

.lity-close::before,
.lity-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* line 263, resources/assets/styles/components/_elements.scss */

.lity-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
       -o-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

/* line 268, resources/assets/styles/components/_elements.scss */

.lity-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
       -o-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 1640px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-close {
    margin-right: 60px;
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-close {
    margin-right: 50px;
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .lity-close {
    margin-right: 16px;
  }
}

/* line 291, resources/assets/styles/components/_elements.scss */

a[data-lity]::after {
  content: '';
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 20px;
  width: 20px;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJpY29uLXNlYXJjaCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDIyLjYgMjEuNSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjIuNiAyMS41OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxwYXRoIGZpbGw9IiM1YzVjNWMiIGQ9Ik0yMi42LDE5LjVsLTUuOC01LjljMC43LTEuNCwxLjItMywxLjItNC42YzAtNS00LTktOS05UzAsNCwwLDlzNCw5LDksOWMyLjIsMCw0LjMtMC44LDUuOC0yLjJsNS42LDUuN0wyMi42LDE5LjV6IE05LDE1CgljLTMuMywwLTYtMi43LTYtNnMyLjctNiw2LTZzNiwyLjcsNiw2UzEyLjMsMTUsOSwxNXoiLz4KPC9zdmc+Cg==);
  background-position: center;
  background-repeat: no-repeat;
}

/* line 1, resources/assets/styles/components/_global.scss */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 8, resources/assets/styles/components/_global.scss */

body {
  margin: 0;
}

/* line 13, resources/assets/styles/components/_global.scss */

html,
.category-filter-list,
.table-body {
  /* stylelint-disable */
  scrollbar-color: rgba(112, 112, 112, 0.5) transparent;
  scrollbar-width: thin;
  /* stylelint-enable */
}

/* line 19, resources/assets/styles/components/_global.scss */

html ::-webkit-scrollbar,
.category-filter-list ::-webkit-scrollbar,
.table-body ::-webkit-scrollbar {
  width: 5px;
}

/* line 24, resources/assets/styles/components/_global.scss */

html ::-webkit-scrollbar-thumb,
.category-filter-list ::-webkit-scrollbar-thumb,
.table-body ::-webkit-scrollbar-thumb {
  background: rgba(112, 112, 112, 0.5);
  border-radius: 999px;
}

/* line 30, resources/assets/styles/components/_global.scss */

html ::-webkit-scrollbar-track,
.category-filter-list ::-webkit-scrollbar-track,
.table-body ::-webkit-scrollbar-track {
  background: transparent;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.body-wrapper {
  position: relative;
  z-index: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.inner-wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1916px;
  padding-left: 150px;
  padding-right: 150px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1640px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .inner-wrapper {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .inner-wrapper {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .inner-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.svg-sprite {
  position: absolute;
  height: 0;
  left: 0;
  left: -999px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-wrap,
.popup-menu > .inner-wrapper {
  z-index: 5;
  margin-top: 99px;
}

@media (max-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .page-wrap,
  .popup-menu > .inner-wrapper {
    margin-top: 85px;
  }
}

@media (max-width: 1280px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .page-wrap,
  .popup-menu > .inner-wrapper {
    margin-top: 82px;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.page-wrap--home {
  z-index: 9;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.grid,
.grid--extra {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-column-gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.grid--extra {
  grid-template-columns: repeat(16, minmax(0, 1fr));
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.contains-link {
  position: relative;
}

/* line 122, resources/assets/styles/components/_global.scss */

.contains-link > a {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 5;
}

/* line 130, resources/assets/styles/components/_global.scss */

.contains-link > img {
  text-indent: -999px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.contains-image {
  position: relative;
}

/* line 140, resources/assets/styles/components/_global.scss */

.contains-image > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  text-indent: -999px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.mobile-show,
.mobile-show--ib,
.mobile-show--flex,
.tablet-show--ib,
.tablet-show--flex {
  display: none !important;
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .mobile-show,
  .mobile-show--ib,
  .mobile-show--flex,
  .tablet-show--ib,
  .tablet-show--flex {
    display: block !important;
  }
}

@media (max-width: 540px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .mobile-show--ib {
    display: inline-block !important;
  }
}

@media (max-width: 540px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .mobile-show--flex {
    display: inline-block !important;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.mobile-hide {
  display: block !important;
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .mobile-hide {
    display: none !important;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.mobile-hide--ib {
  display: inline-block !important;
}

@media (max-width: 540px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .mobile-hide--ib {
    display: none !important;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.mobile-hide--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 540px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .mobile-hide--flex {
    display: none !important;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.tablet-show {
  display: none !important;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .tablet-show {
    display: block !important;
  }
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .tablet-show--ib {
    display: inline-block !important;
  }
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .tablet-show--flex {
    display: inline-block !important;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.tablet-hide {
  display: block !important;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .tablet-hide {
    display: none !important;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.tablet-hide--ib {
  display: inline-block !important;
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .tablet-hide--ib {
    display: none !important;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.tablet-hide--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .tablet-hide--flex {
    display: none !important;
  }
}

/* line 284, resources/assets/styles/components/_global.scss */

.collection-card img,
.post-card img,
.news-card img,
.news-card--home img {
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 291, resources/assets/styles/components/_global.scss */

.collection-card:hover img,
.post-card:hover img,
.news-card:hover img,
.news-card--home:hover img {
  -webkit-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}

/**
 *  Spacing Map
 *  Example usage:
 *
 *  $purple-spacing: (
 *    null  : (20px),
 *    small : 20px,
 *    medium: 40px
 *  );
 *
 *  .test{
 *    @include spacing(padding-bottom, $purple-spacing);
 *  }
 */

/* * Margin bottom row */

/* line 51, resources/assets/styles/helpers/_bem.scss */

.form-row,
.gform_wrapper form .gform_body > .gform_fields > li,
.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span.ginput_full,
.gform_wrapper form .gform_body > .gform_fields > li.title-block {
  margin: 0 0;
}

/* Margin bottom label */

/* line 51, resources/assets/styles/helpers/_bem.scss */

.label-row,
.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span label,
.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li label,
.gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
  margin-bottom: 0;
}

/* Input row style */

/* line 51, resources/assets/styles/helpers/_bem.scss */

.input-style,
.gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"],
.gform_wrapper form .gform_body > .gform_fields > li select,
.gform_wrapper form .gform_body > .gform_fields > li textarea {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .input-style,
  .gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
  .gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
  .gform_wrapper form .gform_body > .gform_fields > li input[type="tel"],
  .gform_wrapper form .gform_body > .gform_fields > li select,
  .gform_wrapper form .gform_body > .gform_fields > li textarea {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .input-style,
  .gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
  .gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
  .gform_wrapper form .gform_body > .gform_fields > li input[type="tel"],
  .gform_wrapper form .gform_body > .gform_fields > li select,
  .gform_wrapper form .gform_body > .gform_fields > li textarea {
    font-size: 16px;
  }
}

/* line 18, resources/assets/styles/components/_gforms.scss */

.input-style:focus,
.gform_wrapper form .gform_body > .gform_fields > li input:focus[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li input:focus[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li input:focus[type="tel"],
.gform_wrapper form .gform_body > .gform_fields > li select:focus,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus {
  border-bottom: 1px solid #000000;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.input-style--reverse {
  position: static;
}

/* Button style */

/* line 51, resources/assets/styles/helpers/_bem.scss */

.form-button,
.gform_wrapper form .gform_footer .gform_button {
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
  margin: 0 auto;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.validation_message {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/**
 * Placeholder
 * These variables are fed into the placeholder mixing,
 * found in library.scss
 */

/**
 * Do any more custom
 * form styling below
 */

/* line 51, resources/assets/styles/helpers/_bem.scss */

.gform_wrapper {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .gform_wrapper {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .gform_wrapper {
    font-size: 16px;
  }
}

/* line 65, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form {
  position: relative;
  text-align: left;
}

/* line 72, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form#gform_1 .gform_footer {
  position: absolute;
  top: 0;
  right: 0;
}

/* line 82, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 92, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li {
  width: 100%;
  position: relative;
  padding-left: 0;
}

/* line 101, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.gfield_error .gfield_label {
  opacity: 0;
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 107, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.gfield_error .validation_message {
  opacity: 1;
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 400ms;
       -o-transition-delay: 400ms;
          transition-delay: 400ms;
}

/* line 114, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.gfield_error .ginput_container::after {
  opacity: 1;
}

/* line 120, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li:last-child {
  margin-bottom: 0;
}

/* line 125, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li::before {
  display: none;
}

@media (max-width: 540px) {
  /* line 92, resources/assets/styles/components/_gforms.scss */

  .gform_wrapper form .gform_body > .gform_fields > li {
    width: 100% !important;
  }
}

/* line 135, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_preview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
}

/* line 142, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_preview strong {
  font-weight: normal;
  margin-left: 10px;
}

/* line 149, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_checkbox {
  padding-top: 1em;
  display: block;
}

/* line 155, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

/* line 159, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
  width: calc(50% - (8px)) !important;
  margin-right: 0 !important;
}

@media (max-width: 1000px) {
  /* line 159, resources/assets/styles/components/_gforms.scss */

  .gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
    width: 100% !important;
  }
}

/* line 171, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 177, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span {
  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;
  width: 32%;
}

/* line 183, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span.ginput_full {
  width: 100%;
}

/* line 189, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_address span label {
  display: block;
}

/* line 199, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 205, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_date > div .ginput_container {
  width: 31%;
  position: relative;
}

/* line 213, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 223, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li {
  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-bottom: 5px;
  padding-left: 0;
  margin-right: 20px;
}

/* line 232, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li::after {
  display: none;
}

/* line 237, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_radio li input[type="radio"] {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}

/* line 246, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .captcha {
  margin-top: 20px;
}

@media (max-width: 1000px) {
  /* line 246, resources/assets/styles/components/_gforms.scss */

  .gform_wrapper form .gform_body > .gform_fields > li .captcha {
    margin-top: 15px;
  }
}

/* line 256, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 266, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li {
  width: 100%;
  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-bottom: 5px;
  padding-left: 0;
  margin-right: 20px;
}

/* line 276, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li::before,
.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li::after {
  display: none;
}

/* line 282, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .gfield_checkbox li input[type="checkbox"] {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 8px;
}

/* line 296, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li > .gfield_label {
  display: block;
}

/* line 302, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container {
  position: relative;
}

/* line 306, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 310, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container input[aria-invalid="true"] {
  color: #5c5c5c;
}

/* line 315, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container input[aria-invalid="false"]:not([value=""]) {
  color: #5c5c5c;
}

/* line 322, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select {
  position: relative;
  width: 100%;
}

/* line 327, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li .ginput_container_select select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  padding-right: 30px;
}

/* line 348, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.hide-label > .gfield_label {
  display: none;
}

/* line 356, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.centre-text > .gfield_label {
  text-align: center;
  display: block;
}

/* line 362, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.centre-text input[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li.centre-text input[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li.centre-text input[type="tel"],
.gform_wrapper form .gform_body > .gform_fields > li.centre-text select,
.gform_wrapper form .gform_body > .gform_fields > li.centre-text textarea {
  text-align: center;
}

/* line 372, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"],
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"],
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"],
.gform_wrapper form .gform_body > .gform_fields > li select,
.gform_wrapper form .gform_body > .gform_fields > li textarea {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  resize: none;
  border-radius: 0 0 0 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 389, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:focus,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:focus,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]:focus,
.gform_wrapper form .gform_body > .gform_fields > li select:focus,
.gform_wrapper form .gform_body > .gform_fields > li textarea:focus {
  outline: 0;
}

/* line 366, resources/assets/styles/helpers/_library.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::-webkit-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::-webkit-input-placeholder {
  color: #000000;
  opacity: 1;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]::placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::placeholder {
  color: #000000;
  opacity: 1;
}

/* line 372, resources/assets/styles/helpers/_library.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:-moz-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:-moz-placeholder {
  color: #000000;
  opacity: 1;
}

/* line 378, resources/assets/styles/helpers/_library.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select:-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea:-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

/* line 384, resources/assets/styles/helpers/_library.scss */

.gform_wrapper form .gform_body > .gform_fields > li input[type="text"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="email"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li input[type="tel"]::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li select::-ms-input-placeholder,
.gform_wrapper form .gform_body > .gform_fields > li textarea::-ms-input-placeholder {
  color: #000000;
  opacity: 1;
}

/* line 397, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.third {
  width: calc(33.33% - ((32px) / 3));
}

/* line 402, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.half {
  width: calc(50% - (8px));
}

@media (max-width: 540px) {
  /* line 402, resources/assets/styles/components/_gforms.scss */

  .gform_wrapper form .gform_body > .gform_fields > li.half {
    width: 100%;
  }
}

/* line 412, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_body > .gform_fields > li.two-thirds {
  width: calc(66.66% - (8px));
}

/* line 420, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_footer {
  text-align: center;
}

/* line 424, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_footer .gform_button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-progress-appearance: none;
  border-radius: 0 0 0 0;
}

/* line 431, resources/assets/styles/components/_gforms.scss */

.gform_wrapper form .gform_footer .gform_button:focus {
  outline: 0;
}

/**
 * Resets / Defaults
 */

/* line 446, resources/assets/styles/components/_gforms.scss */

.gf_clear,
.gform_card_icon_container,
.ginput_card_security_code_icon,
img.gform_ajax_spinner,
.validation_error {
  display: none !important;
}

/* line 455, resources/assets/styles/components/_gforms.scss */

.gform_validation_container {
  position: fixed !important;
  left: 999px;
  visibility: hidden;
}

/* line 462, resources/assets/styles/components/_gforms.scss */

.gform_confirmation_message {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 462, resources/assets/styles/components/_gforms.scss */

  .gform_confirmation_message {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 462, resources/assets/styles/components/_gforms.scss */

  .gform_confirmation_message {
    font-size: 16px;
  }
}

/* line 467, resources/assets/styles/components/_gforms.scss */

.gfield_required {
  display: none;
}

/* line 472, resources/assets/styles/components/_gforms.scss */

.ginput_recaptcha > div {
  margin: 0 auto;
  text-align: center;
}

/* Radio button */

/* line 2, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute !important;
  left: -9999px;
}

/* line 8, resources/assets/styles/components/_checkbox.scss */

#crm-container [type="radio"]:not(:checked),
#crm-container
  [type="radio"]:checked {
  position: static !important;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* line 15, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative !important;
  padding-left: 21px !important;
  cursor: pointer !important;
}

/* line 23, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:not(:checked) + label::before,
[type="radio"]:checked + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  height: 15px;
  width: 15px;
  border-radius: 100%;
  border: 2px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 37, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:not(:checked) + label::after,
[type="radio"]:checked + label::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 0;
  opacity: 1;
  background: #fff;
  border-radius: 100%;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

/* line 53, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:not(:checked) + label::after {
  opacity: 0;
}

/* line 58, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:checked + label::after {
  opacity: 1;
}

/* disabled radio */

/* line 64, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:disabled:not(:checked) + label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

/* line 71, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:disabled:checked + label::after {
  color: #999;
}

/* line 76, resources/assets/styles/components/_checkbox.scss */

[type="radio"]:disabled + label {
  color: #aaa;
}

/* CHECKBOX */

/* line 84, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute !important;
  left: -9999px;
}

/* line 90, resources/assets/styles/components/_checkbox.scss */

#crm-container [type="checkbox"]:not(:checked),
#crm-container
  [type="checkbox"]:checked {
  position: static !important;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

/* line 97, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative !important;
  padding-left: 22px !important;
  cursor: pointer !important;
}

/* line 105, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:not(:checked) + label::before,
[type="checkbox"]:checked + label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 15px;
  width: 15px;
  background: transparent;
  border: solid 2px #fff;
}

/* line 119, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:not(:checked) + label::after,
[type="checkbox"]:checked + label::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  top: 1px;
  left: 0;
  opacity: 1;
  background: #fff;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 133, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:not(:checked) + label::after {
  opacity: 0;
}

/* line 138, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:checked + label::after {
  opacity: 1;
}

/* disabled checkbox */

/* line 144, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:disabled:checked + label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}

/* line 151, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:disabled:checked + label::after {
  color: #999;
}

/* line 156, resources/assets/styles/components/_checkbox.scss */

[type="checkbox"]:disabled + label {
  color: #aaa;
}

/*
*  Owl Carousel - Core
*/

/* line 4, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}

/* line 13, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

/* line 21, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-stage::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 31, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

/* line 38, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 49, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 59, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* line 65, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 71, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 83, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

/* line 94, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-loaded {
  display: block;
}

/* line 99, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 105, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 110, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 115, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 125, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 131, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 136, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */

/* line 142, resources/assets/styles/components/_owlCarousel.scss */

.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */

/* line 150, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
       -o-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
       -o-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* line 156, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 161, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 166, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
       -o-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */

/* line 187, resources/assets/styles/components/_owlCarousel.scss */

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */

/* line 195, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 201, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

/* line 207, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */

/* line 215, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 222, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: -o-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease, -o-transform 100ms ease;
}

/* line 237, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
       -o-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

/* line 243, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 249, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 259, resources/assets/styles/components/_owlCarousel.scss */

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
*[data-wp]
{
	opacity: 0;
	transform: translateY(30px);
	@include transition(all, 800ms);
	transition-delay: 200ms;

	&.active
	{
		{
			transform: none;
			opacity: 1;
		}
	}
}
*/

/* line 51, resources/assets/styles/helpers/_bem.scss */

.transition-fade {
  opacity: 1;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 7, resources/assets/styles/components/_swup.scss */

html.is-animating .transition-fade {
  opacity: 0;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.cookie-notice {
  background: #000000;
  color: #ffffff;
  left: 0;
  top: 0;
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 10;
}

/* line 1, resources/assets/styles/layouts/_home.scss */

.line {
  fill: none;
  stroke: #000000;
}

/* line 7, resources/assets/styles/layouts/_home.scss */

.st0 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: var(--svg1);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 15, resources/assets/styles/layouts/_home.scss */

.st1 {
  fill: var(--svg2);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 21, resources/assets/styles/layouts/_home.scss */

.st2 {
  fill: var(--svg3);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 27, resources/assets/styles/layouts/_home.scss */

.st3 {
  fill: var(--svg4);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 33, resources/assets/styles/layouts/_home.scss */

.st4 {
  fill: var(--svg5);
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 42, resources/assets/styles/layouts/_home.scss */

.scrolled.pink-active {
  --text: #000000;
  --svg1: #ec008c;
  --svg2: #231f20;
  --svg3: #6d6e71;
  --svg4: #ffffff;
  --svg5: #231f20;
}

/* line 44, resources/assets/styles/layouts/_home.scss */

.scrolled.pink-active .header {
  background: #ffffff;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.pink-active {
  --background: #ec008c;
  --svg1: #231f20;
  --svg2: #231f20;
  --svg3: #231f20;
  --svg4: #ec008c;
  --svg5: #ec008c;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.pink-active .header {
  background: transparent;
}

/* line 74, resources/assets/styles/layouts/_home.scss */

.pink-active .hero-text__icon > span .icon__img,
.pink-active .hero-text__icon > span .icon--img-neg {
  opacity: 0;
}

/* line 78, resources/assets/styles/layouts/_home.scss */

.pink-active .hero-text__icon > span .icon__img.icon--img-neg,
.pink-active .hero-text__icon > span .icon--img-neg {
  opacity: 1;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.page-wrap--home {
  z-index: 9;
  position: relative;
  background: #ffffff;
  padding-top: 90px;
}

@media (max-width: 540px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .page-wrap--home {
    padding-top: 20px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.hero-text {
  background: var(--background);
  position: -webkit-sticky;
  position: sticky;
  overflow: hidden;
  top: 0;
  padding: 14vh 0;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  font-family: "MarsSansCond", sans-serif;
  z-index: 0;
  -webkit-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .hero-text {
    z-index: -1;
  }
}

/* line 121, resources/assets/styles/layouts/_home.scss */

.hero-text * {
  font: inherit;
}

@media (max-width: 1640px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .hero-text {
    padding: 16vh 0;
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .hero-text {
    min-height: auto;
    padding: 140px 0 72px;
  }
}

/* line 137, resources/assets/styles/layouts/_home.scss */

.hero-text .inner-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;
}

@media (max-width: 540px) {
  /* line 137, resources/assets/styles/layouts/_home.scss */

  .hero-text .inner-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* line 149, resources/assets/styles/layouts/_home.scss */

.hero-text h1 {
  font-size: 8vw;
  line-height: 1.05;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  word-wrap: break-word;
  font-size: 10vw;
  line-height: 1.05;
}

@media screen and (min-width: 1000px) {
  /* line 149, resources/assets/styles/layouts/_home.scss */

  .hero-text h1 {
    font-size: 7.5vw;
    line-height: 1.05;
  }
}

@media screen and (min-width: 1480px) {
  /* line 149, resources/assets/styles/layouts/_home.scss */

  .hero-text h1 {
    font-size: 120px;
  }
}

@media screen and (min-width: 1640px) {
  /* line 149, resources/assets/styles/layouts/_home.scss */

  .hero-text h1 {
    font-size: 170px;
  }
}

@supports (font-size: clamp(110px, 8vw, 170px)) {
  /* line 149, resources/assets/styles/layouts/_home.scss */

  .hero-text h1 {
    font-size: clamp(120px, 8vw, 170px);
  }

@media (max-width: 1480px) {
    /* line 149, resources/assets/styles/layouts/_home.scss */

    .hero-text h1 {
      font-size: clamp(60px, 10vw, 110px);
    }
}

@media (max-width: 420px) {
    /* line 149, resources/assets/styles/layouts/_home.scss */

    .hero-text h1 {
      font-size: clamp(54px, 10vw, 110px);
    }
}

@media (max-width: 380px) {
    /* line 149, resources/assets/styles/layouts/_home.scss */

    .hero-text h1 {
      font-size: clamp(48px, 10vw, 110px);
    }
}
}

/* line 178, resources/assets/styles/layouts/_home.scss */

.hero-text h1 > * {
  word-wrap: break-word;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: pre-wrap;
  font-family: inherit;
}

/* line 185, resources/assets/styles/layouts/_home.scss */

.hero-text h1 > *::after {
  content: '\2008';
}

/* line 190, resources/assets/styles/layouts/_home.scss */

.hero-text h1 > *:last-child::after {
  display: none;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.hero-text__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

/* line 201, resources/assets/styles/layouts/_home.scss */

.hero-text__icon > span {
  display: inline-block;
  height: 0.93em;
  width: 0.93em;
  color: transparent;
  -webkit-transform: translateY(15%);
       -o-transform: translateY(15%);
          transform: translateY(15%);
  position: relative;
}

/* line 210, resources/assets/styles/layouts/_home.scss */

.hero-text__icon > span .icon__img,
.hero-text__icon > span .icon--img-neg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 222, resources/assets/styles/layouts/_home.scss */

.hero-text__icon > span .icon--img-neg {
  opacity: 0;
  z-index: 2;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.pink-trigger {
  word-wrap: break-word;
  display: inline;
  white-space: pre-wrap;
  text-decoration: underline;
  font: inherit;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.home-landing {
  margin-bottom: 75px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .home-landing {
    margin-bottom: 30px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.home-landing__inner {
  border-bottom: 1px solid #707070;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 120px;
  padding-bottom: 75px;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .home-landing__inner {
    grid-row-gap: 30px;
    padding-bottom: 30px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.home-landing .collection-card {
  grid-column: span 3;
}

/* line 271, resources/assets/styles/layouts/_home.scss */

.home-landing .collection-card:nth-child(5n + 1) {
  grid-column: span 6;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .home-landing .collection-card {
    grid-column: span 6;
  }

  /* line 280, resources/assets/styles/layouts/_home.scss */

  .home-landing .collection-card:nth-child(5n + 1) {
    grid-column: -1 / 1;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.home-feed {
  margin-bottom: 135px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .home-feed {
    margin-bottom: 65px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.home-feed__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 95px;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .home-feed__header {
    margin-bottom: 45px;
  }
}

/* line 308, resources/assets/styles/layouts/_home.scss */

.home-feed__header h4 {
  width: calc(4 / 12 * 100% - (16px / 2));
  margin-right: 16px;
}

@media (max-width: 1000px) {
  /* line 308, resources/assets/styles/layouts/_home.scss */

  .home-feed__header h4 {
    width: auto;
    margin-right: 32px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.home-feed__header .social-nav {
  padding-left: 42px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .home-feed__header .social-nav {
    padding-left: 0;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.home-feed__body {
  grid-row-gap: 40px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-header {
  background: #f8f8f8;
  position: relative;
}

/* line 6, resources/assets/styles/layouts/_page.scss */

.page-header::before {
  display: block;
  content: '';
  min-height: 196px;
  height: 25vh;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.default-page-body {
  margin-bottom: 165px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .default-page-body {
    margin-bottom: 85px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-body {
  padding-top: 60px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .page-body {
    padding-top: 32px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.page-body__sidebar {
  grid-column: span 4;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .page-body__sidebar {
    grid-column: -1 / 1;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.page-body__main {
  grid-column: span 8;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .page-body__main {
    grid-column: -1 / 1;
    margin-bottom: 40px;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.page-body--title {
  margin-bottom: 12px;
}

/* line 62, resources/assets/styles/layouts/_page.scss */

.page-body--title h1 {
  font-size: 22px;
  line-height: 1.1;
}

@media screen and (min-width: 1000px) {
  /* line 62, resources/assets/styles/layouts/_page.scss */

  .page-body--title h1 {
    font-size: 22px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 62, resources/assets/styles/layouts/_page.scss */

  .page-body--title h1 {
    font-size: 30px;
  }
}

/* line 67, resources/assets/styles/layouts/_page.scss */

.page-body--title .key-detail {
  padding-top: 1em;
  display: block;
  color: #ec008c;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.page-body--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .page-body--social {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-builder {
  position: relative;
  width: 100%;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-page-body {
  margin-bottom: 100px;
  padding-top: 80px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-page-body {
    padding-top: 40px;
    margin-bottom: 55px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-page-body .page-body--title {
  margin-bottom: 32px;
  grid-column: span 5;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-page-body .page-body--title {
    grid-column: -1 / 1;
  }
}

/* line 22, resources/assets/styles/layouts/_collection.scss */

.collection-page-body .page-body--title h1 {
  font-size: 34px;
  line-height: 1.32;
  line-height: 0.97;
  padding-right: 30%;
}

@media screen and (min-width: 1000px) {
  /* line 22, resources/assets/styles/layouts/_collection.scss */

  .collection-page-body .page-body--title h1 {
    font-size: 34px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 22, resources/assets/styles/layouts/_collection.scss */

  .collection-page-body .page-body--title h1 {
    font-size: 67px;
  }
}

@media (max-width: 1000px) {
  /* line 22, resources/assets/styles/layouts/_collection.scss */

  .collection-page-body .page-body--title h1 {
    padding-right: 0;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-page-body .page-body__main {
  grid-column: span 7;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-page-body .page-body__main {
    grid-column: -1 / 1;
  }
}

/* line 47, resources/assets/styles/layouts/_collection.scss */

.collection-page-body .category-filter h1 {
  padding-right: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-posts {
  margin-bottom: 125px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-posts {
    margin-bottom: 65px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-posts .grid--extra {
  row-gap: 75px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-posts .grid--extra {
    row-gap: 30px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-posts .grid--extra .collection-card {
  grid-column: span 4;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-posts .grid--extra .collection-card {
    grid-column: span 8;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.taxonomy-posts {
  margin-bottom: 165px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .taxonomy-posts {
    margin-bottom: 65px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.taxonomy-posts .grid--extra {
  row-gap: 90px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .taxonomy-posts .grid--extra {
    row-gap: 30px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.taxonomy-posts .grid--extra .post-card {
  grid-column: span 4;
}

/* line 106, resources/assets/styles/layouts/_collection.scss */

.taxonomy-posts .grid--extra .post-card:first-child {
  grid-column: span 8;
}

/* line 111, resources/assets/styles/layouts/_collection.scss */

.taxonomy-posts .grid--extra .post-card:nth-child(4n + 1) {
  grid-column: span 8;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .taxonomy-posts .grid--extra .post-card {
    grid-column: span 8;
  }

  /* line 120, resources/assets/styles/layouts/_collection.scss */

  .taxonomy-posts .grid--extra .post-card:nth-child(4n + 1) {
    grid-column: span 8;
  }

  /* line 125, resources/assets/styles/layouts/_collection.scss */

  .taxonomy-posts .grid--extra .post-card:nth-child(5n + 1) {
    grid-column: -1 / 1;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.category-filter {
  position: relative;
  display: inline-block;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.filter-trigger,
.filter-trigger--mobile {
  text-align: left;
}

/* line 146, resources/assets/styles/layouts/_collection.scss */

.filter-trigger.active svg,
.active.filter-trigger--mobile svg {
  -webkit-transform: translateY(150%) scaleY(-1);
       -o-transform: translateY(150%) scaleY(-1);
          transform: translateY(150%) scaleY(-1);
}

/* line 152, resources/assets/styles/layouts/_collection.scss */

.filter-trigger p,
.filter-trigger--mobile p {
  width: 100%;
  display: block;
  color: #ec008c;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.filter-trigger__inner {
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  z-index: 10;
}

@media (max-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-trigger__inner {
    padding-bottom: 10px;
  }
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-trigger__inner {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-right: 12px;
    font-size: 34px;
    line-height: 1.32;
  }
}

@media screen and (max-width: 1000px) and (min-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-trigger__inner {
    font-size: 34px;
  }
}

@media screen and (max-width: 1000px) and (min-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-trigger__inner {
    font-size: 67px;
  }
}

@media (max-width: 1000px) {
  /* line 178, resources/assets/styles/layouts/_collection.scss */

  .filter-trigger__inner option {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 1000px) and (min-width: 1000px) {
  /* line 178, resources/assets/styles/layouts/_collection.scss */

  .filter-trigger__inner option {
    font-size: 14px;
  }
}

@media screen and (max-width: 1000px) and (min-width: 1480px) {
  /* line 178, resources/assets/styles/layouts/_collection.scss */

  .filter-trigger__inner option {
    font-size: 16px;
  }
}

/* line 184, resources/assets/styles/layouts/_collection.scss */

.filter-trigger__inner::after {
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  content: '';
  z-index: 10;
  border-bottom: 2px dotted #9b9b9b;
}

/* line 196, resources/assets/styles/layouts/_collection.scss */

.filter-trigger__inner h1 {
  margin-top: 0.6em;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* line 203, resources/assets/styles/layouts/_collection.scss */

.filter-trigger__inner h1 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font: inherit;
  margin-right: 12px;
}

/* line 210, resources/assets/styles/layouts/_collection.scss */

.filter-trigger__inner h1 select {
  -webkit-box-flex: 0;
      -ms-flex: 0 0;
          flex: 0 0;
}

/* line 216, resources/assets/styles/layouts/_collection.scss */

.filter-trigger__inner svg {
  font-size: 34px;
  line-height: 1.32;
  -webkit-transform: translateY(150%);
       -o-transform: translateY(150%);
          transform: translateY(150%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke-width: 6;
  width: 0.5em;
}

@media screen and (min-width: 1000px) {
  /* line 216, resources/assets/styles/layouts/_collection.scss */

  .filter-trigger__inner svg {
    font-size: 34px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 216, resources/assets/styles/layouts/_collection.scss */

  .filter-trigger__inner svg {
    font-size: 67px;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.filter-trigger--mobile {
  display: inline-block;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.category-filter {
  position: relative;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.category-filter-list {
  display: none;
  position: absolute;
  bottom: 1px;
  left: 0;
  -webkit-transform: translateY(100%);
       -o-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
  z-index: 10;
  background: #ffffff;
  grid-column: 3 / span 12;
  padding: 0 16px;
  max-height: 300px;
  overflow: auto;
  border-bottom: 2px solid #ec008c;
}

/* line 255, resources/assets/styles/layouts/_collection.scss */

.category-filter-list ul {
  padding: 24px 0;
}

/* line 259, resources/assets/styles/layouts/_collection.scss */

.category-filter-list ul li {
  margin-bottom: 8px;
  color: #000000;
}

/* line 264, resources/assets/styles/layouts/_collection.scss */

.category-filter-list ul li a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 270, resources/assets/styles/layouts/_collection.scss */

.category-filter-list ul li a.active {
  -webkit-text-decoration-color: #ec008c;
          text-decoration-color: #ec008c;
  color: #ec008c;
}

/* line 276, resources/assets/styles/layouts/_collection.scss */

.category-filter-list ul li a:hover {
  -webkit-text-decoration-color: #ec008c;
          text-decoration-color: #ec008c;
  color: #ec008c;
}

@media (max-width: 1480px) {
  /* line 255, resources/assets/styles/layouts/_collection.scss */

  .category-filter-list ul {
    padding: 16px 0;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.filter-select {
  margin: 12px 0 0 0;
  padding: 0 0 10px 0;
  position: relative;
  outline: none;
  border: none;
}

/* line 299, resources/assets/styles/layouts/_collection.scss */

.filter-select::after {
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  content: '';
  z-index: 10;
  border-bottom: 2px dotted #9b9b9b;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.filter-select__text {
  font-size: 34px;
  line-height: 1.32;
  line-height: 1;
  pointer-events: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-select__text {
    font-size: 34px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .filter-select__text {
    font-size: 67px;
  }
}

/* line 319, resources/assets/styles/layouts/_collection.scss */

.filter-select__text span {
  font: inherit;
  margin-right: 12px;
}

/* line 325, resources/assets/styles/layouts/_collection.scss */

.filter-select__text svg {
  -webkit-transform: translateY(150%);
       -o-transform: translateY(150%);
          transform: translateY(150%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke-width: 6;
  width: 0.5em;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.filter-select__list {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  position: absolute;
}

/* line 343, resources/assets/styles/layouts/_collection.scss */

.filter-select__list option {
  color: #000000;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-card {
  grid-column: span 3;
}

/* line 358, resources/assets/styles/layouts/_collection.scss */

.collection-card:hover h4 {
  color: #ec008c;
}

/* line 363, resources/assets/styles/layouts/_collection.scss */

.collection-card:hover svg {
  fill: #ec008c;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-card {
    grid-column: span 6;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.collection-card__image {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.collection-card__info {
  font-size: 16px;
  line-height: 1.18;
  padding-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (min-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .collection-card__info {
    font-size: 20px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .collection-card__info {
    font-size: 30px;
  }
}

/* line 392, resources/assets/styles/layouts/_collection.scss */

.collection-card__info h4 {
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 397, resources/assets/styles/layouts/_collection.scss */

.collection-card__info svg {
  overflow: hidden;
  display: block;
  margin-left: 0.45em;
  width: 0.45em;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(55%);
       -o-transform: translateY(55%);
          transform: translateY(55%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 540px) {
  /* line 410, resources/assets/styles/layouts/_collection.scss */

  .collection-card__info svg {
    display: none;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.post-card {
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .post-card {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .post-card {
    font-size: 16px;
  }
}

/* line 427, resources/assets/styles/layouts/_collection.scss */

.post-card:hover .post-card__info span {
  opacity: 0;
}

/* line 432, resources/assets/styles/layouts/_collection.scss */

.post-card:hover .post-card__info::after {
  opacity: 1;
}

@media (max-width: 1000px) {
  /* line 442, resources/assets/styles/layouts/_collection.scss */

  .post-card:hover .post-card__info span {
    opacity: 1;
  }

  /* line 447, resources/assets/styles/layouts/_collection.scss */

  .post-card:hover .post-card__info::after {
    opacity: 0;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.post-card__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #f8f8f8;
  margin-bottom: 16px;
  overflow: hidden;
}

/* line 464, resources/assets/styles/layouts/_collection.scss */

.post-card__image img {
  padding: 85px;
  -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1000px) {
  /* line 472, resources/assets/styles/layouts/_collection.scss */

  .post-card__image img {
    padding: 36px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.post-card__info {
  position: relative;
  display: block;
  overflow: hidden;
}

/* line 485, resources/assets/styles/layouts/_collection.scss */

.post-card__info span {
  display: block;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 491, resources/assets/styles/layouts/_collection.scss */

.post-card__info .date {
  color: #9b9b9b;
}

/* line 496, resources/assets/styles/layouts/_collection.scss */

.post-card__info::after {
  font-size: 2.95em;
  line-height: 0.9;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  content: 'Read more';
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
}

@-webkit-keyframes flash {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@-o-keyframes flash {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.loading .load-more {
  -webkit-animation: flash 1.6s infinite linear;
       -o-animation: flash 1.6s infinite linear;
          animation: flash 1.6s infinite linear;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.loading .news-card,
.loading .news-card--home {
  opacity: 0.5;
}

/* line 26, resources/assets/styles/layouts/_news.scss */

.loading .news-card.loading-in,
.loading .loading-in.news-card--home {
  opacity: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.res-container {
  row-gap: 100px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .res-container {
    row-gap: 40px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.news-card,
.news-card--home {
  grid-column: span 4;
  opacity: 1;
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 53, resources/assets/styles/layouts/_news.scss */

.news-card:hover h5,
.news-card--home:hover h5 {
  color: #ec008c;
}

/* line 59, resources/assets/styles/layouts/_news.scss */

.news-card.loading-in,
.loading-in.news-card--home {
  opacity: 0;
  -webkit-transform: translateY(20px);
       -o-transform: translateY(20px);
          transform: translateY(20px);
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .news-card,
  .news-card--home {
    grid-column: span 8;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.news-card__image {
  overflow: hidden;
  margin-bottom: 32px;
}

/* line 74, resources/assets/styles/layouts/_news.scss */

.news-card__image img {
  width: 100%;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .news-card__image {
    margin-bottom: 18px;
  }
}

/* line 89, resources/assets/styles/layouts/_news.scss */

.news-card__info small {
  display: block;
  color: #ec008c;
  margin-bottom: 1em;
}

/* line 96, resources/assets/styles/layouts/_news.scss */

.news-card__info h5 {
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 101, resources/assets/styles/layouts/_news.scss */

.news-card__info p {
  color: #5c5c5c;
  display: block;
  margin-top: 1em;
}

@media (max-width: 1000px) {
  /* line 110, resources/assets/styles/layouts/_news.scss */

  .news-card__info p {
    display: none;
  }
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.news-card--home {
  padding-left: 42px;
  border-left: 1px solid #707070;
  padding-right: 12%;
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .news-card--home {
    grid-column: -1 / 1;
    padding-left: 42px;
    padding-right: 0;
  }

  /* line 130, resources/assets/styles/layouts/_news.scss */

  .news-card--home p {
    display: block;
    color: #000000;
  }
}

/* line 137, resources/assets/styles/layouts/_news.scss */

.news-card--home .news-card__image {
  margin-bottom: 32px;
  width: 71.76471%;
}

@media (max-width: 1000px) {
  /* line 137, resources/assets/styles/layouts/_news.scss */

  .news-card--home .news-card__image {
    margin-bottom: 18px;
    width: 87.27273%;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.load-more-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-input {
  position: absolute;
  left: -999px;
  opacity: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.load-more {
  color: #9b9b9b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 100px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  font-size: 16px;
  line-height: 1.3;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .load-more {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .load-more {
    font-size: 20px;
  }
}

/* line 176, resources/assets/styles/layouts/_news.scss */

.load-more:hover {
  color: #ec008c;
  -webkit-text-decoration-color: #ec008c;
          text-decoration-color: #ec008c;
}

/* line 181, resources/assets/styles/layouts/_news.scss */

.load-more:hover i {
  border-color: #ec008c;
}

/* line 185, resources/assets/styles/layouts/_news.scss */

.load-more:hover i::before,
.load-more:hover i::after {
  background: #ec008c;
}

/* line 193, resources/assets/styles/layouts/_news.scss */

.load-more.disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .load-more {
    margin: 50px 0;
  }
}

/* line 204, resources/assets/styles/layouts/_news.scss */

.load-more i {
  margin-right: 16px;
  border: 1.5px solid #9b9b9b;
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  position: relative;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1480px) {
  /* line 204, resources/assets/styles/layouts/_news.scss */

  .load-more i {
    border-width: 1px;
  }
}

@media (max-width: 1000px) {
  /* line 204, resources/assets/styles/layouts/_news.scss */

  .load-more i {
    width: 24px;
    height: 24px;
  }
}

/* line 226, resources/assets/styles/layouts/_news.scss */

.load-more i::before,
.load-more i::after {
  display: block;
  content: '';
  height: 10px;
  width: 1.5px;
  background: #9b9b9b;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1480px) {
  /* line 226, resources/assets/styles/layouts/_news.scss */

  .load-more i::before,
  .load-more i::after {
    width: 1px;
  }
}

@media (max-width: 1000px) {
  /* line 226, resources/assets/styles/layouts/_news.scss */

  .load-more i::before,
  .load-more i::after {
    height: 8px;
  }
}

/* line 251, resources/assets/styles/layouts/_news.scss */

.load-more i::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
       -o-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.test-test {
  position: relative;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.collection-content {
  grid-column: 3 / span 12;
  margin-bottom: 100px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .collection-content {
    grid-column: -1 / 1;
    margin-bottom: 55px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.collection-content__header {
  text-align: center;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .collection-content__header {
    margin-bottom: 15px;
    text-align: left;
  }
}

/* line 34, resources/assets/styles/layouts/_single.scss */

.collection-content__header ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 41, resources/assets/styles/layouts/_single.scss */

.collection-content__header ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 46, resources/assets/styles/layouts/_single.scss */

.collection-content__header ul li a::after {
  content: ',\2009';
}

/* line 53, resources/assets/styles/layouts/_single.scss */

.collection-content__header ul li:last-child a::after {
  display: none;
}

/* line 60, resources/assets/styles/layouts/_single.scss */

.collection-content__header a {
  color: #ec008c;
  display: block;
  margin-bottom: 0.15em;
}

@media (max-width: 1000px) {
  /* line 60, resources/assets/styles/layouts/_single.scss */

  .collection-content__header a {
    margin-bottom: 0.35em;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.collection-content__info {
  max-width: 700px;
  margin: 0 auto;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.post-slider {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .post-slider {
    margin-bottom: 20px;
  }
}

/* line 93, resources/assets/styles/layouts/_single.scss */

.post-slider .owl-nav::before,
.post-slider .post-slide__image::before,
.post-slider .gallery-slide__image::before {
  content: '';
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  padding-top: calc((600 / 1000) * 100%);
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/layouts/_single.scss */

  .post-slider .owl-nav::before,
  .post-slider .post-slide__image::before,
  .post-slider .gallery-slide__image::before {
    content: '';
    position: relative;
    display: block;
    height: 0;
    width: 100%;
    padding-top: calc((200 / 330) * 100%);
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.post-slider .owl-nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

/* line 117, resources/assets/styles/layouts/_single.scss */

.post-slider .owl-nav button {
  pointer-events: all;
  height: 20px;
  position: absolute;
  top: 50%;
  z-index: 1;
}

@media (max-width: 1000px) {
  /* line 117, resources/assets/styles/layouts/_single.scss */

  .post-slider .owl-nav button {
    height: 12px;
  }
}

/* line 130, resources/assets/styles/layouts/_single.scss */

.post-slider .owl-nav button svg {
  height: 100%;
  width: auto;
}

/* line 136, resources/assets/styles/layouts/_single.scss */

.post-slider .owl-nav button:first-child {
  left: 0;
  -webkit-transform: translate(45px, -50%);
       -o-transform: translate(45px, -50%);
          transform: translate(45px, -50%);
}

@media (max-width: 1000px) {
  /* line 136, resources/assets/styles/layouts/_single.scss */

  .post-slider .owl-nav button:first-child {
    -webkit-transform: translate(16px, -50%);
         -o-transform: translate(16px, -50%);
            transform: translate(16px, -50%);
  }
}

/* line 147, resources/assets/styles/layouts/_single.scss */

.post-slider .owl-nav button:last-child {
  right: 0;
  -webkit-transform: translate(-45px, -50%);
       -o-transform: translate(-45px, -50%);
          transform: translate(-45px, -50%);
}

@media (max-width: 1000px) {
  /* line 147, resources/assets/styles/layouts/_single.scss */

  .post-slider .owl-nav button:last-child {
    -webkit-transform: translate(-16px, -50%);
         -o-transform: translate(-16px, -50%);
            transform: translate(-16px, -50%);
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.post-slide__image {
  background: #f8f8f8;
  position: relative;
}

/* line 169, resources/assets/styles/layouts/_single.scss */

.post-slide__image img {
  padding: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1000px) {
  /* line 169, resources/assets/styles/layouts/_single.scss */

  .post-slide__image img {
    padding: 30px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.post-slide__caption {
  max-width: 700px;
  margin: 25px auto 0 auto;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .post-slide__caption {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .post-slide__caption {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .post-slide__caption {
    margin-top: 15px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.post-details {
  margin-bottom: 60px;
}

/* line 205, resources/assets/styles/layouts/_single.scss */

.post-details .sub {
  margin-bottom: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.footer {
  background: #f8f8f8;
  padding: 60px 0 100px;
}

/* line 8, resources/assets/styles/common/_footer.scss */

.footer .content *,
.footer body#tinymce.wp-editor * {
  color: #afafaf;
  font-size: 12px;
  line-height: 1.18;
}

@media screen and (min-width: 1000px) {
  /* line 8, resources/assets/styles/common/_footer.scss */

  .footer .content *,
  .footer body#tinymce.wp-editor * {
    font-size: 12px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 8, resources/assets/styles/common/_footer.scss */

  .footer .content *,
  .footer body#tinymce.wp-editor * {
    font-size: 16px;
  }
}

/* line 13, resources/assets/styles/common/_footer.scss */

.footer .content * a:hover,
.footer body#tinymce.wp-editor * a:hover {
  color: #ec008c;
}

/* line 18, resources/assets/styles/common/_footer.scss */

.footer .content * > strong,
.footer body#tinymce.wp-editor * > strong {
  color: #626262;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .footer {
    padding: 40px 0 75px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.footer-home {
  height: 100px;
  display: block;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .footer-home {
    height: 75px;
  }
}

/* line 41, resources/assets/styles/common/_footer.scss */

.footer-home svg {
  height: 100%;
  width: auto;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.footer-row {
  row-gap: 35px;
}

/* line 52, resources/assets/styles/common/_footer.scss */

.footer-row:first-child {
  padding-bottom: 65px;
  margin-bottom: 65px;
  border-bottom: 1px solid #ddd;
}

@media (max-width: 1000px) {
  /* line 52, resources/assets/styles/common/_footer.scss */

  .footer-row:first-child {
    margin-bottom: 45px;
    padding-bottom: 0;
    border: none;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.footer-row__side-col {
  grid-column: span 4;
}

@media (max-width: 1000px) {
  /* line 70, resources/assets/styles/common/_footer.scss */

  .footer-row__side-col:empty {
    display: none;
  }
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/common/_footer.scss */

  .footer-row__side-col.copyright br {
    display: none;
  }
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .footer-row__side-col {
    grid-column: -1 / 1;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.footer-row__main-col {
  grid-column: span 8;
  display: grid;
}

/* line 100, resources/assets/styles/common/_footer.scss */

.footer-row__main-col.grid-inner {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-column-gap: 16px;
}

/* line 106, resources/assets/styles/common/_footer.scss */

.footer-row__main-col.grid-inner .acknowledgement {
  grid-column: span 6;
}

/* line 111, resources/assets/styles/common/_footer.scss */

.footer-row__main-col.grid-inner .footer-menucol {
  grid-column: span 4;
}

/* line 115, resources/assets/styles/common/_footer.scss */

.footer-row__main-col.grid-inner .footer-menucol ul {
  font-size: 12px;
  line-height: 1.18;
}

@media screen and (min-width: 1000px) {
  /* line 115, resources/assets/styles/common/_footer.scss */

  .footer-row__main-col.grid-inner .footer-menucol ul {
    font-size: 12px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 115, resources/assets/styles/common/_footer.scss */

  .footer-row__main-col.grid-inner .footer-menucol ul {
    font-size: 16px;
  }
}

/* line 119, resources/assets/styles/common/_footer.scss */

.footer-row__main-col.grid-inner .footer-menucol ul li {
  margin-bottom: 1.625em;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .footer-row__main-col {
    grid-column: -1 / 1;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.scrolled .header {
  border-color: #9b9b9b;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.scrolled .menu-trigger {
  -webkit-box-shadow: 0 1px 4px rgba(155, 155, 155, 0.5);
          box-shadow: 0 1px 4px rgba(155, 155, 155, 0.5);
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.sub-active .header {
  border-color: #9b9b9b;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.nav-column {
  margin: 38px 0  26px;
}

@media (max-width: 1080px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .nav-column {
    margin: 15px 0;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.home .header {
  border-color: transparent;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.header {
  font-size: 16px;
  line-height: 1.43;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #ffffff;
  z-index: 20;
  border-bottom: 1px solid #9b9b9b;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .header {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .header {
    font-size: 24px;
  }
}

@media (max-width: 1280px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .header {
    position: absolute;
  }
}

/* line 58, resources/assets/styles/common/_header.scss */

.header .inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.header__logo {
  position: relative;
  width: calc(2 / 12 * 100% - (16px * 2 / 3));
  z-index: 20;
}

/* line 70, resources/assets/styles/common/_header.scss */

.header__logo svg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-19%, -1px);
       -o-transform: translate(-19%, -1px);
          transform: translate(-19%, -1px);
  height: 112px;
  width: auto;
  display: block;
}

@media (max-width: 1000px) {
  /* line 70, resources/assets/styles/common/_header.scss */

  .header__logo svg {
    -webkit-transform: translate(-2%, -1px);
         -o-transform: translate(-2%, -1px);
            transform: translate(-2%, -1px);
    height: 95px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.header__search {
  width: calc(2 / 12 * 100% - (16px * 2 / 3));
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.search-trigger {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 16px;
  line-height: 1.43;
}

@media screen and (min-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .search-trigger {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .search-trigger {
    font-size: 24px;
  }
}

@media (max-width: 1080px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .search-trigger {
    display: none;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.search-trigger__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 112, resources/assets/styles/common/_header.scss */

.search-trigger span {
  margin-right: 10px;
}

/* line 117, resources/assets/styles/common/_header.scss */

.search-trigger svg {
  height: 20px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(8 / 12 * 100% - ((16px * 2) / 3));
}

@media (max-width: 1080px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .header-nav {
    display: none;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.header-nav__row {
  width: 100%;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 152, resources/assets/styles/common/_header.scss */

.header-menu > li {
  margin: 0 25px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 157, resources/assets/styles/common/_header.scss */

.header-menu > li:hover {
  color: #ec008c;
}

/* line 162, resources/assets/styles/common/_header.scss */

.header-menu > li a {
  display: block;
}

@media (max-width: 1480px) {
  /* line 152, resources/assets/styles/common/_header.scss */

  .header-menu > li {
    margin: 0 12px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.header-sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 0;
  -webkit-transition: height 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: height 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: height 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 181, resources/assets/styles/common/_header.scss */

.header-sub-menu > li {
  display: none;
  padding: 50px 0 28px 0;
  width: 100%;
  position: absolute;
}

/* line 188, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 194, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu > li {
  margin-top: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 200, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu > li::before {
  content: '';
  display: inline-block;
  height: 1.4em;
  width: 1px;
  background: #707070;
}

/* line 209, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu > li:first-child::before {
  display: none;
}

/* line 214, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu > li a {
  padding: 0 30px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 219, resources/assets/styles/common/_header.scss */

.header-sub-menu > li .sub-menu > li a:hover {
  color: #ec008c;
}

@media (max-width: 1480px) {
  /* line 214, resources/assets/styles/common/_header.scss */

  .header-sub-menu > li .sub-menu > li a {
    padding: 0 24px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.menu-trigger {
  display: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  -webkit-transform: translateX(-60px);
       -o-transform: translateX(-60px);
          transform: translateX(-60px);
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 249, resources/assets/styles/common/_header.scss */

.menu-trigger .menu-trigger__inner::before,
.menu-trigger .menu-trigger__inner::after,
.menu-trigger .menu-trigger__inner span,
.menu-trigger__inner .menu-trigger span {
  width: 100%;
  height: 2px;
  background: #000000;
}

@media (max-width: 1080px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .menu-trigger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .menu-trigger {
    -webkit-transform: translateX(-50px);
         -o-transform: translateX(-50px);
            transform: translateX(-50px);
  }
}

@media (max-width: 540px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .menu-trigger {
    -webkit-transform: translateX(-16px);
         -o-transform: translateX(-16px);
            transform: translateX(-16px);
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.menu-trigger__inner {
  width: 25px;
  height: 18px;
  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;
  position: relative;
}

/* line 280, resources/assets/styles/common/_header.scss */

.menu-trigger__inner::before,
.menu-trigger__inner::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* line 290, resources/assets/styles/common/_header.scss */

.menu-trigger__inner::before {
  top: 0;
}

/* line 295, resources/assets/styles/common/_header.scss */

.menu-trigger__inner::after {
  bottom: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.menu-active {
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.menu-active .popup-menu {
  opacity: 1;
  visibility: visible;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.popup-menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: #ffffff;
  overflow-y: auto;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: none;
}

@media (max-width: 1080px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .popup-menu {
    display: block;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.popup-menu .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

/* line 348, resources/assets/styles/common/_header.scss */

.popup-menu > .inner-wrapper {
  padding-top: 40px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.popup-nav {
  font-size: 30px;
  line-height: 42px;
  margin-bottom: 25px;
  font-family: "MarsSansCond", sans-serif;
}

/* line 363, resources/assets/styles/common/_header.scss */

.popup-nav svg {
  height: 8px;
  stroke-width: 4;
}

/* line 369, resources/assets/styles/common/_header.scss */

.popup-nav > li {
  font: inherit;
}

/* line 375, resources/assets/styles/common/_header.scss */

.popup-nav > li.active .menu-icon {
  -webkit-transform: scaleY(-1);
       -o-transform: scaleY(-1);
          transform: scaleY(-1);
}

/* line 381, resources/assets/styles/common/_header.scss */

.popup-nav > li span {
  font: inherit;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

/* line 390, resources/assets/styles/common/_header.scss */

.popup-nav > li .menu-icon {
  font-size: 0;
  display: inline-block;
  margin-left: 10px;
}

/* line 399, resources/assets/styles/common/_header.scss */

.popup-nav > li:not(.menu-item-has-children) .menu-icon {
  display: none;
  pointer-events: none;
}

/* line 407, resources/assets/styles/common/_header.scss */

.popup-nav .sub-menu {
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0;
  margin: 5px 0 10px;
  display: none;
}

/* line 416, resources/assets/styles/common/_header.scss */

.popup-nav .sub-menu .menu-icon {
  display: none;
  pointer-events: none;
}

/* line 422, resources/assets/styles/common/_header.scss */

.popup-nav .sub-menu li {
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

@media screen and (min-width: 1000px) {
  /* line 422, resources/assets/styles/common/_header.scss */

  .popup-nav .sub-menu li {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 422, resources/assets/styles/common/_header.scss */

  .popup-nav .sub-menu li {
    font-size: 20px;
  }
}

/* line 431, resources/assets/styles/common/_header.scss */

.popup-nav .sub-menu li::after {
  content: '';
  display: inline-block;
  height: 1.4em;
  width: 1px;
  background: #707070;
  margin: 0 16px;
}

/* line 441, resources/assets/styles/common/_header.scss */

.popup-nav .sub-menu li:last-child::after {
  display: none;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.page-builder {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* line 7, resources/assets/styles/modules/modules.scss */

.page-builder .module:last-child {
  margin-bottom: 0;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.single .module {
  margin-bottom: 60px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .single .module {
    margin-bottom: 40px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.module {
  margin-bottom: 100px;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .module {
    margin-bottom: 50px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.gallery-block {
  width: 100%;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .gallery-block {
    padding: 0 20px;
  }
}

/* line 47, resources/assets/styles/modules/modules.scss */

.gallery-block .post-slide__image::before,
.gallery-block .owl-nav::before,
.gallery-block .gallery-slide__image::before {
  content: '';
  position: relative;
  display: block;
  height: 0;
  width: 100%;
  padding-top: calc((400 / 600) * 100%);
}

/* line 52, resources/assets/styles/modules/modules.scss */

.gallery-block .post-slide__image img,
.gallery-block .owl-nav img,
.gallery-block .gallery-slide__image img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

/* line 59, resources/assets/styles/modules/modules.scss */

.gallery-block .owl-nav {
  width: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* line 69, resources/assets/styles/modules/modules.scss */

.gallery-block .owl-nav button {
  height: 20px;
  position: absolute;
  top: 50%;
}

@media (max-width: 1000px) {
  /* line 69, resources/assets/styles/modules/modules.scss */

  .gallery-block .owl-nav button {
    height: 12px;
  }
}

/* line 80, resources/assets/styles/modules/modules.scss */

.gallery-block .owl-nav button svg {
  height: 100%;
  width: auto;
}

/* line 86, resources/assets/styles/modules/modules.scss */

.gallery-block .owl-nav button:first-child {
  left: 0;
  -webkit-transform: translate(calc(-100% - 40px), -50%);
       -o-transform: translate(calc(-100% - 40px), -50%);
          transform: translate(calc(-100% - 40px), -50%);
}

@media (max-width: 1000px) {
  /* line 86, resources/assets/styles/modules/modules.scss */

  .gallery-block .owl-nav button:first-child {
    -webkit-transform: translate(calc(-100% - 12px), -50%);
         -o-transform: translate(calc(-100% - 12px), -50%);
            transform: translate(calc(-100% - 12px), -50%);
  }
}

/* line 97, resources/assets/styles/modules/modules.scss */

.gallery-block .owl-nav button:last-child {
  -webkit-transform: translate(calc(100% + 40px), -50%);
       -o-transform: translate(calc(100% + 40px), -50%);
          transform: translate(calc(100% + 40px), -50%);
  right: 0;
}

@media (max-width: 1000px) {
  /* line 97, resources/assets/styles/modules/modules.scss */

  .gallery-block .owl-nav button:last-child {
    -webkit-transform: translate(calc(100% + 12px), -50%);
         -o-transform: translate(calc(100% + 12px), -50%);
            transform: translate(calc(100% + 12px), -50%);
  }
}

/* line 113, resources/assets/styles/modules/modules.scss */

.gallery-slide a[data-lity] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 119, resources/assets/styles/modules/modules.scss */

.gallery-slide a[data-lity] img {
  height: 100%;
}

/* line 123, resources/assets/styles/modules/modules.scss */

.gallery-slide a[data-lity] img::after {
  content: "I'm just fake content";
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.gallery-slide__caption {
  margin-top: 25px;
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (min-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .gallery-slide__caption {
    font-size: 14px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .gallery-slide__caption {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .gallery-slide__caption {
    margin-top: 10px;
  }
}

/* line 150, resources/assets/styles/modules/modules.scss */

.table .mobile-show,
.table .mobile-show--ib,
.table .mobile-show--flex,
.table .tablet-show--ib,
.table .tablet-show--flex {
  margin-top: 10px;
  color: #9b9b9b;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.table__header {
  margin-bottom: 42px;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .table__header {
    margin-bottom: 24px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.table__body {
  font-size: 16px;
  line-height: 1.312;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.table-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: auto;
  padding-bottom: 20px;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.table-body__header {
  background: #ffffff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* line 188, resources/assets/styles/modules/modules.scss */

.table-body__header .table-column {
  padding: 0 16px 20px 0;
}

/* line 192, resources/assets/styles/modules/modules.scss */

.table-body__header .table-column:nth-child(even) {
  background: transparent;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.table-body__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #707070;
}

/* line 204, resources/assets/styles/modules/modules.scss */

.table-body__row:last-child {
  border-bottom: none;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.table-column {
  width: 160px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  padding: 20px 16px 30px 16px;
}

/* line 218, resources/assets/styles/modules/modules.scss */

.table-column:nth-child(even) {
  background: #f8f8f8;
}

/* line 100, resources/assets/styles/helpers/_bem.scss */

.table-column--primary {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  background: #ffffff;
  z-index: 5;
  width: 270px;
  padding-left: 0;
}

@media (max-width: 1000px) {
  /* line 100, resources/assets/styles/helpers/_bem.scss */

  .table-column--primary {
    width: 160px;
  }
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.link-block__intro {
  margin-bottom: 45px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.link-button {
  margin-bottom: 2em;
}

/* line 252, resources/assets/styles/modules/modules.scss */

.link-button a {
  color: #000000;
  text-decoration: none;
  margin-bottom: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 260, resources/assets/styles/modules/modules.scss */

.link-button a:hover {
  color: #ec008c;
}

/* line 264, resources/assets/styles/modules/modules.scss */

.link-button a:hover span::after {
  border-color: #ec008c;
}

/* line 269, resources/assets/styles/modules/modules.scss */

.link-button a:hover svg {
  fill: #ec008c;
}

/* line 275, resources/assets/styles/modules/modules.scss */

.link-button a span {
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  margin-right: 12px;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 283, resources/assets/styles/modules/modules.scss */

.link-button a span::after {
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  left: 0;
  content: '';
  border-bottom: 2px dotted #9b9b9b;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1000px) {
  /* line 275, resources/assets/styles/modules/modules.scss */

  .link-button a span {
    padding-bottom: 4px;
  }
}

@media (max-width: 540px) {
  /* line 275, resources/assets/styles/modules/modules.scss */

  .link-button a span {
    margin-right: 0;
  }
}

/* line 306, resources/assets/styles/modules/modules.scss */

.link-button a svg {
  -webkit-transform: translateY(55%);
       -o-transform: translateY(55%);
          transform: translateY(55%);
  height: 10px;
  -webkit-transition: fill 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: fill 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: fill 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 1000px) {
  /* line 306, resources/assets/styles/modules/modules.scss */

  .link-button a svg {
    height: 8px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.related-posts {
  margin-bottom: 150px;
}

/* line 82, resources/assets/styles/helpers/_bem.scss */

.related-posts__header {
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 1000px) {
  /* line 82, resources/assets/styles/helpers/_bem.scss */

  .related-posts__header {
    text-align: left;
    margin-bottom: 25px;
  }
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .related-posts {
    margin-bottom: 55px;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.related-posts .grid--extra {
  grid-row-gap: 32px;
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.related-posts .post-card {
  grid-column: span 4;
}

/* line 351, resources/assets/styles/modules/modules.scss */

.related-posts .post-card:nth-child(even) {
  grid-column: span 8;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .related-posts .post-card {
    grid-column: span 8;
  }

  /* line 360, resources/assets/styles/modules/modules.scss */

  .related-posts .post-card:first-child {
    grid-column: -1 / 1;
  }
}

/* line 51, resources/assets/styles/helpers/_bem.scss */

.related-posts--two-columns .post-card {
  grid-column: span 8;
}

/* line 375, resources/assets/styles/modules/modules.scss */

.related-posts--two-columns .post-card:nth-child(even) {
  grid-column: span 8;
}

@media (max-width: 1000px) {
  /* line 51, resources/assets/styles/helpers/_bem.scss */

  .related-posts--two-columns .post-card {
    grid-column: -1 / 1;
  }

  /* line 384, resources/assets/styles/modules/modules.scss */

  .related-posts--two-columns .post-card:first-child {
    grid-column: -1 / 1;
  }

  /* line 389, resources/assets/styles/modules/modules.scss */

  .related-posts--two-columns .post-card:nth-child(even) {
    grid-column: -1 / 1;
  }
}

/* line 398, resources/assets/styles/modules/modules.scss */

#paypal_shopping {
  display: block;
  font-size: 16px;
  line-height: 1.3;
}

@media screen and (min-width: 1000px) {
  /* line 398, resources/assets/styles/modules/modules.scss */

  #paypal_shopping {
    font-size: 16px;
  }
}

@media screen and (min-width: 1480px) {
  /* line 398, resources/assets/styles/modules/modules.scss */

  #paypal_shopping {
    font-size: 20px;
  }
}

/* line 403, resources/assets/styles/modules/modules.scss */

#paypal_shopping select {
  margin-top: 1.3em;
  padding: 0.5em 2em 0.5em 0.5em;
  border: 1px solid #ebebeb;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iOC43cHgiCgkgaGVpZ2h0PSI1cHgiIHZpZXdCb3g9IjAgMCA4LjcgNSIgc3R5bGU9Im92ZXJmbG93OnZpc2libGU7ZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA4LjcgNTsiIHhtbDpzcGFjZT0icHJlc2VydmUiPgo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPgoJLnN0MHtmaWxsOm5vbmU7c3Ryb2tlOiMwMDAwMDA7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fQo8L3N0eWxlPgo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMC40LDAuNGw0LDRsNC00Ii8+Cjwvc3ZnPgo=);
  background-size: 10px 100%;
  background-repeat: no-repeat;
  background-position: calc(100% - 0.5em - 5px) center;
  -webkit-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 414, resources/assets/styles/modules/modules.scss */

#paypal_shopping select:focus {
  border-color: #000000;
}


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