/*
if carousel has background: 
0 - no-bg
1 - has bg
*/
/*
type of background
dark - dark bg, white text
white - light bg, dark text
!!! if you have dark website you should check the mixin inside theme, you can switch the colors there !!!
REMINDER: add more comments, to reference the proper mixin
*/
/* URLS */
/* MAIN FONTS DECLARATION */
/* SOCIAL COLORS */
/* this will be removed */
:root {
  --rootFontSize: 62.5%;
  /* #region fonts */
  --primary-font: "Gelion", sans-serif;
  --secondary-font: "Cormorant Garamond", serif;
  /* #endregion */
  /* #region branding-primaries */
  --primary-color: #1c2b3c;
  --secondary-color: #7fc9c7;
  --tertiary-color: #c55f3c;
  --fourth-color: #e4e7e9;
  --neutral-color: #fff;
  /* #endregion */
  /* #region status-messages */
  --status-error: #cb1d23;
  --status-success: #1dad22;
  --status-warning: #eab308;
  /* #endregion */
  /* #region base colors */
  --general-bg-color: $neutralColor;
  --general-text-color: var(--primary-color);
  --main-layout-color: var(--general-bg-color);
  --loader-in-transparent-bg: var(--primary-color);
  --loader-in-bg: var(--neutral-color);
  /* #endregion */
  /* #region in-widget */
  --widget-background: var(--primary-color);
  --widget-background2: var(--fourth-color);
  --widget-background-even: rgba(28, 43, 60, 0.97);
  --widget-text-color: var(--neutral-color);
  --content-templates-padding: 9rem;
  /* #endregion */
  /* #region structural changes */
  /*
    on designer requests ( this is applied on all widgets, if something custom go to that particular css or use the widget unique or create a unique class )
    Info: 
      p- -> padding
      m- -> margin
      lr- -> left-right
  */
  --carousel-next-prev-border-radius: 5rem;
  --carousel-next-prev-width: 5rem;
  --carousel-next-prev-height: var(--carousel-next-prev-width);
  --video-controls-width: 5.8rem;
  --video-controls-height: var(--video-controls-width);
  --video-controls-border-radius: 5.8rem;
  --secondLvlCss-content-margin: clamp(3rem, 0.7936507937vw + 2.7301587302rem, 4rem);
  --secondLvlCss-heading-margin: var(--secondLvlCss-content-margin);
  --general-mobile-lr-gap: 3rem;
  --widget-with-bg--p-top: clamp(5rem, 4.7619047619vw + 3.380952381rem, 11rem);
  --widget-with-bg--p-bottom: clamp(5rem, 4.7619047619vw + 3.380952381rem, 11rem);
  --widget-with-bg--p-top-small: clamp(4rem, 3.9682539683vw + 2.6507936508rem, 9rem);
  --widget-with-bg--p-bottom-small: clamp(4rem, 1.5873015873vw + 3.4603174603rem, 6rem);
  --widget-title--m-bottom: clamp(3rem, 1.5873015873vw + 2.4603174603rem, 5rem);
  --widget-bottom-navigation--m-top: var(--widget-title--m-bottom);
  --widget-general-gap: clamp(2rem, 5.5555555556vw + 0.1111111111rem, 9rem);
  /* #endregion */
  /* #region carousel & gridswith cards */
  --carousel-widget-item-gap: clamp(2rem, 0.7936507937vw + 1.7301587302rem, 3rem);
  --carousel-widget-item-general-width: clamp(26rem, 17.0634920635vw + 20.1984126984rem, 47.5rem);
  --carousel-widget-item-story-width: var(--carousel-widget-item-general-width);
  --carousel-widget-item-event-width: var(--carousel-widget-item-general-width);
  --carousel-widget-item-profile-width: clamp(26rem, 7.9365079365vw + 23.3015873016rem, 36rem);
  --carousel-widget-item-promos-width: clamp(23.7rem, 11.1904761905vw + 19.8952380952rem, 37.8rem);
  --carousel-widget-item-portals-width: clamp(20rem, 3.1746031746vw + 18.9206349206rem, 24rem);
  --carousel-widget-item-stats-width: clamp(30rem, 7.2028811525vw + 24.4753901561rem, 36rem);
  --carousel-widget-item-landscape-video-width: clamp(31.5rem, 21.3492063492vw + 24.2412698413rem, 58.4rem);
  --carousel-widget-item-portrait-video-width: clamp(31.5rem, 5.1587301587vw + 29.746031746rem, 38rem);
  --grid-widget-general-gap: clamp(1.5rem, 1.1904761905vw + 1.0952380952rem, 3rem);
  --grid-widget-item-general-width: clamp(25rem, 3.9682539683vw + 23.6507936508rem, 30rem);
  --grid-widget-item-stories-width: var(--grid-widget-item-general-width);
  --grid-widget-item-events-width: var(--grid-widget-item-general-width);
  --grid-widget-item-profiles-width: var(--grid-widget-item-general-width);
  --grid-widget-item-promos-width: clamp(20.7rem, 5.6349206349vw + 18.7841269841rem, 27.8rem);
  --grid-widget-item-portals-width: clamp(12rem, 6.3492063492vw + 9.8412698413rem, 20rem);
  --grid-widget-item-stats-width: clamp(32.3rem, 2.9365079365vw + 31.3015873016rem, 36rem);
  --grid-widget-item-landscape-video-width: clamp(31rem, 18vw + 11.2rem, 40rem);
  --grid-widget-item-portrait-video-width: clamp(21rem, 18vw + 1.2rem, 30rem);
  /* #endregion */
  /* #region grid-boundaries */
  --grid-module-content-column: 4/10;
  --grid-module-content-big-column: 3/6;
  /* #endregion */
}
@media (min-width: 1920px) {
  :root {
    --rootFontSize: max(62.5%, -webkit-calc(0.3vw - 0.625em) + 0.625rem);
    --rootFontSize: max(62.5%, -moz-calc(0.3vw - 0.625em) + 0.625rem);
    --rootFontSize: max(62.5%, calc(0.3vw - 0.625em) + 0.625rem);
  }
}
@media (max-width: 767px) {
  :root {
    --grid-module-content-big-column: 1/8;
  }
}

/* #region global */
/* #endregion */
/* #region hero */
/* #endregion */
/* #region content */
/* #endregion */
/* #region buttons */
/* #endregion */
/* NOTES */
/*
- the v's that you'll see in mixin are referring to the variant. It may or it may not show depending on what set has been chosen
- on promos, stats, portals, the v is set in _env file. Please set that first before doing anything in here
- on api/media cards, the v is set in config.js
- on the rest of the carousel / widget, the v is set in cshtml. Check for Set or Variant keyword
- on content templates, it's hardcore mode ( god be with you ) . Some can be chosen from _env but in some cases you'll have to dig into _content-templates.scss file until backend has time to integrate this in the cms instead of ckeditor.
*/
/* #region events */
/* #endregion */
/* #region notices */
/* #endregion */
/* #region profiles */
/* #endregion */
/* #region cards */
/* #endregion */
/* #region promos */
/* #endregion */
/* #region blockquote */
/* #endregion */
/* #region portals */
/* #endregion */
/* #region stats */
/* #endregion */
/* #region stories */
/* #endregion */
/* #region faqs */
/* #endregion */
/* #region contentTemplates */
/* #endregion */
/* #region videos */
/* #endregion */
/* #region tickertape */
/* #endregion */
/* #region glossary */
/* #endregion */
/* #region admission */
/* #endregion */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-touch-callout: none;
}

html,
body {
  line-height: 1.15;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--general-bg-color);
  color: var(--general-text-color);
}

html {
  font-family: var(--primary-font);
  overflow-y: auto;
  font-size: var(--rootFontSize);
}

body {
  font-size: 1.6rem;
  overflow: hidden;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
progress {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
progress {
  outline: none;
}

legend {
  color: inherit;
  display: table;
  white-space: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  height: 0;
  display: none;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

strong {
  font-weight: bold;
}

sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font-family: inherit;
  color: inherit;
  font-size: 100%;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
  resize: none;
  vertical-align: top;
}

input::-moz-placeholder,
::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  opacity: 1;
}

input,
textarea {
  -webkit-touch-callout: text;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

input {
  -webkit-box-shadow: none;
          box-shadow: none;
}

a {
  background-color: transparent;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #000;
}

a:link,
a:active,
a:visited {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:hover {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

:focus html.touch {
  outline: none;
}

[hidden] {
  display: none;
}

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

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

/* #region Gelion-font */
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 400;
  src: local("gelion regular"), url("/Fonts/gelion/gelion-regular.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 400;
  src: local("gelion regular italic"), url("/Fonts/gelion/gelion-regular-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 300;
  src: local("gelion light"), url("/Fonts/gelion/gelion-light.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 200;
  src: local("gelion thin italic"), url("/Fonts/gelion/gelion-thin-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 300;
  src: local("gelion light italic"), url("/Fonts/gelion/gelion-light-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 200;
  src: local("gelion thin"), url("/Fonts/gelion/gelion-thin.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 500;
  src: local("gelion medium italic"), url("/Fonts/gelion/gelion-medium-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 500;
  src: local("gelion medium"), url("/Fonts/gelion/gelion-medium.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 600;
  src: local("gelion semi bold italic"), url("/Fonts/gelion/gelion-semibold-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 600;
  src: local("gelion semi bold"), url("/Fonts/gelion/gelion-semibold.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 700;
  src: local("gelion bold italic"), url("/Fonts/gelion/gelion-bold-italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 700;
  src: local("gelion bold"), url("/Fonts/gelion/gelion-bold.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: italic;
  font-weight: 900;
  src: local("gelion black italic"), url("/Fonts/gelion/gelion-black italic.woff") format("woff");
}
@font-face {
  font-family: "Gelion";
  font-style: normal;
  font-weight: 900;
  src: local("gelion black"), url("/Fonts/gelion/gelion-black.woff") format("woff");
}
/* #endregion */
/* #region cormorant */
/* cormorant-garamond-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 300;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 300;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* cormorant-garamond-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 700;
  src: url("/Fonts/cormorant/cormorant-garamond-v16-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* #endregion */
@font-face {
  font-family: "global-icons";
  src: url("/Fonts/icons/global-icons.ttf?wa71h2s") format("truetype"), url("/Fonts/icons/global-icons.woff?wa71h2s") format("woff"), url("/Fonts/icons/global-icons.svg?wa71h2s#global-icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
.g-icon, .secondLvlCss blockquote:before, .secondLvlCss blockquote:after, .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href$=".pdf"]:after, .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[target=_blank]:not([href$=".pdf"]):after, .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href^=mailto]:after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "global-icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.g-search-i:after {
  content: "\e919";
}

.g-reset-i:after {
  content: "\e91a";
}

.g-mail-i:after, .secondLvlCss a[href^=mailto]:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn):after {
  content: "\e916";
}

.g-new-window-i:after, .secondLvlCss a[target=_blank]:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn):not([href$=".pdf"]):after {
  content: "\e917";
}

.g-pdf-i:after, .secondLvlCss a[href$=".pdf"]:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn):after {
  content: "\e918";
}

.g-muted-i:after {
  content: "\e912";
}

.g-pause-i:after {
  content: "\e913";
}

.g-play-i:after {
  content: "\e914";
}

.g-sound-i:after {
  content: "\e915";
}

.g-arrow-down-i:after {
  content: "\e900";
}

.g-arrow-left-i:after {
  content: "\e901";
}

.g-arrow-right-i:after {
  content: "\e902";
}

.g-arrow-top-i:after {
  content: "\e903";
}

.g-closing-quote-i:after {
  content: "\e904";
}

.g-link-notifier-i:after {
  content: "\e905";
}

.g-opening-quote-i:after {
  content: "\e906";
}

.g-small-arrow-left-i:after {
  content: "\e907";
}

.g-small-arrow-right-i:after {
  content: "\e908";
}

.g-social-facebook-i:after {
  content: "\e909";
}

.g-social-flickr-i:after {
  content: "\e90a";
}

.g-social-instagram-i:after {
  content: "\e90b";
}

.g-social-issuu-i:after {
  content: "\e90c";
}

.g-social-pinterest-i:after {
  content: "\e90d";
}

.g-social-soundcloud-i:after {
  content: "\e90e";
}

.g-social-vimeo-i:after {
  content: "\e90f";
}

.g-social-x-i:after {
  content: "\e910";
}

.g-social-youtube-i:after {
  content: "\e911";
}

html,
body {
  font-family: var(--primary-font);
  font-weight: 400;
}

body {
  width: 100%;
  height: 100%;
}

.safe-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

main {
  display: block;
  position: relative;
  z-index: 1;
}
body.secondLvl main {
  pointer-events: all;
}
main #content {
  pointer-events: all;
}
.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.custom-logo {
  width: 7.8rem;
  height: 13.7rem;
  position: absolute;
  left: 3rem;
  top: 4.3rem;
}
.custom-logo img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.fit-image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.full-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.full-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.full-image img.lazyloaded {
  opacity: 1;
}

.card-trigger-button {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.card-trigger-link {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  cursor: pointer;
  border: none;
  background: transparent;
}
.card-trigger-link--sr-only {
  pointer-events: none;
}

.clearfix:after, .secondLvlCss blockquote p.has-image:after {
  content: " ";
  width: 0;
  height: 0;
  padding: 0;
  margin: 0;
  display: block;
  visibility: hidden;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  clear: both;
}

img {
  pointer-events: none !important;
}

/*! 
 * OverlayScrollbars
 * Version: 2.10.1
 * 
 * Copyright (c) Rene Haas | KingSora.
 * https://github.com/KingSora
 * 
 * Released under the MIT license.
 */
.os-size-observer,
.os-size-observer-listener {
  scroll-behavior: auto !important;
  direction: inherit;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

.os-size-observer,
.os-size-observer-listener,
.os-size-observer-listener-item,
.os-size-observer-listener-item-final {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  position: absolute;
  left: 0;
  top: 0;
}

.os-size-observer {
  z-index: -1;
  contain: strict;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  padding: inherit;
  border: inherit;
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
  margin: -133px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0.1);
     -moz-transform: scale(0.1);
      -ms-transform: scale(0.1);
          transform: scale(0.1);
}

.os-size-observer::before {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
  padding: 10px;
  width: 10px;
  height: 10px;
}

.os-size-observer-appear {
  -webkit-animation: os-size-observer-appear-animation 1ms forwards;
     -moz-animation: os-size-observer-appear-animation 1ms forwards;
          animation: os-size-observer-appear-animation 1ms forwards;
}

.os-size-observer-listener {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: inherit;
  border: inherit;
  margin: -133px;
  -webkit-transform: scale(10);
     -moz-transform: scale(10);
      -ms-transform: scale(10);
          transform: scale(10);
}

.os-size-observer-listener.ltr {
  margin-right: -266px;
  margin-left: 0;
}

.os-size-observer-listener.rtl {
  margin-left: -266px;
  margin-right: 0;
}

.os-size-observer-listener:empty::before {
  content: "";
  width: 100%;
  height: 100%;
}

.os-size-observer-listener:empty::before,
.os-size-observer-listener > .os-size-observer-listener-item {
  display: block;
  position: relative;
  padding: inherit;
  border: inherit;
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
     -moz-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}

.os-size-observer-listener-scroll {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.os-size-observer-listener-item {
  right: 0;
  bottom: 0;
  overflow: hidden;
  direction: ltr;
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

.os-size-observer-listener-item-final {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

@-webkit-keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}

@-moz-keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}

@keyframes os-size-observer-appear-animation {
  from {
    cursor: auto;
  }
  to {
    cursor: none;
  }
}
.os-trinsic-observer {
  -webkit-box-flex: 0;
  -webkit-flex: none;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  max-width: 0px;
  max-height: 1px;
  padding: 0;
  margin: 0;
  border: none;
  overflow: hidden;
  z-index: -1;
  height: 0;
  top: -webkit-calc(100% + 1px);
  top: -moz-calc(100% + 1px);
  top: calc(100% + 1px);
  contain: strict;
}

.os-trinsic-observer:not(:empty) {
  height: -webkit-calc(100% + 1px);
  height: -moz-calc(100% + 1px);
  height: calc(100% + 1px);
  top: -1px;
}

.os-trinsic-observer:not(:empty) > .os-size-observer {
  width: 1000%;
  height: 1000%;
  min-height: 1px;
  min-width: 1px;
}

/**
 * hide native scrollbars
 * changes to this styles need to be reflected in the environment styles to correctly detect scrollbar hiding
 */
[data-overlayscrollbars-initialize],
[data-overlayscrollbars-viewport~=scrollbarHidden] {
  scrollbar-width: none !important;
}

[data-overlayscrollbars-initialize]::-webkit-scrollbar,
[data-overlayscrollbars-initialize]::-webkit-scrollbar-corner,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar,
[data-overlayscrollbars-viewport~=scrollbarHidden]::-webkit-scrollbar-corner {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/**
 * elements wont suddenly clip after initialization is done
 */
[data-overlayscrollbars-initialize]:not([data-overlayscrollbars]):not(html):not(body) {
  overflow: auto;
}

/**
 * applied to body 
 */
html[data-overlayscrollbars-body] {
  overflow: hidden;
}

html[data-overlayscrollbars-body],
html[data-overlayscrollbars-body] > body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html[data-overlayscrollbars-body] > body {
  overflow: visible;
  margin: 0;
}

/**
 * structure setup 
 */
[data-overlayscrollbars] {
  position: relative;
}

[data-overlayscrollbars~=host],
[data-overlayscrollbars-padding] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
     -moz-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
     -moz-box-orient: horizontal !important;
     -moz-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
  scroll-behavior: auto !important;
}

[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
  position: relative;
  -webkit-box-flex: 1 !important;
  -webkit-flex: auto !important;
     -moz-box-flex: 1 !important;
      -ms-flex: auto !important;
          flex: auto !important;
  height: auto;
  width: 100%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  z-index: 0;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]) {
  --os-vaw: 0;
  --os-vah: 0;
  outline: none;
}

[data-overlayscrollbars-viewport]:not([data-overlayscrollbars]):focus {
  outline: none;
}

[data-overlayscrollbars-viewport][data-overlayscrollbars-viewport~=arrange]::before {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  min-width: 1px;
  min-height: 1px;
  width: var(--os-vaw);
  height: var(--os-vah);
}

[data-overlayscrollbars],
[data-overlayscrollbars-padding],
[data-overlayscrollbars-viewport] {
  overflow: hidden !important;
}

[data-overlayscrollbars~=noClipping],
[data-overlayscrollbars-padding~=noClipping] {
  overflow: visible !important;
}

[data-overlayscrollbars-viewport~=measuring] {
  overflow: hidden !important;
  scroll-behavior: auto !important;
  -webkit-scroll-snap-type: none !important;
      -ms-scroll-snap-type: none !important;
          scroll-snap-type: none !important;
}

[data-overlayscrollbars-viewport~=overflowXVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
  overflow-x: visible !important;
}

[data-overlayscrollbars-viewport~=overflowXHidden] {
  overflow-x: hidden !important;
}

[data-overlayscrollbars-viewport~=overflowXScroll] {
  overflow-x: scroll !important;
}

[data-overlayscrollbars-viewport~=overflowYVisible]:not([data-overlayscrollbars-viewport~=measuring]) {
  overflow-y: visible !important;
}

[data-overlayscrollbars-viewport~=overflowYHidden] {
  overflow-y: hidden !important;
}

[data-overlayscrollbars-viewport~=overflowYScroll] {
  overflow-y: scroll !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) {
  font-size: 0 !important;
  line-height: 0 !important;
}

[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::before,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId)::after,
[data-overlayscrollbars-viewport~=noContent]:not(#osFakeId) > * {
  display: none !important;
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

[data-overlayscrollbars-viewport~=scrolling] {
  scroll-behavior: auto !important;
  -webkit-scroll-snap-type: none !important;
      -ms-scroll-snap-type: none !important;
          scroll-snap-type: none !important;
}

[data-overlayscrollbars-content] {
  -webkit-box-sizing: inherit;
     -moz-box-sizing: inherit;
          box-sizing: inherit;
}

/**
 * Display contents to bridge any flickering during deferred initialization.
 */
[data-overlayscrollbars-contents]:not(#osFakeId):not([data-overlayscrollbars-padding]):not([data-overlayscrollbars-viewport]):not([data-overlayscrollbars-content]) {
  display: contents;
}

/**
 * optional & experimental grid mode
 */
[data-overlayscrollbars-grid],
[data-overlayscrollbars-grid] [data-overlayscrollbars-padding] {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 1fr;
      grid-template: 1fr/1fr;
}

[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-viewport],
[data-overlayscrollbars-grid] > [data-overlayscrollbars-padding] > [data-overlayscrollbars-viewport] {
  height: auto !important;
  width: auto !important;
}

@property --os-scroll-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
@property --os-viewport-percent {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}
.os-scrollbar {
  --os-viewport-percent: 0;
  --os-scroll-percent: 0;
  --os-scroll-direction: 0;
  --os-scroll-percent-directional: -webkit-calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) * var(--os-scroll-direction)
  );
  --os-scroll-percent-directional: -moz-calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) * var(--os-scroll-direction)
  );
  --os-scroll-percent-directional: calc(
    var(--os-scroll-percent) - (var(--os-scroll-percent) + (1 - var(--os-scroll-percent)) * -1) * var(--os-scroll-direction)
  );
}

.os-scrollbar {
  contain: size layout;
  contain: size layout style;
  -webkit-transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  -moz-transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  transition: opacity 0.15s, visibility 0.15s, top 0.15s, right 0.15s, bottom 0.15s, left 0.15s;
  pointer-events: none;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

body > .os-scrollbar {
  position: fixed;
  z-index: 99999;
}

.os-scrollbar-transitionless {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}

.os-scrollbar-track {
  position: relative;
  padding: 0 !important;
  border: none !important;
}

.os-scrollbar-handle {
  position: absolute;
}

.os-scrollbar-track,
.os-scrollbar-handle {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.os-scrollbar.os-scrollbar-track-interactive .os-scrollbar-track,
.os-scrollbar.os-scrollbar-handle-interactive .os-scrollbar-handle {
  pointer-events: auto;
  -ms-touch-action: none;
      touch-action: none;
}

.os-scrollbar-horizontal {
  bottom: 0;
  left: 0;
}

.os-scrollbar-vertical {
  top: 0;
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-horizontal {
  right: 0;
}

.os-scrollbar-rtl.os-scrollbar-vertical {
  right: auto;
  left: 0;
}

.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-auto-hide.os-scrollbar-auto-hide-hidden {
  opacity: 0;
  visibility: hidden;
}

.os-scrollbar-interaction.os-scrollbar-visible {
  opacity: 1;
  visibility: visible;
}

.os-scrollbar-unusable,
.os-scrollbar-unusable *,
.os-scrollbar-wheel,
.os-scrollbar-wheel * {
  pointer-events: none !important;
}

.os-scrollbar-unusable .os-scrollbar-handle {
  opacity: 0 !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  transition: none !important;
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  bottom: 0;
  left: -webkit-calc(var(--os-scroll-percent-directional) * 100%);
  left: -moz-calc(var(--os-scroll-percent-directional) * 100%);
  left: calc(var(--os-scroll-percent-directional) * 100%);
  -webkit-transform: translateX(-webkit-calc(var(--os-scroll-percent-directional) * -100%));
     -moz-transform: translateX(-moz-calc(var(--os-scroll-percent-directional) * -100%));
      -ms-transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
          transform: translateX(calc(var(--os-scroll-percent-directional) * -100%));
  width: -webkit-calc(var(--os-viewport-percent) * 100%);
  width: -moz-calc(var(--os-viewport-percent) * 100%);
  width: calc(var(--os-viewport-percent) * 100%);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  right: 0;
  top: -webkit-calc(var(--os-scroll-percent-directional) * 100%);
  top: -moz-calc(var(--os-scroll-percent-directional) * 100%);
  top: calc(var(--os-scroll-percent-directional) * 100%);
  -webkit-transform: translateY(-webkit-calc(var(--os-scroll-percent-directional) * -100%));
     -moz-transform: translateY(-moz-calc(var(--os-scroll-percent-directional) * -100%));
      -ms-transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
          transform: translateY(calc(var(--os-scroll-percent-directional) * -100%));
  height: -webkit-calc(var(--os-viewport-percent) * 100%);
  height: -moz-calc(var(--os-viewport-percent) * 100%);
  height: calc(var(--os-viewport-percent) * 100%);
}

@supports (container-type: size) {
  .os-scrollbar-track {
    container-type: size;
  }
  .os-scrollbar-horizontal .os-scrollbar-handle {
    left: auto;
    -webkit-transform: translateX(-webkit-calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
       -moz-transform: translateX(-moz-calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
        -ms-transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
            transform: translateX(calc(var(--os-scroll-percent-directional) * 100cqw + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-vertical .os-scrollbar-handle {
    top: auto;
    -webkit-transform: translateY(-webkit-calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
       -moz-transform: translateY(-moz-calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
        -ms-transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
            transform: translateY(calc(var(--os-scroll-percent-directional) * 100cqh + var(--os-scroll-percent-directional) * -100%));
  }
  .os-scrollbar-rtl.os-scrollbar-horizontal .os-scrollbar-handle {
    right: auto;
    left: 0;
  }
}
.os-scrollbar-rtl.os-scrollbar-vertical .os-scrollbar-handle {
  right: auto;
  left: 0;
}

.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-horizontal.os-scrollbar-cornerless.os-scrollbar-rtl {
  left: 0;
  right: 0;
}

.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless,
.os-scrollbar.os-scrollbar-vertical.os-scrollbar-cornerless.os-scrollbar-rtl {
  top: 0;
  bottom: 0;
}

@media print {
  .os-scrollbar {
    display: none;
  }
}
.os-scrollbar {
  --os-size: 0;
  --os-padding-perpendicular: 0;
  --os-padding-axis: 0;
  --os-track-border-radius: 0;
  --os-track-bg: none;
  --os-track-bg-hover: none;
  --os-track-bg-active: none;
  --os-track-border: none;
  --os-track-border-hover: none;
  --os-track-border-active: none;
  --os-handle-border-radius: 0;
  --os-handle-bg: none;
  --os-handle-bg-hover: none;
  --os-handle-bg-active: none;
  --os-handle-border: none;
  --os-handle-border-hover: none;
  --os-handle-border-active: none;
  --os-handle-min-size: 33px;
  --os-handle-max-size: none;
  --os-handle-perpendicular-size: 100%;
  --os-handle-perpendicular-size-hover: 100%;
  --os-handle-perpendicular-size-active: 100%;
  --os-handle-interactive-area-offset: 0;
}

.os-scrollbar-track {
  border: var(--os-track-border);
  -moz-border-radius: var(--os-track-border-radius);
       border-radius: var(--os-track-border-radius);
  background: var(--os-track-bg);
  -webkit-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
  -moz-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s;
}

.os-scrollbar-track:hover {
  border: var(--os-track-border-hover);
  background: var(--os-track-bg-hover);
}

.os-scrollbar-track:active {
  border: var(--os-track-border-active);
  background: var(--os-track-bg-active);
}

.os-scrollbar-handle {
  border: var(--os-handle-border);
  -moz-border-radius: var(--os-handle-border-radius);
       border-radius: var(--os-handle-border-radius);
  background: var(--os-handle-bg);
}

.os-scrollbar-handle:hover {
  border: var(--os-handle-border-hover);
  background: var(--os-handle-bg-hover);
}

.os-scrollbar-handle:active {
  border: var(--os-handle-border-active);
  background: var(--os-handle-bg-active);
}

.os-scrollbar-track:before,
.os-scrollbar-handle:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
}

.os-scrollbar-horizontal {
  padding: var(--os-padding-perpendicular) var(--os-padding-axis);
  right: var(--os-size);
  height: var(--os-size);
}

.os-scrollbar-horizontal.os-scrollbar-rtl {
  left: var(--os-size);
  right: 0;
}

.os-scrollbar-horizontal .os-scrollbar-track:before {
  top: -webkit-calc(var(--os-padding-perpendicular) * -1);
  top: -moz-calc(var(--os-padding-perpendicular) * -1);
  top: calc(var(--os-padding-perpendicular) * -1);
  bottom: -webkit-calc(var(--os-padding-perpendicular) * -1);
  bottom: -moz-calc(var(--os-padding-perpendicular) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal .os-scrollbar-handle {
  min-width: var(--os-handle-min-size);
  max-width: var(--os-handle-max-size);
  height: var(--os-handle-perpendicular-size);
  -webkit-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
  -moz-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, height 0.15s;
}

.os-scrollbar-horizontal .os-scrollbar-handle:before {
  top: -webkit-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  top: -moz-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  top: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  bottom: -webkit-calc(var(--os-padding-perpendicular) * -1);
  bottom: -moz-calc(var(--os-padding-perpendicular) * -1);
  bottom: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-horizontal:hover .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-horizontal:active .os-scrollbar-handle {
  height: var(--os-handle-perpendicular-size-active);
}

.os-scrollbar-vertical {
  padding: var(--os-padding-axis) var(--os-padding-perpendicular);
  bottom: var(--os-size);
  width: var(--os-size);
}

.os-scrollbar-vertical .os-scrollbar-track:before {
  left: -webkit-calc(var(--os-padding-perpendicular) * -1);
  left: -moz-calc(var(--os-padding-perpendicular) * -1);
  left: calc(var(--os-padding-perpendicular) * -1);
  right: -webkit-calc(var(--os-padding-perpendicular) * -1);
  right: -moz-calc(var(--os-padding-perpendicular) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical .os-scrollbar-handle {
  min-height: var(--os-handle-min-size);
  max-height: var(--os-handle-max-size);
  width: var(--os-handle-perpendicular-size);
  -webkit-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
  -moz-transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
  transition: opacity 0.15s, background-color 0.15s, border-color 0.15s, width 0.15s;
}

.os-scrollbar-vertical .os-scrollbar-handle:before {
  left: -webkit-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: -moz-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: -webkit-calc(var(--os-padding-perpendicular) * -1);
  right: -moz-calc(var(--os-padding-perpendicular) * -1);
  right: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical.os-scrollbar-rtl .os-scrollbar-handle:before {
  right: -webkit-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: -moz-calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  right: calc((var(--os-padding-perpendicular) + var(--os-handle-interactive-area-offset)) * -1);
  left: -webkit-calc(var(--os-padding-perpendicular) * -1);
  left: -moz-calc(var(--os-padding-perpendicular) * -1);
  left: calc(var(--os-padding-perpendicular) * -1);
}

.os-scrollbar-vertical:hover .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-hover);
}

.os-scrollbar-vertical:active .os-scrollbar-handle {
  width: var(--os-handle-perpendicular-size-active);
}

/* NONE THEME: */
[data-overlayscrollbars-viewport~=measuring] > .os-scrollbar,
.os-theme-none.os-scrollbar {
  display: none !important;
}

/* DARK & LIGHT THEME: */
.os-theme-dark,
.os-theme-light {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  --os-size: 16px;
  --os-padding-perpendicular: 2px;
  --os-padding-axis: 2px;
  --os-track-border-radius: 10px;
  --os-handle-interactive-area-offset: 4px;
  --os-handle-border-radius: 10px;
}

.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, 0.44);
  --os-handle-bg-hover: rgba(0, 0, 0, 0.55);
  --os-handle-bg-active: rgba(0, 0, 0, 0.66);
}

.os-theme-light {
  --os-handle-bg: rgba(255, 255, 255, 0.44);
  --os-handle-bg-hover: rgba(255, 255, 255, 0.55);
  --os-handle-bg-active: rgba(255, 255, 255, 0.66);
}

.secondLvlCss {
  /* youtube / vimeo iframe */
  /* #region featured-paragraph */
  /* #endregion */
}
.secondLvlCss h2,
.secondLvlCss h3,
.secondLvlCss h4,
.secondLvlCss h5 {
  margin-bottom: var(--secondLvlCss-heading-margin);
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.secondLvlCss .featuredText,
.secondLvlCss .featuredParagraph {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.secondLvlCss p {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: var(--secondLvlCss-content-margin);
}
.secondLvlCss p a {
  font-size: inherit;
  line-height: inherit;
}
.secondLvlCss hr {
  width: 100%;
  height: 0.3rem;
  display: block;
  position: relative;
  margin: clamp(3rem, 1.5873015873vw + 2.4603174603rem, 5rem) 0;
  background: rgba(165, 197, 237, 0.3);
  border: none;
}
.secondLvlCss blockquote {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  position: relative;
}
.secondLvlCss blockquote p {
  font-family: inherit !important;
  position: relative;
  z-index: 2;
  margin: 0 !important;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  display: inline;
  color: inherit;
}
.secondLvlCss .table-wrapper {
  display: block;
  overflow: auto hidden;
  position: relative;
  overflow-y: auto;
  overflow-x: auto;
  max-width: 100%;
  margin-bottom: var(--secondLvlCss-content-margin);
  background: rgba(127, 201, 199, 0.3);
  -webkit-box-shadow: inset 0 0 0 1px var(--secondary-color);
          box-shadow: inset 0 0 0 1px var(--secondary-color);
}
html.touch .secondLvlCss .table-wrapper {
  -webkit-overflow-scrolling: touch;
}
.secondLvlCss .table-wrapper td,
.secondLvlCss .table-wrapper th {
  font-size: 2rem;
  line-height: 1.5;
  color: var(--primary-color);
  padding: 1.5rem 2rem;
}
.secondLvlCss .table-wrapper th {
  background: var(--secondary-color);
  border-right: 1px solid rgb(91.1318681319, 185.8681318681, 183.3076923077);
}
.secondLvlCss .table-wrapper td {
  font-size: 2rem;
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}
.secondLvlCss .table-wrapper .os-scrollbar-handle {
  cursor: pointer;
  background: var(--secondary-color);
}
.secondLvlCss table thead,
.secondLvlCss table tbody {
  width: 100%;
}
.secondLvlCss table colgroup col {
  width: auto !important;
}
.secondLvlCss table td,
.secondLvlCss table th {
  width: 25%;
  min-width: 20rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.secondLvlCss table td p,
.secondLvlCss table th p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.secondLvlCss table td p:last-child,
.secondLvlCss table th p:last-child {
  margin-bottom: 0;
}
.secondLvlCss table td:last-of-type {
  width: 999px;
}
.secondLvlCss table:last-child {
  margin-bottom: 0;
}
.secondLvlCss .downloadBtn {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5rem;
  padding: 1rem 2.5rem 1.2rem;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: #fff;
  -moz-border-radius: 3rem;
       border-radius: 3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: none;
  cursor: pointer;
}
html.no-touch .secondLvlCss .downloadBtn:hover {
  background: var(--tertiary-color);
  color: #fff;
  border-color: var(--tertiary-color);
}
.secondLvlCss .secondaryDownloadBtn {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5rem;
  padding: 1rem 2.5rem 1.2rem;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: #fff;
  -moz-border-radius: 3rem;
       border-radius: 3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: none;
  cursor: pointer;
  background: var(--secondary-color);
  color: var(--primary-color);
}
html.no-touch .secondLvlCss .secondaryDownloadBtn:hover {
  background: var(--tertiary-color);
  color: #fff;
  border-color: var(--tertiary-color);
}
.secondLvlCss .thirdDownloadBtn {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5rem;
  padding: 1rem 2.5rem 1.2rem;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: #fff;
  -moz-border-radius: 3rem;
       border-radius: 3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: none;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
html.no-touch .secondLvlCss .thirdDownloadBtn:hover {
  background: var(--tertiary-color);
  color: #fff;
  border-color: var(--tertiary-color);
}
.secondLvlCss img {
  width: 100%;
  height: auto;
  margin: 0 0 clamp(3rem, 1.5873015873vw + 2.4603174603rem, 5rem);
  position: relative;
  -webkit-box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn) {
  font-size: inherit;
  line-height: inherit;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: color 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, border 0.3s ease;
  color: inherit;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  border-bottom: 0.1rem solid var(--tertiary-color);
}
.secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href$=".pdf"], .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[target=_blank]:not([href$=".pdf"]), .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href^=mailto] {
  margin-right: 2.3rem;
  position: relative;
}
.secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href$=".pdf"]:after, .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[target=_blank]:not([href$=".pdf"]):after, .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href^=mailto]:after {
  font-size: 1.2rem;
  right: -2rem;
  position: absolute;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  margin-left: 0.5rem;
  top: 1rem;
  color: inherit;
}
.secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href$=".pdf"]:after {
  font-size: 1.7rem;
  top: 0.5rem;
}
.secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn)[href^=mailto]:after {
  top: 0.9rem;
}
html.no-touch .secondLvlCss a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn):hover {
  color: var(--tertiary-color);
}
.secondLvlCss .embed-container {
  margin: 0 0 clamp(3rem, 1.5873015873vw + 2.4603174603rem, 5rem);
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 3rem;
  height: 0;
  overflow: hidden;
}
.secondLvlCss .embed-container iframe,
.secondLvlCss .embed-container object,
.secondLvlCss .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.secondLvlCss > *:last-child {
  margin-bottom: 0;
}
.secondLvlCss p {
  font-size: clamp(1.6rem, 0.3174603175vw + 1.4920634921rem, 2rem);
  line-height: 1.44;
  display: block;
}
.secondLvlCss p strong {
  font-weight: 700;
}
.secondLvlCss h2 {
  font-family: var(--secondary-font);
  font-size: clamp(3.3rem, 1.3492063492vw + 2.8412698413rem, 5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--primary-color);
  text-transform: uppercase;
}
.secondLvlCss h3 {
  font-family: var(--secondary-font);
  font-size: clamp(2.8rem, 0.9523809524vw + 2.4761904762rem, 4rem);
  line-height: 1.125;
  font-weight: 500;
  color: var(--tertiary-color);
}
.secondLvlCss h3:first-letter {
  text-transform: uppercase;
}
.secondLvlCss h4 {
  font-size: clamp(1.9rem, 0.7142857143vw + 1.6571428571rem, 2.8rem);
  line-height: 1.125;
  font-weight: 400;
  color: var(--primary-color);
}
.secondLvlCss h4:first-letter {
  text-transform: uppercase;
}
.secondLvlCss ul {
  display: block;
  margin: clamp(3rem, 3.1746031746vw + 1.9206349206rem, 7rem) 0;
}
.secondLvlCss ul > li {
  font-weight: 400;
  list-style-type: none;
  font-size: clamp(1.6rem, 0.3174603175vw + 1.4920634921rem, 2rem);
  line-height: 1.44;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.8rem;
}
.secondLvlCss ul > li:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  -moz-border-radius: 50%;
       border-radius: 50%;
  display: block;
  background: var(--tertiary-color);
  position: absolute;
  left: 0;
  top: 0.9rem;
}
.secondLvlCss ul > li ul,
.secondLvlCss ul > li ol {
  margin: 1rem 0 0;
}
.secondLvlCss ul > li > ul {
  padding-left: 2rem;
}
.secondLvlCss ul > li > ul > li:before {
  background: transparent;
  border: 1px solid var(--tertiary-color);
}
.secondLvlCss ul > li > ol {
  padding-left: 2rem;
}
.secondLvlCss ul > li:first-letter {
  text-transform: uppercase;
}
.secondLvlCss ul > li:last-child {
  margin-bottom: 0;
}
.secondLvlCss ol {
  margin: clamp(3rem, 2.380952381vw + 2.1904761905rem, 6rem) 0;
  counter-reset: li;
}
.secondLvlCss ol > li {
  position: relative;
  font-size: clamp(1.6rem, 0.3174603175vw + 1.4920634921rem, 2rem);
  line-height: 1.44;
  font-weight: 400;
  list-style-type: decimal;
  margin-bottom: 1.6rem;
  list-style-type: none;
  display: block;
  padding-left: 4rem;
}
.secondLvlCss ol > li:before {
  content: counter(li);
  counter-increment: li;
  min-width: 2.8rem;
  height: 2.8rem;
  line-height: 2.6rem;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1.6rem;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-column-align: unset;
      justify-self: unset;
  left: 0;
  top: 0;
  background: var(--fourth-color);
  -moz-border-radius: 1.4rem;
       border-radius: 1.4rem;
  border: none;
}
.secondLvlCss ol > li ul,
.secondLvlCss ol > li ol {
  margin: 1rem 0 0;
}
.secondLvlCss ol > li > ul {
  padding-left: 2rem;
  margin: 1rem 0 0;
}
.secondLvlCss ol > li > ul > li:before {
  background: transparent;
  border: 1px solid var(--tertiary-color);
}
.secondLvlCss ol > li > ol {
  padding-left: 2rem;
}
.secondLvlCss ol > li:first-letter {
  text-transform: uppercase;
}
.secondLvlCss ol > li:last-child {
  margin-bottom: 0;
}
.secondLvlCss h5 {
  font-size: clamp(1.6rem, 0.6349206349vw + 1.3841269841rem, 2.4rem);
  line-height: 1.125;
  font-weight: 400;
  color: var(--primary-color);
}
.secondLvlCss h5:first-letter {
  text-transform: uppercase;
}
.secondLvlCss blockquote {
  font-family: var(--secondary-font);
  font-size: clamp(2.4rem, 0.7936507937vw + 2.1301587302rem, 3.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.14;
  color: var(--primary-color);
  margin: clamp(3.5rem, 2.7777777778vw + 2.5555555556rem, 7rem) 0;
  padding: 1rem clamp(3rem, 2.380952381vw + 2.1904761905rem, 6rem) 1rem clamp(3rem, 2.380952381vw + 2.1904761905rem, 6rem);
  text-align: center;
}
.secondLvlCss blockquote:before, .secondLvlCss blockquote:after {
  position: absolute;
  color: var(--tertiary-color);
  font-size: clamp(1.9rem, 0.3174603175vw + 1.7920634921rem, 2.3rem);
  display: block;
}
.secondLvlCss blockquote:before {
  content: "\e906";
  left: 0;
  top: 0;
}
.secondLvlCss blockquote:after {
  content: "\e904";
  bottom: 0;
  right: 0;
}
@media (max-width: 767px) {
  .secondLvlCss blockquote {
    padding: 0;
  }
  .secondLvlCss blockquote:before, .secondLvlCss blockquote:after {
    position: relative;
  }
  .secondLvlCss blockquote:before {
    text-align: left;
    margin-bottom: 1rem;
  }
  .secondLvlCss blockquote:after {
    text-align: right;
    margin-top: 1rem;
  }
}
.secondLvlCss .featuredText,
.secondLvlCss .featuredParagraph {
  font-family: var(--secondary-font);
  font-size: clamp(2.3rem, 0.7936507937vw + 2.0301587302rem, 3.3rem);
  line-height: 1.15;
  font-style: italic;
  font-weight: 400;
}
.secondLvlCss .featuredText strong,
.secondLvlCss .featuredParagraph strong {
  font-style: inherit;
  font-weight: 700;
}
.secondLvlCss .featuredText a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn),
.secondLvlCss .featuredParagraph a:not(.downloadBtn):not(.secondaryDownloadBtn):not(.thirdDownloadBtn):not(.widgetDownloadBtn) {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  line-height: inherit;
}
.secondLvlCss .featuredParagraph {
  color: var(--primary-color);
}
.secondLvlCss .featuredText {
  color: var(--tertiary-color);
}

.styling--light-text .secondLvlCss p,
.styling--light-text .secondLvlCss h2,
.styling--light-text .secondLvlCss h3,
.styling--light-text .secondLvlCss h4,
.styling--light-text .secondLvlCss h5 {
  color: #fff;
}

.widgetDownloadBtn {
  pointer-events: auto;
  border: none;
  background: transparent;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5rem;
  padding: 1rem 2.5rem 1.2rem;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: #fff;
  -moz-border-radius: 3rem;
       border-radius: 3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: none;
  cursor: pointer;
  background: var(--secondary-color);
  color: var(--primary-color);
}
html.no-touch .widgetDownloadBtn:hover {
  background: var(--tertiary-color);
  color: #fff;
  border-color: var(--tertiary-color);
}

.widgetDownloadBtn--v2 {
  pointer-events: auto;
  border: none;
  background: transparent;
  max-width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 5rem;
  padding: 1rem 2.5rem 1.2rem;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--primary-color);
  color: #fff;
  -moz-border-radius: 3rem;
       border-radius: 3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  -moz-transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, border 0.3s ease;
  border: none;
  cursor: pointer;
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}
html.no-touch .widgetDownloadBtn--v2:hover {
  background: var(--tertiary-color);
  color: #fff;
  border-color: var(--tertiary-color);
}