/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

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

/* row and column */
.row {
  --row-space: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(-1 * var(--row-space));
  margin-left: calc(-1 * var(--row-space));
}

[class*="cell-"] {
  padding-left: var(--row-space);
  padding-right: var(--row-space);
  position: relative;
  width: 100%;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > [class*="cell-"] {
  padding-right: 0;
  padding-left: 0;
}

/* column structure */
/* ----- Extra small devices ≤640px ----- */
.cell-1 { width: 8.3333333333%; }
.cell-2 { width: 16.6666666667%; }
.cell-3 { width: 25%; }
.cell-4 { width: 33.3333333333%; }
.cell-5 { width: 41.6666666667%; }
.cell-6 { width: 50%; }
.cell-7 { width: 58.3333333333%; }
.cell-8 { width: 66.6666666667%; }
.cell-9 { width: 75%; }
.cell-10 { width: 83.3333333333%; }
.cell-11 { width: 91.6666666667%; }
.cell-12 { width: 100%; }

/* show and hide cell */
.d-none {
  display: none;
}

.d-block {
  display: block;
}

/* ----- Small devices ≥576px ----- */
@media ( min-width: 576px ) {
  .cell-sm-1 { width: 8.3333333333%; }
  .cell-sm-2 { width: 16.6666666667%; }
  .cell-sm-3 { width: 25%;}
  .cell-sm-4 { width: 33.3333333333%; }
  .cell-sm-5 { width: 41.6666666667%; }
  .cell-sm-6 { width: 50%; }
  .cell-sm-7 { width: 58.3333333333%; }
  .cell-sm-8 { width: 66.6666666667%; }
  .cell-sm-9 { width: 75%; }
  .cell-sm-10 { width: 83.3333333333%; }
  .cell-sm-11 { width: 91.6666666667%; } .cell-sm-12 { width: 10; }

  /* show and hide cell sm */
  .d-sm-none {
    display: none;
  }

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

/* ----- Medium devices ≥768px ----- */
@media ( min-width: 768px ) {
  .cell-md-1 { width: 8.3333333333%; }
  .cell-md-2 { width: 16.6666666667%; }
  .cell-md-3 { width: 25%; }
  .cell-md-4 { width: 33.3333333333%; }
  .cell-md-5 { width: 41.6666666667%; }
  .cell-md-6 { width: 50%; }
  .cell-md-7 { width: 58.3333333333%; }
  .cell-md-8 { width: 66.6666666667%; }
  .cell-md-9 { width: 75%; }
  .cell-md-10 { width: 83.3333333333%; }
  .cell-md-11 { width: 91.6666666667%; }
  .cell-md-12 { width: 100%; }

  /* show and hide cell md */
  .d-md-none {
    display: none;
  }

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

/* ----- Large devices ≥992px ----- */
@media ( min-width: 992px ) {
  .cell-lg-1 { width: 8.3333333333%; }
  .cell-lg-2 { width: 16.6666666667%; }
  .cell-lg-3 { width: 25%; }
  .cell-lg-4 { width: 33.3333333333%; }
  .cell-lg-5 { width: 41.6666666667%; }
  .cell-lg-6 { width: 50%; }
  .cell-lg-7 { width: 58.3333333333%; }
  .cell-lg-8 { width: 66.6666666667%; }
  .cell-lg-9 { width: 75%; }
  .cell-lg-10 { width: 83.3333333333%; }
  .cell-lg-11 { width: 91.6666666667%; }
  .cell-lg-12 { width: 100%; }

  /* show and hide cell lg */
  .d-lg-none {
    display: none;
  }

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

/* ----- Extra Large devices ≥1200px ----- */
@media ( min-width: 1200px ) {
  .cell-xl-1 { width: 8.3333333333%; }
  .cell-xl-2 { width: 16.6666666667%; }
  .cell-xl-3 { width: 25%; }
  .cell-xl-4 { width: 33.3333333333%; }
  .cell-xl-5 { width: 41.6666666667%; }
  .cell-xl-6 { width: 50%; }
  .cell-xl-7 { width: 58.3333333333%; }
  .cell-xl-8 { width: 66.6666666667%; }
  .cell-xl-9 { width: 75%; }
  .cell-xl-10 { width: 83.3333333333%; }
  .cell-xl-11 { width: 91.6666666667%; }
  .cell-xl-12 { width: 100%; }

  /* show and hide cell xl */
  .d-xl-none {
    display: none;
  }

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

/* text alignment */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Reset css
   ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	font-size: inherit;
	background: transparent;
	border: 0;
	outline: none;
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-tap-highlight-color: rgba($black, 0);
}

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

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

/* Embedded content
   ========================================================================== */
audio,
video,
iframe {
	display: block;
	max-width: 100%;
}

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

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

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

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

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

body {
  margin: 0;
}

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

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

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

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

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

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

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

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 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, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

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

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

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

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

/* .dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
} */

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html {
  height: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

body {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  min-height: 100%;
  height: auto;
  color: #F2EFEB;
  background-color: #040404;
  font-weight: 500 !important;
  font-size: 1.25rem;
  line-height: 1.4;
  overflow-wrap: break-word;
}

body.scroll-fixed {
  overflow: hidden
}

.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 100%;
  z-index: 0;
  overflow: hidden;
}

.body-wrapper {
  position: relative;
  width: 100%;
  align-self: start;
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
  body {
    height: 100%
  }
}

/* .main-content {
padding-top: 6.375rem;
}

@media (max-width: 767px) {
.main-content {
padding-top: 3.5rem;
}
} */

/* container */
.container,
.container-fluid {
  --gutter: 3.13rem;
  width: min(100% - var(--gutter) * 2, var(--container-width, none));
  margin-left: auto;
  margin-right: auto
}

@media (max-width:1199px) {
  .container,
  .container-fluid {
    --gutter: 1.88rem;
  }
}

@media (max-width:767px) {
  .container,
  .container-fluid {
    --gutter: 1.25rem;
  }
}

.container {
  --container-width: 77.5rem;
}

/* Paragraphs */

p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* Anchors */
a {
  font-size: 1rem;
  color: #fff;
  transition: background-color .3s ease 0s, color .3s ease 0s;
  text-decoration: none
}

a:hover {
  outline: 0;
  text-decoration: underline
}

a.tab-outline {
  outline-offset: .19rem;
  outline: 1px solid
}

p a {
  font-size: inherit;
  font-weight: 700;
}

.bg-white a {
  color: #f7a052
}

.bg-white a.tab-outline {
  outline-color: #11100f
}

.bg-white a:hover {
  text-decoration: underline
}

.bg-dark {
  background-color: #040404;
}

.bg-white {
  background-color: #fff
}

.bg-white:not(.btn),
.inner-text-white:not(.btn) {
  color: #F2EFEB
}

/* Headings */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #fff;
  font-family: 'Bai Jamjuree', sans-serif;
  margin: 0;
  margin-bottom: 1rem;
  line-height: 1.1;
  word-break: keep-all
}

.bg-white h1,
.bg-white .h1,
.bg-white h2,
.bg-white .h2,
.bg-white h3,
.bg-white .h3,
.bg-white h4,
.bg-white .h4,
.bg-white h5,
.bg-white .h5,
.bg-white h6,
.bg-white .h6 {
  color: #040404;
}

.bg-white:not(.btn) {
  color: #4A525A;
}

.h1,
h1 {
  font-size: 4rem;
  font-weight: 300;
}

.h1 a,
h1 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h1 span,
h1 span {
  font-weight: 300
}

@media (max-width:1199px) {

  .h1,
  h1 {
    font-size: 3.25rem
  }
}

@media (max-width:767px) {

  .h1,
  h1 {
    font-size: 2.5rem
  }
}

.h1.oversize,
h1.oversize {
  font-size: 6rem;
  font-weight: 400;
}

@media (max-width:1199px) {

  .h1.oversize,
  h1.oversize {
    font-size: 4.5rem
  }
}

@media (max-width:767px) {

  .h1.oversize,
  h1.oversize {
    font-size: 3rem
  }
}

.h2,
h2 {
  font-size: 3rem;
  font-weight: 300;
}

.h2 a,
h2 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h2 span,
h2 span {
  font-weight: 300
}

@media (max-width:1199px) {

  .h2,
  h2 {
    font-size: 2.5rem
  }
}

@media (max-width:767px) {

  .h2,
  h2 {
    font-size: 2.25rem
  }
}

.h3,
h3 {
  font-size: 2.44rem;
  font-weight: 300;
}

.h3 a,
h3 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h3 span,
h3 span {
  font-weight: 300
}

@media (max-width:767px) {

  .h3,
  h3 {
    font-size: 1.75rem
  }
}

.h4,
h4 {
  font-size: 1.94rem;
  font-weight: 300;
}

.h4 a,
h4 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h4 span,
h4 span {
  font-weight: 300
}

@media (max-width:767px) {
  .h4,
  h4 {
    font-size: 1.57rem
  }
}

.h5,
h5 {
  font-size: 1.57rem;
  font-weight: 300;
}

.h5 a,
h5 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h5 span,
h5 span {
  font-weight: 300
}

@media (max-width:767px) {
  .h5,
  h5 {
    font-size: 1.25rem
  }
}

.h6,
h6 {
  font-size: 1.25rem;
  font-weight: 300;
}

.h6 a,
h6 a {
  display: block;
  color: inherit;
  text-decoration: none
}

.h6 span,
h6 span {
  font-weight: 300
}

@media (max-width:767px) {
  .h6,
  h6 {
    font-size: 1rem
  }
}

.eyebrow-text {
  margin-bottom: .5rem;
  display: inline-block;
  color: #040404;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.eyebrow-text.-primary {
  color: #F7A052;
}

/* Heading With Line */
.heading-line {
  position: relative;
  padding-bottom: 1rem;
}

.heading-line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2.9375rem;
  height: 1px;
  background-color: #fff;
}

.heading-line.-center::before {
  left: 50%;
  transform: translateX(-50%);
}

/* Lists */
:is(ul, ol) {
  --ulolLeftPadding: 1.38rem;
  padding-left: var(--ulolLeftPadding);
  margin-bottom: 1rem;
}

:is(ul, ol) :is(ul, ol) {
  margin-top: .5rem;
  margin-bottom: 0
}

:is(ul, ol) li {
  padding-top: 6px;
  padding-bottom: 6px;
  color: #F2EFEB;
  font-size: 1.25rem;
  line-height: 1;
}

:is(ul, ol) li a {
  font-size: inherit;
}

.bullet-styled :is(ul, ol) li {
  position: relative;
  list-style: none
}

.bullet-styled :is(ul, ol) li:before {
  position: absolute;
  left: calc(var(--ulolLeftPadding) * -1);
  color: #fff;
  font-weight: 700;
  line-height: 1
}

.bg-white :is(ul, ol) li {
  color: #4a525a
}

.bg-white :is(ul, ol) li:before {
  color: #040404 !important
}

:is(ul, ol) li:last-child {
  padding-bottom: 0
}

.bullet-styled ul>li {
  --ulBox: 6px
}

.bullet-styled ul>li::before {
  content: "";
  top: 1.07rem;
  width: var(--ulBox);
  height: var(--ulBox);
  background-color: #f7a052;
  border-radius: 100%
}

.bullet-styled ul>li>ul>li::before {
  height: .38rem;
  width: .38rem;
  background-color: #5d9ac6
}

.bullet-check ul>li {
  --ulBox: 12px;
  padding: 0 0 0 2.25rem;
  margin-bottom: .63rem;
  position: relative
}

.bullet-check ul>li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: var(--ulBox);
  height: var(--ulBox);
  font-size: 24px;
  color: #1eb2a6;
  background-image: url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/images/orange-bullet.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bullet-check ul {
  padding-left: 0;
  list-style: none
}

ol {
  --ulolLeftPadding: 2rem
}

.bullet-check ol>li,
.bullet-styled ol>li {
  counter-increment: counter-1
}

.bullet-check ol>li:before,
.bullet-styled ol>li:before {
  content: counter(counter-1) " . ";
  top: 10px;
  font-size: 1rem
}

.bullet-check ol>li>ol,
.bullet-styled ol>li>ol {
  counter-reset: counter-2
}

.bullet-check ol>li>ol>li,
.bullet-styled ol>li>ol>li {
  counter-increment: counter-2
}

.bullet-check ol>li>ol>li:before,
.bullet-styled ol>li>ol>li:before {
  content: counter(counter-2, upper-alpha) " . ";
  font-weight: 700
}

.bullet-check ol {
  padding-left: 0;
  list-style: none
}

/* ul,
ol {
margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
margin: 0;
} */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb li {
  position: relative;
  padding: 0;
}

.breadcrumb li:not(:last-child)::after {
  content: 'b';
  font-family: lynx-2025 !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  display: inline-flex;
  color: #F7A052;
  font-size: 0.9em;
  margin: 0 8px 0 6px;
  line-height: 1;
  vertical-align: middle;
}

.breadcrumb .current-page {
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */
pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */
blockquote {
  color: #040404;
  font-size: 1.5625rem;
  font-weight: 300;
  font-family: Bai Jamjuree, sans-serif;
  margin: 2rem 0;
  text-align: center;
}

blockquote p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

blockquote p>strong {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #2F2F2F;
  font-size: 1.25rem;
  font-weight: 300;
}

blockquote p>strong::before {
  content: 'b';
  font-family: lynx-2025 !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  display: inline-flex;
  color: #F7A052;
  font-size: 1.375rem;
  margin-right: .875rem;
  line-height: 1;
  vertical-align: middle;
}

blockquote p a {
  text-decoration: underline;
}

blockquote p a:hover {
  text-decoration: none;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* table */
.wc-table table {
  border: none !important;
  min-width: 34.375rem;
  overflow: auto;
}

.wc-table table tr th,
.wc-table table td {
  border: none;
  color: #4A525A;
  padding: 1.3125rem 1.75rem !important;
}

.wc-table table tr:has(th),
.wc-table table tr:first-child {
  background: linear-gradient(250.54deg, #4A525A -1.99%, #11100F 98.39%);
}

.wc-table table tr:has(th) th:first-child,
.wc-table table tr:first-child td:first-child {
  border-radius: 6px 0 0 6px;
}

.wc-table table tr:has(th) th:last-child,
.wc-table table tr:first-child td:last-child {
  border-radius: 0 6px 6px 0;
}

.wc-table table tr:not(:first-child):nth-child(odd) {
  background-color: rgba(74, 82, 90, 0.2);
}

.wc-table table tr th,
.wc-table table tr:first-child td {
  font-size: 1.25rem;
  font-weight: 300;
  color: #fff;
  font-family: Bai Jamjuree, sans-serif;
  overflow: hidden;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
/* Btn Style */
button {
  cursor: pointer;
}

.btn {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: .82rem 1.5rem;
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(130deg, #fff 0, #f7a052 100%);
  background-color: transparent;
  transition: background-color .3s ease 0s, color .3s ease 0s, border-color .3s ease 0s, box-shadow .3s ease 0s;
  --focucOutlineSpace: -1px;
  user-select: none
}

.btn::before {
  content: "";
  position: absolute;
  top: var(--focucOutlineSpace);
  left: var(--focucOutlineSpace);
  bottom: var(--focucOutlineSpace);
  right: var(--focucOutlineSpace);
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  border: 1px solid #fff;
  pointer-events: none
}

.btn:hover,
a:hover .btn {
  color: #040404 !important;
  background-color: #f7a052;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(255, 107, 0, .25);
  border-image-source: linear-gradient(130deg, #fff 0, #f7a052 0);
  cursor: pointer
}

.tab-outline.btn {
  --focucOutlineSpace: -4px;
  outline: 0
}

.tab-outline.btn::before {
  opacity: 1;
  visibility: visible
}

.-white.btn,
.bg-white .btn {
  color: #040404 !important;
  border: 1px solid #040404
}

.-white.btn:hover,
.bg-white .btn:hover,
a:hover .-white.btn,
a:hover .bg-white .btn {
  color: #040404 !important;
  background-color: #f7a052;
  text-decoration: none
}

.-white.tab-outline.btn::before,
.bg-white .tab-outline.btn::before {
  border-color: #11100f
}

.btn-link {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .3s ease 0s, color .3s ease 0s, border-color .3s ease 0s;
  user-select: none;
  letter-spacing: 0.03em;
}

.btn-link::before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -8px;
  right: -8px;
  opacity: 0;
  visibility: hidden;
  transition: .4s ease;
  border: 1px solid #fff;
  pointer-events: none
}

.btn-link::after {
  content: "b";
  font-family: lynx-2025 !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  display: inline-flex;
  color: currentColor;
  font-size: 0.9em;
  margin-left: 4px;
  vertical-align: middle;
}

.btn-link:hover,
a:hover .btn-link {
  color: #f7a052;
  text-decoration: none;
}

.btn-link.tab-outline {
  outline: 0
}

.btn-link.tab-outline::before {
  opacity: 1;
  visibility: visible
}

.bg-white .btn-link,
.btn-link.-white {
  color: #040404
}

.bg-white .btn-link::after,
.btn-link.-white::after {
  color: #f7a052
}

.bg-white .btn-link:hover,
.btn-link.-white:hover,
a:hover .bg-white .btn-link,
a:hover .btn-link.-white {
  color: #f7a052;
  text-decoration: none
}

.bg-white .btn-link.tab-outline::before,
.btn-link.-white.tab-outline::before {
  border-color: #11100f
}

.btn-play {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.44em;
  height: 5.44em;
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 100%;
  text-decoration: none;
  transition: .4s ease 0s;
  background-image: url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/images/play-btn-circle.svg);
  background-position: center;
  border: 1px solid transparent;
  background-repeat: no-repeat;
  background-size: 101% 101%;
  z-index: 0;
}

@media (max-width: 991px) {
  .btn-play {
    font-size: .6438rem;
  }
}

.btn-play::before {
  content: "";
  position: absolute;
  top: .5px;
  right: 1px;
  left: .5px;
  bottom: .5px;
  opacity: 0;
  transition: .4s ease 0s;
  background-image: linear-gradient(180deg, #fff 0, #f7a052 100%);
  z-index: -1;
  border-radius: 100%
}

.btn-play::after {
  content: "c";
  font-family: lynx-2025 !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  font-size: 1em;
  line-height: 1;
  margin-left: .19em
}

.btn-play:hover,
a:hover .btn-play {
  box-shadow: 0 0 24px rgba(255, 107, 0, .25);
  text-decoration: none
}

.btn-play:hover::before,
a:hover .btn-play::before {
  opacity: 1
}

.btn-play:focus {
  outline: 1px solid #fff;
  outline-offset: 4px
}

.bg-white .btn-play,
.btn-play.-white {
  color: #040404;
  background-image: none;
  border-color: #040404;
}

.bg-white .btn-play:hover,
.btn-play.-white:hover,
a:hover .bg-white .btn-play,
a:hover .btn-play.-white {
  text-decoration: none;
  border-color: transparent;
  background-image: url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/images/play-btn-circle.svg);
}

.bg-white .btn-play:focus,
.btn-play.-white:focus {
  outline-color: #040404
}

/* Submit Btn */
input[type=button],
input[type=reset],
input[type=submit] {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding: .82rem 1.5rem;
  color: #fff;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(130deg, #fff 0, #f7a052 100%);
  background-color: transparent;
  transition: background-color .3s ease 0s, color .3s ease 0s, border-color .3s ease 0s, box-shadow .3s ease 0s;
  user-select: none
}

input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  color: #040404;
  box-shadow: 0 0 24px rgba(255, 107, 0, .25);
  background-color: #f7a052;
  border-image-source: linear-gradient(130deg, #fff 0, #f7a052 0);
}
/* Btn Style */

/* Swiper Arrows Start */
.swiper-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-arrows .swiper-pagination,
.swiper-arrows .swiper-button-prev,
.swiper-arrows .swiper-button-next {
  position: static;
  top: 0;
  margin: 0;
}

.swiper-pagination {
  width: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-pagination.-style1 {
  --swiper-pagination-bullet-size: 15px;
  --swiper-pagination-bullet-horizontal-gap: 12px;
}

.swiper-pagination.-style1 .swiper-pagination-bullet {
  opacity: 1;
  border-radius: 0;
  background: linear-gradient(108.54deg, rgba(236, 244, 248, 0.7) 5.76%, rgba(250, 251, 251, 0.5) 100%);
  backdrop-filter: blur(40px);
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(175deg, #FFFFFF 0%, rgba(242, 239, 235, .5) 23%, rgba(247, 160, 82, 0.5) 62%);
  transition: 0.4s ease 0s;
}

.swiper-pagination.-style1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: linear-gradient(108.54deg, #F7A052 100%, #f7a052 0%);
  border-image-source: linear-gradient(108.54deg, #F7A052 100%, #f7a052 0%);
  transform: rotate(45deg);
}

.swiper-arrows .swiper-pagination {
  --swiper-theme-color: #F7A052;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-horizontal-gap: 5px;
  --swiper-pagination-bullet-size: 21px;
  margin: 0 1rem;
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  display: flex;
  background: transparent;
  border: 1px solid transparent;
  transform: rotate(45deg);
  transition: 0.4s ease 0s;
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background-color: var(--swiper-pagination-bullet-inactive-color);
  border-radius: 100%;
  transform: translate(-50%, -50%);
  transition: background-color 0.35s ease 0s;
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0;
  transition: 0.4s ease 0s;
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: rgb(255 255 255 / 40%);
  background: transparent;
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  background-color: var(--swiper-theme-color);
}

.swiper-arrows .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  animation: progress-1tucza 3s forwards linear;
  opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 22px;
  padding: 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  width: auto !important;
  height: auto !important;
  transition: color .3s ease 0s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  --swiper-theme-color: #F7A052;
}

.swiper-button-prev::after {
  content: 'a' !important;
}

.swiper-button-next::after {
  content: 'b' !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-family: lynx-2025 !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
}


/* Swiper Active Pagination Animation */
@keyframes progress-1tucza {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
/* Swiper Arrows End */

/* button,
.button,
.hs-button {
cursor: pointer;
display: inline-block;
text-align: center;
transition: all 0.15s linear;
white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
background-color: #D0D0D0;
border-color: #D0D0D0;
color: #E6E6E6;
} */

/* No button */
/* .no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
background: none;
border: none;
border-radius: 0;
color: initial;
font-family: inherit;
font-size: inherit;
font-style: inherit;
font-weight: inherit;
letter-spacing: inherit;
line-height: inherit;
margin-bottom: 0;
padding: 0;
text-align: left;
text-decoration: none;
transition: none;
}
*/
@charset "UTF-8";

@font-face {
  font-family: "lynx-2025";
  src:url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/font-icon/lynx-2025.eot);
  src:url() format("embedded-opentype"),
    url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/font-icon/lynx-2025.woff) format("woff"),
    url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/font-icon/lynx-2025.ttf) format("truetype"),
    url() format("svg");
  font-weight: normal;
  font-style: normal;

}




[data-icon]:before {
  font-family: "lynx-2025" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "lynx-2025" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before {
  content: "\61";
}
.icon-arrow-right:before {
  content: "\62";
}
.icon-play:before {
  content: "\63";
}
.icon-person:before {
  content: "\64";
}
.icon-down-arrow:before {
  content: "\65";
}
.icon-long-down-arrow:before {
  content: "\66";
}
.icon-search:before {
  content: "\67";
}
.icon-linkedin:before {
  content: "\68";
}
.icon-twitter:before {
  content: "\69";
}
.icon-facebook:before {
  content: "\6a";
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  transition: all .35s ease;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 1rem;
  height: 3.125rem;
  color: #fff;
  font-weight: 500;
  padding: 1rem .9375rem .4375rem .9375rem;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #fff;
}

.bg-white form input[type=text],
.bg-white form input[type=search],
.bg-white form input[type=email],
.bg-white form input[type=password],
.bg-white form input[type=tel],
.bg-white form input[type=number],
.bg-white form input[type=file],
.bg-white form select,
.bg-white form textarea {
  color: #040404;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  transition: background-color 9999s ease-in-out 0s;
  -webkit-text-fill-color: #fff !important;
}


form select option {
  color: #11100F;
}

select {
	-webkit-appearance: none;
	padding-right: 1.875em;
	background-color: transparent;
	background-image: url(//4385221.fs1.hubspotusercontent-na1.net/hubfs/4385221/raw_assets/public/Lynx%20-%202025/images/select-down-arrow.svg);
	background-size: 14px 9px;
	background-position: right 0.5em center;
	background-repeat: no-repeat;
	cursor: pointer;
}

form textarea {
  resize: none !important;
  height: 6.25rem !important;
}

form fieldset {
  max-width: 100% !important;
}

/* Form Hover effect */
.hs-form .hs-form-field {
  position: relative;
  margin-bottom: 1.5rpx;
}

.hs-form .hs-form-field input::placeholder,
.hs-form .hs-form-field form textarea::placeholder {
  opacity: 0;
  visibility: hidden;
  color: transparent;
}

.hs-form .hs-form-field:not(.hs-fieldtype-select, .hs-fieldtype-booleancheckbox) label {
  position: absolute;
  top: 1rem;
  left: .9375rem;
  pointer-events: none;
  line-height: 1;
}

.hs-form .hs-form-field.focused:not(.hs-fieldtype-select, .hs-fieldtype-booleancheckbox) label {
  top: 0;
  font-size: .75rem;
  color: #F7A052;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hs-form .hs-form-field:has(.hs-input.invalid.error) label,
.hs-form .hs-form-field .hs-input.invalid.error {
  color: #FF5E00;
}

.hs-form .hs-form-field:has(.hs-input.invalid.error) label {
  letter-spacing: 0;
  text-transform: none;
}

.hs-form .hs-error-msgs {
  display: none;
}


/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Search button input field and suggestions */
.body-container-wrapper .hs-search-field__button {
  padding: 15px;
}

.body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
  margin-left: 6px;
  margin-bottom: 0;
}

.body-container-wrapper .hs-search-field__button svg {
  height: 15px;
  fill: #fff;
}

.body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
  padding: 10px;
}

.body-container-wrapper .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: auto;
  transition: .35s ease 0s;
  z-index: 999;
}

.main-header.isFixed {
  background-color: #040404;
}

.main-header .header-bottom {
  padding: 1rem 0;
}

.main-header .header__skip {
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  padding: .32rem .63rem;
  width: auto;
  height: auto;
  color: #040404;
  display: inline-block;
  font-size: .88rem;
  font-weight: 700;
  outline: 0;
  background-color: #fff;
  border: 1px solid #F7A052 !important;
  border-radius: 0 0 15px 15px;
  text-decoration: none;
  text-transform: capitalize;
  pointer-events: auto;
  z-index: 999;
  transition: .4s ease 0s;
}

.main-header .header__skip:hover,
.main-header .header__skip:focus,
.main-header .header__skip:active {
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  overflow: visible;
}

.main-header .brand-logo {
  margin-right: 1rem;
}

.main-header .brand-logo .hs_cos_wrapper {
  display: flex;
}

.main-header .brand-logo a {
  display: inline-flex;
  width: 192px;
}

.main-header .brand-logo a img {
  width: 100% !important;
}

.main-header .header-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.main-header .navigation-top {
  margin-bottom: 1.375rem;
}

.main-header .navigation-top .header-btn-wrap:not(:last-child) {
  margin-right: 1.875rem;
}

.main-header .navigation-top>.hs_cos_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.main-header .navigation-bottom {
  display: flex;
  align-items: center;
}


/* search */
.main-header .header__search .search-btn-wrap {
  display: flex;
  margin-left: 24px;
}

.main-header .header__search .header-search-btn {
  border: none;
  display: flex;
  padding: 0;
  color: white;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  transition: 0.35s ease 0s;
}

.main-header .header__search .header-search-btn:hover {
  color: #F7A052;
}

.main-header .header__search > .hs_cos_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.4s ease 0s;
  z-index: 10;
  padding: 206px 20px 0;
}

.main-header .header__search .header-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(4, 4, 4, 0.8);
  z-index: -1;
}

.main-header .header__search > .hs_cos_wrapper.is-show {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.main-header .header__search .hs-search-field {
  max-width: 816px;
  margin: 0 auto;
}

.main-header .header__search .hs-search-field__form {
  position: relative;
}

.header__search .hs-search-field__form input[type=search] {
  height: 50px;
  background-color: #040404;
  box-shadow: 0px 0px 24px rgba(255, 107, 0, 0.25);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  padding: .75rem .75rem .75rem 3.3125rem;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(140deg, rgba(255,255,255,1) 0%, rgba(247,160,82,1) 100%);
}

.header__search .hs-search-field__form input[type=search]:focus {
  outline: none;
}

.header__search .hs-search-field__form input[type=search]::placeholder {
  color: #fff;
}

.header__search .hs-search-field__form .hs-search-field__button {
  position: absolute;
  top: calc(50% - 9px);
  left: 1.1875rem;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  font-size: 18px;
  color: #fff;
}

.header__search .hs-search-field__form .hs-search-field__button::before {
  content: "\67";
  font-family: lynx-2025 !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-header .header__search .hs-search-field__suggestions-container,
.main-header .header__search .hs-search-field__form .hs-search-field__button span {
  display: none;
}

.main-header .header__search .search-close {
  position: absolute;
  bottom: 125%;
  left: 100%;
  display: flex;
  font-size: 20px;
  flex-direction: column;
  font-weight: 300;
  font-family: Bai Jamjuree, sans-serif;
  align-items: center;
  cursor: pointer;
  transition: 0.35s ease 0s;
}

.main-header .header__search .search-close .close-icon {
  display: flex;
  margin-bottom: 3px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}

.main-header .header__search .search-close:hover {
  color: #F7A052;
}

.main-header .header__search .search-close:hover .close-icon::before,
.main-header .header__search .search-close:hover .close-icon::after {
  background-color: #F7A052;
}

.main-header .header__search .search-close .close-icon::before,
.main-header .header__search .search-close .close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: 0.35s ease 0s;
}

.main-header .header__search .search-close .close-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media (max-width: 991px) {
  .main-header .brand-logo a {
    width: 120px;
  }

  .main-header .navigation-top,
  .main-header .navigation-bottom {
    display: none;
  }
}

@media (max-width: 767px) {
  .main-header .header-bottom {
    padding: 11px 0;    
  }
}
.footer {
  padding: 4.1875rem 0 3.125rem;
  background-color: #11100F;
}

.footer .footer--logo a {
  display: inline-flex;
  max-width: 193px;
  width: 100%;
}

.footer .container-fluid {
  width: 100%;
}

.footer .footer--logo a img {
  width: 100% !important;
}

.footer .footer--copyright {
  margin-top: 24px;
}

.footer .menu__link {
  color: #fff;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  padding: 0;
  transition: 0.4s ease 0s;
}

.footer .menu__link:hover {
  color: #F7A052;
  text-decoration: none;
}

.footer .footer--privacy-menu {
  margin-top: 15px;
}

.footer .footer--privacy-menu .menu__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.footer .footer--privacy-menu .menu__item {
  display: flex;
  padding: 0;
  line-height: 1;
}

.footer .footer--privacy-menu .menu__item:not(:last-child) {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid #fff;
}

.footer .footer--privacy-menu .menu__link {
  font-size: 12px;
  padding: 0;
}

.footer .footer--social-link {
  margin-top: 36px;
}

.footer .footer--social-link .social-links {
  justify-content: flex-start !important;
}

.footer .footer--social-link .social-links__link {
  display: flex;
}

.footer .footer--social-link .social-links__link:not(:last-child) {
  margin-right: 24px;
}

.footer .footer--social-link .social-links__icon {
  margin: 0;
  padding: 4px;
  width: 25px;
  height: 22px;
  background-color: #fff;
  transition: 0.35s ease 0s;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
}

.footer .footer--social-link .social-links__icon svg {
  position: relative;
  fill: #2F2F2F;
  left: 0;
  top: 0;
  transform: none;
  width: 100%;
  height: 100%;
}

.footer .footer--social-link .social-links__icon:hover {
  background-color: #f7a052;
}

.footer .footer--social-link .social-links__icon:has(svg[aria-labelledby="Facebook F1"]) {
  padding-bottom: 0;
}

.footer .footer--social-link .social-links__icon:hover svg {
  fill: #2F2F2F;
}

.footer .footer--menu .menu__wrapper {
  --grid-col: 5;
  display: grid;
  grid-template-columns: repeat(var(--grid-col), 1fr);
  grid-gap: 30px 66px;
}

.footer .footer--menu .menu__item {
  padding: 0;
  border: none;
}

.footer .footer--menu .menu__wrapper > .menu__item > .menu__link {
  padding: 0;
  display: block;
  font-family: Bai Jamjuree, sans-serif;
  font-size: 20px;
  font-weight: 300;
  width: auto;
}

.footer .footer--menu .menu__child-toggle {
  display: none;
}

.footer .footer--menu .menu__item > .menu__submenu {
  margin-top: 8px;
  width: 100%;
  position: unset;
  border-radius: 0;
  box-shadow: none;
  display: block;
  transform: none;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__item,
.footer .footer--menu .menu__item > .menu__submenu .menu__link {
  padding: 0;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__item {
  background: transparent;
  line-height: 1;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__item:not(:last-child) {
  margin-bottom: 1rem;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__item::before {
  display: none;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__link {
  display: inline-block;
  color: #F2EFEB;
  width: auto;
}

.footer .footer--menu .menu__item > .menu__submenu .menu__link:hover {
  color: #F7A052;
}

.footer .footer--menu .menu__child-toggle::before {
  content: "e";
  display: inline-flex;
  font-family: lynx-2025 !important;
  font-size: 14px;
  transition: 0.35s ease 0s;
  line-height: 1;
}

.footer .footer--menu .menu__wrapper>.menu__item.is-active .menu__child-toggle::before {
  transform: scale(-1);
}

@media (max-width: 1199px) {
  .footer .footer--menu .menu__wrapper {
    --grid-col: 4;
    grid-gap: 2.5rem;
  }
}

@media (max-width: 991px) {
  .footer {
    padding: 3rem 0;
  }

  .footer .footer--menu .menu__wrapper {
    --grid-col: 3;
    grid-gap: 2rem;
  }
}

@media (max-width: 767px) {
  .footer .footer--menu .menu__wrapper {
    grid-template-columns: 100%;
    grid-gap: 0;
  }

  .footer .footer--social-link .social-links {
    justify-content: center !important;
  }

  .footer .footer--left {
    display: grid;
  }

  .footer .footer--logo {
    order: 0;
  }

  .footer .footer--menu.-mobile {
    order: 1;
  }

  .footer .footer--social-link {
    margin-top: 3rem;
    order: 2;
  }

  .footer .footer--copyright {
    text-align: center;
    order: 3;
  }

  .footer .footer--privacy-menu {
    order: 4;
  }

  .footer .footer--logo span {
    display: flex;
  }

  .footer .footer--logo a {
    margin: 0 auto 3rem;
  }

  .footer .footer--right {
    display: none;
  }

  .footer .footer--privacy-menu .menu__wrapper {
    justify-content: center;
  }

  .footer .footer--privacy-menu .menu__item {
    width: auto;
    border-top: 0;
  }

  .footer .footer--menu .menu__item>.menu__submenu {
    display: none;
    margin-top: 15px;
  }

  .footer .footer--menu .menu__wrapper>.menu__item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer .footer--menu .menu__wrapper>.menu__item:not(:last-child) {
    margin-bottom: 24px;
  }

  .footer .footer--menu .menu__child-toggle {
    display: flex;
    position: relative;
    width: auto;
    height: auto;
    padding: 0;
    margin-left: 1rem;
    background: transparent;
    color: #fff;
  }

  .footer .footer--menu .menu__child-toggle span {
    display: none;
  }

  .footer .footer--menu .menu__item > .menu__submenu .menu__item {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer .footer--menu.-mobile {
    display: none;
  }

  .footer .footer--menu .menu__wrapper > .menu__item > .menu__link {
    padding-bottom: 6px;
    border-bottom: 1px solid #fff;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Scroll Bar */
@-moz-document url-prefix() {
  .custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #F7A052 #fff;
  }
}

.custom-scroll::-webkit-scrollbar {
  width: 8px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #F7A052;
  border-radius: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}
/* icon-grid section */
.awards-carousel-section,
.multicolumn-card-section,
.testimonial-carousel-section,
.icon-grid-section,
.statistics-section,
.horizontal-tabbed-section,
.leadership-grid-section,
.accordion-section,
.use-case-section {
  margin:120px 0;
}

.fifty-fifty-section + .fifty-fifty-section {
  margin-top: -6.3%;
}

.fancybox__container .fancybox__content {
  padding: 0 !important;
}

/* Media Query */
@media (max-width: 991px) {
  .awards-carousel-section,
  .multicolumn-card-section,
  .statistics-section,
  .icon-grid-section,
  .horizontal-tabbed-section,
  .accordion-section,
  .leadership-grid-section,
  .testimonial-carousel-section,
  .use-case-section {
    margin:72px 0;
  }

  .fifty-fifty-section + .fifty-fifty-section {
    margin-top: 36px;
  }
}
.hamburger {
  --humburgerBox: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: var(--humburgerBox);
  height: var(--humburgerBox);
  padding: 5px;
  margin: 0;
  text-align: center;
  background-color: transparent;
  z-index: 999
}

@media (max-width: 991px) {
  .hamburger {
    display: flex;
  }
}

.hamburger:focus,
.hamburger:hover {
  background-color: transparent;
  outline: 0;
  cursor: pointer
}

.hamburger span {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  height: 2px;
  width: 100%;
  background: #FFF;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  cursor: pointer;
  border-radius: 3px
}

.hamburger span:after,
.hamburger span:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: all .3s cubic-bezier(.645, .045, .355, 1);
  cursor: pointer;
  border-radius: 2px
}

.hamburger span:before {
  top: -8px
}

.hamburger span:after {
  bottom: -8px
}

.hamburger.is-clicked span {
  background-color: transparent !important
}

.hamburger.is-clicked span:after,
.hamburger.is-clicked span:before {
  top: 0;
  background-color: #fff
}

.hamburger.is-clicked span:before {
  transform: rotate(45deg)
}

.hamburger.is-clicked span:after {
  transform: translateY(-6px) rotate(-45deg);
  top: 6px
}

.mbnav {
  position: relative;
  display: none;
  z-index: 999
}

@media (max-width: 991px) {
  .mbnav {
    display: block
  }
}

.mbnav__state {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  transition: all .3s ease-in-out;
  overflow: hidden;
  z-index: 999;
  max-width: 25rem;
  pointer-events: none
}

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

.mbnav__inner {
  position: relative;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  pointer-events: none
}

.mbnav__top {
  display: flex;
  justify-content: space-between;
  background: #ffa34d
}

.mbnav__logo {
  color: #fff;
  padding: 15px
}

.mbnav .menu-wrap {
  --leftSlide: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: var(--leftSlide);
  transition: .4s ease;
  background-color: #040404;
}

.mbnav .menu-wrap .menu-wrap {
  right: -100%;
  opacity: 0;
  visibility: hidden
}

.mbnav .menu-wrap>.menu-inner {
  max-height: 100%;
  padding-top: 5.32rem;
  padding-bottom: 1.25rem;
  /*   background-color: #fff; */
  pointer-events: auto;
  overflow: hidden auto
}

.mbnav .menu-wrap>.menu-inner .header__search {
  padding: 1.5rem 1.3125rem;
}

.mbnav .menu-wrap>.menu-inner .header__search .hs-search-field__form {
  position: relative;
}

.mbnav .menu-wrap>.menu-inner .header__search .hs-search-field__suggestions-container {
  display: none;
}

.mbnav .menu-wrap>.menu-inner .mobile-btn-wrap {
  padding: 1.5rem 1.3125rem;
}

.mbnav .menu-wrap>.menu-inner .mobile-btn-wrap .header-btn-wrap:not(:last-child) {
  margin-bottom: 1.5rem;
}

.mbnav ul {
  position: static;
  left: 0;
  width: 100%;
  margin: 0;
  display: grid;
  transition: .4s ease;
}

.mbnav ul.sub-menu:not(.inner-sub-menu),
.mbnav ul.menu-list:not(.inner-sub-menu) {
  padding: 1.5rem 1.3125rem 0;
}

.mbnav ul.sub-menu:not(.simple-menu) > li:has(ul.inner-sub-menu) {
  position: relative;
}

.mbnav ul.sub-menu:not(.simple-menu) > li:has(ul.inner-sub-menu) > a {
  width: 100%;
  font-weight: 300;
  font-size: 1.25rem !important;
  padding-right: 1.875rem;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}

.mbnav ul.sub-menu:not(.simple-menu) > li.is-open > .mbnav__caret {
  transform: rotate(90deg) scale(-1) !important;
}

.mbnav ul.sub-menu:not(.simple-menu) > li:has(ul.inner-sub-menu) > .mbnav__caret {
  position: absolute;
  top: 4px;
  right: 0;
  margin: 0;
  color: #F7A052;
  transform: rotate(90deg);
  z-index: 2;
  transition: 0.35s ease 0s;
}

.mbnav ul.sub-menu:not(.simple-menu) li > ul.inner-sub-menu {
  margin: 1rem 0 .5rem;
  display: none;
  transition: none;
}

.mbnav ul li > ul.inner-sub-menu > li .title {
  font-family: Bai Jamjuree, sans-serif;
}

.mbnav ul li > ul.inner-sub-menu > li .desc {
  font-size: .875rem;
  font-weight: 500;
  font-family: Darker Grotesque, sans-serif;
  color: #F2EFEB;
}

.mbnav ul li.is-open>.menu-wrap {
  opacity: 1;
  visibility: visible
}

.mbnav ul li:not(.btn-wrap) {
  position: static;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.mbnav ul.menu-list > li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.mbnav ul.sub-menu li:not(:last-child) {
  margin-bottom: 1rem;
}

.mbnav ul.simple-menu ul.inner-sub-menu {
  padding: 16px 0 0 16px;
}

.mbnav ul li:not(.btn-wrap)::before,
.mbnav ul li:not(.btn-wrap).has-sub a::after {
  display: none
}

.mbnav ul li:not(.btn-wrap) .mbnav__caret::before,
.mbnav ul li:not(.btn-wrap) a::after {
  content: "b";
  font-family: lynx-2025 !important;
  font-style: normal !important;
  font-variant: normal !important;
  font-weight: 400 !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
}

.mbnav ul li:not(.btn-wrap) a {
  position: relative;
  display: block;
  padding: 0;
  color: currentColor;
  font-size: 1rem !important;
  line-height: 1.3;
  text-decoration: none !important;
  z-index: 2;
  cursor: pointer;
  /*   flex: 1 1 auto; */
  order: -1;
  text-transform: capitalize !important;
}

.mbnav ul li:not(.btn-wrap) a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: 0;
  display: none
}

.mbnav__caret {
  display: grid;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  height: auto;
  cursor: pointer;
  margin-left: 8px;
  z-index: 1
}

.mbnav__caret:not(.trigger-caret) {
  pointer-events: none
}

.color-mbnav .mbnav__caret::before {
  color: #1eb2a6 !important
}

.mbnav ul li:not(.btn-wrap).is-open>.mbnav__caret:after {
  transform: rotate(0)
}

/* .mbnav ul li:not(.btn-wrap).has-sub>a {
flex: 1 1 auto
}
*/
.mbnav ul li:not(.btn-wrap) .btn-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  margin: 0;
  transform: translateY(200%);
  transition: .4s ease-in-out
}

.mbnav ul li:not(.btn-wrap) .btn-wrap::before {
  display: none
}

.mbnav ul li:not(.btn-wrap) .btn-wrap a {
  display: block
}

.mbnav ul ul li {
  font-size: 16px
}

.mbnav ul ul li a {
  padding-left: 25px
}

.mbnav ul ul li li {
  font-size: 16px
}

.mbnav ul ul li li a {
  padding-left: 35px
}

/* .mbnav ul>li>.sub-menu {
position: absolute;
left: 100%
} */

.mbnav ul.sub-menu li:not(.back-title, .back-click) {
  font-weight: 400;
}

.mbnav ul .back-title {
  margin-bottom: 2rem !important;
  font-size: 20px !important;
  font-family: Bai Jamjuree,sans-serif;
}

.mbnav ul .back-click {
  margin-bottom: 2rem !important;
  width: 100%;
  order: -1;
  color: currentColor;
  align-items: center;
  font-family: Bai Jamjuree,sans-serif !important;
}

.mbnav ul .back-click::after {
  content: "a";
  font-family: lynx-2025 !important;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  text-transform: none;
  position: static;
  display: inline-block;
  width: auto;
  height: auto;
  color: #F7A052;
  margin-right: 8px;
  line-height: 1;
  font-size: 14px;
  border: 0;
  order: -1;
}

.mbnav__backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  transition: all .4s ease-in;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  z-index: -1
}

.mbnav__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all .4s ease-in;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  z-index: 99
}

.mbnav__overlay.is-show {
  opacity: 1;
  visibility: visible
}

.mbnav.is-open .btn-wrap {
  transform: translateY(0)
}

.mbnav.is-open .mbnav__state {
  right: 0
}

.mbnav.is-open .mbnav__backdrop {
  opacity: 1;
  z-index: 999;
  visibility: visible
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Template */
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.body.post-detail-page .wrapper {
  overflow: inherit;
}

.testimonial-details-hero-section,
.listing-hero-section {
  padding: 10.625rem 0 4.25rem;
  position: relative;
}

.testimonial-details-hero-section .tdhs-bg-img,
.listing-hero-section .lhs-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.testimonial-details-hero-section .tdhs-bg-img *,
.listing-hero-section .lhs-bg-img * {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.testimonial-details-hero-section .tdhs-bg-img img,
.listing-hero-section .lhs-bg-img img {
  object-fit: cover;
}

.listing-hero-section .breadcrumb-wrap {
  margin-bottom: 3.4375rem;
}

.listing-hero-section .lhs-content {
  max-width: 35.125rem;
}

.listing-hero-section .lhs-content h1 span {
  font-weight: 300;
}

.listing-hero-section .lhs-content .desc {
  font-size: 1.25rem;
}

.listing-hero-section .lhs-featured-post > .hs_cos_wrapper {
  display: none;
}

.listing-hero-section .lhs-featured-post {
  max-width: 22.8125rem;
  margin-left: auto;
}

.listing-hero-section .lhs-featured-post .lhs-featured-link {
  display: block;
  border-radius: .375rem;
  overflow: hidden;
}

.listing-hero-section .lhs-featured-post .lhs-featured-link:hover  {
  text-decoration: none;
}

.listing-hero-section .lhs-featured-post .lhs-featured-link:hover .lhs-featured-image img {
  transform: scale(1.1);
}

.listing-hero-section .lhs-featured-post .lhs-featured-link:hover h2 {
  text-decoration: underline;
}

.listing-hero-section .lhs-featured-post .lhs-featured-image {
  position: relative;
  padding-top: calc((232 / 365) * 100%);
  overflow: hidden;
}

.listing-hero-section .lhs-featured-post .lhs-featured-tag {
  left: 1.5625rem;
  position: absolute;
  top: .875rem;
  z-index: 1;
  color: #11100F;
  display: block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #5D9AC6;
  padding: .375rem 1rem;
  border-radius: .375rem;
  letter-spacing: 0.1em;
}

.listing-hero-section .lhs-featured-post .lhs-featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease 0s;
}

.listing-hero-section .lhs-featured-post .lhs-featured-content .lhs-asset-date {
  margin-bottom: .8125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing-hero-section .lhs-featured-post .lhs-featured-content .lhs-asset-date .post-date {
  font-size: .875rem;
  color: #F2EFEB;
}

.listing-hero-section .lhs-featured-post .lhs-featured-content {
  padding: 1rem 1rem 1.5625rem;
  background: linear-gradient(250.54deg, #4A525A -1.99%, #11100F 98.39%);
}

.listing-hero-section .lhs-featured-post .lhs-featured-content .eyebrow-text,
.listing-hero-section .lhs-featured-post .lhs-featured-content h2 {
  margin: 0;
}

.listing-post-section {
  padding: 3.4375rem 0 1.875rem;
}

.listing-post-section .lps-filter-block {
  margin-bottom: 2.125rem;
}

.listing-post-section .lps-filter-block-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}

.listing-post-section .lps-filter-block-wrap > div {
  padding: 0 1rem;
}

.listing-post-section .lps-filter-block-wrap .lps-search-bar,
.listing-post-section .lps-filter-block-wrap .lps-category-filter {
  width: 40%;
}

.listing-post-section .lps-filter-block-wrap .lps-category-filter-wrap {
  position: relative;
}

.listing-post-section .lps-category-filter .lps-filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1.1875rem;
  color: #040404;
  font-size: 1.25rem;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(175deg,#fff,#f7a052);
  cursor: pointer;
}

.listing-post-section .lps-category-filter .lps-filter-title.is-active {
  border-bottom: 0;
  margin-bottom: 1px;
}

.listing-post-section .lps-category-filter .lps-filter-title .icon-down-arrow {
  display: flex;
  font-size: .875rem;
  color: #F7A052;
  transition: 0.35s ease 0s;
}

.listing-post-section .lps-category-filter .lps-filter-title.is-active .icon-down-arrow {
  transform: scale(-1);
}

.listing-post-section .lps-category-filter .lps-filter-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0 1.1875rem .75rem 1.1875rem;
  width: 100%;
  height: auto;
  z-index: 999;
  border: 1px solid #f7a052;
  background-color: #fff;
  border-top: 0;
}

.listing-post-section .lps-category-filter .lps-filter-dropdown li {
  padding: 0;
}

.listing-post-section .lps-category-filter .lps-filter-dropdown a {
  font-size: 1.125rem;
  color: #040404;
  text-decoration: none;
}

.listing-post-section .lps-category-filter .lps-filter-dropdown a:hover {
  color: #f7a052;
}

.listing-post-section .lps-search-bar .hs-search-field__form {
  position: relative
}

.listing-post-section .lps-search-bar .hs-search-field__form input[type=text] {
  background-color: transparent;
  border: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(175deg,#fff,#f7a052);
  color: #040404 !important;
  font-size: 1.25rem;
  font-weight: 500;
  height: 56px;
  width: 100%;
  padding: .75rem 3.125rem .75rem 1.25rem;
}

.listing-post-section .lps-search-bar .hs-search-field__form input[type=text]:autofill {
  -webkit-text-fill-color: #040404 !important;
}

.listing-post-section .lps-search-bar .hs-search-field__form input[type=search]:focus {
  outline: none;
}

.listing-post-section .lps-search-bar .hs-search-field__form input[type=search]::placeholder {
  color: #040404;
}

.listing-post-section .lps-search-bar .hs-search-field__form .hs-search-field__button {
  background: transparent;
  border: none;
  color: #F7A052;
  display: flex;
  font-size: 18px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 1.1875rem;
  top: calc(50% - 9px);
}

.listing-post-section .lps-search-bar .hs-search-field__label,
.listing-post-section .lps-search-bar .hs-search-field__form .hs-search-field__button>.hs_cos_wrapper {
  display: none;
}

.listing-post-section .lps-search-bar .hs-search-field__form .hs-search-field__button:before {
  content: "\67";
  font-family: lynx-2025!important;
  font-style: normal!important;
  font-variant: normal!important;
  font-weight: 400!important;
  text-transform: none!important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.listing-post-section .lps-search-bar .hs-search-field__suggestions-container {
  display: none !important;
}

.listing-post-section .lps-filter-block-wrap .lps-clear-btn {
  flex: auto;
  align-self: center;
}

.listing-post-section .lps-filter-block-wrap .btn-clear {
  color: #040404;
}

.listing-post-section .lps-most-recnt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.listing-post-section .lps-most-recnt .filter-order {
  padding-top: 0;
  padding-right: 1.875em;
  padding-bottom: 0;
  color: #040404;
  height: auto;
}

.listing-post-section .lps-most-recnt .lps-total-posts {
  color: #040404;
}

.listing-post-section .lps-most-recnt .lps-filter-order {
  margin-left: auto;
}

.listing-back-to-top-btn {
  padding: .375rem 0 1.875rem;
  background-color: #fff;
  margin-top: -1px;
}

.listing-back-to-top-btn .btn {
  display: inline-flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  color: #040404;
}

.listing-back-to-top-btn .btn:hover .icon-down-arrow {
  color: #040404;
}

.listing-back-to-top-btn .btn .icon-down-arrow {
  line-height: 1;
  transform: scale(-1);
  display: flex;
  margin-left: 8px;
  color: #F7A052;
}

/* Post Listing Details */
.post-details-hero-section {
  position: relative;
  padding: 10.75rem 0 5.75rem;
}

.post-details-hero-section .pdhs-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-details-hero-section .pdhs-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details-hero-section .pdhs-wrap {
  max-width: 44.375rem;
  position: relative;
  z-index: 1;
}

.post-details-hero-section .pdhs-wrap .pdhs-asset-type {
  display: flex;
  align-items: center;
  margin-bottom: .9375rem;
}

.post-details-hero-section .pdhs-wrap .pdhs-asset-type .eyebrow-text {
  margin: 0;
  color: #fff;
}

.post-details-hero-section .pdhs-wrap .pdhs-asset-type .post-date {
  display: flex;
  font-size: .875rem;
}

.post-details-hero-section .pdhs-wrap .pdhs-asset-type .eyebrow-text + .post-date::before {
  content: '|';
  display: inline-block;
  margin: 0 .5rem;
  font-weight: 700;
  transform: skewX(16deg);
}

.post-details-hero-section .pdhs-wrap .desc {
  font-size: 1.25rem;
}

.post-details-hero-section .pdhs-wrap .auther-name {
  display: block;
  margin-top: 2rem;
  color: #fff;
}

.post-details-hero-section .pdhs-wrap .auther-name > div {
  display: inline-block;
}

.post-details-hero-section .pdhs-wrap .pdhs-tags {
  margin-top: 1.375rem;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* post details content section */
.testimonial-quote-section,
.post-details-content-section {
  padding: 3rem 0 7.5rem;
}

.post-details-content-section .pdcs-post-body .wysiwyg-section {
  margin: 0 0 4.5rem;
}

.post-details-content-section .pdcs-post-body .in-line-cta {
  padding: 0;
  margin: 4.5rem 0;
}

.post-details-content-section .pdcs-post-body .in-line-cta .cta-main {
  max-width: 100%;
}

.post-details-content-section .pdcs-post-body .container {
  width: 100%;
}

.post-details-content-section .pdcs-grid {
  --gridCol: 18rem;
  --gridGap: 1rem;
  display: grid;
  grid-template-columns: calc(100% - var(--gridCol) - var(--gridGap)) var(--gridCol);
  gap: var(--gridGap);
}

.post-details-content-section .pdcs-col-right-wrap {
  display: none;
  max-width: 11.5625rem;
  margin-left: auto;
  position: sticky;
  top: 7.5rem;
}

.post-details-content-section .pdcs-col-right-wrap:has(ul.pdcs-tab-link-list > li) {
  display: block;
}

.post-details-content-section .pdcs-col-right-wrap .eyebrow-text {
  margin-bottom: .8125rem;
}

.post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item.active .pdcs-tab-link {
  color: #040404;
}

.post-details-content-section .pdcs-col-right-wrap .pdcs-tab-link-list .pdcs-tab-link {
  color: #4A525A;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
}

.post-details-content-section .pdcs-post-auther {
  margin-top: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid #707070;
}

.post-details-content-section .pdcs-post-auther .blog-author-info {
  display: flex;
  align-items: center;
}

.post-details-content-section .pdcs-post-auther .blog-author-img {
  margin-right: .875rem;
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 100%;
  overflow: hidden;
}

.post-details-content-section .pdcs-post-auther .blog-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-details-content-section .pdcs-post-auther .blog-author-name {
  margin-bottom: 0;
}

.post-details-content-section .pdcs-post-auther .blog-author-bio {
  max-width: 57.625rem;
  margin-top: .75rem;
  margin-bottom: 0;
}

.post-details-content-section .pdcs-post-auther .btn-link {
  margin-top: 1rem;
}

.post-details-content-section .pdcs-social-share {
  margin-bottom: 3.125rem;
  display: flex;
  align-items: center;
}

.post-details-content-section .pdcs-social-share .eyebrow-text {
  margin-right: 2rem;
  margin-bottom: 0;
}

.post-details-content-section .pdcs-tab-link-wrap .pdcs-arrow {
  --swiper-theme-color: #040404;
  --swiper-navigation-size: 14px;
}

.post-details-content-section .pdcs-tab-link-wrap .pdcs-button-prev {
  left: 1.25rem;
}

.post-details-content-section .pdcs-tab-link-wrap .pdcs-button-next {
  right: 1.25rem;
}

.post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item {
  padding: 0;
}

/* Testimonial */
.testimonial-details-hero-section .tdhs-wrap {
  position: relative;
}

/* Listing Grid */
.listing-post-list .listing-post-item {
  margin-bottom: 2rem;
}

.listing-post-list .listing-post-box {
  min-height: 33.4375rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: .375rem;
  overflow: hidden;
  background: linear-gradient(250.54deg, #4A525A -1.99%, #11100F 98.39%);
  transition: 0.35s ease 0s;
}

.listing-post-list .eyebrow-text {
  margin-bottom: 0;
}

.listing-post-list .listing-asset-date {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .5rem; 
}

.listing-post-list .listing-asset-date .post-date {
  color: #F2EFEB;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.listing-post-list .listing-post-img-wrap {
  width: 100%;
}

.listing-post-list .listing-post-img {
  position: relative;
  display: block;
  padding-top: calc((243 / 390) * 100%);
  overflow: hidden;
}

.listing-post-list .listing-post-box:hover {
  transform: translateY(-15px);
  text-decoration: none;
}

.listing-post-list .listing-post-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: 0.35s ease 0s;
}

.listing-post-list .listing-post-content {
  width: 100%;
}

.listing-post-list .listing-post-content-wrap {
  flex: 1;
  width: 100%;
  padding: 2rem 2.125rem;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.listing-post-list .listing-post-content h2 {
  margin-bottom: .5rem;
  color: #fff;
}

.listing-post-list .listing-post-tags-wrap {
  position: relative;
  margin-top: 2.3125rem;
  padding-top: 1rem;
  width: 100%;
  border-top: 1px solid #fff;
  z-index: 1;
}

.listing-post-list .listing-post-tags-wrap::before {
  content: '';
  background-color: #f7a052;
  filter: blur(2px);
  height: 2px;
  top: -1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -2
}

.listing-post-list .listing-post-tags-wrap span {
  font-size: .75rem;
  color: #5D9AC6;
  text-transform: uppercase;
}

.listing-post-section .load-more-loader {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.listing-post-section .load-more-loader .loading {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 150px;
  border: 5px solid #040404;
  border-top-color: #f7a052;
  box-sizing: border-box;
  animation: loading 1.2s linear infinite;
  -webkit-animation: loading 1.2s linear infinite;
}

@keyframes loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

@media (max-width: 991px) {
  .listing-post-list .listing-post-content-wrap {
    padding: 2.0625rem 1.875rem;
  }

  .testimonial-details-hero-section,
  .listing-hero-section {
    padding: 8.75rem 0 3.125rem;
  }

  .post-details-hero-section {
    padding: 8.75rem 0 3.75rem;
  }

  .listing-post-section .lps-filter-block-wrap .lps-category-filter,
  .listing-post-section .lps-filter-block-wrap .lps-search-bar {
    width: 50%;
  }

  .listing-post-section .lps-filter-block-wrap .lps-clear-btn {
    width: 100%;
    margin-top: 1.5rem;
    text-align: center;
  }

  .post-details-content-section .pdcs-grid {
    --gridCol: 11.5625rem;
  }

  .post-details-content-section .pdcs-col-right-wrap {
    max-width: 100%;
  }

  .post-details-content-section {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 767px) {
  .listing-post-section {
    padding: 4.5rem 0;
  }

  .testimonial-details-hero-section,
  .listing-hero-section {
    padding: 6rem 0 1.4375rem;
  }

  .listing-hero-section .lhs-right {
    margin-top: 1.875rem;
  }

  .listing-hero-section .lhs-featured-post {
    margin-right: auto;
  }

  .post-details-hero-section {
    padding: 0 0 1.25rem;
    background: #fff;
  }

  .post-details-hero-section .pdhs-bg-img {
    position: relative;
    padding-top: calc((176 / 390) * 100%);
  }

  .post-details-hero-section .pdhs-bg-img img {
    position: absolute;
    top: 0;
    left: 0;
  }

  .post-details-hero-section .pdhs-wrap {
    margin-top: 2.875rem;
  }

  .post-details-hero-section .pdhs-wrap .auther-name,
  .post-details-hero-section .pdhs-wrap * {
    color: #040404;
  }

  .post-details-hero-section .pdhs-wrap .desc {
    color: #4A525A;
  }

  .listing-back-to-top-btn {
    display: none;
  }

  .listing-post-section .lps-filter-block-wrap .lps-search-bar {
    margin-top: 1.5rem;
  }

  .listing-post-section .lps-filter-block-wrap .lps-category-filter,
  .listing-post-section .lps-filter-block-wrap .lps-search-bar {
    width: 100%;
  }

  .post-details-content-section .pdcs-post-body .in-line-cta {
    margin: 2rem 0;
  }

  .post-details-content-section .pdcs-social-share {
    margin-bottom: 2.875rem;
  }

  .post-details-content-section .pdcs-grid {
    --gridGap: 0;
    grid-template-columns: 100%;
  }

  .post-details-content-section .pdcs-grid .pdcs-col-right {
    position: sticky;
    top: 56px;
    order: -1;
  }

  .post-details-content-section .pdcs-grid .pdcs-col-right:before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    right: -1rem;
    bottom: 0;
    background: #fff;
  }

  .post-details-content-section .pdcs-grid .pdcs-col-left {
    margin-top: 2.5rem;
  }

  .post-details-content-section .pdcs-grid .pdcs-tab-link-wrap {
    position: relative;
    padding: 1.5rem 2.8125rem;
    border: 1px solid #5D9AC6;
  }

  .post-details-content-section .pdcs-col-right-wrap .eyebrow-text {
    margin-bottom: 1rem;
  }

  .post-details-content-section {
    padding-top: 0;
    margin-top: -1px;
  }

  .post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item {
    text-align: center;
  }

  .post-details-content-section .pdcs-tabs-slider {
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .post-details-content-section .pdcs-col-right-wrap .pdcs-tab-link-list {
    display: block;
    border-left: 1px solid #4A525A;
  }

  .post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item {
    position: relative;
    padding: .25rem 0 .25rem 1.125rem;
  }

  .post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -2px;
    width: 4px;
    height: 0;
    background-color: #5D9AC6;
    transition: .35s ease 0s;
  }

  .post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item.active::before {
    height: 100%;
    top: 0;
  }

  .post-details-content-section .pdcs-tab-link-wrap .pdcs-arrow {
    display: none;
  }

  .post-details-content-section .pdcs-tab-link-list .pdcs-tab-link-item:not(:last-child) {
    margin-bottom: 1.0625rem;
  }

  .post-details-content-section .pdcs-post-auther .btn-link {
    margin-top: 1.5rem;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

.leadership-grid-hero-section {
  padding: 10.625rem 0 4.25rem;
}

.leadership-grid-hero-section .lghs-right .eyebrow-text {
  color: #F7A052;
}

.leadership-grid-hero-section .lghs-img-wrap {
  max-width: 23.4375rem;
  margin: 0 auto;
}

.leadership-grid-hero-section .lghs-img {
  position: relative;
  padding-top: 100%;
  border-radius: 6px;
  overflow: hidden;
}

.leadership-grid-hero-section .lghs-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-grid-bio-section .lgbs-stats-row .desc,
.leadership-grid-hero-section .lghs-right .title {
  font-family: Bai Jamjuree, sans-serif;
  font-weight: 400;
}

.leadership-grid-hero-section .lghs-social-link {
  margin-top: 1rem;
}

.leadership-grid-hero-section .lghs-social-link .link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.leadership-grid-hero-section .lghs-social-link .icon-linkedin {
  display: flex;
  font-size: 1.6875rem;
  margin-right: .625rem;
  color: #5D9AC6;
  transition: 0.35s ease 0s;
}

.leadership-grid-hero-section .lghs-social-link .link:hover .icon-linkedin {
  color: #f7a052;
}

.leadership-grid-bio-section {
  padding: 3rem 0;
}

.leadership-grid-bio-section .lgbs-stats-cel {
  margin-top: 2.75rem;
}

.leadership-grid-bio-section .lgbs-stats-cel .h1 span {
  font-weight: 500;
}

@media (max-width: 991px) {
  .leadership-grid-hero-section {
    padding: 6.25rem 0 3.125rem;
  }
}

@media (max-width: 767px) {

  .leadership-grid-hero-section .lghs-right {
    margin-top: 1.5rem;
  }
}

/* vendors */
/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:.175s ease-out both f-throwOutUp}.f-throwOutDown{animation:.175s ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, -150px, 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, 150px, 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease-out .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease-out both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) ease both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) ease both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-zooming-in .fancybox__viewport:not(.is-dragging) .fancybox__slide:not(.is-selected) .fancybox__content,.is-zooming-out .fancybox__slide:not(.is-selected) .fancybox__content{visibility:hidden}.is-animating .fancybox__content,.is-dragging .fancybox__content{filter:blur(0px);will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:.25s ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:.35s ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:.15s ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:.35s ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:100%;height:100%}.fancybox__container:not(.is-compact) .has-iframe .fancybox__content,.fancybox__container:not(.is-compact) .has-map .fancybox__content,.fancybox__container:not(.is-compact) .has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden}.f-thumbs__track{display:flex;will-change:transform}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);min-width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc(var(--left, 0)*1px);width:calc(100% - var(--width, 0)*1px);cursor:pointer}.is-modern .f-thumbs__slide{--clip-path: inset( 0 calc( (var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0)) * 0.5 * (1 - var(--progress, 0)) ) round var(--f-thumb-border-radius, 0) );transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern .f-thumbs__slide>*{clip-path:var(--clip-path)}.is-modern:not(.is-using-mouse) .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.is-modern.in-touch .f-thumbs__slide{filter:none}.is-modern.is-resting .f-thumbs__slide{transition:all .33s ease}.is-modern.is-resting .f-thumbs__slide>*{transition:all .33s ease}.f-thumbs__slide__button{appearance:none;width:100%;height:100%;margin:0;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{position:absolute;overflow:hidden;top:0;right:0;bottom:0;left:0;width:100%;height:100%;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover}.f-thumbs.is-horizontal .f-thumbs__track{margin:0 auto;padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;margin:auto 0;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 20px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}