/*!
Theme Name: Bwap
Theme URI: https://bwap.ch
Description: Theme provided by the Bureau Web
Author: Bureau Web
Version: 0.1
*/

/* General styles */

:root {
    --primary: rgba(225, 174, 93, 1);
    --primary-dark: rgba(205, 158, 85, 1);
    --complementary: #132138;
    --complementary-dark: #0b1628;
    --black: rgb(4, 11, 23);
    --blackAlpha: rgba(4, 11, 23, 0.6);
    --blackAlpha09: rgba(4, 11, 23, 0.95);
    --cream-white: rgba(255, 253, 249, 1);
    --text-color: var(--cream-white);
    --text-color-dark: var(--black);
    --link-color: var(--primary-dark);

    /* Gradient Dark Fade */
    --primary-gradient-alpha: linear-gradient(180deg, rgba(6, 17, 34, 0) 12.4%, var(--blackAlpha) 78%);
    --primary-gradient: linear-gradient(180deg, rgba(6, 17, 34, 0) 12.4%, var(--blackAlpha09) 78%);
    --teasers-images-gradient: linear-gradient(to bottom, transparent 32%, rgba(4, 11, 23, 0.9) 78%);
    --teasers-show-linear-gradient: repeating-linear-gradient(45deg, #fff, #fff 4px, transparent 4px, transparent 12px);

    /* Pattern Image */
    --grunge-pattern: url("/app/themes/bwap-theme/images/grunge-texture.png");
    --stripe-pattern: url("/app/themes/bwap-theme/images/stripe_pattern.svg");
    --line-pattern: url("/app/themes/bwap-theme/images/line_pattern_white.svg");

    /* Greyscale image */
    --greyscale-images: grayscale(100%);

    /*Fonts*/
    --font-body: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --font-title: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/SuisseIntl-Light-WebS.woff2") format("woff2");
}

@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/SuisseIntl-Regular-WebM.woff2") format("woff2");
}

@font-face {
  font-family: "SuisseIntl";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/SuisseIntl-RegularItalic-WebM.woff2") format("woff2");
}

@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/SuisseIntl-SemiBold-WebM.woff2") format("woff2");
}

@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/SuisseIntl-Bold-WebS.woff2") format("woff2");
}

@font-face {
  font-family: "SuisseIntl";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/SuisseIntl-Black-WebS.woff2") format("woff2");
}

/*
   Breakpoints
*/

/*! modern-normalize v0.6.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

/**
Use a more readable tab size (opinionated).
*/

:root {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

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

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

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

body {
	margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
	font-family:
		system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif, 
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
Add the correct height in Firefox.
*/

hr {
	height: 0;
}

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

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
	font-family:
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}

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

small {
	font-size: 80%;
}

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

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/*
Forms
=====
*/

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

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

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

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

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

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

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

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

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

/**
Correct the padding in Firefox.
*/

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
	padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
	vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
	height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

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

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

[type='search']::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

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

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

/*
Add the correct display in Chrome and Safari.
*/

summary {
	display: list-item;
}

.container {
    width: 100%;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;

    padding: 0 16px;
}

.container--small {
        max-width: 740px;
    }

.container--large {
        max-width: 1300px;
    }

.container--instagram {
        max-width: 100%;
        padding: 0 !important;
        margin: 0;
    }

.grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.grid > * {
        width: 100%
    }

@media (min-width: 992px) {

    .grid > * {
            width: 48%
    }
        }

@supports (display: grid) {

.grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 40px;
        grid-row-gap: 60px;
        row-gap: 60px
}

        @media (min-width: 540px) {
            .grid--2-cols,
            .grid--3-cols,
            .grid--4-cols {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1200px) {
            .grid--3-cols {
                grid-template-columns: 1fr 1fr 1fr;
            }

            .grid--4-cols {
                grid-template-columns: 1fr 1fr 1fr 1fr;
            }
        }

        .grid > * {
            width: 100%;
        }

        .grid--small-gap {
            grid-gap: 20px;
        }

        .grid--big-gap {
            grid-gap: 30px;
        }

        .grid--teaserslist-gap {
            grid-gap: 50px;
            gap: 50px;
        }
    }

.grid-center {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
    flex: 1 1 auto;
    margin: 20px;
    padding: 20px
}

@media (min-width: 768px) {

.grid-center {
        grid-template-columns: repeat(6, 1fr)
}
    }

.grid-center div {
        padding: 20px;
        grid-column: span 2

        /* Dealing with 2 orphan items */
    }

.grid-center div:last-child:nth-child(3n - 1) {
            grid-column-end: -2;
        }

.grid-center div:nth-last-child(2):nth-child(3n + 1) {
            grid-column-end: 4;
        }

.grid-center div {

        /* Dealing with single orphan */
    }

.grid-center div:last-child:nth-child(3n - 2) {
            grid-column-end: 5;
        }

/*
* Table of contents
* 
* +General stuff 
*/

/*
* +General stuff
*/

body {
    background-color: rgb(4, 11, 23);
    background-color: var(--black);
    overflow-x: hidden

    /* show message on IE 10/11 */
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        body:before {
            content: "This website has been built for modern browsers. Why not try the newest version of Firefox ?";
            display: flex;
            align-items: center;
            justify-content: center;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #fff;
            color: #333;
            z-index: 99999;
        }
    }

.img-responsive {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
}

.svg-container {
    display: inline-block;
    position: relative;
    width: 24px;
    padding-bottom: 24px;
    vertical-align: middle;
    overflow: hidden;
}

.svg-content {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.feather {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    /* fix strange margin bottom on svg */
    vertical-align: top;
}

.social__item {
    transition: 0.2s transform ease-in-out;
}

.social__item:hover {
    transform: scale(1.15);
}

.menu {
    list-style-type: none;
    padding: 0;
}

.primary {
    color: rgba(225, 174, 93, 1);
    color: var(--primary);
}

.pagination {
    width: 100%;
    margin: 30px auto 50px;
}

.pagination__arrows {
        display: none
    }

@media (min-width: 768px) {

    .pagination__arrows {
            width: 100%;
            display: flex;
            justify-content: space-between
    }
        }

.pagination__previous a svg {
            transform: rotate(180deg);
        }

.pagination__numbers {
        text-align: center;
    }

@media (min-width: 768px) {

        .pagination__numbers .prev {
                display: none
        }
            }

@media (min-width: 768px) {

        .pagination__numbers .next {
                display: none
        }
            }

.sc-icon {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-bottom: 0.8em;
}

.sc-icon--top {
        align-items: flex-start;
    }

.sc-icon svg {
        margin: 0 0.5em 0 0;
        flex: 0 0 1.8em;
        height: 1.8em;
        width: 1.8em;
        line-height: 1;
    }

.sc-icon--inverse > svg {
            margin: 0 0 0 0.5em;
            flex: 0 0 1.8em;
            order: 2;
        }

.sc-icon span {
        margin-left: 6px;
    }

.btn .sc-icon {
    margin: 0;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-tablet {
        display: none;
    }
}

@media (min-width: 992px) {
    .hidden-desktop {
        display: none;
    }
}

::-moz-selection {
    background: rgba(225, 174, 93, 1);
    background: var(--primary);
}

::selection {
    background: rgba(225, 174, 93, 1);
    background: var(--primary);
}

.btn-arrowed {
    font-size: 12px;
    line-height: 21px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(225, 174, 93, 1);
    border-bottom: 1px solid var(--primary);
    padding: 0 48px 8px 0;
    letter-spacing: 0.08em;
    position: relative;
}

.btn-arrowed span::after {
            content: "\27F6";
            position: absolute;
            top: 0;
            right: 0;
            transform: translateX(-100%);
            transition: all 0.3s

            /* stylelint-disable */
        }

@media (min-width: 768px) {
        .btn-arrowed span::after {
                transform: translateX(-50%)
        }
            }

.btn-arrowed span::after {
            /* stylelint-enable */
        }

.btn-arrowed:hover span {
            /* stylelint-disable */
        }

.btn-arrowed:hover span::after {
                transform: translateX(0);
            }

.btn-arrowed:hover span {
            /* stylelint-enable */
        }

@media (min-width: 580px) {

.btn-arrowed {
        font-size: 16px;
        line-height: 21px
}
    }

@media (min-width: 768px) {

.btn-arrowed {
        font-size: 20px;
        line-height: 21px
}
    }

a.btn--sc:not(:nth-of-type(1)) {
            margin-left: 10px;
        }

.section {
    margin-top: 60px;
    margin-bottom: 60px
}

@media (min-width: 768px) {

.section {
        margin-top: 90px;
        margin-bottom: 90px
}
    }

.section--first {
        margin-top: 0;
        position: relative;
        z-index: 10;
    }

.section--last {
        margin-bottom: 0;
        padding-bottom: 60px
    }

@media (min-width: 768px) {

    .section--last {
            padding-bottom: 90px
    }
        }

.section--hero {
        margin: 0 0 50px 0
    }

@media (min-width: 580px) {

    .section--hero {
            margin: 0
    }
        }

.section--page_header + .section--content {
            position: relative;
        }

.section--negative {
        color: rgb(4, 11, 23);
        color: var(--black);
    }

.section--negative + .section--negative {
            margin-top: -60px
        }

@media (min-width: 768px) {

        .section--negative + .section--negative {
                margin-top: -90px
        }
            }

.section--accordion + .section--accordion {
            margin-top: -60px
        }

@media (min-width: 768px) {
        .section--accordion + .section--accordion {
                margin-top: -90px
        }
            }

.section--teasers .section__content.container {
                padding: 0
            }

@media (min-width: 992px) {
            .section--teasers .section__content.container {
                    padding: 0 15px
            }
                }

.section--content {
        position: relative;
    }

.section--content .section__header:not(.section__header--centered) .container {
                    /* 860px of content + 32 of paddings */
                    max-width: 892px;
                }

.section--calltoaction + .section--calltoaction {
            /* Revert styles for .y that follow the next .x after #b */
            margin-top: 0;
            margin-bottom: 0;
        }

.section--calltoaction.section--last {
            padding-bottom: 0 !important;
        }

.section--background {
        position: relative;
        background: #0b1628;
        background: var(--complementary-dark);
        overflow: hidden;
        padding-top: 50px;
        padding-bottom: 50px
    }

@media (min-width: 768px) {

    .section--background {
            padding-top: 80px;
            padding-bottom: 80px
    }
        }

.section--background.section--first {
            margin-top: 240px;
        }

.single-show .section--background.section--first {
                margin-top: 0;
                padding-top: 0;
            }

.section--background .section__header,
        .section--background .section__content,
        .section--background .section,
        .section--background .container {
            position: relative;
            z-index: 5;
        }

.section--background::before,
        .section--background::after {
            content: "";
            display: block;
            position: absolute;
        }

.section--background::before {
            top: 0;
            left: 0;
            right: 0;
            height: 30%;
            background: linear-gradient(0, rgba(6, 17, 34, 0) 0%, rgb(4, 11, 23) 100%);
            background: linear-gradient(0, rgba(6, 17, 34, 0) 0%, var(--black) 100%);
        }

.section--background::after {
            left: 0;
            right: 0;
            height: 30%;
            bottom: 0;
            background: linear-gradient(180deg, rgba(6, 17, 34, 0) 0%, rgb(4, 11, 23) 100%);
            background: linear-gradient(180deg, rgba(6, 17, 34, 0) 0%, var(--black) 100%);
        }

.section--background.section--background-pattern {
            background: top left/12px url("/app/themes/bwap-theme/images/stripe_pattern.svg") repeat, #0b1628;
            background: top left/12px var(--stripe-pattern) repeat, var(--complementary-dark);
        }

.section--background.section--background-half {
            background: none;
        }

.section--background.section--background-half .section__header,
            .section--background.section--background-half .section__content {
                position: relative;
            }

.section--background .section__background-half {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0b1628;
            background: var(--complementary-dark)
        }

@media (min-width: 992px) {

        .section--background .section__background-half {
                width: 50%
        }
            }

.section--background .section__background-half--has-pattern {
                background: top left/12px url("/app/themes/bwap-theme/images/stripe_pattern.svg") repeat, #0b1628;
                background: top left/12px var(--stripe-pattern) repeat, var(--complementary-dark);
            }

.section--background + .section--background {
            margin-top: -100px;
        }

.section--background + .section:not(.section--background) {
            margin-top: -60px
        }

@media (min-width: 768px) {

        .section--background + .section:not(.section--background) {
                margin-top: -100px
        }
            }

.section__header {
        margin-bottom: 50px;
    }

.section__header--centered {
            text-align: center;
        }

.section--editionlist .section .section__header .container {
                display: flex;
                align-items: center;
            }

.section--editionlist .section .section__header .section__title {
                display: inline-block;
                font-size: 1.5rem;
                text-transform: uppercase;
                margin: 0 0 0 0.5rem;
            }

.section--editionlist .section .section__header .section__subtitle {
                color: rgba(225, 174, 93, 1);
                color: var(--primary);
                font-size: 1.4rem;
                margin-right: 0.5rem;
            }

.section__header-on-side {
        padding: 0 0 0 16px;
        overflow: hidden
    }

@media (min-width: 768px) {

    .section__header-on-side {
            display: grid;
            padding: 0 16px;
            grid-gap: 56px;
            gap: 56px
    }
        }

@media (min-width: 992px) {

    .section__header-on-side {
            width: 100%;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
            grid-template-columns: minmax(380px, 330px) 1fr
    }
        }

.section__header-on-side-buttons {
            display: inline-flex;
            width: auto;
            margin: 16px 0 0
        }

@media (min-width: 580px) {

        .section__header-on-side-buttons {
                margin: 20px 0 0
        }
            }

@media (min-width: 768px) {

        .section__header-on-side-buttons {
                margin: 28px 0 0
        }
            }

.section__header-on-side-buttons a {
                font-size: 12px;
                line-height: 16px;
                text-transform: uppercase;
                border-bottom: 1px solid rgba(225, 174, 93, 1);
                border-bottom: 1px solid var(--primary);
                padding: 0 48px 8px 0;
                letter-spacing: 0.08em;
                position: relative;
            }

.section__header-on-side-buttons a span::after {
                        content: "\27F6";
                        position: absolute;
                        top: 0;
                        right: 0;
                        transform: translateX(-100%);
                        transition: all 0.3s

                        /* stylelint-disable */
                    }

@media (min-width: 768px) {
                    .section__header-on-side-buttons a span::after {
                            transform: translateX(-50%)
                    }
                        }

.section__header-on-side-buttons a span::after {
                        /* stylelint-enable */
                    }

.section__header-on-side-buttons a:hover span {
                        /* stylelint-disable */
                    }

.section__header-on-side-buttons a:hover span::after {
                            transform: translateX(0);
                        }

.section__header-on-side-buttons a:hover span {
                        /* stylelint-enable */
                    }

@media (min-width: 580px) {

            .section__header-on-side-buttons a {
                    font-size: 16px;
                    line-height: 24px
            }
                }

.section__header-on-side-buttons a + a {
                margin-left: 15px;
            }

.section__header-on-side .section__header {
            width: 100%;
            height: auto;
            margin-bottom: 0
        }

@media (min-width: 992px) {

        .section__header-on-side .section__header {
                min-width: 310px;
                max-width: 330px
        }
            }

.section__header-on-side .section__header .container {
                padding: 0;
                margin: 0;
            }

/* ATTENTION - Not the same selector */

.section__header-on-side .section__header + .container {
                margin-top: 50px;
                padding: 0
            }

@media (min-width: 992px) {
            .section__header-on-side .section__header + .container {
                    margin-top: 0
            }
                }

.section--positive:not(.section--has-original-color-link) .btn-arrowed {
                color: rgba(255, 253, 249, 1);
                color: var(--cream-white);
                border-bottom-color: rgba(255, 253, 249, 1);
                border-bottom-color: var(--cream-white);
                transition: opacity 0.4s
            }

.section--positive:not(.section--has-original-color-link) .btn-arrowed:hover {
                    opacity: 0.9;
                }

.section__suptitle {
    font-size: 16px;
}

@media (min-width: 768px) {

    .section__suptitle {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .section__suptitle {
        font-size: 20px;
    }
}

.section__suptitle {
    letter-spacing: 0.1em;
    color: rgba(225, 174, 93, 1);
    color: var(--primary);
    margin: 0 0 -0.6em;
    font-size: 20px;
}

@media (min-width: 580px) {

    .section__suptitle {
            font-size: 24px;
    }
}

@media (min-width: 992px) {

    .section__suptitle {
            font-size: 28px;
    }
}

.section__header-on-side .section__suptitle {
            font-size: 20px;
            margin: 0 0 -0.25em;
}

.section__title {
    font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em;
}

@media (min-width: 768px) {

    .section__title {
        font-size: 28px;
    }
}

@media (min-width: 992px) {

    .section__title {
        font-size: 40px;
    }
}

.section__title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    font-size: 28px;
}

@media (min-width: 580px) {

    .section__title {
            font-size: 40px;
    }
}

@media (min-width: 992px) {

    .section__title {
            font-size: 52px;
    }
}

.section--related .section__title {
            font-size: 24px;
            letter-spacing: 1.4px;
}

@media (min-width: 768px) {

    .section--related .section__title {
                font-size: 32px;
    }
            }

.section__header-on-side .section__title {
            font-size: 24px;
}

.section__subtitle {
    font-size: 16px;
}

@media (min-width: 768px) {

    .section__subtitle {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .section__subtitle {
        font-size: 20px;
    }
}

.section__subtitle {
    opacity: 0.8;
}

html,
body {
    /* font-family: "Work Sans"; */
    font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-family: var(--font-body);
    color: rgba(255, 253, 249, 1);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    scroll-behavior: smooth;
}

a {
    color: rgba(205, 158, 85, 1);
    color: var(--link-color);
    text-decoration: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-family: var(--font-title);
}

.h1,
h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2
}

@media (min-width: 768px) {

.h1,
h1 {
        font-size: 43px
}
    }

@media (min-width: 992px) {

.h1,
h1 {
        font-size: 64px
}
    }

.h2,
h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em
}

@media (min-width: 768px) {

.h2,
h2 {
        font-size: 28px
}
    }

@media (min-width: 992px) {

.h2,
h2 {
        font-size: 40px
}
    }

.h3,
h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em
}

@media (min-width: 768px) {

.h3,
h3 {
        font-size: 20px
}
    }

@media (min-width: 992px) {

.h3,
h3 {
        font-size: 32px
}
    }

.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-size: 16px
}

@media (min-width: 768px) {

.h4,
h4,
.h5,
h5,
.h6,
h6 {
        font-size: 18px
}
    }

@media (min-width: 992px) {

.h4,
h4,
.h5,
h5,
.h6,
h6 {
        font-size: 20px
}
    }

blockquote + h2,
        blockquote + h3,
        p + h2,
        p + h3 {
            margin-top: 3em;
        }

p {
    margin: 0 0 12px;
    line-height: 170%
}

p:last-child {
        margin: 0;
    }

.section ol,
    .section ul {
        line-height: 1.4;
    }

.section ol ol,
        .section ol ul,
        .section ul ol,
        .section ul ul {
            margin-top: 0.5em;
        }

blockquote {
    background-color: #f9f9f9;
    border-left: 2px solid rgba(225, 174, 93, 1);
    border-left: 2px solid var(--primary);
    padding: 6px 12px;
    margin: 0 0 0.8em;
}

pre {
    background-color: #f9f9f9;
    padding: 6px 12px;
    margin: 0 0 0.8em;
    overflow-x: auto;
}

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

/*
* +wysiwyg images
*/

.size-medium,
.size-large {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    margin: auto;
    display: block;
}

.alignright {
    margin-left: auto;
    display: block;
}

/* Layout styles */

.header {
    font-weight: 500;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    padding: 6px 0
}

.header::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        height: 100px;
        width: 100%;
        transform: rotate(-180deg);
        background: linear-gradient(180deg, rgba(4, 11, 23, 0) 12.4%, rgba(4, 11, 23, 0.8) 78%);
        transition: 0.5s background-color ease-in-out;
    }

@media (min-width: 768px) {

.header {
        padding: 12px 0 0
}
    }

.header__logo {
        max-width: 100%;
        height: auto;
    }

.header__burger {
        cursor: pointer;
        border: 0;
        background-color: transparent;
        outline: none;
    }

.header__burger div {
            display: block;
            width: 20px;
            height: 2px;
            background-color: rgba(255, 253, 249, 1);
            background-color: var(--cream-white);
            border-radius: 2px;
            transition: transform 0.5s;
            transform-origin: center
        }

.header__burger div:nth-child(1) {
                transform: translateY(-3px);
            }

.header__burger div:nth-child(3) {
                transform: translateY(3px);
            }

.header--scrolled::before {
        background: linear-gradient(180deg, rgba(4, 11, 23, 0) 12.4%, rgba(4, 11, 23, 1) 90%);
    }

.main-menu__logo-wrapper--centered .header__logo {
        margin: 0 25px 0 0
    }

@media (min-width: 768px) {
    .main-menu__logo-wrapper--centered .header__logo {
            margin: 0 25px
    }
        }

.popmenu-open .header__burger div:nth-child(1) {
            transform: rotate(45deg) translate(1px, 100%);
        }

.popmenu-open .header__burger div:nth-child(2) {
            transform: scaleX(0);
        }

.popmenu-open .header__burger div:nth-child(3) {
            transform: rotate(-45deg) translate(1px, -100%);
        }

.main-menu {
    display: flex;
    justify-content: center;
}

.main-menu__items {
        display: flex;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: space-between;
        width: 100%
    }

@media (min-width: 992px) {

    .main-menu__items {
            width: auto
    }
        }

.main-menu__item {
        display: none
    }

@media (min-width: 992px) {

    .main-menu__item {
            display: block
    }
        }

.main-menu__item > a {
            margin: 0 15px;
            padding: 3px 0px;
            color: rgba(255, 253, 249, 1);
            color: var(--cream-white);
            position: relative;
            display: inline-block;
            transition: color 0.2s ease;
            margin-bottom: 15px
        }

.main-menu__item > a:hover {
                color: rgba(225, 174, 93, 1);
                color: var(--primary)
            }

.main-menu__item > a:hover::after,
                .main-menu__item > a:hover::before {
                    width: 100%;
                    left: 0;
                }

.main-menu__item > a::after,
            .main-menu__item > a::before {
                content: "";
                position: absolute;
                top: calc(100% + 5px);
                width: 0;
                right: 0;
                height: 3px;
            }

.main-menu__item > a::before {
                transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
                background: rgba(255, 253, 249, 1);
                background: var(--cream-white);
            }

.main-menu__item > a::after {
                transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
                background: rgba(225, 174, 93, 1);
                background: var(--primary);
            }

@media (min-width: 992px) {

    .main-menu__burger-wrapper {
            display: none
    }
        }

&__logo-wrapper {
    width: 100px
}

@media (min-width: 992px) {

&__logo-wrapper {
        margin: 0 32px;
        min-width: 132px
}
    }

&__logo-wrapper a {
        display: flex;
        align-items: center;
    }

.footer-menu {
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.02em;
    text-align: center
}

@media (min-width: 768px) {

.footer-menu {
        font-size: 16px;
        text-align: left;
        text-align: initial
}
    }

.footer-menu__items {
        display: grid;
        align-items: center;
        list-style: none;
        padding: 0;
        margin: 0;
        grid-template-columns: 1fr;
        grid-gap: 12px;
        gap: 12px
    }

@media (min-width: 580px) {

    .footer-menu__items {
            grid-template-columns: 1fr 1fr
    }
        }

@media (min-width: 768px) {

    .footer-menu__items {
            display: flex;
            flex-flow: row wrap;
            grid-gap: initial;
            gap: initial;
            justify-content: space-between;
            margin: 0 -12px
    }
        }

@media (min-width: 992px) {

    .footer-menu__items {
            display: inline-flex
    }
        }

.footer-menu__item {
        text-align: center;
        width: 100%
    }

@media (min-width: 580px) {

    .footer-menu__item {
            width: auto;
            margin: 0 12px
    }
        }

.footer-menu__item a {
            display: block;
            padding: 3px 0;
            margin: 4px 5px;
            color: rgba(255, 253, 249, 1);
            color: var(--cream-white);
            position: relative;
            display: inline-block;
            transition: color 0.2s ease;
            text-decoration: none
        }

.footer-menu__item a:hover {
                color: rgba(225, 174, 93, 1);
                color: var(--primary)
            }

.footer-menu__item a:hover::after,
                .footer-menu__item a:hover::before {
                    width: 100%;
                    left: 0;
                }

.footer-menu__item a::after,
            .footer-menu__item a::before {
                content: "";
                position: absolute;
                top: calc(100% + 5px);
                width: 0;
                right: 0;
                height: 3px;
            }

.footer-menu__item a::before {
                transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
                background: rgba(255, 253, 249, 1);
                background: var(--cream-white);
            }

.footer-menu__item a::after {
                transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
                background: rgba(225, 174, 93, 1);
                background: var(--primary);
            }

.popmenu-open .popmenu {
        height: 100vh;
    }

.popmenu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 0;
    background-color: rgb(4, 11, 23);
    background-color: var(--black);
    z-index: 98;
    overflow: hidden;
    font-size: 24px;
    line-height: 1.1;
    transition: height 700ms cubic-bezier(0.84, 0.07, 0.28, 0.93)
}

@media (min-width: 992px) {

.popmenu {
        display: none
}
    }

.popmenu a {
        color: rgba(255, 253, 249, 1);
        color: var(--cream-white);
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

.popmenu .current-menu-item a,
    .popmenu a:hover {
        color: rgba(225, 174, 93, 1);
        color: var(--primary);
    }

.popmenu ul {
        display: block;
        list-style-type: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

/* first level titles */

.popmenu .menu {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 14px
    }

@media (min-width: 580px) {
    .popmenu .menu {
            grid-template-columns: 1fr 1fr
    }
        }

@media (min-width: 768px) {
    .popmenu .menu {
            grid-template-columns: 1fr 1fr 1fr
    }
        }

.popmenu .menu > li > a {
            display: block;
            padding: 3px 0;
            margin: 12px 15px;
            color: rgba(255, 253, 249, 1);
            color: var(--cream-white);
            position: relative;
            display: inline-block;
            transition: color 0.2s ease;
            font-size: 18px
        }

.popmenu .menu > li > a:hover {
                color: rgba(225, 174, 93, 1);
                color: var(--primary)
            }

.popmenu .menu > li > a:hover::after,
                .popmenu .menu > li > a:hover::before {
                    width: 100%;
                    left: 0;
                }

.popmenu .menu > li > a::after,
            .popmenu .menu > li > a::before {
                content: "";
                position: absolute;
                top: calc(100% + 5px);
                width: 0;
                right: 0;
                height: 3px;
            }

.popmenu .menu > li > a::before {
                transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
                background: rgba(255, 253, 249, 1);
                background: var(--cream-white);
            }

.popmenu .menu > li > a::after {
                transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);
                background: rgba(225, 174, 93, 1);
                background: var(--primary);
            }

/**
     * when the menu is too long, we cant center it
     * so we force flex to align on top
     */

.popmenu--will-scroll > ul {
            margin-top: 20px;
        }

.popmenu__submenu {
        border-top: 1px solid #444;
        margin-top: 20px;
        padding-top: 20px;
        font-size: 20px;
    }

.popmenu__submenu li {
            padding: 0.5em 0;
        }

.popmenu__wrapper {
        padding: 80px 0 0
    }

@media (min-width: 992px) {

    .popmenu__wrapper {
            padding: 100px 0 0
    }
        }

.popmenu__scrollable {
        height: 100%;
        overflow-y: auto;
        padding: 25px 0;
    }

.popmenu__footer {
        margin: 40px 0 0;
        font-size: 18px;
    }

.popmenu__copyright {
        font-size: 16px
    }

@media (min-width: 992px) {

    .popmenu__copyright {
            text-align: right
    }
        }

.popmenu__address p:last-child {
            margin: 0;
        }

.popmenu .social {
        justify-content: flex-start
    }

@media (min-width: 768px) {

    .popmenu .social {
            justify-content: center
    }
        }

.footer {
    background: #0b1628;
    background: var(--complementary-dark);
    color: rgba(255, 253, 249, 1);
    color: var(--cream-white);
    padding: 28px 0 0;
    border-top: 4px solid rgba(225, 174, 93, 1);
    border-top: 4px solid var(--primary);
    position: relative;
}

.footer a {
        color: currentColor;
    }

.footer__top {
        align-items: center;
        padding: 10px 0 50px
    }

@media (min-width: 768px) {

    .footer__top {
    }
        }

.footer__top .newsletter__form .h3 {
            font-family: "Work Sans", sans-serif;
            font-size: 14px !important;
            font-weight: 400;
            color: rgba(225, 174, 93, 1);
            color: var(--primary);
            line-height: 120%;
            margin: 0 0 16px;
        }

.footer__social {
        text-align: center;
        margin-bottom: 28px
    }

@media (min-width: 768px) {

    .footer__social {
            margin-bottom: 0;
            text-align: right
    }
        }

.footer__social .social {
            display: inline-flex;
        }

.footer__bottom {
        border-top: 1px solid currentColor;
        padding: 20px 0;
        margin-top: 32px;
        align-items: center
    }

@media (min-width: 768px) {

    .footer__bottom {
            grid-template-columns: 1fr
    }
        }

@media (min-width: 992px) {

    .footer__bottom {
            grid-template-columns: 2fr 1fr;
            padding-bottom: 20px
    }
        }

@media (min-width: 1200px) {

    .footer__bottom {
            grid-template-columns: 1fr 1fr
    }
        }

.footer__copyright {
        font-size: 14px;
        letter-spacing: -0.4px;
        line-height: 130%;
        text-align: center;
        margin-top: 12px
    }

@media (min-width: 768px) {

    .footer__copyright {
            margin-top: 0
    }
        }

@media (min-width: 992px) {

    .footer__copyright {
            text-align: right
    }
        }

.footer__copyright a {
            color: rgba(205, 158, 85, 1);
            color: var(--primary-dark)
        }

.footer__copyright a:hover {
                color: rgba(225, 174, 93, 1);
                color: var(--primary);
            }

.footer__copyright span {
            display: block
        }

@media (min-width: 768px) {

        .footer__copyright span {
                display: inline
        }
            }

@media (min-width: 992px) {

        .footer__copyright span {
                display: block
        }
            }

@media (min-width: 1200px) {

        .footer__copyright span {
                display: inline
        }
            }

.footer__copyright .separator {
            display: none
        }

@media (min-width: 768px) {

        .footer__copyright .separator {
                display: inline
        }
            }

@media (min-width: 992px) {

        .footer__copyright .separator {
                display: none
        }
            }

@media (min-width: 1200px) {

        .footer__copyright .separator {
                display: inline
        }
            }

.footer .back-to-top {
        display: flex;
        position: absolute;
        top: 0;
        left: 50%;
        z-index: 15;
        transform: translate(-50%, -100%);
        width: 44px;
        height: 36px;
        background-color: rgba(225, 174, 93, 1);
        background-color: var(--primary);
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        align-items: center;
        justify-content: center;
    }

/* Partials */

.accordion__trigger {
        display: flex;
        text-align: unset;
        align-content: space-between;
        align-items: center;
        direction: row;
        border: 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        padding: 20px 0;
        line-height: 1;
        background-color: transparent;
        color: rgba(255, 253, 249, 1);
        color: var(--cream-white);
        font-size: 1.5rem;
        font-weight: 700;
        text-transform: uppercase;
        transition: all ease-in-out 0.2s

        /* stylelint-disable */
    }

.accordion__trigger[aria-expanded="true"]:before {
                content: "-";
            }

.accordion__trigger {
        /* stylelint-enable */
    }

.accordion__trigger:before {
            content: "+";
            color: rgba(225, 174, 93, 1);
            color: var(--primary);
            display: block;
            width: 20px;
        }

.accordion__trigger:focus,
        .accordion__trigger:hover {
            cursor: pointer;
            outline: none;
        }

.accordion__trigger:focus .accordion__trigger-title,
            .accordion__trigger:focus .accordion__trigger-icon,
            .accordion__trigger:hover .accordion__trigger-title,
            .accordion__trigger:hover .accordion__trigger-icon {
                opacity: 0.5;
            }

.accordion__trigger {

        /*Removing "inner outline" for Firefox*/
    }

.accordion__trigger::-moz-focus-inner {
            border: none;
        }

/* stylelint-disable */

.accordion__panel {
        margin: 0;
        transition: all ease-in-out 0.2s;
        overflow: hidden
    }

.accordion__panel.-ba-is-hidden {
            max-height: 0 !important;
            visibility: hidden;
        }

/* stylelint-enable */

.accordion__panel-inner {
        padding: 60px 0 20px;
    }

.teaser {
    box-shadow: 0 10px 20px 0 rgba(6, 17, 34, 0.1);
    background-color: #fff;
    position: relative;
    font-size: 12px;
    overflow: hidden
}

@media (min-width: 768px) {

.teaser {
        font-size: 16px
}
    }

.teaser--normal {
        width: 100%;
        min-height: 350px;
        background-color: transparent;
    }

.teasers--horizontal .teaser--normal {
            min-width: 300px;
            width: 100%
        }

@media (min-width: 992px) {

        .teasers--horizontal .teaser--normal {
                min-width: 340px
        }
            }

.teaser--normal > a {
            display: block
        }

.teaser--normal > a:hover .teaser__body {
                    /* stylelint-disable max-nesting-depth */
                }

@media (min-width: 768px) {
                .teaser--normal > a:hover .teaser__body {
                        transform: translateY(0)
                }
                    }

.teaser--normal > a:hover .teaser__body {
                    /* stylelint-enable max-nesting-depth */
                }

.teaser--normal .teaser__image-wrapper {
                height: 50%;
                min-height: 250px;
                position: relative;
            }

.teaser--normal .teaser__image {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                -webkit-filter: blur(2px), brightness(50%);
                        filter: blur(2px), brightness(50%);
                transform: scale(1.2);
                transition: all 0.4s ease-in-out
            }

.teaser--normal .teaser__image::after {
                    content: "";
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 100%;
                    opacity: 1;
                    background: linear-gradient(to bottom, transparent 32%, rgba(4, 11, 23, 0.9) 78%);
                    background: var(--teasers-images-gradient);
                    transition: opacity 0.4s ease-in-out;
                }

.teaser--normal .teaser__body {
                margin: 12px 0 0;
                padding: 0 8px;
                min-height: 100px;
                transition: transform 0.3s;
                transform: translateY(0%)
            }

@media (min-width: 768px) {

            .teaser--normal .teaser__body {
                    transform: translateY(-68%);
            }

                    .teasers__item-show .teaser--normal .teaser__body {
                        transform: translateY(-80%);
                    }
                }

.teaser--normal .teaser__posted-on {
                color: rgba(225, 174, 93, 1);
                color: var(--primary);
            }

.teaser--normal .teaser__content {
                line-height: 1.39;
                overflow: hidden;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;
            }

.teaser--normal .teaser__title {
                display: flex;
                align-items: flex-end;

                font-size: 20px;
                line-height: 1.2;
                margin: 0 0 4px
            }

@media (min-width: 992px) {

            .teaser--normal .teaser__title {
                    font-size: 24px
            }
                }

.teaser--normal .teaser__subtitle {
                color: rgba(225, 174, 93, 1);
                color: var(--primary);
            }

.teaser--full-image {
        width: 100%;
        height: 220px;
        min-width: 220px;
        overflow: inherit;
        background-color: transparent
    }

@media (min-width: 768px) {

    .teaser--full-image {
            height: 250px
    }
        }

@media (min-width: 992px) {

    .teaser--full-image {
            height: 300px
    }
        }

@media (min-width: 1200px) {

    .teaser--full-image {
            height: 350px
    }
        }

.teaser--full-image .teaser__image-wrapper::after {
                    content: "";
                    display: block;
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    height: 60%;
                    opacity: 1;
                    background: linear-gradient(to bottom, transparent 32%, rgba(4, 11, 23, 0.9) 78%);
                    background: var(--teasers-images-gradient);
                    transition: opacity 0.4s ease-in-out;
                }

.teaser--full-image .teaser__image {
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                left: 0;
                transform: scale(1);
                transition: transform 0.5s linear;
            }

.teaser--full-image .teaser__body {
                right: 0;
                bottom: 0;
                left: 0;
                color: #fff;
                position: absolute;
                max-width: -webkit-max-content;
                max-width: -moz-max-content;
                max-width: max-content;
            }

.teaser--full-image .teaser__content {
                color: #fff;
            }

.teaser--hoverable {
        cursor: pointer;
        transition: box-shadow 0.3s
    }

.teaser--hoverable.teaser--full-image .teaser__image::after {
                        opacity: 0;
                    }

.teaser--hoverable:hover {
            box-shadow: unset;
        }

.teaser--hoverable:hover .teaser__image {
                -webkit-filter: grayscale(0%);
                        filter: grayscale(0%);
            }

.teaser--hoverable:hover.teaser--normal .teaser__image {
                        -webkit-filter: brightness(100%) blur(0);
                                filter: brightness(100%) blur(0);
                        transform: scale(1)
                    }

.teaser--hoverable:hover.teaser--normal .teaser__image::after {
                            opacity: 0;
                        }

.teaser--hoverable:hover.teaser--full-image .teaser__image-wrapper::after {
                        opacity: 0;
                    }

.teaser--hoverable:hover.teaser--full-image .teaser__image {
                    transform: scale(1.05)
                }

.teaser--hoverable:hover.teaser--full-image .teaser__image:after {
                        opacity: 0;
                    }

.teaser--hoverable > a:hover {
            opacity: 1;
        }

.teaser--horizontal {
        display: flex;
    }

.teaser--horizontal > a {
            display: flex;
            width: 100%;
        }

.teaser--horizontal.teaser--full-image {
            padding-top: 0;
            display: block;
        }

.teaser--horizontal.teaser--full-image .teaser__body {
                    padding-top: 40px;
                    position: relative;
                    flex: 1 0 auto;
                    width: 100%;
                }

.teaser--horizontal.teaser--full-image .teaser__image-wrapper {
                    flex: 0;
                }

.teaser--horizontal .teaser__image-wrapper {
                flex: 0 0 33.33%;
                padding-top: 0;
            }

.teaser--horizontal .teaser__image {
                padding-top: 0;
                width: 100%;
                height: 100%;
            }

.teaser--horizontal .teaser__body {
                flex: 0 0 66.66%;
            }

.teaser__image-wrapper {
        overflow: hidden;
    }

.teaser__image {
        background-size: cover;
        background-position: 50%;
        -webkit-filter: grayscale(100%);
                filter: grayscale(100%);
        -webkit-filter: var(--greyscale-images);
                filter: var(--greyscale-images);
        transition: all 0.5s linear;
    }

.teaser__tag {
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: 2;
        font-size: 0.8em;
        color: #fff;
        text-shadow: 0 0 8px #000;
    }

.teaser__body {
        padding: 1.2em;
        color: rgba(255, 253, 249, 1);
        color: var(--text-color);
    }

.teaser__suptitle {
        text-transform: uppercase;
        margin-bottom: 0.2em;
    }

.teaser__title {
        font-size: 1.2em;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 0.6em;
    }

.teaser--full-image .teaser__title {
            margin-bottom: 0.2em;
            font-size: 2.2em
        }

@media (min-width: 992px) {

        .teaser--full-image .teaser__title {
                font-size: 1.7em
        }
            }

@media (min-width: 1200px) {

        .teaser--full-image .teaser__title {
                font-size: 2.5em
        }
            }

.teaser__subtitle {
        text-transform: uppercase;
        margin-bottom: 0.6em;
    }

.teaser--full-image .teaser__subtitle {
            font-size: 12px;
            text-transform: capitalize;
            letter-spacing: 0.01em;
            color: rgba(225, 174, 93, 1);
            color: var(--primary)
        }

@media (min-width: 768px) {

        .teaser--full-image .teaser__subtitle {
                font-size: 16px
        }
            }

.teaser__content {
        color: rgba(255, 253, 249, 1);
        color: var(--text-color);
        opacity: 0.8;
    }

.btn {
    display: inline-block;
    color: var(--primary);
    color: var(--btn-color, var(--primary));
    background-color: transparent;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid var(--primary);
    border: 1px solid var(--btn-color, var(--primary));
    outline: 0;
    transition: background-color 0.3s ease, color 0.35s ease;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {

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

.btn:focus,
    .btn:hover {
        color: #fff;
        background-color: var(--primary);
        background-color: var(--btn-color, var(--primary));
        text-decoration: none;
        outline: 0;
        box-shadow: none;
}

.btn--inverse {
        color: #fff;
        background-color: var(--primary);
        background-color: var(--btn-color, var(--primary));
}

.btn--inverse:focus,
        .btn--inverse:hover {
            background: transparent;
            color: var(--primary);
            color: var(--btn-color, var(--primary));
            border-color: var(--primary);
            border-color: var(--btn-color, var(--primary));
        }

.btn--secondary {
        --btn-color: var(--secondary);
}

.btn--fullwidth {
        width: 100%;
        max-width: 100%;
}

.btn--big {
        font-size: 18px;
        padding: 8px 24px;
}

.btn--small {
        font-size: 11px;
        padding: 3px 6px;
}

.btn--loading {
        pointer-events: none;
}

.btn--loading::after {
            content: "";
            display: inline-block;
            width: 0.8em;
            height: 0.8em;
            margin-left: 5px;
            border: 2px solid currentColor;
            border-bottom: 2px solid transparent;
            border-radius: 50%;
            -webkit-animation: fa-spin 1s infinite linear;
                    animation: fa-spin 1s infinite linear;
        }

.btn .feather {
        width: 1.4em;
        height: 1.4em;
}

.btn--plain {
        color: rgba(225, 174, 93, 1);
        color: var(--primary);
        padding-left: 0;
        padding-right: 0;
        background-color: transparent;
        border: 0;
}

.btn--plain .sc-icon--inverse svg {
            transform: translateX(0);
            transition: transform 0.3s;
        }

.btn--plain:focus,
        .btn--plain:hover {
            color: rgba(225, 174, 93, 1);
            color: var(--primary);
            background-color: transparent;
        }

.btn--plain:focus .sc-icon--inverse svg, .btn--plain:hover .sc-icon--inverse svg {
                transform: translateX(7px);
            }

@-webkit-keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}

.breakingnews-listing {
    width: 100%;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
}

.breakingnews {
    width: 100%;
    text-align: center;
    font-size: 14px;
    overflow: hidden;
    transition: height 0.3s
}

@media (min-width: 768px) {

.breakingnews {
        font-size: 18px
}
    }

.breakingnews__container {
        position: relative;
        margin: 10px;
        padding: 40px 0 30px;
        color: #004085;
        background-color: #cce5ff;
    }

.breakingnews__container--error {
            color: #721c24;
            background-color: #f8d7da;
        }

.breakingnews__container--warning {
            color: #856404;
            background-color: #fff3cd;
        }

.breakingnews__close {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 400;
        font-size: 18px;
        background-color: transparent;
        line-height: 1;
        border: 2px solid currentColor;
        width: 25px;
        height: 25px;
        color: currentColor
    }

@media (min-width: 768px) {

    .breakingnews__close {
            right: 30px
    }
        }

@media (min-width: 992px) {

    .breakingnews__close {
            top: 35px;
            right: 15px;
            transform: translateY(-100%)
    }
        }

.breakingnews a {
        text-decoration: underline;
    }

.breakingnews p {
        margin: 0 0 0.8em
    }

.breakingnews p:last-child {
            margin: 0;
        }

.social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.social--artist {
        display: grid;
        grid-gap: 16px;
        grid-template-columns: repeat(auto-fit, minmax(24px, 1fr));
        grid-auto-flow: row dense;
        min-width: 200px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        margin: 0;
    }

.social__item + .social__item {
            margin-left: 20px
        }

@media (min-width: 580px) {
        .social__item + .social__item {
                margin-left: 40px
        }
            }

.social--artist .social__item {
            color: rgba(255, 253, 249, 1);
            color: var(--cream-white);
        }

.social--artist .social__item + .social__item {
                margin: 0;
            }

.social__item > * {
            display: block;
        }

.breadcrumb {
    white-space: nowrap;
    margin-right: 20px;
    display: flex;
    flex-flow: row wrap;
    font-size: 13px
}

@media (min-width: 768px) {

.breadcrumb {
        font-size: inherit
}
    }

.breadcrumb__item--active {
            display: none
        }

@media (min-width: 768px) {
        .breadcrumb__item--active {
                color: #ddd;
                display: block;
                font-weight: 700;
                text-transform: uppercase
        }
            }

.breadcrumb__item:before {
            color: #ddd;
            content: "\203A";
            margin: 0 10px;
        }

.breadcrumb__item:first-child:before {
            display: none;
        }

.subpages {
    position: relative;
    background-color: rgba(225, 174, 93, 1);
    background-color: var(--primary);
    margin-top: 30px;
    color: #fff;
}

.subpages__title {
        text-transform: uppercase;
        font-size: 75%;
        padding: 8px 0 0 1px;
        opacity: 0.9;
    }

.subpages__wrapper {
        display: flex;
        flex-flow: row nowrap;
        overflow-x: auto;
        position: relative;
        padding-left: 15px
    }

@media (min-width: 1200px) {

    .subpages__wrapper {
            padding-left: calc(50% - 600px + 15px)
    }
        }

.subpages__item {
        white-space: nowrap;
        color: currentColor;
        padding: 10px 24px
    }

.subpages__item:first-child {
            padding-left: 0;
        }

/*@import "partials/language-selector.scss";*/

.newsletter__form {
        text-align: center
    }

@media (min-width: 768px) {
    .newsletter__form {
            text-align: left
    }
        }

.newsletter__fields {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        max-width: 240px;
        width: 100%;
    }

.newsletter__input {
        background-color: rgba(255, 253, 249, 0.05);
        border: 1px solid transparent;
        border-bottom: 1px solid rgba(255, 253, 249, 0.1);
        border-radius: 0;
        color: rgba(255, 253, 249, 0.8);
        font-size: 14px;
        flex-grow: 1;
        line-height: 120%;
        padding: 12px
    }

.newsletter__input::-webkit-input-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

.newsletter__input::-moz-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

.newsletter__input::-ms-input-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

&__input::-webkit-input-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

&__input::-moz-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

&__input::-ms-input-placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

.newsletter__input::placeholder {
            color: rgba(255, 253, 249, 0.8);
        }

.newsletter__input:focus,
        .newsletter__input:active {
            outline: none;
            border-bottom-color: rgba(255, 253, 249, 0.6);
        }

.newsletter__btn {
        font-weight: 600;
        font-size: 14px;
        line-height: 120%;
        background-color: rgba(225, 174, 93, 1);
        background-color: var(--primary);
        display: flex;
        align-items: center;
        color: rgba(255, 253, 249, 0.8);
        border: none;
        transition: background-color 0.3s;
        padding: 13px 11px;
        cursor: pointer
    }

.newsletter__btn:hover {
            background-color: rgba(205, 158, 85, 1);
            background-color: var(--primary-dark);
        }

/* Modules */

.editionlist {

}

/*@import "modules/pricing.scss";*/

.page-header {
    position: relative
}

.page-header:before,
    .page-header:after {
        content: "";
        background: linear-gradient(180deg, rgba(6, 17, 34, 0) 12.4%, rgba(4, 11, 23, 0.95) 78%);
        background: var(--primary-gradient);
        height: 150px;
        width: 100%;
        display: block;
        position: absolute;
        z-index: -1
    }

@media (min-width: 992px) {

.page-header:before,
    .page-header:after {
            height: 300px
    }
        }

.page-header:before {
        top: 0;
        transform: rotate(-180deg);
    }

.page-header:after {
        bottom: 0;
        height: 60%;
    }

.page-header__background {
        display: none;
        visibility: hidden;
    }

/*Take a look on Frontend file for (ref: _display_pattern)*/

.section--has-page-header-with-pattern .page-header__background {
            display: block;
            visibility: visible;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 100%;
            opacity: 0.1;
            z-index: -2
        }

.section--has-page-header-with-pattern .page-header__background:before {
                content: attr(data-bg-text);
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 100%;

                font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

                font-family: var(--font-title);
                font-size: 40px;
                font-weight: 800;
                line-height: 1.15;
                overflow: hidden;
                word-break: break-all;

                background: url("/app/themes/bwap-theme/images/line_pattern_white.svg") repeat center center;

                background: var(--line-pattern) repeat center center;
                background-size: 10px;
                background-clip: content-box;
                -webkit-background-clip: text;
                -webkit-text-stroke: 1px rgba(255, 253, 249, 1);
                -webkit-text-fill-color: transparent
            }

@media (min-width: 992px) {

            .section--has-page-header-with-pattern .page-header__background:before {
                    font-size: 80px;
                    line-height: 1
            }
                }

.page-header--normal {
        padding: 120px 0 240px;
        margin-bottom: -200px
    }

@media (min-width: 768px) {

    .page-header--normal {
            padding: 160px 0 200px
    }
        }

@media (min-width: 992px) {

    .page-header--normal {
            padding: 160px 0 280px;
            margin-bottom: -240px
    }
        }

.page-header--with-image {
        margin-bottom: -400px;
        padding: 0 0 320px
    }

@media (min-width: 768px) {

    .page-header--with-image {
            margin-bottom: -320px;
            padding: 240px 0
    }
        }

@media (min-width: 992px) {

    .page-header--with-image {
            margin-bottom: -400px;
            margin-top: 120px;
            padding: 320px 0
    }
        }

@media (min-width: 1200px) {

    .page-header--with-image {
            margin-top: 150px
    }
        }

.page-header--with-image:before {
            height: 150px;
        }

.page-header__image-wrapper {
        position: relative;
        height: 300px;
        width: 100%
    }

@media (min-width: 768px) {

    .page-header__image-wrapper {
            position: absolute;
            left: 50%;
            top: 0;
            margin: 0 auto;
            transform: translateX(-50%)
    }
        }

@media (min-width: 992px) {

    .page-header__image-wrapper {
            height: 444px
    }
        }

@media (min-width: 1200px) {

    .page-header__image-wrapper {
            max-width: 860px;
            transform: translateX(calc(-50% - 110px))
    }
        }

.page-header__image-wrapper:after {
            content: "";
            display: block;
            position: absolute;
            bottom: 0;
            height: 60%;
            width: 100%;
            opacity: 1;
            background: linear-gradient(to bottom, transparent 32%, rgba(4, 11, 23, 0.9) 78%);
            background: var(--teasers-images-gradient);
            transition: opacity 0.4s ease-in-out
        }

@media (min-width: 768px) {

        .page-header__image-wrapper:after {
                width: 50%
        }
            }

@media (min-width: 1200px) {

        .page-header__image-wrapper:after {
                width: 650px
        }
            }

.page-header__image-wrapper:hover::after {
                opacity: 0.8;
            }

.page-header__lightbox {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
    }

.page-header__image {
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover
    }

@media (min-width: 768px) {

    .page-header__image {
            width: 50%
    }
        }

@media (min-width: 1200px) {

    .page-header__image {
            width: 650px
    }
        }

.page-header__container-title {
        position: relative;
        transform: translateY(30px);
        margin-bottom: 80px;
    }

.page-header--with-image .page-header__container-title {
            max-width: 892px;
        }

@media (min-width: 768px) {

    .page-header__container-title {
            margin-bottom: 60px
    }
        }

@media (min-width: 992px) {

    .page-header__container-title {
            margin-bottom: 40px
    }
        }

.page-header__container-title .page-header__title {
            position: relative;
        }

.page-header__title {
        -webkit-hyphens: auto;
            -ms-hyphens: auto;
                hyphens: auto;
    }

.page-header--with-image .page-header__title {
            font-size: 28px;
            line-height: 120%;
            margin: -80px auto 12px;
            text-transform: uppercase
        }

@media (min-width: 580px) {

        .page-header--with-image .page-header__title {
                font-size: 40px
        }
            }

@media (min-width: 768px) {

        .page-header--with-image .page-header__title {
                font-size: 36px;
                margin-bottom: 0;
                margin-top: -60px
        }
            }

@media (min-width: 992px) {

        .page-header--with-image .page-header__title {
                font-size: 52px
        }
            }

.page-header--normal .page-header__title {
            font-size: 32px;
            line-height: 1.2;
            margin: -40px 0 0;
            text-align: center
        }

@media (min-width: 375px) {

        .page-header--normal .page-header__title {
                font-size: 44px
        }
            }

@media (min-width: 580px) {

        .page-header--normal .page-header__title {
                font-size: 60px
        }
            }

@media (min-width: 768px) {

        .page-header--normal .page-header__title {
                font-size: 80px
        }
            }

@media (min-width: 992px) {

        .page-header--normal .page-header__title {
                font-size: 136px
        }
            }

.page-header__subtitle {
        font-size: 16px;
        line-height: 1;
        color: rgba(225, 174, 93, 1);
        color: var(--primary);
        text-transform: uppercase;
    }

.page-header--with-image .page-header__subtitle {
            margin: 0 auto 10px;
        }

@media (min-width: 375px) {

    .page-header__subtitle {
            font-size: 20px
    }
        }

@media (min-width: 768px) {

    .page-header__subtitle {
            font-size: 24px
    }
        }

@media (min-width: 992px) {

    .page-header__subtitle {
            font-size: 30px
    }
        }

.page-header__infos {
        line-height: 1;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 20px;
    }

.page-header--with-image .page-header__infos {
            margin: 15px auto 0;
        }

@media (min-width: 768px) {

    .page-header__infos {
            font-size: 1.4rem
    }
        }

.page-header__infos span {
            font-weight: 500;
        }

.page-header__network {
        margin: 1rem auto 0;
    }

.page-header__ticketing {
        display: flex;
        align-items: center;
        margin: 1.5rem auto 0;
    }

.page-header__ticketing .btn {
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: background-color 0.4s;
            background-color: rgba(205, 158, 85, 1);
            background-color: var(--primary-dark);
        }

.page-header__ticketing .btn .svg-container {
                margin: 0 10px 0 0;
            }

.page-header__ticketing .btn:hover {
                background-color: rgba(225, 174, 93, 1);
                background-color: var(--primary);
                color: rgba(255, 253, 249, 1);
                color: var(--cream-white);
            }

.call-to-action {
    position: relative;
    overflow: hidden;
    padding: 30px 25px;
    width: 100%
}

@media (min-width: 768px) {

.call-to-action {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        padding: 100px 45px;
        min-height: 400px
}
    }

.section--last .call-to-action {
        padding: 50px 0 80px
    }

@media (min-width: 768px) {

    .section--last .call-to-action {
            padding: 100px 45px 80px
    }
        }

.call-to-action--has-desktop-image {
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center
    }

@media (min-width: 580px) {

    .call-to-action--has-desktop-image {
            min-height: 450px
    }
        }

@media (min-width: 768px) {
        .call-to-action--inverse .call-to-action__body {
                margin-left: 60%
        }
            }

.call-to-action__overlay {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: 2;
        background-color: rgba(4, 11, 23, 0.4);
    }

.call-to-action__image {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center center;
           object-position: center center;
        z-index: 1;
        width: 100%;
        height: 100%;
    }

.call-to-action__image--desktop {
            display: none
        }

@media (min-width: 768px) {

        .call-to-action__image--desktop {
                display: block
        }
            }

@media (min-width: 768px) {

        .call-to-action__image--mobile {
                display: none
        }
            }

.call-to-action__body {
        position: relative;
        z-index: 4;
        text-align: center;
        font-size: 20px
    }

@media (min-width: 768px) {

    .call-to-action__body {
            font-size: 24px;
            text-align: left;
            margin: 0;
            width: 80%
    }
        }

@media (min-width: 1200px) {

    .call-to-action__body {
            font-size: 30px
    }
        }

.call-to-action__title {
    font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em;
}

@media (min-width: 768px) {

    .call-to-action__title {
        font-size: 28px;
    }
}

@media (min-width: 992px) {

    .call-to-action__title {
        font-size: 40px;
    }
}

.call-to-action__title {
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.3rem;
}

.call-to-action__subtitle {
        font-size: 0.8em;
        line-height: 2.4rem;
    }

.call-to-action__btn {
        display: inline-flex;
        width: auto;
        margin: 16px 0 0
    }

@media (min-width: 580px) {

    .call-to-action__btn {
            margin: 20px 0 0
    }
        }

@media (min-width: 768px) {

    .call-to-action__btn {
            margin: 28px 0 0
    }
        }

/*@import "modules/numbers.scss";*/

.teasers {
    /**
     * manage display type on mobiles
     */
}

@media (max-width: 767px) {
            .teasers--horizontal .teasers__wrapper {
                overflow-x: scroll;
                display: flex;
                flex-flow: row nowrap;
                -webkit-overflow-scrolling: touch
            }

                .teasers--horizontal .teasers__wrapper::-webkit-scrollbar {
                    height: 5px;
                    background: #0b1628;
                    background: var(--complementary-dark);
                }
            .teasers--horizontal .teasers__wrapper {

                /* stylelint-disable */
            }
                    .teasers--horizontal .teasers__wrapper::-webkit-scrollbar-track:hover {
                        box-shadow: inset 0 0 6px #0b1628;
                        box-shadow: inset 0 0 6px var(--complementary-dark);
                    }
            .teasers--horizontal .teasers__wrapper {
                /* stylelint-enable */
            }

                .teasers--horizontal .teasers__wrapper::-webkit-scrollbar-thumb {
                    background: rgba(255, 255, 255, 0.15);
                }
                .teasers--horizontal.teasers--display-normal .teasers__item-wrapper:first-of-type {
                    margin-left: 5px;
                }
                .teasers--horizontal.teasers--display-full-image .teasers__wrapper {
                    padding: 15px 25px;
                    grid-gap: initial;
                }

            .teasers--horizontal .teasers__item-wrapper {
                margin-right: 20px;
            }
            .teasers--vertical .teasers__item-wrapper {
                padding: 0;
            }

                .teasers--vertical .teasers__item-wrapper + .teasers__item-wrapper {
                    margin-top: 20px
                }

                    @media (min-width: 540px) {

                .teasers--vertical .teasers__item-wrapper + .teasers__item-wrapper {
                        margin-top: 0
                }
                    }
    }

.teasers__wrapper {
        padding: 0 15px
    }

@media (min-width: 992px) {

    .teasers__wrapper {
            padding: 0
    }
        }

.teasers__wrapper--slider {
            /* stylelint-disable */
            flex-direction: column !important;
            overflow: hidden !important;
        }

/* stylelint-enable */

.teasers__wrapper--slider .teasers__item-wrapper {
                min-height: 290px;
                opacity: 0.1;
                transition: opacity 0.3s;
                pointer-events: none
            }

.teasers__wrapper--slider .teasers__item-wrapper.is-active {
                    opacity: 1;
                    pointer-events: initial;
                }

@media (min-width: 580px) {

            .teasers__wrapper--slider .teasers__item-wrapper {
                    min-height: 420px
            }
                }

@media (min-width: 768px) {

            .teasers__wrapper--slider .teasers__item-wrapper {
                    min-height: 340px
            }
                }

@media (min-width: 992px) {

            .teasers__wrapper--slider .teasers__item-wrapper {
                    min-height: auto
            }
                }

.teasers__slider {
        display: flex;
        flex-direction: column;
    }

.section__header-on-side .teasers__slider {
            padding-bottom: 50px;
        }

.teasers__item-wrapper {
        display: flex;
        align-items: center;
        justify-content: center
    }

@media (min-width: 992px) {

    .teasers__item-wrapper {
            align-items: flex-start;
            justify-content: flex-start
    }
        }

.teasers__item-wrapper.splide__slide {
            min-width: 300px;
            max-width: 320px;
            height: auto
        }

@media (min-width: 768px) {

        .teasers__item-wrapper.splide__slide {
                max-width: 420px
        }
            }

@media (min-width: 992px) {

        .teasers__item-wrapper.splide__slide {
                width: 260px;
                height: 310px
        }
            }

@media (min-width: 1200px) {

        .teasers__item-wrapper.splide__slide {
                width: 420px;
                height: auto;
                min-height: 380px;
                max-height: 420px
        }
            }

.teasers__footer {
        margin-top: 60px;
        text-align: center;
    }

.teasers--display-full-image .teasers__footer {
            margin-top: 90px;
        }

.logogrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px
}

@media (min-width: 580px) {

.logogrid {
        grid-gap: 32px;
        gap: 32px
}
    }

@media (min-width: 580px) {

    .logogrid--3-col,
    .logogrid--4-col,
    .logogrid--5-col,
    .logogrid--6-col {
            grid-template-columns: repeat(3, 1fr)
    }
        }

@media (min-width: 768px) {

    .logogrid--4-col,
    .logogrid--5-col,
    .logogrid--6-col,
    .logogrid--8-col {
            grid-template-columns: repeat(4, 1fr)
    }
        }

@media (min-width: 992px) {

    .logogrid--5-col {
            grid-template-columns: repeat(5, 1fr)
    }
        }

@media (min-width: 992px) {

    .logogrid--6-col {
            grid-template-columns: repeat(6, 1fr)
    }
        }

@media (min-width: 992px) {

    .logogrid--8-col {
            grid-template-columns: repeat(8, 1fr)
    }
        }

.logogrid__link {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.logogrid__logo {
        display: block;
        align-self: center;
        justify-self: center;
        max-width: 100%;
        max-height: 100%;
    }

.logocarousel__link {
        display: inline-block;
    }

.logocarousel__logo {
        max-height: 60px;
        max-width: 100%;
    }

.logocarousel .splide__slide {
        text-align: center;
    }

.hero {
    min-height: 370px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover
}

.hero::after {
        /* Gradient Dark to Fade  on bottom */
        content: "";
        position: absolute;
        bottom: 0;
        height: 100%;
        width: 100%;
        background: linear-gradient(180deg, rgba(6, 17, 34, 0) 12.4%, rgba(4, 11, 23, 0.95) 78%);
        background: var(--primary-gradient);
    }

@media (min-width: 580px) {

.hero {
        min-height: 550px;
        max-height: 100vh
}
    }

@media (min-width: 768px) {

.hero {
        min-height: 750px
}
    }

@media (max-width: 991px) {

    .hero--image-mode-contain {
            display: block;
            padding: 60px 0;
    }

            .hero--image-mode-contain .hero__image {
                position: relative;
                bottom: auto;
                padding-top: 56%;
            }
        }

.hero__image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-position: center;
        background-repeat: no-repeat;
    }

.hero__image--desktop {
            display: none
        }

@media (min-width: 580px) {

        .hero__image--desktop {
                display: block
        }
            }

@media (min-width: 580px) {

        .hero__image--mobile {
                display: none;
        }
            }

.hero__image--mobile {
            background-position: center center;
        }

.hero--image-effect {
        background-blend-mode: overlay, overlay, multiply;
    }

.hero__container {
        position: relative;
        z-index: 2;
        transform: translateY(50%);
        width: 100%;
    }

.hero__suptitle {
    font-family: "SuisseIntl", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

@media (min-width: 768px) {

    .hero__suptitle {
        font-size: 43px;
    }
}

@media (min-width: 992px) {

    .hero__suptitle {
        font-size: 64px;
    }
}

.hero__suptitle {
    font-weight: 800;
    font-size: 28px;
    line-height: 28px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

@media (min-width: 580px) {

    .hero__suptitle {
            font-size: 2rem;
            line-height: 24px;
            margin: 0 0 12px;
    }
}

@media (min-width: 768px) {

    .hero__suptitle {
            font-size: 3rem;
            line-height: 60px;
            margin: 0 0 16px;
    }
}

.hero__title {
    font-size: 16px;
}

@media (min-width: 768px) {

    .hero__title {
        font-size: 18px;
    }
}

@media (min-width: 992px) {

    .hero__title {
        font-size: 20px;
    }
}

.hero__title {
    font-size: 20px;
    color: rgba(225, 174, 93, 1);
    color: var(--primary);
    margin: 0 0 8px;
}

@media (min-width: 580px) {

    .hero__title {
            font-size: 2rem;
            margin: 0 0 12px;
    }
}

@media (min-width: 768px) {

    .hero__title {
            font-size: 3rem;
            margin: 0 0 16px;
    }
}

.hero__subtitle {
        font-weight: 300;
        font-size: 16px;
        line-height: 33px;
        margin: 0
    }

@media (min-width: 580px) {

    .hero__subtitle {
            font-size: 24px
    }
        }

@media (min-width: 768px) {

    .hero__subtitle {
            font-size: 28px
    }
        }

.hero__buttons {
        display: inline-flex;
        width: auto;
        margin: 16px 0 0
    }

@media (min-width: 580px) {

    .hero__buttons {
            margin: 20px 0 0
    }
        }

@media (min-width: 768px) {

    .hero__buttons {
            margin: 28px 0 0
    }
        }

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px
}

@media (min-width: 768px) {

.content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
}

        .content--inverse {
            flex-direction: row-reverse;
        }

        .content--fullpage {
            flex-direction: column;
        }

            .content--fullpage .content__text {
                width: 100%;
            }

            .content--fullpage .content__image {
                width: 100%;
                display: flex;
                justify-content: center;
                margin-bottom: 30px
            }

                .content--fullpage .content__image:empty {
                    margin-bottom: 0;
                }
    }

@media (max-width: 767px) {
        .content .content__image {
            margin-bottom: 30px;
        }
    }

.content__excerpt {
        color: rgba(225, 174, 93, 1);
        color: var(--primary);
        font-weight: 500;
        font-size: 20px;
        line-height: 170%;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

@media (min-width: 768px) {
            .content--text-half .content__text,
            .content--text-half .content__image-wrapper {
                width: 48%;
            }
        }

@media (min-width: 768px) {
            .content--text-third .content__text {
                width: 32%;
            }

            .content--text-third .content__image-wrapper {
                width: 64%;
            }
        }

.content__image-wrapper {
        position: relative;
        overflow: hidden;
        margin: 0 0 20%
    }

@media (min-width: 375px) {

    .content__image-wrapper {
            margin: 0 0 45%
    }
        }

@media (min-width: 411px) {

    .content__image-wrapper {
            margin: 0 0 30%
    }
        }

@media (min-width: 580px) {

    .content__image-wrapper {
            margin: 0 0 20px
    }
        }

.content__image-wrapper::after {
            display: block;
            content: "";
            /* 3:2 aspect ratio */
            aspect-ratio: 3/2;
            padding-bottom: 66.66%;
        }

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

.content__image-info {
        width: 100%;
        padding: 10px;
        background: top left/12px url("/app/themes/bwap-theme/images/stripe_pattern.svg"), #0b1628;
        background: top left/12px var(--stripe-pattern), var(--complementary-dark);
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 10;
        transform: translate(0, 100%)
    }

@media (min-width: 580px) {

    .content__image-info {
            width: 60%;
            transform: translate(-5%, -15%);
            background: top left/12px url("/app/themes/bwap-theme/images/stripe_pattern.svg"), #0b1628;
            background: top left/12px var(--stripe-pattern), var(--complementary-dark)
    }

            .content__image-info:before {
                content: "";
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 1;
                z-index: -1;
                transform: translate(10px, -10px);
                background: #132138;
                background: var(--complementary);
            }
        }

@media (min-width: 768px) {

    .content__image-info {
            width: 50%
    }
        }

.content__info-list {
        list-style: none;
        padding: 15px;
        margin: 0;
    }

.content__info-list h4,
        .content__info-list h5 {
            margin: 0 4px 0 0;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase
        }

@media (min-width: 375px) {

        .content__info-list h4,
        .content__info-list h5 {
                font-size: 0.8rem
        }
            }

@media (min-width: 768px) {

        .content__info-list h4,
        .content__info-list h5 {
                font-size: 1rem
        }
            }

.content__info-list li {
            display: flex;
            align-items: center;
            flex-wrap: wrap
        }

.content__info-list li:not(:last-of-type) {
                margin: 0 0 1rem;
            }

.content-on-columns {
    margin-left: auto;
    margin-right: auto;
    max-width: 860px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 24px;
    gap: 24px
}

@media (min-width: 768px) {

.gallery {
        grid-template-columns: repeat(3, 1fr)
}
    }

@media (max-width: 767px) {

    .gallery--xs-column {
            flex-direction: column;
            align-items: center;
    }

            .gallery--xs-column .gallery__item {
                width: 100%;
                max-width: 380px;
                margin-bottom: 15px;
            }
        }

.gallery__item {
        position: relative;
        display: block

        /* ensure the ratio 16/9 */
    }

.gallery__item:before {
            content: "";
            display: block;
            padding-top: 56.25%;
        }

.gallery__image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-size: cover;
        background-position: center;
    }

.gallery__content {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 5px;
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        text-align: center;
        transition: opacity 0.4s ease
    }

.gallery__content:empty {
            display: none;
        }

.gallery__content:hover {
            opacity: 0.8;
        }

.video {
    max-width: 640px;
    margin: auto;
    background-color: rgb(4, 11, 23);
    background-color: var(--black);
}

.video__poster {
        position: relative;
        z-index: 9;
        background-position: center;
        background-size: cover;
        transition: transform 0.6s ease, opacity 0.3s linear;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        background-blend-mode: overlay, overlay, multiply

        /* overlay */
    }

.video__poster:before {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            transition: background 0.1s ease;
        }

.video__poster {

        /* play triangle */
    }

.video__poster:after {
            content: "";
            position: relative;
            display: block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 26px 0 26px 38px;
            border-color: transparent transparent transparent rgba(255, 253, 249, 1);
            border-color: transparent transparent transparent var(--cream-white);
            z-index: 10
        }

@media (min-width: 768px) {
        .video__poster:after {
                border-width: 52px 0 52px 77px
        }
            }

.video__poster--playing {
            opacity: 0;
            transform: translate3d(0, -100%, 0);
        }

.video .embed-responsive {
        position: relative;
        display: block;
        width: 100%;
        padding: 0;
        overflow: hidden
    }

.video .embed-responsive::before {
            display: block;
            content: "";
        }

.video .embed-responsive .embed-responsive-item {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

.video .embed-responsive .embed-responsive-item > iframe {
                position: absolute;
                top: 0;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }

.video .embed-responsive-16by9::before {
            padding-top: 56.6%;
        }

/* Miscellaneous */

/* stylelint-disable */

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

/* Buttons */

.gform_wrapper .button, .gform_wrapper .button:visited, .gform_wrapper .h nav li.button a, .gform_wrapper button, .gform_wrapper input[type="button"], .gform_wrapper input[type="submit"], .gform_wrapper input[type="reset"], .gform_wrapper .menu-toggle {
    display: inline-block;
    color: var(--primary);
    color: var(--btn-color, var(--primary));
    background-color: transparent;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 16px;
    line-height: 1.5;
    letter-spacing: 0.8px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid var(--primary);
    border: 1px solid var(--btn-color, var(--primary));
    outline: 0;
    transition: background-color 0.3s ease, color 0.35s ease;
    max-width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
    .gform_wrapper .button, .gform_wrapper .button:visited, .gform_wrapper .h nav li.button a, .gform_wrapper button, .gform_wrapper input[type="button"], .gform_wrapper input[type="submit"], .gform_wrapper input[type="reset"], .gform_wrapper .menu-toggle {
        font-size: 14px;
    }
}

.gform_wrapper .button:focus,
    .gform_wrapper .button:hover,
    .gform_wrapper .button:visited:focus,
    .gform_wrapper .button:visited:hover,
    .gform_wrapper .h nav li.button a:focus,
    .gform_wrapper .h nav li.button a:hover,
    .gform_wrapper button:focus,
    .gform_wrapper button:hover,
    .gform_wrapper input[type="button"]:focus,
    .gform_wrapper input[type="button"]:hover,
    .gform_wrapper input[type="submit"]:focus,
    .gform_wrapper input[type="submit"]:hover,
    .gform_wrapper input[type="reset"]:focus,
    .gform_wrapper input[type="reset"]:hover,
    .gform_wrapper .menu-toggle:focus,
    .gform_wrapper .menu-toggle:hover {
        color: #fff;
        background-color: var(--primary);
        background-color: var(--btn-color, var(--primary));
        text-decoration: none;
        outline: 0;
        box-shadow: none;
}

.gform_wrapper .button,
    .gform_wrapper .button:visited,
    .gform_wrapper .h nav li.button a,
    .gform_wrapper button,
    .gform_wrapper input[type="button"],
    .gform_wrapper input[type="submit"],
    .gform_wrapper input[type="reset"],
    .gform_wrapper .menu-toggle {
    font-size: 14px !important;
}

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

.gform_wrapper .select2-container .select2-selection,
    .gform_wrapper .select2-container .select2-choice {
        height: auto !important;
        background: #efefef !important;
        border: none !important;
        border-radius: 3px !important;
    }

.gform_wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        list-style: none;
        flex-wrap: wrap;
        margin: 0;
        padding: 0 5px;
        width: 100%;
        height: auto !important;
        line-height: auto !important;
        text-transform: none !important
    }

@media screen and (max-width: 641px) {

    .gform_wrapper .select2-container--default .select2-selection--multiple .select2-selection__rendered {
            margin-top: 8px
    }
        }

.gform_wrapper .select2-container--default .select2-selection--multiple {
        background-color: white;
        border: 1px solid #aaa;
        border-radius: 4px;
        cursor: text;
    }

.gform_wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background-color: #e4e4e4;

            border: 1px solid #aaa;
            border-radius: 4px;
            cursor: default;

            float: left;

            margin-right: 5px;
            margin-top: 5px;
            padding: 0 5px
        }

@media screen and (max-width: 641px) {

        .gform_wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice {
                margin-top: 0
        }
            }

@media screen and (max-width: 641px) {

        .gform_wrapper .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
                display: inline-flex;
                margin: 0 4px 0 0 !important
        }
            }

.gform_wrapper .select2-display-none {
        padding-top: 0.5em !important;
    }

.gform_wrapper .button.secondary-button,
    .gform_wrapper input[type="reset"] {
        color: black;
        background: lightgrey;
    }

.gform_wrapper .button:hover,
    .gform_wrapper button:hover,
    .gform_wrapper input[type="button"]:hover,
    .gform_wrapper input[type="submit"]:hover,
    .gform_wrapper input[type="reset"]:hover,
    .gform_wrapper .menu-toggle:hover,
    .gform_wrapper .h nav li.button a:hover {
        color: #fff;
        background-color: rgba(225, 174, 93, 1);
        background-color: var(--primary);
        text-decoration: none;
        outline: 0;
        box-shadow: none;
    }

.gform_wrapper .sidebar .button {
        margin: 1em auto;
        display: block;
    }

/* Form Elements */

.gform_wrapper .content form {
        margin: 1em 0;
    }

.gform_wrapper fieldset {
        padding: 1em 0;
    }

.gform_wrapper fieldset > * {
        padding-left: 1em;
    }

.gform_wrapper fieldset legend {
        padding-left: 0;
    }

.gform_wrapper label {
        display: block;
        padding: 1em 0 0 0.25em;
    }

.gform_wrapper select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        padding: 0.5em;
        background: #efefef;
        border: none;
        border-radius: 3px;
        padding: 1em;
        font-size: 1em;
        height: auto;
    }

.gform_wrapper select::-ms-expand {
        display: none;
    }

.gform_wrapper option {
        padding: 0.25em 0.5em;
    }

.gform_wrapper .gfield_contains_required .ginput_container {
        position: relative
    }

.gform_wrapper .gfield_contains_required .ginput_container:after {
            display: block;
            content: "";
            width: 4px;
            height: 4px;
            background-color: #eb5757;
            border-radius: 2px;
            position: absolute;
            right: 5px;
            top: 5px;
        }

.gform_wrapper textarea,
    .gform_wrapper select[multiple],
    .gform_wrapper input[type="date"],
    .gform_wrapper input[type="datetime"],
    .gform_wrapper input[type="datetime-local"],
    .gform_wrapper input[type="email"],
    .gform_wrapper input[type="month"],
    .gform_wrapper input[type="week"],
    .gform_wrapper input[type="number"],
    .gform_wrapper input[type="password"],
    .gform_wrapper input[type="search"],
    .gform_wrapper input[type="text"],
    .gform_wrapper input[type="time"],
    .gform_wrapper input[type="url"],
    .gform_wrapper input[type="tel"],
    .gform_wrapper input[type="time"] {
        width: 100%;
        max-width: 100%;
        border-radius: 2px;
        padding: 14px 10px !important;
        height: auto;
        font-size: 14px !important;
        outline: none;
        border: 1px solid #bbb7b0;
        -webkit-appearance: none
    }

.gform_wrapper textarea:focus, .gform_wrapper select[multiple]:focus, .gform_wrapper input[type="date"]:focus, .gform_wrapper input[type="datetime"]:focus, .gform_wrapper input[type="datetime-local"]:focus, .gform_wrapper input[type="email"]:focus, .gform_wrapper input[type="month"]:focus, .gform_wrapper input[type="week"]:focus, .gform_wrapper input[type="number"]:focus, .gform_wrapper input[type="password"]:focus, .gform_wrapper input[type="search"]:focus, .gform_wrapper input[type="text"]:focus, .gform_wrapper input[type="time"]:focus, .gform_wrapper input[type="url"]:focus, .gform_wrapper input[type="tel"]:focus, .gform_wrapper input[type="time"]:focus {
            border-color: rgba(225, 174, 93, 1);
            border-color: var(--primary);
        }

.gform_wrapper select[multiple] {
        width: auto;
    }

.gform_wrapper input[type="week"],
    .gform_wrapper input[type="month"],
    .gform_wrapper input[type="date"],
    .gform_wrapper input[type="datetime"],
    .gform_wrapper input[type="datetime-local"],
    .gform_wrapper input[type="number"],
    .gform_wrapper input[type="time"] {
        width: 5em;
        max-width: 100%;
    }

.gform_wrapper input[type="checkbox"],
    .gform_wrapper input[type="radio"] {
        display: inline-block;
        padding-top: 0;
        clear: left;
        margin: 0 6px 0 0 !important;
    }

.gform_wrapper input[type="checkbox"] + label,
    .gform_wrapper input[type="radio"] + label {
        display: inline-block;
        max-width: 95%;
    }

.gform_wrapper input[type="search"] {
        -webkit-appearance: none;
           -moz-appearance: none;
                appearance: none;
    }

.gform_wrapper textarea {
        min-height: 200px;
        width: 100%;
    }

.gform_wrapper form.simple-search input {
        width: 100%;
        padding-right: 40px;
    }

.gform_wrapper .search form.simple-search {
        width: 60%;
    }

.gform_wrapper form.simple-search button {
        top: 5px;
        right: 5px;
        border: 0;
        background: none;
        padding: 0;
        box-shadow: none;
    }

.gform_wrapper form.simple-search button:hover,
    .gform_wrapper form.simple-search button:active {
        box-shadow: none;
    }

.gform_wrapper form.simple-search button img {
        width: 2em;
    }

.gform_wrapper form.search-form {
        padding: 0;
        overflow: hidden;
        margin-top: 1em;
        max-height: 3.25em;
        position: relative;
    }

.gform_wrapper form.search-form input {
        padding: 1em 3em 1em 1em;
        width: 100%;
    }

.gform_wrapper .search-form label:before {
        font-size: 2em;
    }

.gform_wrapper .search-form * {
        outline: none;
    }

.gform_wrapper .search-form button {
        width: 10%;
        height: 5em;
        position: absolute;
        top: 0;
        right: 0;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.gform_wrapper .search-form button:before {
        font-size: 2.5em;
    }

.gform_wrapper .search-form button.icon-replacement:before {
        left: 0.35em;
        top: 0.4em;
    }

.gform_wrapper .select2-container .select2-choice {
        padding: 1.05em !important;
    }

/* Gravity Forms Styling, v .1 */

/* Basics */

.gfield_html_formatted {
    font-size: 14px !important;
}

.gform_wrapper:after,
.gform_wrapper li:after,
.gfield_html_formatted:after,
.clear-multi:after,
.gf_progressbar_wrapper:after,
.gform_page_footer:after,
.gf_page_steps:after {
    content: "";
    display: table;
    clear: both;
}

.gform_wrapper ul {
    padding: 0;
    list-style: none;
}

.gform_wrapper li {
    padding: 0.5em 0
}

.gform_wrapper li:before {
        display: none !important;
    }

.gform_wrapper .small,
.small + .ginput_counter {
    width: 20% !important;
    max-width: 100%;
}

@media (min-width: 768px) {
    .gform_wrapper .medium,
    .medium + .ginput_counter {
        max-width: 100%;
    }
}

.gform_wrapper .large,
.large + .ginput_counter {
    width: 100% !important;
    max-width: 100%;
}

@media (max-width: 767px) {
    .gform_wrapper,
    .ginput_counter {
        width: 100% !important;
        max-width: 100%;
    }
}

.ginput_counter {
    padding-top: 0.25em;
}

.gfield_required {
    padding: 0 0.2em;
}

.gfield_description {
    padding: 0.25em 0.25em 0 0.25em;
    clear: both;
    white-space: pre-wrap;
    font-size: 16px;
}

.field_description_above .gfield_description {
    padding: 0.75em 0.25em;
}

.field_sublabel_above.field_description_above .gfield_description + .clear-multi label {
    padding-top: 0;
}

@media (max-width: 767px) {
    li.gfield {
        max-width: 100%;
    }
}

/* Typography */

.gfield_total label {
    font-size: 1.75em;
}

.ginput_container_total,
h3.gf_progressbar_title,
.ginput_container_post_title {
    font-size: 1.5em;
}

h3.gf_progressbar_title {
    font-size: 1em;
}

.ginput_counter,
.ginput_complex span label,
.ginput_container_fileupload .screen-reader-text,
.instruction,
.ui-datepicker-title select {
    font-size: 0.9em;
}

.gfield_description,
.gfield .instruction {
    font-style: italic;
}

.gfield_label,
.gfield_required,
.ginput_product_price_label,
.ginput_product_price,
input:checked + label,
td.ui-datepicker-today a,
.gfield_description.validation_message,
.ginput_shipping_price,
h3.gf_progressbar_title {
    font-weight: bold;
}

.ginput_counter {
    text-align: right;
}

.ginput_counter {
    line-height: 1;
}

/* Colors */

.gfield_required,
.warningTextareaInfo,
.ginput_container_fileupload span.screen-reader-text + div {
    color: #bf0421;
}

/* Maroon */

.ginput_product_price_label,
.ginput_product_price,
.ginput_container_total {
    color: green;
}

td.ui-datepicker-current-day a.ui-state-active {
    background: black;
    color: white;
}

/* Radio & Checkboxes */

.gfield_checkbox li label,
.gfield_radio li label {
    padding-top: 0;
    position: relative;
    display: inline-flex !important;
    justify-content: space-between;
    align-items: center;
}

.gfield_radio input[type="radio"] + input[type="text"] {
    display: inline-block;
    width: 10em;
    top: -0.75em;
    margin-left: 0.25em;
}

/* Selects */

.ginput_container_select {
    position: relative;
    display: inline;
}

.ginput_container_multiselect select {
    height: 8em;
    overflow: scroll;
}

.ginput_container_multiselect select.small {
    height: 6.5em;
}

.ginput_container_multiselect select.large {
    height: 12em;
}

/* HTML Field & Sections */

.gfield_html_formatted {
    margin-bottom: 1em;
}

li.gsection {
    margin-top: 2em;
}

/* Name Fields */

.ginput_complex span label {
    padding: 0.25em 0 0.75em 0.25em;
}

@media (min-width: 768px) {
    span.name_first,
    span.name_last,
    span.name_middle,
    span.name_prefix,
    span.name_suffix {
        width: 50%;
        float: left;
    }

    span.name_last {
        width: 48%;
        margin-left: 2%;
    }

    span.name_prefix {
        float: none;
    }
}

.no_prefix.no_middle_name.no_last_name.no_suffix span.name_first label,
.no_prefix.no_middle_name.no_first_name.no_suffix span.name_last label {
    display: none;
}

.no_prefix.no_middle_name.no_first_name.no_suffix span.name_last {
    margin-left: 0;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_first {
    width: 40%;
    margin-right: 1%;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_middle {
    width: 18%;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_last {
    width: 40%;
    margin-left: 1%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_prefix {
    width: 10%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_first {
    width: 39%;
    margin-right: 1%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_middle {
    width: 10%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_last {
    width: 39%;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_first {
    width: 38.5%;
    margin-right: 1%;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_middle {
    width: 10%;
    margin-right: 1%;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_last {
    width: 38.5%;
    margin-left: 0;
}

.no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_suffix {
    width: 10%;
    margin-left: 1%;
}

.has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_prefix {
    width: 10%;
}

.has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_first {
    width: 39%;
    margin-right: 1%;
}

.has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_last {
    width: 39%;
    margin-left: 0;
}

.has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_suffix {
    width: 10%;
    margin-left: 1%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_prefix {
    width: 10%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_first {
    width: 33.5%;
    margin-right: 1%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_middle {
    width: 10%;
    margin-right: 1%;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_last {
    width: 33.5%;
    margin-left: 0;
}

.has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_suffix {
    width: 10%;
    margin-left: 1%;
}

@media (max-width: 767px) {
    .has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_prefix {
        width: 20%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_first {
        width: 40%;
        margin-right: 1%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_middle {
        clear: left;
        width: 20%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.no_suffix span.name_last {
        width: 40%;
    }

    .no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_first {
        width: 40%;
        margin-right: 1%;
    }
    .no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_middle {
        width: 20%;
        margin-right: 1%;
    }
    .no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_last {
        clear: left;
        width: 40%;
        margin-left: 0;
    }
    .no_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_suffix {
        width: 20%;
        margin-left: 1%;
    }

    .has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_prefix {
        width: 20%;
    }
    .has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_first {
        width: 40%;
        margin-right: 1%;
    }
    .has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_last {
        width: 40%;
        clear: left;
        margin-left: 0;
    }
    .has_prefix.has_first_name.no_middle_name.has_last_name.has_suffix span.name_suffix {
        width: 20%;
        margin-left: 1%;
    }

    .has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_prefix {
        width: 20%;
        margin-right: 1%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_first {
        width: 40%;
        margin-right: 1%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_middle {
        clear: left;
        width: 20%;
        margin-right: 1%;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_last {
        width: 40%;
        margin-left: 0;
    }
    .has_prefix.has_first_name.has_middle_name.has_last_name.has_suffix span.name_suffix {
        width: 20%;
        margin-left: 1%;
    }
}

.field_sublabel_above span label {
    padding-bottom: 0;
}

/* Calendar */

.ginput_container_date .clear-multi {
        display: flex;
    }

.ginput_container_date .clear-multi * + * {
            margin-left: 12px;
        }

.ui-datepicker .ui-icon {
    position: relative;
}

a.ui-datepicker-prev,
a.ui-datepicker-next {
    float: left;
    width: 1em;
    height: 1em;
    margin-top: 0.45em;
}

a.ui-datepicker-next {
    float: right;
}

a.ui-datepicker-prev {
    margin-left: 6px;
}

.ui-datepicker-header {
    margin-bottom: 10px;
}

.ui-datepicker-title .ui-datepicker-month,
.ui-datepicker-title .ui-datepicker-year {
    padding: 0;
    border: 0;
    background: none;
    margin: 0 3px;
}

#ui-datepicker-div {
    background: white;
    padding: 0.5em;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.ui-icon-circle-triangle-w,
.ui-icon-circle-triangle-e {
    display: block;
    font-size: 0;
    color: transparent;
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg);
    cursor: pointer;
}

.ui-icon-circle-triangle-w {
    transform: rotate(-225deg);
}

.ui-datepicker {
    width: 250px;
}

.ui-datepicker-calendar {
    width: 100%;
}

table.ui-datepicker-calendar th,
table.ui-datepicker-calendar td {
    padding: 0.25em;
}

a.ui-datepicker-next.ui-corner-all {
    float: right;
}

.ui-datepicker-title {
    text-align: center;
}

.ui-datepicker-title select {
    padding: 0.5em 1em;
    margin: 0 0.15em;
}

td.ui-datepicker-week-end {
    background: #efefef;
}

table.ui-datepicker-calendar td {
    padding: 0.25em;
    text-align: center;
}

td.ui-datepicker-current-day a.ui-state-active {
    display: block;
    border-radius: 50%;
    width: 1.5em;
}

input.datepicker_with_icon + img {
    width: 1.5em;
    position: relative;
    left: 0.5em;
    top: 0.25em;
}

/* Time */

.ginput_container_time {
    float: left;
}

.ginput_container_time i {
    font-style: normal;
    display: inline-block;
    padding: 0 0.25em 0 0;
}

.gfield_time_ampm {
    margin-left: 1%;
}

/* Address */

span.address_city,
span.address_state,
span.address_zip {
    float: left;
    width: 32%;
    margin-right: 1%;
}

span.address_city {
    width: 34%;
}

span.address_zip {
    margin-right: 0;
}

.address_state select {
    width: 100%;
}

@media (max-width: 767px) {
    span.address_city {
        width: 100%;
        float: none;
    }
    span.address_city input {
        width: 80%;
    }
    span.address_state,
    span.address_zip {
        width: 49%;
    }
}

/* Email Address */

.ginput_container_email > span {
    float: left;
    width: 49.5%;
    margin-right: 0.5%;
}

.ginput_container_email span.ginput_right {
    margin-left: 0.5%;
    margin-right: 0;
}

/* File Upload */

.ginput_container_fileupload {
    background: #efefef;
    padding: 0.75em;
    border-radius: 3px;
}

.ginput_container_fileupload .screen-reader-text {
    display: inline;
}

.ginput_container_fileupload > div:first-of-type {
    text-align: center;
    padding: 2em 0;
    border: 3px dashed #ddd;
}

span.gform_drop_instructions {
    display: block;
    margin: 0 0 1em 0;
}

.ginput_container_fileupload > div + span.screen-reader-text {
    display: block;
    text-align: center;
    margin: 1em 0 0 0;
}

.ginput_container_fileupload span.screen-reader-text + div li {
    padding: 0.25em 0 0 0;
}

@media (max-width: 767px) {
    .ginput_container_fileupload .screen-reader-text {
        display: block;
        font-size: 0.7em;
        padding: 1em 0.75em;
    }
    span.gform_drop_instructions {
        display: none;
    }
}

/* List */

td.gfield_list_icons img {
    position: relative;
    left: 0.7em;
    opacity: 1 !important
}

@media (max-width: 641px) {

td.gfield_list_icons img {
        top: 0.4em
}
    }

.field_description_above .gfield_description + .ginput_container_list {
    margin-top: -1.5em;
}

/* Product Fields */

.ginput_container_singleproduct .ginput_product_price_label {
    padding-left: 1em;
}

span.ginput_quantity_label {
    margin-left: 1em;
}

.instruction {
    padding: 0.5em 0.35em;
}

.ginput_shipping_price {
    padding: 1em;
    display: block;
}

.ginput_container_total {
    display: block;
    margin-left: 0.35em;
}

/* Error & Validation Messages */

.validation_error,
.gform_validation_error li.gfield_error {
    padding: 0 0 0.5em 0 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    background-color: transparent !important;
    border: 0 !important;
}

.validation_error {
    padding-top: 1em;
}

.gfield_description.validation_message {
    position: absolute;
    top: -1.2em;
    left: 1em;
    display: inline-block !important;
    border-radius: 3px;
    padding: 0 !important;
    font-size: 12px !important;
    font-style: normal !important;
}

.gform_wrapper li.gfield_error {
    position: relative;
    margin-top: 3em;
}

.gfield_error .ginput_container {
    margin-top: 0 !important;
}

.gfield_error .ginput_container_select:after {
    display: none;
}

.gfield_error .warningTextareaInfo {
    color: white;
}

.gfield_error .ginput_container_fileupload {
    color: black;
}

.gfield_error img.add_list_item {
    background-color: white;
    border-radius: 50%;
}

/* From Heading */

.gform_heading .gform_description {
    padding: 1em 0;
    display: block;
}

/* Progress Bars & Paging */

.gf_progressbar {
    position: relative;
    border-top: 5px solid #efefef;
}

.gf_progressbar_percentage {
    color: white;
    border-top: 5px solid #4480c3;
    position: relative;
    top: -5px;
    text-align: right;
}

.gf_progressbar_percentage span {
    background: black;
    display: inline-block;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.75;
    border-radius: 3px;
    border-top-right-radius: 0;
    font-size: 0.9em;
    margin-top: 0.25em;
    position: relative;
    text-align: center;
}

.gf_progressbar_percentage.percentbar_0 span {
    border-top-right-radius: 3px;
    border-top-left-radius: 0;
}

.gf_progressbar_percentage span:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border-left: 5px solid transparent;
    border-right: 0 solid transparent;
    top: -5px;
    right: 0;
    border-bottom: 5px solid black;
}

.gf_progressbar_percentage.percentbar_0 span:after {
    right: auto;
    left: 0;
    border-right: 5px solid transparent;
    border-left: 0;
}

.gf_progressbar_percentage.percentbar_red {
    border-color: #bf0421;
}

.gf_progressbar_percentage.percentbar_green {
    border-color: green;
}

.gf_progressbar_percentage.percentbar_gray {
    border-color: #666;
}

.gf_progressbar_percentage.percentbar_orange {
    border-color: #e8641b;
}

.gf_progressbar_percentage.percentbar_custom {
    border-color: transparent;
}

.gf_progressbar_wrapper + .gform_body .gform_page_footer {
    padding-top: 2em;
}

.gform_footer {
    padding-top: 2em;
}

.gform_next_button {
    float: right;
}

div.gform_confirmation_message {
    background: green;
    color: white;
    padding: 1em;
    margin: 1em 0;
    border-radius: 3px;
}

body img.gform_ajax_spinner {
    display: block;
    margin: 1em auto;
}

.gf_page_steps {
    display: table;
    width: 100%;
}

.gf_page_steps > div {
    padding: 0.25em;
    display: table-cell;
    color: white;
    background: black;
    vertical-align: top;
    font-weight: bold;
}

.gf_page_steps > div.gf_step_pending {
    background: #efefef;
    color: #666;
}

.gf_step_clear {
    display: none !important;
}

span.gf_step_number {
    background: white;
    color: black;
    display: inline-block;
    width: 2em;
    text-align: center;
    border-radius: 50%;
    line-height: 2;
}

@media (max-width: 767px) {
    .gf_step {
        text-align: center;
    }
    .gf_step span {
        clear: both;
        display: block;
        margin: 0 auto;
    }
    span.gf_step_number {
        margin-top: 0.5em;
    }
    span.gf_step_label {
        margin-top: -1em;
    }
}

/* Credit Card */

.ginput_container_creditcard {
    background: #efefef;
    padding: 2em;
    border-radius: 5px;
}

.ginput_container_creditcard input,
.ginput_container_creditcard select {
    background: white;
}

.gform_card_icon_container div {
    font-size: 2em;
    float: left;
    text-indent: -99em;
    position: relative;
    display: block;
}

.gform_card_icon_container div:before {
    position: absolute;
    left: 0;
    top: 0;
    text-indent: 0;
}

.gform_card_icon_container div {
    font-size: 2em;
    float: left;
    text-indent: -99em;
    position: relative;
    display: block;
    width: 1.5em;
    color: #666;
}

.ginput_card_security_code_icon:before {
    content: "\e911";
}

.icon-cc-paypal:before {
    content: "\e913";
}

.gform_card_icon_amex:before {
    content: "\e914";
}

.gform_card_icon_discover:before {
    content: "\e915";
}

.gform_card_icon_mastercard:before {
    content: "\e916";
}

.gform_card_icon_visa:before {
    content: "\e917";
}

.ginput_cardinfo_left,
.ginput_cardinfo_right {
    float: left;
}

.ginput_cardinfo_right {
    margin-left: 1em;
}

span.ginput_card_security_code_icon {
    font-size: 1.5em;
    float: left;
    color: #666;
}

.gfield_creditcard_warning_message {
    background: #bf0421;
    color: white;
    padding: 1em 0.75em;
    border-radius: 3px;
}

.gfield_error .ginput_container_creditcard label {
    color: black;
}

.ginput_container_creditcard .ginput_full {
    clear: both;
    display: block;
}

.field_sublabel_above .ginput_container_creditcard .ginput_full:first-of-type {
    margin-bottom: 2em;
}

@media (max-width: 767px) {
    .ginput_container_creditcard {
        padding: 1em;
    }
    .ginput_cardinfo_right {
        width: 40%;
    }
}

/*
* New GF CSS
*/

@media only screen and (min-width: 641px) {

.gform_wrapper {
        margin: 40px auto !important;
        min-width: 600px;
        width: 50% !important
}
    }

.gform_wrapper li.hidden_label .gfield_label {
        display: none !important;
    }

.gform_wrapper li.hidden_label input {
        margin: 0 5px 0 0 !important;
    }

.gform_wrapper li.hidden_label .ginput_container_checkbox .gfield_checkbox {
        padding: 0 !important;
    }

.gpnf-dialog .ui-dialog-titlebar {
    background-color: rgba(225, 174, 93, 1) !important;
    background-color: var(--primary) !important;
}

.gpnf-dialog .ui-icon::after {
    opacity: 1 !important;
}

@media only screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin-bottom: 0;
        display: inline;
        display: initial;
    }
}

@media only screen and (max-width: 641px) {
    .gform_wrapper .ginput_container span:not(.ginput_price) {
        margin: 8px 0 !important;
        display: block;
    }
}

.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none !important;
    position: absolute !important;
    left: -9000px;
}

/* stylelint-enable */

.splide__slider-arrows {
        align-items: center;
        background: rgba(225, 174, 93, 1);
        background: var(--primary);
        justify-content: space-between;
        width: 90px;
        height: 44px;
        padding: 4px;
        border-radius: 30px;

        order: 2;
        margin: 25px auto;
        display: flex
    }

@media (min-width: 768px) {
            .section__header-on-side .splide__slider-arrows {
                order: unset;
                margin: unset;
                position: absolute;
                bottom: 0;
                transform: translate(320px, 0);
            }
        }

@media (min-width: 992px) {
            .section__header-on-side .splide__slider-arrows {
                transform: translate(calc(50% + 200px), 0);
            }
        }

@media (min-width: 1200px) {
            .section__header-on-side .splide__slider-arrows {
                transform: translate(350px, 0);
            }
        }

.splide__slider-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: 0;
    }

.splide__slider-arrow svg {
            width: 18px;
            height: auto;
            fill: rgba(255, 253, 249, 1);
            fill: var(--cream-white);
            transition: opacity 0.3s
        }

.splide__slider-arrow svg:hover {
                opacity: 0.5;
            }

.splide__slider-arrow--prev {
            transform: rotate(-180deg);
        }

.splide__slider-arrow:hover {
            cursor: pointer;
        }

.glitch-text {
    color: white;
    position: relative
}

.glitch-text::before,
    .glitch-text::after {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

.teaser--hoverable:hover .glitch-text::before {
            left: 2px;
            text-shadow: -1px 0 #132138;
            text-shadow: -1px 0 var(--complementary);
            animation: teaser-title-anim-1 2s infinite linear alternate-reverse;
        }

.teaser--hoverable:hover .glitch-text::after {
            left: -3px;
            text-shadow: 1px 0 rgba(225, 174, 93, 1);
            text-shadow: 1px 0 var(--primary);
            animation: teaser-title-anim-2 3s infinite linear alternate-reverse;
        }

@-webkit-keyframes teaser-title-anim-1 {
    0% {
        -webkit-clip-path: inset(7% 0 2% 0);
                clip-path: inset(7% 0 2% 0);
    }
    5.88235% {
        -webkit-clip-path: inset(26% 0 70% 0);
                clip-path: inset(26% 0 70% 0);
    }
    11.76471% {
        -webkit-clip-path: inset(73% 0 25% 0);
                clip-path: inset(73% 0 25% 0);
    }
    17.64706% {
        -webkit-clip-path: inset(66% 0 29% 0);
                clip-path: inset(66% 0 29% 0);
    }
    23.52941% {
        -webkit-clip-path: inset(19% 0 43% 0);
                clip-path: inset(19% 0 43% 0);
    }
    29.41176% {
        -webkit-clip-path: inset(45% 0 10% 0);
                clip-path: inset(45% 0 10% 0);
    }
    35.29412% {
        -webkit-clip-path: inset(75% 0 9% 0);
                clip-path: inset(75% 0 9% 0);
    }
    41.17647% {
        -webkit-clip-path: inset(30% 0 61% 0);
                clip-path: inset(30% 0 61% 0);
    }
    47.05882% {
        -webkit-clip-path: inset(46% 0 22% 0);
                clip-path: inset(46% 0 22% 0);
    }
    52.94118% {
        -webkit-clip-path: inset(92% 0 1% 0);
                clip-path: inset(92% 0 1% 0);
    }
    58.82353% {
        -webkit-clip-path: inset(81% 0 10% 0);
                clip-path: inset(81% 0 10% 0);
    }
    64.70588% {
        -webkit-clip-path: inset(41% 0 49% 0);
                clip-path: inset(41% 0 49% 0);
    }
    70.58824% {
        -webkit-clip-path: inset(93% 0 2% 0);
                clip-path: inset(93% 0 2% 0);
    }
    76.47059% {
        -webkit-clip-path: inset(42% 0 42% 0);
                clip-path: inset(42% 0 42% 0);
    }
    82.35294% {
        -webkit-clip-path: inset(98% 0 2% 0);
                clip-path: inset(98% 0 2% 0);
    }
    88.23529% {
        -webkit-clip-path: inset(71% 0 10% 0);
                clip-path: inset(71% 0 10% 0);
    }
    94.11765% {
        -webkit-clip-path: inset(73% 0 26% 0);
                clip-path: inset(73% 0 26% 0);
    }
    100% {
        -webkit-clip-path: inset(88% 0 9% 0);
                clip-path: inset(88% 0 9% 0);
    }
}

@keyframes teaser-title-anim-1 {
    0% {
        -webkit-clip-path: inset(7% 0 2% 0);
                clip-path: inset(7% 0 2% 0);
    }
    5.88235% {
        -webkit-clip-path: inset(26% 0 70% 0);
                clip-path: inset(26% 0 70% 0);
    }
    11.76471% {
        -webkit-clip-path: inset(73% 0 25% 0);
                clip-path: inset(73% 0 25% 0);
    }
    17.64706% {
        -webkit-clip-path: inset(66% 0 29% 0);
                clip-path: inset(66% 0 29% 0);
    }
    23.52941% {
        -webkit-clip-path: inset(19% 0 43% 0);
                clip-path: inset(19% 0 43% 0);
    }
    29.41176% {
        -webkit-clip-path: inset(45% 0 10% 0);
                clip-path: inset(45% 0 10% 0);
    }
    35.29412% {
        -webkit-clip-path: inset(75% 0 9% 0);
                clip-path: inset(75% 0 9% 0);
    }
    41.17647% {
        -webkit-clip-path: inset(30% 0 61% 0);
                clip-path: inset(30% 0 61% 0);
    }
    47.05882% {
        -webkit-clip-path: inset(46% 0 22% 0);
                clip-path: inset(46% 0 22% 0);
    }
    52.94118% {
        -webkit-clip-path: inset(92% 0 1% 0);
                clip-path: inset(92% 0 1% 0);
    }
    58.82353% {
        -webkit-clip-path: inset(81% 0 10% 0);
                clip-path: inset(81% 0 10% 0);
    }
    64.70588% {
        -webkit-clip-path: inset(41% 0 49% 0);
                clip-path: inset(41% 0 49% 0);
    }
    70.58824% {
        -webkit-clip-path: inset(93% 0 2% 0);
                clip-path: inset(93% 0 2% 0);
    }
    76.47059% {
        -webkit-clip-path: inset(42% 0 42% 0);
                clip-path: inset(42% 0 42% 0);
    }
    82.35294% {
        -webkit-clip-path: inset(98% 0 2% 0);
                clip-path: inset(98% 0 2% 0);
    }
    88.23529% {
        -webkit-clip-path: inset(71% 0 10% 0);
                clip-path: inset(71% 0 10% 0);
    }
    94.11765% {
        -webkit-clip-path: inset(73% 0 26% 0);
                clip-path: inset(73% 0 26% 0);
    }
    100% {
        -webkit-clip-path: inset(88% 0 9% 0);
                clip-path: inset(88% 0 9% 0);
    }
}

@-webkit-keyframes teaser-title-anim-2 {
    0% {
        -webkit-clip-path: inset(10% 0 48% 0);
                clip-path: inset(10% 0 48% 0);
    }
    5.88235% {
        -webkit-clip-path: inset(76% 0 13% 0);
                clip-path: inset(76% 0 13% 0);
    }
    11.76471% {
        -webkit-clip-path: inset(56% 0 2% 0);
                clip-path: inset(56% 0 2% 0);
    }
    17.64706% {
        -webkit-clip-path: inset(34% 0 40% 0);
                clip-path: inset(34% 0 40% 0);
    }
    23.52941% {
        -webkit-clip-path: inset(40% 0 39% 0);
                clip-path: inset(40% 0 39% 0);
    }
    29.41176% {
        -webkit-clip-path: inset(27% 0 61% 0);
                clip-path: inset(27% 0 61% 0);
    }
    35.29412% {
        -webkit-clip-path: inset(4% 0 67% 0);
                clip-path: inset(4% 0 67% 0);
    }
    41.17647% {
        -webkit-clip-path: inset(72% 0 23% 0);
                clip-path: inset(72% 0 23% 0);
    }
    47.05882% {
        -webkit-clip-path: inset(1% 0 39% 0);
                clip-path: inset(1% 0 39% 0);
    }
    52.94118% {
        -webkit-clip-path: inset(31% 0 2% 0);
                clip-path: inset(31% 0 2% 0);
    }
    58.82353% {
        -webkit-clip-path: inset(64% 0 7% 0);
                clip-path: inset(64% 0 7% 0);
    }
    64.70588% {
        -webkit-clip-path: inset(33% 0 4% 0);
                clip-path: inset(33% 0 4% 0);
    }
    70.58824% {
        -webkit-clip-path: inset(11% 0 18% 0);
                clip-path: inset(11% 0 18% 0);
    }
    76.47059% {
        -webkit-clip-path: inset(6% 0 20% 0);
                clip-path: inset(6% 0 20% 0);
    }
    82.35294% {
        -webkit-clip-path: inset(62% 0 24% 0);
                clip-path: inset(62% 0 24% 0);
    }
    88.23529% {
        -webkit-clip-path: inset(53% 0 25% 0);
                clip-path: inset(53% 0 25% 0);
    }
    94.11765% {
        -webkit-clip-path: inset(32% 0 30% 0);
                clip-path: inset(32% 0 30% 0);
    }
    100% {
        -webkit-clip-path: inset(54% 0 35% 0);
                clip-path: inset(54% 0 35% 0);
    }
}

@keyframes teaser-title-anim-2 {
    0% {
        -webkit-clip-path: inset(10% 0 48% 0);
                clip-path: inset(10% 0 48% 0);
    }
    5.88235% {
        -webkit-clip-path: inset(76% 0 13% 0);
                clip-path: inset(76% 0 13% 0);
    }
    11.76471% {
        -webkit-clip-path: inset(56% 0 2% 0);
                clip-path: inset(56% 0 2% 0);
    }
    17.64706% {
        -webkit-clip-path: inset(34% 0 40% 0);
                clip-path: inset(34% 0 40% 0);
    }
    23.52941% {
        -webkit-clip-path: inset(40% 0 39% 0);
                clip-path: inset(40% 0 39% 0);
    }
    29.41176% {
        -webkit-clip-path: inset(27% 0 61% 0);
                clip-path: inset(27% 0 61% 0);
    }
    35.29412% {
        -webkit-clip-path: inset(4% 0 67% 0);
                clip-path: inset(4% 0 67% 0);
    }
    41.17647% {
        -webkit-clip-path: inset(72% 0 23% 0);
                clip-path: inset(72% 0 23% 0);
    }
    47.05882% {
        -webkit-clip-path: inset(1% 0 39% 0);
                clip-path: inset(1% 0 39% 0);
    }
    52.94118% {
        -webkit-clip-path: inset(31% 0 2% 0);
                clip-path: inset(31% 0 2% 0);
    }
    58.82353% {
        -webkit-clip-path: inset(64% 0 7% 0);
                clip-path: inset(64% 0 7% 0);
    }
    64.70588% {
        -webkit-clip-path: inset(33% 0 4% 0);
                clip-path: inset(33% 0 4% 0);
    }
    70.58824% {
        -webkit-clip-path: inset(11% 0 18% 0);
                clip-path: inset(11% 0 18% 0);
    }
    76.47059% {
        -webkit-clip-path: inset(6% 0 20% 0);
                clip-path: inset(6% 0 20% 0);
    }
    82.35294% {
        -webkit-clip-path: inset(62% 0 24% 0);
                clip-path: inset(62% 0 24% 0);
    }
    88.23529% {
        -webkit-clip-path: inset(53% 0 25% 0);
                clip-path: inset(53% 0 25% 0);
    }
    94.11765% {
        -webkit-clip-path: inset(32% 0 30% 0);
                clip-path: inset(32% 0 30% 0);
    }
    100% {
        -webkit-clip-path: inset(54% 0 35% 0);
                clip-path: inset(54% 0 35% 0);
    }
}

/* Vendor */

.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
  overflow: hidden;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  opacity: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}

.gslide-video::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  background: transparent;
  position: absolute;
  bottom: 15px;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
  color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}

.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}

/*Skin */

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

/*CSS Animations*/

.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}

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

@keyframes lightboxLoader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}

@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}

@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}

@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}

@-webkit-keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}

@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}

.splide__container{position:relative;box-sizing:border-box}

.splide__list{margin:0!important;padding:0!important;width:-webkit-max-content;width:-moz-max-content;width:max-content;will-change:transform}

.splide.is-active .splide__list{display:flex}

.splide__pagination{display:inline-flex;align-items:center;width:95%;flex-wrap:wrap;justify-content:center;margin:0}

.splide__pagination li{list-style-type:none;display:inline-block;line-height:1;margin:0}

.splide{visibility:hidden}

.splide,.splide__slide{position:relative;outline:none}

.splide__slide{box-sizing:border-box;list-style-type:none!important;margin:0;flex-shrink:0}

.splide__slide img{vertical-align:bottom}

.splide__slider{position:relative}

.splide__spinner{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;display:inline-block;width:20px;height:20px;border-radius:50%;border:2px solid #999;border-left-color:transparent;-webkit-animation:splide-loading 1s linear infinite;animation:splide-loading 1s linear infinite}

.splide__track{position:relative;z-index:0;overflow:hidden}

.splide--draggable>.splide__track>.splide__list>.splide__slide{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}

.splide--fade>.splide__track>.splide__list{display:block}

.splide--fade>.splide__track>.splide__list>.splide__slide{position:absolute;top:0;left:0;z-index:0;opacity:0}

.splide--fade>.splide__track>.splide__list>.splide__slide.is-active{position:relative;z-index:1;opacity:1}

.splide--rtl{direction:rtl}

.splide--ttb>.splide__track>.splide__list{display:block}

.splide--ttb>.splide__pagination{width:auto}

.splide__arrow{position:absolute;z-index:1;top:50%;transform:translateY(-50%);width:2em;height:2em;border-radius:50%;display:flex;align-items:center;justify-content:center;border:none;padding:0;opacity:.7;background:#ccc}

.splide__arrow svg{width:1.2em;height:1.2em}

.splide__arrow:hover{cursor:pointer;opacity:.9}

.splide__arrow:focus{outline:none}

.splide__arrow--prev{left:1em}

.splide__arrow--prev svg{transform:scaleX(-1)}

.splide__arrow--next{right:1em}

.splide__pagination{position:absolute;z-index:1;bottom:.5em;left:50%;transform:translateX(-50%);padding:0}

.splide__pagination__page{display:inline-block;width:8px;height:8px;background:#ccc;border-radius:50%;margin:3px;padding:0;transition:transform .2s linear;border:none;opacity:.7}

.splide__pagination__page.is-active{transform:scale(1.4);background:#fff}

.splide__pagination__page:hover{cursor:pointer;opacity:.9}

.splide__pagination__page:focus{outline:none}

.splide__progress__bar{width:0;height:3px;background:#ccc}

.splide--nav>.splide__track>.splide__list>.splide__slide{border:3px solid transparent}

.splide--nav>.splide__track>.splide__list>.splide__slide.is-active{border-color:#000}

.splide--nav>.splide__track>.splide__list>.splide__slide:focus{outline:none}

.splide--rtl>.splide__arrows .splide__arrow--prev,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev{right:1em;left:auto}

.splide--rtl>.splide__arrows .splide__arrow--prev svg,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--prev svg{transform:scaleX(1)}

.splide--rtl>.splide__arrows .splide__arrow--next,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next{left:1em;right:auto}

.splide--rtl>.splide__arrows .splide__arrow--next svg,.splide--rtl>.splide__track>.splide__arrows .splide__arrow--next svg{transform:scaleX(-1)}

.splide--ttb>.splide__arrows .splide__arrow,.splide--ttb>.splide__track>.splide__arrows .splide__arrow{left:50%;transform:translate(-50%)}

.splide--ttb>.splide__arrows .splide__arrow--prev,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev{top:1em}

.splide--ttb>.splide__arrows .splide__arrow--prev svg,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--prev svg{transform:rotate(-90deg)}

.splide--ttb>.splide__arrows .splide__arrow--next,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next{top:auto;bottom:1em}

.splide--ttb>.splide__arrows .splide__arrow--next svg,.splide--ttb>.splide__track>.splide__arrows .splide__arrow--next svg{transform:rotate(90deg)}

.splide--ttb>.splide__pagination{display:flex;flex-direction:column;bottom:50%;left:auto;right:.5em;transform:translateY(50%)}

