/* Variables */ /* Mixins */ /* Functions */ /* Helpers */
.skew--top {
  -webkit-clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
}

.skew--clip {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
}

.img-responsive {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.img-rounded {
  border-radius: 0;
}

.img-circle {
  border-radius: 50%;
}

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

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

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

.dark-context {
  color: var(--lx-white) !important;
  background-color: var(--lx-secondary) !important;
}

.light-context {
  color: var(--lx-secondary) !important;
}

.text-light {
  color: var(--lx-white) !important;
}

.text-dark {
  color: var(--lx-secondary) !important;
}

.text-grey {
  color: var(--lx-grey-100) !important;
}

.text-accent {
  color: var(--lx-accent) !important;
}

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

.small {
  font-size: 80%;
}

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

.hide {
  display: none !important;
}

@media only screen and (max-width: 1024px) {
  .d-none-md {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .d-block-sm {
    display: block !important;
  }
}

.bg-contain {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.bg-repeat {
  background-repeat: repeat;
  background-size: auto;
  -webkit-background-size: auto;
  background-position: 0 0;
}

.card {
  padding: 60px;
  background-color: var(--lx-white);
}
@media only screen and (max-width: 1700px) {
  .card {
    padding: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .card {
    padding: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .card {
    padding: 16px;
  }
}
@media only screen and (max-width: 575px) {
  .card {
    margin-bottom: 12px;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

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

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

/* Marquee */
.js-marquee {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  width: 200%;
  overflow: hidden;
  white-space: nowrap;
}

.js-marquee-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: -100%;
  width: 100%;
  -webkit-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .js-marquee-inner {
    left: -150%;
  }
}
@media only screen and (max-width: 767px) {
  .js-marquee-inner {
    left: -200%;
  }
}

.js-marquee-item {
  position: absolute;
}

.swiper-container .swiper-pagination {
  position: static;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
}
.swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--lx-dark);
}

.swiper-button-prev.btn,
.swiper-button-next.btn {
  position: static;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-top: 0;
  padding: 0;
  width: 2.75rem;
  background-color: rgba(0, 0, 0, 0.25);
}
.swiper-button-prev.btn:focus,
.swiper-button-next.btn:focus {
  outline: none;
}
.swiper-button-prev.btn:hover, .swiper-button-prev.btn:focus,
.swiper-button-next.btn:hover,
.swiper-button-next.btn:focus {
  background-color: var(--lx-dark);
}
.swiper-button-prev.btn:after,
.swiper-button-next.btn:after {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Global style declarations */
:root {
  --scroll-bar-width: 0;
  --lx-primary: #F6163D;
  --lx-secondary: #ea556e;
  --lx-accent: #F6163D;
  --lx-state-error: #FF196C;
  --lx-state-success: #00DF9C;
  --lx-state-warning: #FF5E19;
  --lx-state-info: #092cff;
  --lx-orange: #c03c00;
  --lx-purple: #6319FF;
  --lx-text: #000;
  --lx-dark: #191919;
  --lx-black: #000;
  --lx-white: #fff;
  --lx-body-bg: #F0F0F0;
  --lx-grey-100: #ccc;
  --lx-grey-200: #bdbdbd;
  --lx-grey-300: #8d8d8d;
  --lx-grey-400: #7d7d7d;
  --lx-primary-font-family: "Satoshi", sans-serif;
  --lx-secondary-font-family: "Infinium Guardian", sans-serif;
  --lx-header-height: 75px;
  --lx-mobile-header-height: 60px;
  --lx-fixtures-widget-outer-height: 278px;
  --lx-fixtures-widget-inner-height: 160px;
  --lx-gradient-primary: linear-gradient(90deg, var(--lx-primary) 0%, var(--lx-secondary) 100%);
  --lx-gradient-2: linear-gradient(180deg, var(--lx-primary) 0%, var(--lx-secondary) 100%);
}

html,
:root {
  font-size: 16px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  position: relative;
  margin: 0;
  padding: 0;
  color: var(--lx-text);
  background-color: var(--lx-body-bg);
  overflow-x: hidden;
}

.grecaptcha-badge {
  z-index: 20;
}

a {
  color: var(--lx-accent);
  text-decoration: none;
  outline: 0;
  -webkit-transition: color 0.25s linear;
  -o-transition: color 0.25s linear;
  transition: color 0.25s linear;
}
a:hover, a:focus {
  color: var(--lx-primary);
  text-decoration: underline;
}

hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid var(--lx-grey-400);
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

::-moz-selection {
  background-color: var(--lx-primary);
  color: var(--lx-secondary);
}

::selection {
  background-color: var(--lx-primary);
  color: var(--lx-secondary);
}

::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}

::-webkit-scrollbar-thumb {
  border: 0.125rem solid transparent;
  background-clip: padding-box;
  background-color: var(--lx-grey-300);
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  border-radius: 0.75rem;
}

@font-face {
  font-family: "Satoshi";
  src: url(fonts/SatoshiRegular.eot);
  src: url(fonts/SatoshiRegular.eot?#iefix) format("embedded-opentype"), url(fonts/SatoshiRegular.woff2) format("woff2"), url(fonts/SatoshiRegular.woff) format("woff"), url(fonts/SatoshiRegular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url(fonts/SatoshiMedium.eot);
  src: url(fonts/SatoshiMedium.eot?#iefix) format("embedded-opentype"), url(fonts/SatoshiMedium.woff2) format("woff2"), url(fonts/SatoshiMedium.woff) format("woff"), url(fonts/SatoshiMedium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url(fonts/SatoshiBold.eot);
  src: url(fonts/SatoshiBold.eot?#iefix) format("embedded-opentype"), url(fonts/SatoshiBold.woff2) format("woff2"), url(fonts/SatoshiBold.woff) format("woff"), url(fonts/SatoshiBold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url(fonts/SatoshiBlack.eot);
  src: url(fonts/SatoshiBlack.eot?#iefix) format("embedded-opentype"), url(fonts/SatoshiBlack.woff) format("woff"), url(fonts/SatoshiBlack.ttf) format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Infinium Guardian";
  src: url(fonts/InfiniumGuardian.eot);
  src: url(fonts/InfiniumGuardian.eot?#iefix) format("embedded-opentype"), url(fonts/InfiniumGuardian.woff2) format("woff2"), url(fonts/InfiniumGuardian.woff) format("woff"), url(fonts/InfiniumGuardian.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Typography */
body {
  font-family: var(--lx-primary-font-family);
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 1rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0 0 1em;
  font-weight: 700;
  font-family: var(--lx-secondary-font-family);
  line-height: 1.1;
  color: inherit;
  letter-spacing: -0.05em;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none;
  color: inherit;
}
h1 a:hover, h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h6 a:hover,
h6 a:focus {
  text-decoration: none;
  color: var(--lx-accent);
}

h1,
.heading {
  font-size: 3rem;
}
@media only screen and (max-width: 1024px) {
  h1,
  .heading {
    font-size: 2.75rem;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .heading {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 575px) {
  h1,
  .heading {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 374px) {
  h1,
  .heading {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.75rem;
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 374px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 2.625rem;
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 2.375rem;
}
@media only screen and (max-width: 1024px) {
  h4 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  h4 {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 575px) {
  h4 {
    font-size: 1.625rem;
  }
}

h5 {
  font-size: 2rem;
}
@media only screen and (max-width: 1024px) {
  h5 {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  h5 {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 575px) {
  h5 {
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 1.875rem;
}
@media only screen and (max-width: 1024px) {
  h6 {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 767px) {
  h6 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 575px) {
  h6 {
    font-size: 1.375rem;
  }
}

b,
strong {
  font-weight: 700;
}

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

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

.btn {
  display: inline-block;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  padding: 1.25rem 1.625rem;
  background: var(--lx-accent);
  color: var(--lx-white);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: var(--lx-secondary-font-family);
  letter-spacing: -0.05em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  -webkit-transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .btn {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
  }
}
.btn:hover, .btn:focus {
  text-decoration: none;
  outline: none;
  color: var(--lx-white);
  background-color: var(--lx-secondary);
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.btn--link {
  color: currentColor;
  padding: 0;
  min-width: 10px;
  background-color: transparent;
}
.btn--link:hover, .btn--link:focus {
  background-color: transparent;
  color: currentColor;
}
.btn--full {
  width: 100%;
}

.scroll-up-button {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 2px;
  padding: 12px 10px;
  opacity: 0.8;
  z-index: 99;
  min-width: 20px;
}
.scroll-up-button.show {
  display: block;
}
.scroll-up-button:hover, .scroll-up-button:focus {
  opacity: 1;
}

.banner__inner {
  padding-top: 120px;
  padding-bottom: 120px;
}
.banner__row {
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
  width: 90%;
  max-width: 780px;
  text-align: center;
  background-color: var(--lx-white);
  color: var(--lx-text);
}
@media only screen and (max-width: 1024px) {
  .banner__row {
    padding: 40px 36px;
  }
}
@media only screen and (max-width: 767px) {
  .banner__row {
    padding: 30px 24px;
  }
}
.banner__title.heading {
  background: transparent;
  margin-bottom: 1rem;
  color: var(--lx-dark);
}
.banner__text {
  margin-bottom: 32px;
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.625rem;
}
@media only screen and (max-width: 575px) {
  .categories {
    gap: 0.25rem;
  }
}

.category-item {
  line-height: 1;
}
.category-item--dot {
  position: relative;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .category-item--dot {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .category-item--dot {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
.category-item--dot:first-child {
  padding-left: 0;
}
.category-item--dot:last-child {
  padding-right: 0;
}
.category-item--dot:last-child:after {
  display: none;
}
.category-item--dot:after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -0.625rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  color: var(--lx-white);
  border-radius: 50%;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .category-item--dot:after {
    right: -0.25rem;
  }
}
.category-item--dot .category-item__link {
  padding: 0;
  background-color: transparent;
}
.category-item--dot .category-item__link:hover, .category-item--dot .category-item__link:focus {
  background-color: transparent;
  color: var(--lx-dark);
}
.category-item__link {
  display: inline-block;
  vertical-align: top;
  padding: 0.625rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--lx-white);
  background-color: rgba(255, 255, 255, 0.25);
  -webkit-transition: color 0.25s, background-color 0.2s;
  -o-transition: color 0.25s, background-color 0.2s;
  transition: color 0.25s, background-color 0.2s;
}
@media only screen and (max-width: 1024px) {
  .category-item__link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .category-item__link {
    font-size: 0.875rem;
    padding: 0.375rem 0.5rem;
  }
}
.category-item__link.active, .category-item__link:hover, .category-item__link:focus {
  color: var(--lx-white);
  background-color: var(--lx-dark);
  text-decoration: none;
}

.datepicker {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
@media only screen and (max-width: 1500px) {
  .datepicker {
    gap: 0.75rem;
  }
}
@media only screen and (max-width: 575px) {
  .datepicker {
    gap: 0.625rem;
  }
}
.datepicker--single {
  position: relative;
  display: block;
}
.datepicker--single .datepicker__item {
  width: 100% !important;
  height: 4.375rem;
  font-size: 1.25rem;
}
.datepicker--single .swiper-button-prev,
.datepicker--single .swiper-button-next {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: transparent;
}
.datepicker--single .swiper-button-prev:hover, .datepicker--single .swiper-button-prev:focus,
.datepicker--single .swiper-button-next:hover,
.datepicker--single .swiper-button-next:focus {
  background-color: transparent;
}
.datepicker--single .swiper-button-next {
  left: auto;
  right: 0;
}
.datepicker__container.swiper-container {
  overflow: hidden;
}
.datepicker__item {
  padding: 0.625rem 1.25rem;
  width: 10.25rem !important;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--lx-white);
  text-align: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: color 0.25s, background-color 0.2s;
  -o-transition: color 0.25s, background-color 0.2s;
  transition: color 0.25s, background-color 0.2s;
}
.datepicker__item.current, .datepicker__item:hover, .datepicker__item:focus {
  color: var(--lx-white);
  background-color: var(--lx-black);
  text-decoration: none;
}

.read-more {
  display: grid;
  grid-template-columns: 13.125rem 1fr;
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  width: 100%;
  background: var(--lx-gradient-primary);
  -webkit-transition: background 0.25s;
  -o-transition: background 0.25s;
  transition: background 0.25s;
}
@media only screen and (max-width: 1024px) {
  .read-more {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .read-more {
    grid-template-columns: 8.5rem 1fr;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.read-more:hover, .read-more:focus {
  text-decoration: none;
  background: var(--lx-gradient-2);
}
.read-more__image {
  position: relative;
  padding-bottom: 59%;
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
}
.read-more__image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.read-more__image > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.read-more__image > picture > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.read-more__content {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 1.875rem;
}
@media only screen and (max-width: 1024px) {
  .read-more__content {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .read-more__content {
    padding: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .read-more__content {
    padding: 0.875rem;
  }
}
.read-more__title {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-bottom: 0.375rem;
  font-family: var(--lx-secondary-font-family);
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: var(--lx-dark);
}
@media only screen and (max-width: 767px) {
  .read-more__title {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  .read-more__title {
    font-size: 1rem;
  }
}
.read-more__description {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .read-more__description {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .read-more__description {
    display: none;
    font-size: 1rem;
  }
}

.heading {
  margin-bottom: 1.25rem;
  padding: 1.25rem;
  line-height: 1;
  text-transform: uppercase;
  background: var(--lx-gradient-primary);
  color: var(--lx-white);
  text-align: center;
  letter-spacing: normal;
}
@media only screen and (max-width: 767px) {
  .heading {
    margin-bottom: 1rem;
  }
}
.section:first-of-type .heading {
  background: rgba(255, 255, 255, 0.2);
}
.heading a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--lx-white);
  text-decoration: none;
}
.heading a:hover, .heading a:focus {
  color: var(--lx-accent);
}

.api-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--lx-fixtures-widget-outer-height);
  color: var(--lx-white);
  font-weight: 900;
  text-align: center;
}
.api-loader--inner {
  height: var(--lx-fixtures-widget-inner-height);
}

.api-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0.5rem 0;
  min-height: var(--lx-fixtures-widget-inner-height);
  color: var(--lx-white);
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.fixtures-widget {
  margin-bottom: 2rem;
}
.fixtures-widget__datepicker {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 1024px) {
  .fixtures-widget__datepicker {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .fixtures-widget__datepicker {
    margin-bottom: 1.5rem;
  }
}
.fixtures-widget__cards.swiper-initialized .swiper-wrapper {
  gap: 0;
}
.fixtures-widget__cards.swiper-container {
  overflow: hidden;
}
.fixtures-widget__cards .swiper-wrapper {
  gap: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .fixtures-widget__cards .swiper-wrapper {
    gap: 0.625rem;
  }
}
.fixtures-widget__pagination {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .fixtures-widget__pagination {
    margin-top: 1rem;
  }
}
.fixtures-widget__actions {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: right;
}
.fixtures-widget__actions a {
  color: var(--lx-white);
}
.fixtures-widget__actions a:hover, .fixtures-widget__actions a:focus {
  color: var(--lx-dark);
  text-decoration: none;
}

.fixtures-widget-card {
  padding: 1.25rem;
  background-color: var(--lx-white);
  text-align: center;
}
.fixtures-widget-card.swiper-slide {
  width: 325px !important;
  height: auto;
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card.swiper-slide {
    width: 260px !important;
  }
}
.fixtures-widget-card__league {
  margin-bottom: 1.175rem;
  font-size: 1rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card__league {
    font-size: 0.875rem;
  }
}
.fixtures-widget-card__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: 1rem;
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card__row {
    grid-gap: 0.5rem;
  }
}
.fixtures-widget-card__result-wrapper {
  -ms-flex-item-align: start;
      align-self: start;
}
.fixtures-widget-card__result {
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--lx-accent);
  line-height: 3.125rem;
  white-space: nowrap;
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card__result {
    font-size: 1rem;
  }
}
.fixtures-widget-card__result--empty {
  color: var(--lx-text);
}
.fixtures-widget-card__status {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--lx-text);
  line-height: 1.2;
}
.fixtures-widget-card__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
  gap: 0.75rem;
  line-height: 1.1;
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card__team {
    gap: 0.25rem;
  }
}
.fixtures-widget-card__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 3.125rem;
  height: 3.125rem;
}
.fixtures-widget-card__logo img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixtures-widget-card__name {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--lx-grey-300);
}
@media only screen and (max-width: 575px) {
  .fixtures-widget-card__name {
    font-size: 0.875rem;
  }
}

.loader {
  --loader-height: 16px;
  --loader-width: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  width: var(--loader-width);
  height: var(--loader-height);
  text-align: center;
  background-color: transparent;
}
.loader__ball {
  width: var(--loader-height);
  height: 100%;
  background-color: var(--lx-dark);
}
.loader__ball:first-child {
  -webkit-animation: load1 1s ease-in-out infinite;
          animation: load1 1s ease-in-out infinite;
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.loader__ball:nth-child(2) {
  -webkit-animation: load2 1s ease-in-out infinite;
          animation: load2 1s ease-in-out infinite;
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}
.loader__ball:last-child {
  -webkit-animation: load3 1s ease-in-out infinite;
          animation: load3 1s ease-in-out infinite;
}

@-webkit-keyframes load1 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.66;
  }
  66% {
    opacity: 0.33;
  }
  100% {
    opacity: 0;
  }
}
@keyframes load1 {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 0.66;
  }
  66% {
    opacity: 0.33;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes load2 {
  0% {
    opacity: 0.66;
  }
  33% {
    opacity: 0.33;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes load2 {
  0% {
    opacity: 0.66;
  }
  33% {
    opacity: 0.33;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes load3 {
  0% {
    opacity: 0.33;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.66;
  }
}
@keyframes load3 {
  0% {
    opacity: 0.33;
  }
  33% {
    opacity: 0;
  }
  66% {
    opacity: 1;
  }
  100% {
    opacity: 0.66;
  }
}
.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  outline: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  background-color: var(--lx-white);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  -o-transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85), -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
}
.modal--newsletter {
  top: auto;
  bottom: 0;
  height: auto;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.modal--newsletter .modal__inner {
  padding-top: 0;
  padding-bottom: 0;
}
.modal.show {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.modal__dialog {
  position: relative;
  margin: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
}
.modal__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-height: 100%;
  height: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: 0;
  border-radius: 0;
  outline: 0;
  overflow: hidden;
}
.modal__inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  height: 100%;
}
.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.modal__search {
  width: 100%;
}
.modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  line-height: 0;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255, 255, 255, 0.3);
  color: var(--lx-white);
  cursor: pointer;
}
@media only screen and (max-width: 1500px) {
  .modal__close {
    top: 0.75rem;
    right: 0.75rem;
  }
}
@media only screen and (max-width: 1024px) {
  .modal__close {
    width: 2rem;
    height: 2rem;
  }
}

body.modal-open {
  overflow: hidden !important;
  padding-right: var(--scroll-bar-width);
}
body.modal-open .modal__dialog--scrollable .modal__inner {
  overflow-y: auto;
}
body.modal-open .site-header {
  padding-right: var(--scroll-bar-width);
}

.post-image {
  background-color: var(--lx-primary);
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.post-image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-image > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.post-image > picture > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-image.active iframe {
  opacity: 1;
  z-index: 20;
}
.post-image a,
.post-image img,
.post-image iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.post-image a {
  z-index: 7;
}
.post-image a:hover img,
.post-image a:focus img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.post-image img {
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.25s linear;
  transition: -webkit-transform 0.25s linear;
  -o-transition: transform 0.25s linear;
  transition: transform 0.25s linear;
  transition: transform 0.25s linear, -webkit-transform 0.25s linear;
}
.post-image iframe {
  opacity: 0;
  z-index: 2;
  -webkit-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

.play-button {
  position: absolute;
  padding: 0;
  top: 50%;
  left: 50%;
  border: 0;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .play-button {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
  }
}
.play-button:hover, .play-button:focus {
  outline: none;
}
.play-button svg {
  width: 100%;
  height: auto;
}

.post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.post-item--md .post-item__content {
  padding: 1.25rem;
}
@media only screen and (max-width: 767px) {
  .post-item--md .post-item__content {
    padding: 1rem;
  }
}
.post-item--md .post-item__title {
  font-size: 1.25rem;
  font-family: var(--lx-primary-font-family);
  letter-spacing: normal;
  font-weight: 700;
}
@media only screen and (max-width: 575px) {
  .post-item--md .post-item__title {
    font-size: 1.125rem;
  }
}
.post-item--md .post-item__description {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .post-item--md .post-item__description {
    display: block;
  }
}
.post-item--sm {
  display: grid;
  grid-template-columns: 13.125rem 1fr;
}
@media only screen and (max-width: 575px) {
  .post-item--sm {
    grid-template-columns: 8.5rem 1fr;
  }
}
.post-item--sm .post-item__content {
  padding: 1rem 1.25rem;
}
@media only screen and (max-width: 767px) {
  .post-item--sm .post-item__content {
    padding: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .post-item--sm .post-item__content {
    padding: 0.875rem;
  }
}
.post-item--sm .post-item__title {
  font-size: 1.25rem;
  font-family: var(--lx-primary-font-family);
  letter-spacing: normal;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .post-item--sm .post-item__title {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 575px) {
  .post-item--sm .post-item__title {
    font-size: 1rem;
  }
}
.post-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 2.5rem;
  background-color: var(--lx-white);
}
@media only screen and (max-width: 1365px) {
  .post-item__content {
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .post-item__content {
    font-size: 1rem;
  }
}
.post-item__title {
  margin-bottom: 1rem;
  font-family: var(--lx-secondary-font-family);
  font-weight: 600;
  font-size: 2.125rem;
}
@media only screen and (max-width: 1024px) {
  .post-item__title {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575px) {
  .post-item__title {
    font-size: 1.125rem;
  }
}
.post-item__title a {
  color: var(--lx-black);
}
.post-item__title a:hover, .post-item__title a:focus {
  text-decoration: none;
  color: var(--lx-accent);
}
.post-item__description {
  margin-bottom: 1.125rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--lx-grey-300);
}
@media only screen and (max-width: 1024px) {
  .post-item__description {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 767px) {
  .post-item__description {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}
.post-item__meta {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lx-accent);
}
@media only screen and (max-width: 767px) {
  .post-item__meta {
    font-size: 0.875rem;
  }
}

.related {
  padding: 4rem 0 7.5rem;
  background: var(--lx-gradient-primary);
  overflow-x: hidden;
}
@media only screen and (max-width: 1024px) {
  .related {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .related {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}
.related__heading {
  margin-bottom: 3.125rem;
  background: transparent;
}
@media only screen and (max-width: 1024px) {
  .related__heading {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .related__heading {
    margin-bottom: 2rem;
  }
}
.related__row {
  margin-left: auto;
  margin-right: auto;
}
.related__pagination {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .related__pagination {
    margin-top: 2rem;
  }
}
.related__item {
  width: 27.5rem !important;
}
@media only screen and (max-width: 767px) {
  .related__item {
    width: 20.5rem !important;
  }
}
@media only screen and (max-width: 575px) {
  .related__item {
    width: 17.5rem !important;
  }
}
.related__item .post-item__description {
  display: none;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.375rem;
}
.socials__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  color: currentColor;
  -webkit-transition: color 0.25s ease;
  -o-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
.socials__link svg {
  width: 100%;
  height: auto;
}

.skeleton {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .skeleton {
    grid-template-columns: 1fr;
  }
}
.skeleton__card {
  grid-column: auto/span 2;
  background-color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .skeleton__card {
    grid-column: auto;
  }
}
.skeleton__card--base {
  grid-column: auto/span 3;
}
@media only screen and (max-width: 1024px) {
  .skeleton__card--base {
    grid-column: auto;
  }
}
.skeleton__image {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.skeleton__image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.skeleton__image > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.skeleton__image > picture > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.skeleton__content {
  padding: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .skeleton__content {
    font-size: 1rem;
  }
}
.skeleton__title {
  margin-bottom: 1rem;
  width: 80%;
  height: 2rem;
}
.skeleton__text div {
  margin-bottom: 0.5rem;
  width: 100%;
  height: 1.5rem;
}
.skeleton__text div:last-child {
  width: 40%;
}

.skeleton-ripple {
  position: relative;
  background: -o-linear-gradient(left, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background: -webkit-gradient(linear, left top, right top, color-stop(25%, #e0e0e0), color-stop(50%, #f5f5f5), color-stop(75%, #e0e0e0));
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  -webkit-animation: shimmer 1.5s infinite linear;
          animation: shimmer 1.5s infinite linear;
}

@-webkit-keyframes shimmer {
  0% {
    background-position: -100%;
  }
  100% {
    background-position: 100%;
  }
}

@keyframes shimmer {
  0% {
    background-position: -100%;
  }
  100% {
    background-position: 100%;
  }
}
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}
.tabs__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tabs__button {
  width: 100%;
}
.tabs__button.active {
  background-color: var(--lx-secondary);
}
.tabs__button.btn {
  padding-left: 1rem;
  padding-right: 1rem;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
@media only screen and (max-width: 575px) {
  .tags {
    gap: 0.625rem;
  }
}

.tag-item__link {
  font-family: var(--lx-secondary-font-family);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--lx-accent);
  -webkit-transition: color 0.25s;
  -o-transition: color 0.25s;
  transition: color 0.25s;
}
@media only screen and (max-width: 1024px) {
  .tag-item__link {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  .tag-item__link {
    font-size: 0.875rem;
  }
}
.tag-item__link:hover, .tag-item__link:focus {
  color: var(--lx-primary);
  text-decoration: none;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding: 0 2.5rem;
}
@media only screen and (max-width: 1365px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.container--sm {
  max-width: 948px;
}
.container--wide {
  max-width: 1920px;
}
.container--full {
  max-width: 100%;
}

.site-content {
  position: relative;
  padding-top: calc(var(--lx-header-height) * 2);
}
@media only screen and (max-width: 1024px) {
  .site-content {
    padding-top: calc(var(--lx-mobile-header-height) * 2);
  }
}
.site-content:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--lx-header-height);
  width: 100%;
  height: 36.875rem;
  background: var(--lx-gradient-2);
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .site-content:after {
    top: var(--lx-mobile-header-height);
  }
}

#site-page,
#page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
#site-page .site-content,
#page .site-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.section {
  padding-bottom: 4.75rem;
}
@media only screen and (max-width: 1024px) {
  .section {
    padding-bottom: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .section {
    padding-bottom: 3rem;
  }
}

.footer {
  margin-top: 2.25rem;
  background-color: var(--lx-black);
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .footer {
    margin-top: 1.5rem;
  }
}
body.home .footer, body.single-post .footer {
  margin-top: 0;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover, .footer a:focus {
  color: var(--lx-accent);
  text-decoration: underline;
}
.footer__top {
  position: relative;
  padding: 5.625rem 0;
}
@media only screen and (max-width: 1024px) {
  .footer__top {
    padding: 4rem 0 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__top {
    padding-bottom: 2rem;
  }
}
.footer__logo {
  margin-bottom: 2.5rem;
  width: auto;
  z-index: 10;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .footer__logo {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    margin-bottom: 1.5rem;
  }
}
.footer__logo img {
  width: auto;
  height: 100%;
}
.footer__title {
  margin-bottom: 2.5rem;
  font-family: var(--lx-secondary-font-family);
  text-transform: uppercase;
  color: var(--lx-accent);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .footer__title {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__title {
    margin-bottom: 1.5rem;
  }
}
.footer__bottom {
  padding: 4rem 0;
}
@media only screen and (max-width: 1024px) {
  .footer__bottom {
    padding: 3rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    padding: 2rem 0;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .footer__row {
    grid-template-columns: 1fr;
  }
}
.footer__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .footer__navigation {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer .menu-item {
  line-height: 1;
}
.footer .menu-item a {
  font-family: var(--lx-secondary-font-family);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
}
.footer .menu-item.current-menu-item {
  color: var(--lx-accent);
}
.footer .menu-item .sub-menu {
  display: none;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--lx-grey-200);
  font-weight: 500;
  font-size: 1rem;
}
@media only screen and (max-width: 1024px) {
  .footer__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    font-size: 0.875rem;
  }
}
.footer__info p:not(:last-of-type) {
  margin-bottom: 1em;
}
@media only screen and (max-width: 1024px) {
  .footer__info br {
    display: none;
  }
}

form p {
  margin: 0;
}
form .error {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 15px;
  color: var(--lx-state-error);
  margin-top: -10px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
input[type=time],
input[type=month],
input[type=password],
input[type=search],
input[type=url],
input[type=week],
input[type=datetime],
select,
textarea {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  padding: 8px 16px;
  height: 52px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
  font-family: var(--lx-primary-font-family);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  color: var(--lx-text);
  background-color: var(--lx-white);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=url],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 120px;
}

::-webkit-input-placeholder {
  color: rgba(var(--lx-text), 0.8);
}

::-moz-placeholder {
  color: rgba(var(--lx-text), 0.8);
}

:-ms-input-placeholder {
  color: rgba(var(--lx-text), 0.8);
}

:-moz-placeholder {
  color: rgba(var(--lx-text), 0.8);
}

.forminator-ui .forminator-response-message {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--lx-secondary);
  background-color: var(--lx-white);
}
.forminator-ui .forminator-response-message ul {
  margin: 0;
  padding: 10px;
}
.forminator-ui .forminator-error-message {
  margin-right: 10px;
  font-size: 12px;
  color: var(--lx-state-error);
}

.newsletter-form .forminator-ui {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .newsletter-form .forminator-ui {
    margin-top: 0;
  }
}
.newsletter-form .forminator-ui .forminator-response-message {
  display: none;
}
.newsletter-form .forminator-ui .forminator-label {
  display: none;
}
.newsletter-form .forminator-ui .forminator-row {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin-bottom: 0;
  width: calc(100% - 52px);
}
.newsletter-form .forminator-ui .forminator-row-last {
  width: 52px;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.newsletter-form .forminator-ui .forminator-button {
  font-size: 0;
  width: 52px;
  min-width: 52px;
  height: 52px;
  background-position: 50% 50%;
  background-size: 12px 19px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='19' fill='none'%3E%3Cpath d='m1 1 9 8.5L1 18' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--lx-black);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background-color 0.25s linear, -webkit-box-shadow 0.25s linear, -webkit-transform 0.1s ease-in-out;
  transition: background-color 0.25s linear, -webkit-box-shadow 0.25s linear, -webkit-transform 0.1s ease-in-out;
  -o-transition: background-color 0.25s linear, box-shadow 0.25s linear, transform 0.1s ease-in-out;
  transition: background-color 0.25s linear, box-shadow 0.25s linear, transform 0.1s ease-in-out;
  transition: background-color 0.25s linear, box-shadow 0.25s linear, transform 0.1s ease-in-out, -webkit-box-shadow 0.25s linear, -webkit-transform 0.1s ease-in-out;
  z-index: 999;
}
.header.fixed {
  position: fixed;
  -webkit-box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 7px 0 rgba(0, 0, 0, 0.5);
}
.header.fixed .header__logo {
  height: calc(var(--lx-header-height) - 1.25rem) !important;
}
.header__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2.5rem;
  padding-right: 1.5rem;
  -webkit-transition: padding 0.25s linear;
  -o-transition: padding 0.25s linear;
  transition: padding 0.25s linear;
}
@media only screen and (max-width: 1365px) {
  .header__row {
    gap: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header__row {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-right: 0;
  }
}
.header__logo-wrapper {
  position: relative;
  width: 10rem;
}
.header__logo img {
  width: auto;
  height: 100%;
}
.header__menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
@media (min-width: 992px) {
  .header__menu-wrapper {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-top: 0;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    width: 100%;
    max-width: 100%;
    padding: calc(var(--lx-mobile-header-height) + 3rem) 0 4.5rem;
    z-index: 5;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    background: transparent;
    overflow: hidden;
    -webkit-transition: background-color 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
    transition: background-color 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out, background-color 0.6s ease-in-out;
    transition: transform 0.3s ease-in-out, background-color 0.6s ease-in-out;
    transition: transform 0.3s ease-in-out, background-color 0.6s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
}
.header__menu-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  width: 100%;
  height: var(--lx-mobile-header-height);
  background-color: var(--lx-black);
}
.header__menu-wrapper.active:before {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper.active {
    background-color: var(--lx-dark);
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper.active .header__navigation {
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper.out {
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper.out .header__navigation {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu-wrapper.out .header__actions--mobile {
    display: none;
  }
}
.header__navigation {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
@media only screen and (max-width: 1365px) {
  .header__navigation {
    margin-right: -0.3125rem;
    margin-left: -0.3125rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding-bottom: 6.5rem;
    width: 100%;
    overflow: auto;
    -webkit-animation-name: slideFromBottom;
            animation-name: slideFromBottom;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
  }
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .header__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 2.25rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header__menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.header__menu > .menu-item {
  padding: 1.625rem 0.5rem;
}
@media only screen and (max-width: 1365px) {
  .header__menu > .menu-item {
    padding-left: 0.3125rem;
    padding-right: 0.3125rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header__menu > .menu-item {
    padding: 0;
  }
}
.header__menu > .menu-item.menu-item-has-children:hover > a {
  color: var(--lx-accent);
}
.header__menu > .menu-item > a + .sub-menu {
  display: none;
}
.header .menu-item {
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .header .menu-item {
    width: 100%;
  }
}
.header .menu-item.current-menu-item > a, .header .menu-item.current-menu-ancestor > a {
  color: var(--lx-accent);
}
.header .menu-item a {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 600;
  color: var(--lx-white);
  font-family: var(--lx-secondary-font-family);
  text-decoration: none;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  text-transform: uppercase;
}
@media only screen and (max-width: 1365px) {
  .header .menu-item a {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header .menu-item a {
    font-size: 1rem;
  }
}
.header .menu-item a:hover, .header .menu-item a:focus {
  text-decoration: none;
  color: var(--lx-accent);
}
.header .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.25rem;
  list-style: none;
}
.header .sub-menu a {
  font-size: 1.125rem;
  font-family: var(--lx-primary-font-family);
  font-weight: 500;
  text-transform: none;
}
.header .sub-menu .sub-menu {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 1024px) {
  .header .sub-menu .sub-menu {
    padding-left: 0;
  }
}
.header .sub-menu .sub-menu a {
  font-size: 0.875em;
}
.header .sub-menu-wrapper {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  padding: 2.5rem 0;
  background-color: var(--lx-dark);
}
@media only screen and (max-width: 1024px) {
  .header .sub-menu-wrapper {
    position: relative;
    padding-top: 0.25rem;
    padding-bottom: 0.5rem;
    background-color: transparent;
  }
}
.header .sub-menu-wrapper.active {
  display: block;
}
.header .sub-menu-wrapper .sub-menu-inner {
  margin: 0 auto;
  padding-left: 11.875rem;
  padding-right: 11.875rem;
}
@media only screen and (max-width: 1365px) {
  .header .sub-menu-wrapper .sub-menu-inner {
    padding-left: 9.375rem;
    padding-right: 9.375rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header .sub-menu-wrapper .sub-menu-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header .sub-menu-wrapper .sub-menu-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.header .sub-menu-wrapper .sub-menu-inner > .sub-menu {
  padding-left: 0;
  list-style: none;
}
.header .menu-col-title {
  margin-bottom: 1.5em;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--lx-white);
}
@media only screen and (max-width: 1365px) {
  .header .menu-col-title {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header .menu-col-title {
    display: none;
  }
}
.header__actions {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-right: auto;
  gap: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 250px;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .header__actions {
    display: none;
  }
}
.header__actions--mobile {
  display: none;
  -webkit-animation-name: slideFromBottom;
  animation-name: slideFromBottom;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .header__actions--mobile {
    position: absolute;
    display: block;
    right: auto;
    top: auto;
    left: 50%;
    bottom: 30px;
    width: 60%;
    height: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 20;
  }
}
@media only screen and (max-width: 1024px) and (max-width: 767px) {
  .header__actions--mobile {
    width: 80%;
  }
}
.header__search {
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 2;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  -o-transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
  transition: transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85), -webkit-transform 0.6s cubic-bezier(0.9, 0.1, 0.14, 0.85);
}
@media only screen and (max-width: 1024px) {
  .header__search {
    display: none;
  }
}
.header__search.active {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.header__search .search-field {
  background-color: var(--lx-black);
}
@media only screen and (max-width: 1024px) {
  .header__search-icon {
    display: none;
  }
}
.header__search-icon.btn {
  padding: 0;
  line-height: 0;
  text-align: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lx-white);
}
.header__search-icon.btn:hover, .header__search-icon.btn:focus {
  background-color: transparent;
  color: var(--lx-accent);
}
.header__search-icon.btn.active .header__btn-search {
  display: none;
}
.header__search-icon.btn.active .header__btn-close {
  display: inline;
}
.header__search-icon svg {
  width: 100%;
  height: auto;
}
.header__search-icon .header__btn-close {
  display: none;
}
.header__burger {
  position: relative;
  display: none;
  height: 2.5rem;
  width: 2.5rem;
  background-color: var(--lx-secondary);
  border-radius: 50%;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .header__burger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.header__burger span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 16px;
  height: 1px;
  width: 1rem;
  background-color: var(--lx-white);
  cursor: pointer;
}
.header__burger span:nth-child(2) {
  top: 22px;
}
.header__burger.active span {
  top: 19px;
}
.header__burger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.search-field {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.search-field input {
  display: inline-block;
  vertical-align: top;
  border: 0;
  border-bottom: 1px solid var(--lx-grey-400);
  padding: 0.5rem 2rem 0.5rem 0;
  height: auto;
  color: var(--lx-white);
  width: 100%;
  font-size: 1.125rem;
  background-color: transparent;
  line-height: 1.1;
}
@media only screen and (max-width: 575px) {
  .search-field input {
    font-size: 1rem;
  }
}
.search-field input ::-webkit-input-placeholder {
  color: rgba(var(--lx-white), 0.8);
}
.search-field input ::-moz-placeholder {
  color: rgba(var(--lx-white), 0.8);
}
.search-field input :-ms-input-placeholder {
  color: rgba(var(--lx-white), 0.8);
}
.search-field input :-moz-placeholder {
  color: rgba(var(--lx-white), 0.8);
}
.search-field__submit {
  position: absolute;
  right: 0;
  top: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: -0.75rem;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lx-white);
  z-index: 10;
}
.search-field__submit:hover, .search-field__submit:focus {
  color: var(--lx-accent);
}
.search-field__submit svg {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  body.menu-open {
    overflow: hidden;
  }
}

.posts--blog {
  margin-bottom: 6.25rem;
}
@media only screen and (max-width: 1024px) {
  .posts--blog {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .posts--blog {
    margin-bottom: 3rem;
  }
}
.posts--blog .posts__heading {
  margin-bottom: 1.785rem;
  padding: 0;
  text-align: left;
  background: none;
  color: var(--lx-white);
}
@media only screen and (max-width: 767px) {
  .posts--blog .posts__heading {
    margin-bottom: 1.25rem;
  }
}
.posts--blog .posts__heading > span {
  color: var(--lx-accent);
}
.posts__categories {
  margin-bottom: 2.875rem;
}
@media only screen and (max-width: 767px) {
  .posts__categories {
    margin-bottom: 2rem;
  }
}
.posts__categories.categories {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow-x: auto;
}
.posts__categories.categories::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.posts__categories.categories::-webkit-scrollbar-thumb {
  border: 0.125rem solid transparent;
  background-clip: padding-box;
  background-color: var(--lx-accent);
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  border-radius: 0.75rem;
}
.posts__categories .category-item__link {
  white-space: nowrap;
}
.posts__row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .posts__row {
    grid-template-columns: 1fr;
  }
}
.posts__item {
  grid-column: auto/span 2;
}
@media only screen and (max-width: 1024px) {
  .posts__item {
    grid-column: auto;
  }
}
.posts__item.post-item--base {
  grid-column: auto/span 3;
}
@media only screen and (max-width: 1024px) {
  .posts__item.post-item--base {
    grid-column: auto;
  }
}
.posts__load-more {
  padding-top: 2.5rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .posts__load-more {
    padding-top: 2rem;
  }
}
.posts__pagination {
  padding-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .posts__pagination {
    padding-top: 2rem;
  }
}
.posts__pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.posts__pagination .page-numbers {
  display: inline-block;
  vertical-align: top;
  margin: 0 6px;
  padding: 6px;
  color: var(--lx-grey-100);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  text-decoration: none;
}
.posts__pagination .page-numbers:hover, .posts__pagination .page-numbers:focus, .posts__pagination .page-numbers.current {
  color: var(--lx-black);
}

.fixtures__title {
  margin-bottom: 2rem;
  color: var(--lx-white);
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .fixtures__title {
    margin-bottom: 1.5rem;
  }
}
.fixtures__wrapper {
  display: grid;
  grid-template-columns: 1fr 20rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1365px) {
  .fixtures__wrapper {
    grid-template-columns: 1fr;
    grid-gap: 2rem;
  }
}
.fixtures__selected {
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .fixtures__selected {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 575px) {
  .fixtures__selected {
    margin-bottom: 1rem;
    font-size: 1.125rem;
  }
}
.fixtures__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}
.fixtures__side {
  position: relative;
  top: 3.875rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-gap: 0.625rem;
}
@media only screen and (max-width: 1365px) {
  .fixtures__side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    top: 0;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media only screen and (max-width: 767px) {
  .fixtures__side {
    grid-template-columns: minmax(0, 1fr);
  }
}

.fixtures-card {
  display: grid;
  grid-template-columns: 20% 1fr 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1rem;
  padding: 0.875rem 2.5rem;
  background-color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .fixtures-card {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .fixtures-card {
    padding: 1rem 0.5rem;
  }
}
.fixtures-card__league {
  margin-bottom: 0;
  font-size: 1.125rem;
  font-family: var(--lx-primary-font-family);
}
@media only screen and (max-width: 1500px) {
  .fixtures-card__league {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .fixtures-card__league {
    display: none;
  }
}
@media only screen and (max-width: 1024px) {
  .fixtures-card__actions {
    display: none;
  }
}
.fixtures-card__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 1rem;
}
@media only screen and (max-width: 575px) {
  .fixtures-card__row {
    grid-gap: 0.5rem;
  }
}
.fixtures-card__result-wrapper {
  text-align: center;
}
.fixtures-card__result {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--lx-accent);
  white-space: nowrap;
  font-family: var(--lx-secondary-font-family);
}
@media only screen and (max-width: 1024px) {
  .fixtures-card__result {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 374px) {
  .fixtures-card__result {
    font-size: 0.75rem;
  }
}
.fixtures-card__result--empty {
  color: var(--lx-text);
}
.fixtures-card__status {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--lx-text);
  line-height: 1.2;
}
@media only screen and (max-width: 1024px) {
  .fixtures-card__status {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 575px) {
  .fixtures-card__status {
    font-size: 0.625rem;
  }
}
.fixtures-card__team {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  gap: 1rem;
  line-height: 1.1;
}
@media only screen and (max-width: 575px) {
  .fixtures-card__team {
    gap: 0.5rem;
  }
}
@media only screen and (max-width: 374px) {
  .fixtures-card__team {
    gap: 0.25rem;
  }
}
.fixtures-card__team:first-child {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.fixtures-card__team:first-child .fixtures-card__name {
  text-align: right;
}
.fixtures-card__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 3.125rem;
  height: 3.125rem;
}
@media only screen and (max-width: 575px) {
  .fixtures-card__logo {
    width: 2rem;
    height: 2rem;
  }
}
.fixtures-card__logo img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.fixtures-card__name {
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--lx-secondary-font-family);
  word-break: break-word;
  text-transform: uppercase;
}
@media only screen and (max-width: 1500px) {
  .fixtures-card__name {
    font-size: 0.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .fixtures-card__name {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 374px) {
  .fixtures-card__name {
    font-size: 0.75rem;
  }
}

.home-tags {
  padding-top: 0.875rem;
}
.home-tags__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 1.25rem;
  padding: 2.5rem 1rem;
  background: var(--lx-gradient-primary);
  overflow-x: auto;
}
@media only screen and (max-width: 1024px) {
  .home-tags__row {
    gap: 2rem;
  }
}
.home-tags__row::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.home-tags__row::-webkit-scrollbar-thumb {
  border: 0.125rem solid transparent;
  background-clip: padding-box;
  background-color: var(--lx-accent);
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  border-radius: 0.75rem;
}
.home-tags__item {
  width: 100%;
  text-align: center;
}

.home-tag {
  line-height: 1;
}
.home-tag__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .home-tag__link {
    gap: 1rem;
  }
}
.home-tag__link:hover, .home-tag__link:focus {
  text-decoration: none;
  color: var(--lx-accent);
}
.home-tag__image {
  max-width: 4.5rem;
}
.home-tag__caption {
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}
@media only screen and (max-width: 1024px) {
  .home-tag__caption {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-tag__caption {
    font-size: 0.875rem;
  }
}

.trending__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .trending__row {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 575px) {
  .trending__row {
    grid-gap: 1rem;
  }
}

.top-news__wrapper {
  display: grid;
  grid-template-columns: 1fr 20rem;
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .top-news__wrapper {
    grid-template-columns: 1fr;
  }
}
.top-news__row {
  display: grid;
  grid-template-columns: 1fr 20rem;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .top-news__row {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media only screen and (max-width: 767px) {
  .top-news__row {
    grid-template-columns: 1fr;
  }
}
.top-news__side {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .top-news__side {
    display: none;
  }
}
.top-news__item:first-child {
  grid-area: 1/1/-1/2;
}
@media only screen and (max-width: 1024px) {
  .top-news__item:first-child {
    grid-area: 1/1/2/-1;
  }
}
@media only screen and (max-width: 1024px) {
  .top-news__item:first-child .post-item__title {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-news__item:first-child .post-item__title {
    font-size: 1.625rem;
  }
}
.top-news__item:first-child .post-item__description {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 1024px) {
  .top-news__item:first-child .post-item__description {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .top-news__item:first-child .post-item__description {
    margin-bottom: 1rem;
  }
}
.top-news__item:not(:first-child) .post-item__description {
  display: none;
}
@media only screen and (max-width: 767px) {
  .top-news__item:not(:first-child) .post-item__description {
    display: block;
  }
}

.cta {
  margin-top: 2.875rem;
  background: var(--lx-gradient-primary);
}
@media only screen and (max-width: 1024px) {
  .cta {
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .cta {
    margin-top: 1.875rem;
  }
}
.cta__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .cta__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 1.5rem;
  width: 50%;
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .cta__content {
    padding: 4rem 1rem;
    width: 100%;
  }
}
.cta__image-wrapper {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
@media only screen and (max-width: 1365px) {
  .cta__image-wrapper {
    width: 70%;
  }
}
@media only screen and (max-width: 1024px) {
  .cta__image-wrapper {
    width: 100%;
  }
}
.cta__image {
  position: relative;
  padding-bottom: 57.8%;
  overflow: hidden;
}
.cta__image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__image > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.cta__image > picture > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta__icon {
  margin-bottom: 3.125rem;
  width: 3.875rem;
}
@media only screen and (max-width: 1024px) {
  .cta__icon {
    margin-bottom: 2.5rem;
  }
}
.cta__icon svg {
  width: 100%;
  height: auto;
}
.cta__title {
  margin-bottom: 2.25rem;
  color: var(--lx-white);
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .cta__title {
    margin-bottom: 1.875rem;
  }
}
.cta__link {
  text-decoration: none;
  color: var(--lx-white);
  font-weight: 500;
  font-size: 1.25rem;
}
.cta__link:hover, .cta__link:focus {
  text-decoration: none;
  color: var(--lx-accent);
}

.article__categories {
  margin-bottom: 2.25rem;
}
.article__categories {
  margin-bottom: 2.25rem;
}
@media only screen and (max-width: 767px) {
  .article__categories {
    margin-bottom: 1.5rem;
  }
}
.article__header {
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .article__header {
    margin-bottom: 2rem;
  }
}
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  color: var(--lx-black);
  margin-top: 1.25em;
}
.article h2:first-child,
.article h3:first-child,
.article h4:first-child,
.article h5:first-child,
.article h6:first-child {
  margin-top: 0;
}
.article__breadcrumbs {
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  color: var(--lx-secondary);
}
@media only screen and (max-width: 767px) {
  .article__breadcrumbs {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.article__breadcrumbs span {
  display: inline;
}
.article__breadcrumbs a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-right: 38px;
  color: inherit;
  text-decoration: none;
}
.article__breadcrumbs a:hover, .article__breadcrumbs a:focus {
  color: var(--lx-accent);
  text-decoration: none;
}
.article__breadcrumbs a[href$="blog/"] {
  display: none;
}
.article__breadcrumbs a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -4px;
  width: 6px;
  height: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='8' viewBox='0 0 6 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 4L1 7' stroke='%23848484' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.article__title {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--lx-white);
  text-transform: uppercase;
}
.article__updated {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--lx-accent);
}
@media only screen and (max-width: 767px) {
  .article__updated {
    margin-top: 1rem;
  }
}
.article__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--lx-white);
}
@media only screen and (max-width: 1024px) {
  .article__meta {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__meta {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
  }
}
.article__meta-author {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding-right: 3rem;
}
@media only screen and (max-width: 1024px) {
  .article__meta-author {
    gap: 0.5rem;
  }
}
.article__meta-author:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.1875rem;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  background-color: var(--lx-white);
  border-radius: 50%;
}
.article__meta-author a {
  color: var(--lx-white);
}
.article__meta-author a:hover, .article__meta-author a:focus {
  color: var(--lx-dark);
  text-decoration: none;
}
.article__excerpt {
  margin-bottom: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lx-black);
}
@media only screen and (max-width: 1024px) {
  .article__excerpt {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__excerpt {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  }
}
.article__image {
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  padding-bottom: 0;
}
.article__image img {
  position: static;
}
.format-video .article__image {
  padding-bottom: 56.25%;
}
.format-video .article__image img {
  position: absolute;
}
.article__credits {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  color: var(--lx-white);
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10;
}
.article__content {
  padding: 3.75rem 6rem 5rem;
  background-color: var(--lx-white);
  color: var(--lx-text);
}
@media only screen and (max-width: 1500px) {
  .article__content {
    padding: 3rem 3.5rem 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .article__content {
    padding: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__content {
    padding: 2rem;
  }
}
@media only screen and (max-width: 575px) {
  .article__content {
    padding: 2rem 1rem;
  }
}
.article__content p,
.article__content li {
  -webkit-transition: color 0.1s linear;
  -o-transition: color 0.1s linear;
  transition: color 0.1s linear;
}
.article__content p > img {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.article__content p .aligncenter {
  margin-right: auto;
  margin-left: auto;
}
.article__content p .alignright {
  margin-left: auto;
}
.article__content .wp-caption {
  margin: 36px 0;
  max-width: 100%;
  width: 100% !important;
}
@media only screen and (max-width: 767px) {
  .article__content .wp-caption {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.article__content .wp-caption.size-full {
  width: 100%;
}
.article__content .wp-caption.size-full img {
  width: 100%;
}
.article__content .wp-caption .aligncenter {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.article__content .wp-caption .alignright {
  text-align: right;
  margin-left: auto;
}
.article__content blockquote {
  position: relative;
  margin: 4.375rem 0 4.375rem;
  padding-left: 6.875rem;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--lx-black);
  font-family: var(--lx-secondary-font-family);
}
@media only screen and (max-width: 1365px) {
  .article__content blockquote {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
    padding-left: 5rem;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__content blockquote {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
    padding-left: 3.5rem;
    font-size: 1.5rem;
  }
}
.article__content blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.375rem;
  height: 3.25rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml,<svg width="71" height="52" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.628 20.8v2.925h13.71V52H0V21.125C0 6.825 7.998 0 21.871 0h8.65v15.762h-7.997c-3.427 0-4.896.813-4.896 5.038Zm39.662 2.925H71V52H39.662V21.125C39.662 6.825 47.66 0 61.533 0h8.65v15.762h-7.997c-3.427 0-4.896.813-4.896 5.038v2.925Z" fill="%23F6163D"/></svg>');
}
@media only screen and (max-width: 1365px) {
  .article__content blockquote:before {
    width: 3.5rem;
    height: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__content blockquote:before {
    width: 2.5rem;
    height: 2rem;
  }
}
.article__content iframe {
  display: block;
  max-width: 100%;
  margin: 32px auto;
}
@media only screen and (max-width: 767px) {
  .article__content iframe {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.article__footer {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .article__footer {
    margin-top: 2rem;
  }
}
.article__tags {
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 1024px) {
  .article__tags {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__tags {
    margin-bottom: 2.5rem;
  }
}
.article__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.article__share > span {
  font-size: 1.125rem;
  color: var(--lx-black);
  font-family: var(--lx-secondary-font-family);
  font-weight: 600;
  text-transform: uppercase;
}
.article__share .addtoany_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .article__share .addtoany_list {
    gap: 0.375rem;
  }
}
.article__share .addtoany_list a {
  padding: 0;
  line-height: 0;
}
.article__share .addtoany_list a:hover span, .article__share .addtoany_list a:focus span {
  background-color: var(--lx-accent) !important;
}
.article__share .addtoany_list a span {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 3rem !important;
  height: 2rem !important;
  background-color: var(--lx-primary) !important;
  border-radius: 0.25rem !important;
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
.article__share .addtoany_list a svg {
  width: 1.5rem;
  height: auto;
}
.article__navigation {
  margin-top: 6.25rem;
}
@media only screen and (max-width: 1024px) {
  .article__navigation {
    margin-top: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__navigation {
    margin-top: 3rem;
  }
}
.article__navigation .navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
}
@media only screen and (max-width: 575px) {
  .article__navigation .navigation .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.article__navigation .navigation .nav-links .nav-next {
  margin-left: auto;
}
.article__navigation .navigation .nav-links a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
}
.article__navigation .navigation .nav-links a .nav-title {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 1.25rem 1.625rem;
}
@media only screen and (max-width: 1024px) {
  .article__navigation .navigation .nav-links a .nav-title {
    padding: 1.125rem 1.25rem;
    font-size: 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .article__navigation .navigation .nav-links a .nav-title {
    padding: 1.125rem 0.75rem;
    font-size: 0.75rem;
  }
}
.article__navigation .navigation .nav-links a .nav-image-wrapper {
  display: block;
  width: 7.25rem;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .article__navigation .navigation .nav-links a .nav-image-wrapper {
    width: 6.5rem;
  }
}
.article__navigation .navigation .nav-links a .nav-image {
  position: relative;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
}
.article__navigation .navigation .nav-links a .nav-image > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.article__navigation .navigation .nav-links a .nav-image > picture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.article__navigation .navigation .nav-links a .nav-image > picture > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-caption-text {
  margin-top: 6px;
  font-family: var(--lx-secondary-font-family);
  color: var(--lx-grey-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.lynx-list {
  margin: 40px 0;
  padding: 32px 48px;
  background-color: var(--lx-grey-300);
}
@media only screen and (max-width: 767px) {
  .lynx-list {
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 24px 32px;
  }
}
.lynx-list > p {
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
  color: inherit !important;
}
.lynx-list ul,
.lynx-list ol {
  margin: 0;
}
.lynx-list ul {
  padding: 0;
  list-style: none;
}
.lynx-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 21px;
  color: var(--lx-dark);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-transition: color 0.1s linear;
  -o-transition: color 0.1s linear;
  transition: color 0.1s linear;
}
.lynx-list li:last-child {
  margin-bottom: 0;
}
.lynx-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  background-color: var(--lx-primary);
  -webkit-transition: background-color 0.1s linear;
  -o-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
}
.lynx-list li a {
  color: inherit;
}
.lynx-list li a:hover, .lynx-list li a:focus {
  color: var(--lx-accent);
}

/* Post Navigation */
body.single .navigation {
  border: 0;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 767px) {
  body.single .navigation {
    margin-top: 1rem;
  }
}
body.single .navigation__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.625rem;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
@media only screen and (max-width: 374px) {
  body.single .navigation__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
body.single .navigation a {
  display: inline-block;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  padding: 1.25rem 1.625rem;
  background: var(--lx-accent);
  color: var(--lx-white);
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: var(--lx-secondary-font-family);
  letter-spacing: -0.05em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-transform: uppercase;
  -webkit-transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out, color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
  max-width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.single .navigation a {
    padding: 1.125rem 1.25rem;
    font-size: 0.875rem;
  }
}
body.single .navigation a:hover, body.single .navigation a:focus {
  text-decoration: none;
  outline: none;
  color: var(--lx-white);
  background-color: var(--lx-secondary);
}
body.single .navigation a:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
@media only screen and (max-width: 374px) {
  body.single .navigation .post-page-numbers {
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 374px) {
  body.single .navigation .post-page-numbers:last-child {
    margin-bottom: 0;
  }
}
body.single .navigation .post-page-numbers:last-child[href*="/2/"] {
  margin-left: auto;
}

body[class*=single-paged-] .navigation .post-page-numbers:last-child[href*="/2/"] {
  margin-left: 0;
}

.blog__wrapper {
  display: grid;
  grid-template-columns: 1fr 20rem;
  grid-gap: 1.25rem;
}
@media only screen and (max-width: 1024px) {
  .blog__wrapper {
    grid-template-columns: 1fr;
  }
}
.blog__side {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .blog__side {
    display: none;
  }
}

.newsletter {
  padding-top: 2.875rem;
  padding-bottom: 2.875rem;
  color: var(--lx-white);
  background: var(--lx-gradient-primary);
}
.newsletter a {
  color: var(--lx-dark);
}
.newsletter__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  .newsletter__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newsletter__content {
  width: 52%;
}
@media only screen and (max-width: 1024px) {
  .newsletter__content {
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
  }
}
.newsletter__form-wrapper {
  width: 46%;
  max-width: 28.75rem;
}
@media only screen and (max-width: 1024px) {
  .newsletter__form-wrapper {
    width: 100%;
  }
}
.newsletter__form-wrapper p {
  font-size: 1rem;
}
@media only screen and (max-width: 575px) {
  .newsletter__form-wrapper p {
    font-size: 0.875rem;
  }
}
.newsletter__title {
  margin-bottom: 0;
  text-transform: uppercase;
}
.newsletter__title span {
  color: var(--lx-dark);
}
.newsletter__text {
  margin-top: 1rem;
}

.error-404 {
  min-height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.error-404.section {
  padding: 250px 0 150px;
}
@media only screen and (max-width: 767px) {
  .error-404.section {
    padding: 160px 0 80px;
  }
}
.error-404__heading {
  font-size: 200px;
  line-height: 1.1;
  color: var(--lx-primary);
}
@media only screen and (max-width: 1700px) {
  .error-404__heading {
    font-size: 150px;
  }
}
@media only screen and (max-width: 1500px) {
  .error-404__heading {
    font-size: 120px;
  }
}
@media only screen and (max-width: 1024px) {
  .error-404__heading {
    font-size: 85px;
  }
}
@media only screen and (max-width: 767px) {
  .error-404__heading {
    font-size: 56px;
  }
}
@media only screen and (max-width: 575px) {
  .error-404__heading {
    font-size: 48px;
  }
}
.error-404__actions {
  margin-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .error-404__actions {
    margin-top: 40px;
  }
}
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@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}.swiper,swiper-container{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-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,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,.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{transform-style:preserve-3d}.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-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-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.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-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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,swiper-container: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: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,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.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-button-lock{display:none}.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,:host(.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;-ms-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,swiper-container .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,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.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-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.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-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-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-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-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@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}.swiper,swiper-container{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-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,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,.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{transform-style:preserve-3d}.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-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-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.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-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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,swiper-container: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)}}

/*# sourceMappingURL=main.css.map*/