@charset "UTF-8";
/* BASE COLOURS */
/* THEME COLOURS */
/* FONTS STACKS */
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;1,400;1,600&display=swap");
:root {
  --bs-white: #FFF;
  --bs-black: #000;
  --bs-red: #950303;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #000;
  --bs-secondary: #FFF;
  --bs-primary-rgb: 0, 0, 0;
  --bs-secondary-rgb: 255, 255, 255;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 0, 0, 0;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: "Barlow", Helvetica, Arial, sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Barlow, Helvetica, Arial, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #000;
  --bs-body-bg: #FFF;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 4px 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 1;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, .lead,
.lead p, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4, .lead,
.lead p {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4, .lead,
  .lead p {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #000;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #FFF;
  background-color: #212529;
  border-radius: 8px;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 16px;
  padding-bottom: 16px;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

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

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

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

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 4px;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -4px;
  margin-bottom: 4px;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #FFF;
  border: 1px solid #dee2e6;
  border-radius: 32px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 2px;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 24px);
  padding-left: var(--bs-gutter-x, 24px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
@media (min-width: 2400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 48px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 4px;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 4px;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 8px;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 8px;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 12px;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 12px;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 16px;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 16px;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 24px;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 24px;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 32px;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 32px;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 48px;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 48px;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 64px;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 64px;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 128px;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 128px;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 4px;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 4px;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 8px;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 8px;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 12px;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 12px;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 16px;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 16px;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 24px;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 24px;
  }
  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 32px;
  }
  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 32px;
  }
  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 48px;
  }
  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 48px;
  }
  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 64px;
  }
  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 64px;
  }
  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 128px;
  }
  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 128px;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 4px;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 4px;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 8px;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 8px;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 12px;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 12px;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 16px;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 16px;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 24px;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 24px;
  }
  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 32px;
  }
  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 32px;
  }
  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 48px;
  }
  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 48px;
  }
  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 64px;
  }
  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 64px;
  }
  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 128px;
  }
  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 128px;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 4px;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 4px;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 8px;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 8px;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 12px;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 12px;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 16px;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 16px;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 24px;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 24px;
  }
  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 32px;
  }
  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 32px;
  }
  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 48px;
  }
  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 48px;
  }
  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 64px;
  }
  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 64px;
  }
  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 128px;
  }
  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 128px;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 4px;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 4px;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 8px;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 8px;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 12px;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 12px;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 16px;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 16px;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 24px;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 24px;
  }
  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 32px;
  }
  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 32px;
  }
  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 48px;
  }
  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 48px;
  }
  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 64px;
  }
  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 64px;
  }
  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 128px;
  }
  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 128px;
  }
}
@media (min-width: 2400px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 4px;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 4px;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 8px;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 8px;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 12px;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 12px;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 16px;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 16px;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 24px;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 24px;
  }
  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 32px;
  }
  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 32px;
  }
  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 48px;
  }
  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 48px;
  }
  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 64px;
  }
  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 64px;
  }
  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 128px;
  }
  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 128px;
  }
}
.btn,
.button,
input[type=submit],
input[type=button],
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  display: inline-block;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #000;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0 24px;
  font-size: 1.125rem;
  border-radius: 0;
  transition: 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;
}
@media (prefers-reduced-motion: reduce) {
  .btn,
  .button,
  input[type=submit],
  input[type=button],
  button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
    transition: none;
  }
}
.btn:hover,
.button:hover,
input[type=submit]:hover,
input[type=button]:hover,
button:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #000;
}
.btn-check:focus + .btn,
.btn-check:focus + .button,
.btn-check:focus + input[type=submit],
.btn-check:focus + input[type=button],
.btn-check:focus + button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .btn:focus,
.button:focus,
input[type=submit]:focus,
input[type=button]:focus,
button:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.btn:disabled,
.button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
button:disabled:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .btn.disabled,
.disabled.button,
input.disabled[type=submit],
input.disabled[type=button],
button.disabled:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), fieldset:disabled .btn,
fieldset:disabled .button,
fieldset:disabled input[type=submit],
fieldset:disabled input[type=button],
fieldset:disabled button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #FFF;
  background-color: #000;
  border-color: #000;
}
.btn-primary:hover {
  color: #FFF;
  background-color: black;
  border-color: black;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #FFF;
  background-color: black;
  border-color: black;
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #FFF;
  background-color: black;
  border-color: black;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(38, 38, 38, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #FFF;
  background-color: #000;
  border-color: #000;
}

.btn-secondary {
  color: #000;
  background-color: #FFF;
  border-color: #FFF;
}
.btn-secondary:hover {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000;
  background-color: white;
  border-color: white;
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #000;
  background-color: white;
  border-color: white;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000;
  background-color: #FFF;
  border-color: #FFF;
}

.btn-outline-primary {
  color: #000;
  border-color: #000;
}
.btn-outline-primary:hover {
  color: #FFF;
  background-color: #000;
  border-color: #000;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #FFF;
  background-color: #000;
  border-color: #000;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #000;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #FFF;
  border-color: #FFF;
}
.btn-outline-secondary:hover {
  color: #000;
  background-color: #FFF;
  border-color: #FFF;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #000;
  background-color: #FFF;
  border-color: #FFF;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #FFF;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #000;
  text-decoration: underline;
}
.btn-link:hover {
  color: #000;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #000;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #000;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #FFF;
  border-color: #dee2e6 #dee2e6 #FFF;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 32px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFF;
  background-color: #000;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #000;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #000;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #000;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 4px;
  color: #000;
  vertical-align: top;
  border-color: #000;
}
.table > :not(caption) > * > * {
  padding: 16px 0;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cccccc;
  --bs-table-striped-bg: #c2c2c2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8b8b8;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdbdbd;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8b8b8;
}

.table-secondary {
  --bs-table-bg: white;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6e6e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ececec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6e6e6;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dbb9;
}

.table-danger {
  --bs-table-bg: #eacdcd;
  --bs-table-striped-bg: #dec3c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #d3b9b9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d8bebe;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #d3b9b9;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #FFF;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #FFF;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #FFF;
  color: #FFF;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 2399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.badge {
  display: inline-block;
  padding: 8px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  color: #000;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 32px;
}
.badge:empty {
  display: none;
}

.btn .badge,
.button .badge,
input[type=submit] .badge,
input[type=button] .badge,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .badge {
  position: relative;
  top: -1px;
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid #000;
  appearance: none;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #000;
  background-color: #FFF;
  border-color: gray;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #000;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #000;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: 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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0.375rem 0.75rem;
  margin: -0.375rem -0.75rem;
  margin-inline-end: 0.75rem;
  color: #000;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  transition: 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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #000;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 8px;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}
.form-control-lg::file-selector-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.5rem 1rem;
  margin: -0.5rem -1rem;
  margin-inline-end: 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + 0.75rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  background-color: #FFF;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #000;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: gray;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0.75rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: gray;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.form-check-input:checked {
  background-color: #000;
  border-color: #000;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23FFF'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #000;
  border-color: #000;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='gray'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFF'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn,
.btn-check[disabled] + .button,
.btn-check[disabled] + input[type=submit],
.btn-check[disabled] + input[type=button],
.btn-check[disabled] + button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .btn-check:disabled + .btn,
.btn-check:disabled + .button,
.btn-check:disabled + input[type=submit],
.btn-check:disabled + input[type=button],
.btn-check:disabled + button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  pointer-events: none;
  filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #FFF, 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #000;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b3b3b3;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #000;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b3b3b3;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0.75rem;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn,
.input-group .button,
.input-group input[type=submit],
.input-group input[type=button],
.input-group button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus,
.input-group .button:focus,
.input-group input[type=submit]:focus,
.input-group input[type=button]:focus,
.input-group button:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  z-index: 3;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #000;
  border-radius: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
.input-group-lg > .button,
.input-group-lg > input[type=submit],
.input-group-lg > input[type=button],
.input-group-lg > button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
.input-group-sm > .button,
.input-group-sm > input[type=submit],
.input-group-sm > input[type=button],
.input-group-sm > button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 8px;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 1px 2px;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #FFF;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 32px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #950303;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 1px 2px;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #FFF;
  background-color: rgba(149, 3, 3, 0.9);
  border-radius: 32px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #950303;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23950303'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23950303' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #950303;
  box-shadow: 0 0 0 0.25rem rgba(149, 3, 3, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #950303;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 4.125rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23950303'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23950303' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #950303;
  box-shadow: 0 0 0 0.25rem rgba(149, 3, 3, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #950303;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #950303;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(149, 3, 3, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #950303;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #000;
  text-align: left;
  list-style: none;
  background-color: #FFF;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 32px;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 2400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 2px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 1px 4px;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #FFF;
  text-decoration: none;
  background-color: #000;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 4px;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 1px 4px;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #FFF;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #FFF;
  background-color: #000;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  color: inherit;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: 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, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: inherit;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 #000;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='inherit'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='inherit'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 16px;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: transparent;
  border: 1px solid #000;
}
.accordion-item:first-of-type {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 31px;
  border-top-right-radius: 31px;
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 31px;
  border-bottom-left-radius: 31px;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}

.accordion-body {
  padding: 1rem 0;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

@font-face {
  font-family: "Ionicons";
  src: url("../fonts/ionicons/ionicons.woff2") format("woff2"), url("../fonts/ionicons/ionicons.woff") format("woff"), url("../fonts/ionicons/ionicons.ttf") format("truetype");
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  line-height: 1;
  position: relative;
  flex: 0 0 auto;
  color: currentColor;
}
.icon.icon-8 {
  width: 8px;
  height: 8px;
}
.icon.icon-12 {
  width: 12px;
  height: 12px;
}
.icon.icon-24 {
  width: 24px;
  height: 24px;
}
.icon.icon-32 {
  width: 32px;
  height: 32px;
}
.icon.icon-40 {
  width: 40px;
  height: 40px;
}
.icon.icon-64 {
  width: 64px;
  height: 64px;
}
.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon + .text {
  display: inline-block;
  padding-left: 8px;
}

.text-white {
  color: #FFF;
}

.bg-black {
  color: #FFF;
}

.bg-red {
  background-color: #950303;
  color: #FFF;
}

.bg-grey-light {
  background-color: #EEEAEB;
}

@keyframes progressWidthAnimation {
  0% {
    width: 0;
  }
}
/**
 * ----------------------------------------
 * animation fade-in
 * ----------------------------------------
 */
@-webkit-keyframes animateFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes animateFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
* ----------------------------------------
* animation pulse location
* ----------------------------------------
*/
@-webkit-keyframes pulse {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 5px 2px rgba(160, 250, 110, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 15px 2px #a0fa6e;
  }
}
@-moz-keyframes pulse {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 5px 2px rgba(160, 250, 110, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 15px 2px #a0fa6e;
  }
}
@keyframes pulse {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 5px 2px rgba(160, 250, 110, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(160, 250, 110, 0.5), 0px 0px 15px 2px #a0fa6e;
  }
}
/**
* ----------------------------------------
* animation pulse hotspots
* ----------------------------------------
*/
@-webkit-keyframes pulse-hotspots {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 5px 2px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 15px 2px white;
  }
}
@-moz-keyframes pulse-hotspots {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 5px 2px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 15px 2px white;
  }
}
@keyframes pulse-hotspots {
  0% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 5px 2px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: inset 0px 0px 10px 2px rgba(255, 255, 255, 0.5), 0px 0px 15px 2px white;
  }
}
/** Base Global Elements **/
html {
  touch-action: manipulation;
}

html, body {
  -webkit-font-smoothing: antialiased;
}
html.noScroll, body.noScroll {
  overflow: hidden !important;
  height: 100% !important;
}

body {
  overflow-x: hidden;
}
@media (max-width: 767.98px) {
  body.menuOpen {
    overflow: hidden;
  }
}

iframe {
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
}

/** Links **/
a {
  text-decoration: underline;
  outline: none;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
a:focus {
  color: #000;
}

/** Lists **/
ul {
  margin: 0 0 15px 15px;
  padding: 0;
}
ul li {
  margin: 0 0 8px 0;
  padding: 0;
  /* For Custom Bullets */
  /*
  list-style: none;
  position: relative;
  &:before {
    content: "•";
    position: absolute;
    left: -15px;
    color: @blue;
  }
  */
}

/** Page Wrappers **/
.pageWrapper {
  width: 100%;
}

.animated {
  opacity: 0;
}
.animated.fadeInUp, .animated.fadeIn, .animated.fadeInDown, .animated.fadeInLeft {
  opacity: 1;
}
.animated.animatedSlideInLeft {
  opacity: 1;
  -webkit-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
}

.divider {
  border: 1px solid #FFF;
  margin-bottom: 40px;
}

html :where(img[class*=wp-image-]) {
  width: 100%;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

.container-fluid.container-mxwidth, .container-mxwidth.container-sm, .container-mxwidth.container-md, .container-mxwidth.container-lg, .container-mxwidth.container-xl, .container-mxwidth.container-xxl {
  max-width: 1440px;
}

@media (max-width: 767.98px) {
  .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    --bs-gutter-x: 12px;
  }
}

.vh-md-100 {
  height: auto;
}
@media (min-width: 768px) {
  .vh-md-100 {
    height: 100vh;
  }
}

.overflow-hidden-x {
  overflow-x: hidden;
}

/** Text **/
body {
  font-size: 16px;
  line-height: 24px;
}

p {
  margin: 0 0 24px 0;
}
p:last-child {
  margin: 0;
}

b,
strong {
  font-weight: 700;
}

small,
.small {
  font-size: 12px;
  line-height: 14px;
}

.x-small {
  font-size: 10px;
  line-height: 15px;
}

.font-family-base {
  font-family: "Barlow", Helvetica, Arial, sans-serif !important;
}

.font-family-heading {
  font-family: "Barlow", Helvetica, Arial, sans-serif !important;
}

.font-family-secondary {
  font-family: "Barlow", Helvetica, Arial, sans-serif !important;
}

.font-weight-200 {
  font-weight: 200;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

/** Headings **/
h1, .h1 {
  font-size: 52px;
  line-height: 52px;
  letter-spacing: -2.6px;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 100px;
    line-height: 100px;
    letter-spacing: -5px;
  }
}

h2, .h2 {
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -1.2px;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -1.8px;
  }
}

h3, .h3 {
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.64px;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 36px;
    line-height: 36px;
    letter-spacing: -0.72px;
  }
}

h4, .h4, .lead,
.lead p {
  font-size: 26px;
  line-height: 26px;
  letter-spacing: -0.52px;
}

h5, .h5, .gform_title {
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.44px;
}

h6, .h6, .gform_description {
  font-size: 19px;
  line-height: 21px;
}

blockquote {
  padding: 0;
  position: relative;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, .lead,
.lead p, h5, .h5, h6, .h6 {
  text-transform: uppercase;
}

.label-text {
  font-size: 14px;
  line-height: 16px;
}

.btn,
.button,
input[type=submit],
input[type=button],
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  transition: all 0.25s ease-in-out;
  border-radius: 0;
  border: 1px solid #000;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0 16px;
}
.btn:before, .btn:after,
.button:before,
.button:after,
input[type=submit]:before,
input[type=submit]:after,
input[type=button]:before,
input[type=button]:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/sitedesign-icon-arrow-right.svg");
  margin-right: 8px;
  transition: transform 0.2s ease 0.1s, opacity 0.2s ease 0.1s;
  transform: translateX(0);
  opacity: 1;
}
.btn:after,
.button:after,
input[type=submit]:after,
input[type=button]:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  transform: translateX(-16px);
  opacity: 0;
  position: absolute;
  left: 0;
}
.btn.btn-primary, .btn.button-primary,
.button.btn-primary,
.button.button-primary,
input[type=submit].btn-primary,
input[type=submit].button-primary,
input[type=button].btn-primary,
input[type=button].button-primary,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary {
  color: #000;
  background: transparent;
  overflow: hidden;
}
.btn.btn-primary .btn-bg, .btn.button-primary .btn-bg,
.button.btn-primary .btn-bg,
.button.button-primary .btn-bg,
input[type=submit].btn-primary .btn-bg,
input[type=submit].button-primary .btn-bg,
input[type=button].btn-primary .btn-bg,
input[type=button].button-primary .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary .btn-bg {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: top 0.2s ease;
  z-index: 0;
}
.btn.btn-primary *, .btn.button-primary *,
.button.btn-primary *,
.button.button-primary *,
input[type=submit].btn-primary *,
input[type=submit].button-primary *,
input[type=button].btn-primary *,
input[type=button].button-primary *,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary *,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary * {
  position: relative;
  z-index: 1;
}
.btn.btn-primary:hover, .btn.btn-primary:focus, .btn.button-primary:hover, .btn.button-primary:focus,
.button.btn-primary:hover,
.button.btn-primary:focus,
.button.button-primary:hover,
.button.button-primary:focus,
input[type=submit].btn-primary:hover,
input[type=submit].btn-primary:focus,
input[type=submit].button-primary:hover,
input[type=submit].button-primary:focus,
input[type=button].btn-primary:hover,
input[type=button].btn-primary:focus,
input[type=button].button-primary:hover,
input[type=button].button-primary:focus,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus {
  color: #FFF;
}
.btn.btn-primary:hover:before, .btn.btn-primary:hover:after, .btn.btn-primary:focus:before, .btn.btn-primary:focus:after, .btn.button-primary:hover:before, .btn.button-primary:hover:after, .btn.button-primary:focus:before, .btn.button-primary:focus:after,
.button.btn-primary:hover:before,
.button.btn-primary:hover:after,
.button.btn-primary:focus:before,
.button.btn-primary:focus:after,
.button.button-primary:hover:before,
.button.button-primary:hover:after,
.button.button-primary:focus:before,
.button.button-primary:focus:after,
input[type=submit].btn-primary:hover:before,
input[type=submit].btn-primary:hover:after,
input[type=submit].btn-primary:focus:before,
input[type=submit].btn-primary:focus:after,
input[type=submit].button-primary:hover:before,
input[type=submit].button-primary:hover:after,
input[type=submit].button-primary:focus:before,
input[type=submit].button-primary:focus:after,
input[type=button].btn-primary:hover:before,
input[type=button].btn-primary:hover:after,
input[type=button].btn-primary:focus:before,
input[type=button].btn-primary:focus:after,
input[type=button].button-primary:hover:before,
input[type=button].button-primary:hover:after,
input[type=button].button-primary:focus:before,
input[type=button].button-primary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus:after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}
.btn.btn-primary:hover:before, .btn.btn-primary:focus:before, .btn.button-primary:hover:before, .btn.button-primary:focus:before,
.button.btn-primary:hover:before,
.button.btn-primary:focus:before,
.button.button-primary:hover:before,
.button.button-primary:focus:before,
input[type=submit].btn-primary:hover:before,
input[type=submit].btn-primary:focus:before,
input[type=submit].button-primary:hover:before,
input[type=submit].button-primary:focus:before,
input[type=button].btn-primary:hover:before,
input[type=button].btn-primary:focus:before,
input[type=button].button-primary:hover:before,
input[type=button].button-primary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus:before {
  transform: translateX(32px);
  opacity: 0;
}
.btn.btn-primary:hover:after, .btn.btn-primary:focus:after, .btn.button-primary:hover:after, .btn.button-primary:focus:after,
.button.btn-primary:hover:after,
.button.btn-primary:focus:after,
.button.button-primary:hover:after,
.button.button-primary:focus:after,
input[type=submit].btn-primary:hover:after,
input[type=submit].btn-primary:focus:after,
input[type=submit].button-primary:hover:after,
input[type=submit].button-primary:focus:after,
input[type=button].btn-primary:hover:after,
input[type=button].btn-primary:focus:after,
input[type=button].button-primary:hover:after,
input[type=button].button-primary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus:after {
  transform: translateX(16px);
  opacity: 1;
}
.btn.btn-primary:hover .btn-bg, .btn.btn-primary:focus .btn-bg, .btn.button-primary:hover .btn-bg, .btn.button-primary:focus .btn-bg,
.button.btn-primary:hover .btn-bg,
.button.btn-primary:focus .btn-bg,
.button.button-primary:hover .btn-bg,
.button.button-primary:focus .btn-bg,
input[type=submit].btn-primary:hover .btn-bg,
input[type=submit].btn-primary:focus .btn-bg,
input[type=submit].button-primary:hover .btn-bg,
input[type=submit].button-primary:focus .btn-bg,
input[type=button].btn-primary:hover .btn-bg,
input[type=button].btn-primary:focus .btn-bg,
input[type=button].button-primary:hover .btn-bg,
input[type=button].button-primary:focus .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:hover .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-primary:focus .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:hover .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-primary:focus .btn-bg {
  top: 0;
}
.btn.btn-secondary, .btn.button-secondary,
.button.btn-secondary,
.button.button-secondary,
input[type=submit].btn-secondary,
input[type=submit].button-secondary,
input[type=button].btn-secondary,
input[type=button].button-secondary,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary {
  color: #FFF;
  border-color: #FFF;
  background: transparent;
  overflow: hidden;
}
.btn.btn-secondary:before, .btn.btn-secondary:after, .btn.button-secondary:before, .btn.button-secondary:after,
.button.btn-secondary:before,
.button.btn-secondary:after,
.button.button-secondary:before,
.button.button-secondary:after,
input[type=submit].btn-secondary:before,
input[type=submit].btn-secondary:after,
input[type=submit].button-secondary:before,
input[type=submit].button-secondary:after,
input[type=button].btn-secondary:before,
input[type=button].btn-secondary:after,
input[type=button].button-secondary:before,
input[type=button].button-secondary:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}
.btn.btn-secondary .btn-bg, .btn.button-secondary .btn-bg,
.button.btn-secondary .btn-bg,
.button.button-secondary .btn-bg,
input[type=submit].btn-secondary .btn-bg,
input[type=submit].button-secondary .btn-bg,
input[type=button].btn-secondary .btn-bg,
input[type=button].button-secondary .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary .btn-bg {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  transition: top 0.2s ease;
  z-index: 0;
}
.btn.btn-secondary *, .btn.button-secondary *,
.button.btn-secondary *,
.button.button-secondary *,
input[type=submit].btn-secondary *,
input[type=submit].button-secondary *,
input[type=button].btn-secondary *,
input[type=button].button-secondary *,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary *,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary * {
  position: relative;
  z-index: 1;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.button-secondary:hover, .btn.button-secondary:focus,
.button.btn-secondary:hover,
.button.btn-secondary:focus,
.button.button-secondary:hover,
.button.button-secondary:focus,
input[type=submit].btn-secondary:hover,
input[type=submit].btn-secondary:focus,
input[type=submit].button-secondary:hover,
input[type=submit].button-secondary:focus,
input[type=button].btn-secondary:hover,
input[type=button].btn-secondary:focus,
input[type=button].button-secondary:hover,
input[type=button].button-secondary:focus,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus {
  color: #000;
}
.btn.btn-secondary:hover:before, .btn.btn-secondary:hover:after, .btn.btn-secondary:focus:before, .btn.btn-secondary:focus:after, .btn.button-secondary:hover:before, .btn.button-secondary:hover:after, .btn.button-secondary:focus:before, .btn.button-secondary:focus:after,
.button.btn-secondary:hover:before,
.button.btn-secondary:hover:after,
.button.btn-secondary:focus:before,
.button.btn-secondary:focus:after,
.button.button-secondary:hover:before,
.button.button-secondary:hover:after,
.button.button-secondary:focus:before,
.button.button-secondary:focus:after,
input[type=submit].btn-secondary:hover:before,
input[type=submit].btn-secondary:hover:after,
input[type=submit].btn-secondary:focus:before,
input[type=submit].btn-secondary:focus:after,
input[type=submit].button-secondary:hover:before,
input[type=submit].button-secondary:hover:after,
input[type=submit].button-secondary:focus:before,
input[type=submit].button-secondary:focus:after,
input[type=button].btn-secondary:hover:before,
input[type=button].btn-secondary:hover:after,
input[type=button].btn-secondary:focus:before,
input[type=button].btn-secondary:focus:after,
input[type=button].button-secondary:hover:before,
input[type=button].button-secondary:hover:after,
input[type=button].button-secondary:focus:before,
input[type=button].button-secondary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus:after {
  background-image: url("../img/sitedesign-icon-arrow-right.svg");
}
.btn.btn-secondary:hover:before, .btn.btn-secondary:focus:before, .btn.button-secondary:hover:before, .btn.button-secondary:focus:before,
.button.btn-secondary:hover:before,
.button.btn-secondary:focus:before,
.button.button-secondary:hover:before,
.button.button-secondary:focus:before,
input[type=submit].btn-secondary:hover:before,
input[type=submit].btn-secondary:focus:before,
input[type=submit].button-secondary:hover:before,
input[type=submit].button-secondary:focus:before,
input[type=button].btn-secondary:hover:before,
input[type=button].btn-secondary:focus:before,
input[type=button].button-secondary:hover:before,
input[type=button].button-secondary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus:before {
  transform: translateX(32px);
  opacity: 0;
}
.btn.btn-secondary:hover:after, .btn.btn-secondary:focus:after, .btn.button-secondary:hover:after, .btn.button-secondary:focus:after,
.button.btn-secondary:hover:after,
.button.btn-secondary:focus:after,
.button.button-secondary:hover:after,
.button.button-secondary:focus:after,
input[type=submit].btn-secondary:hover:after,
input[type=submit].btn-secondary:focus:after,
input[type=submit].button-secondary:hover:after,
input[type=submit].button-secondary:focus:after,
input[type=button].btn-secondary:hover:after,
input[type=button].btn-secondary:focus:after,
input[type=button].button-secondary:hover:after,
input[type=button].button-secondary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus:after {
  transform: translateX(16px);
  opacity: 1;
}
.btn.btn-secondary:hover .btn-bg, .btn.btn-secondary:focus .btn-bg, .btn.button-secondary:hover .btn-bg, .btn.button-secondary:focus .btn-bg,
.button.btn-secondary:hover .btn-bg,
.button.btn-secondary:focus .btn-bg,
.button.button-secondary:hover .btn-bg,
.button.button-secondary:focus .btn-bg,
input[type=submit].btn-secondary:hover .btn-bg,
input[type=submit].btn-secondary:focus .btn-bg,
input[type=submit].button-secondary:hover .btn-bg,
input[type=submit].button-secondary:focus .btn-bg,
input[type=button].btn-secondary:hover .btn-bg,
input[type=button].btn-secondary:focus .btn-bg,
input[type=button].button-secondary:hover .btn-bg,
input[type=button].button-secondary:focus .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:hover .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-secondary:focus .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:hover .btn-bg,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).button-secondary:focus .btn-bg {
  top: 0;
}
.btn.btn-text-link,
.button.btn-text-link,
input[type=submit].btn-text-link,
input[type=button].btn-text-link,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-text-link {
  border: 0;
  padding: 0;
  min-height: 16px;
}
.btn.btn-text-link:hover:before,
.button.btn-text-link:hover:before,
input[type=submit].btn-text-link:hover:before,
input[type=button].btn-text-link:hover:before,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-text-link:hover:before {
  transform: translateX(20px);
  opacity: 0;
}
.btn.btn-text-link:hover:after,
.button.btn-text-link:hover:after,
input[type=submit].btn-text-link:hover:after,
input[type=button].btn-text-link:hover:after,
button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone).btn-text-link:hover:after {
  transform: translateX(0);
  opacity: 1;
}

.bg-black .btn,
.bg-black .button,
.bg-black input[type=submit],
.bg-black input[type=button],
.bg-black button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn,
.bg-red .button,
.bg-red input[type=submit],
.bg-red input[type=button],
.bg-red button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  border-color: #FFF;
  color: #FFF;
}
.bg-black .btn:before,
.bg-black .button:before,
.bg-black input[type=submit]:before,
.bg-black input[type=button]:before,
.bg-black button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn:after,
.bg-black .button:after,
.bg-black input[type=submit]:after,
.bg-black input[type=button]:after,
.bg-black button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn:before,
.bg-red .button:before,
.bg-red input[type=submit]:before,
.bg-red input[type=button]:before,
.bg-red button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn:after,
.bg-red .button:after,
.bg-red input[type=submit]:after,
.bg-red input[type=button]:after,
.bg-red button:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}
.bg-black .btn.btn-primary,
.bg-black .btn-primary.button,
.bg-black input.btn-primary[type=submit],
.bg-black input.btn-primary[type=button],
.bg-black button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-black .btn.button-primary,
.bg-black .button-primary.button,
.bg-black input.button-primary[type=submit],
.bg-black input.button-primary[type=button],
.bg-black button.button-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.btn-primary,
.bg-red .btn-primary.button,
.bg-red input.btn-primary[type=submit],
.bg-red input.btn-primary[type=button],
.bg-red button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.button-primary,
.bg-red .button-primary.button,
.bg-red input.button-primary[type=submit],
.bg-red input.button-primary[type=button],
.bg-red button.button-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #FFF;
  background: #000;
}
.bg-black .btn.btn-primary .btn-bg,
.bg-black .btn-primary.button .btn-bg,
.bg-black input.btn-primary[type=submit] .btn-bg,
.bg-black input.btn-primary[type=button] .btn-bg,
.bg-black button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-black .btn.button-primary .btn-bg,
.bg-black .button-primary.button .btn-bg,
.bg-black input.button-primary[type=submit] .btn-bg,
.bg-black input.button-primary[type=button] .btn-bg,
.bg-black button.button-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.btn-primary .btn-bg,
.bg-red .btn-primary.button .btn-bg,
.bg-red input.btn-primary[type=submit] .btn-bg,
.bg-red input.btn-primary[type=button] .btn-bg,
.bg-red button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.button-primary .btn-bg,
.bg-red .button-primary.button .btn-bg,
.bg-red input.button-primary[type=submit] .btn-bg,
.bg-red input.button-primary[type=button] .btn-bg,
.bg-red button.button-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg {
  background: #FFF;
}
.bg-black .btn.btn-primary:hover,
.bg-black .btn-primary.button:hover,
.bg-black input.btn-primary[type=submit]:hover,
.bg-black input.btn-primary[type=button]:hover,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-black .btn.btn-primary:focus,
.bg-black .btn-primary.button:focus,
.bg-black input.btn-primary[type=submit]:focus,
.bg-black input.btn-primary[type=button]:focus,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-black .btn.button-primary:hover,
.bg-black .button-primary.button:hover,
.bg-black input.button-primary[type=submit]:hover,
.bg-black input.button-primary[type=button]:hover,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-black .btn.button-primary:focus,
.bg-black .button-primary.button:focus,
.bg-black input.button-primary[type=submit]:focus,
.bg-black input.button-primary[type=button]:focus,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.btn-primary:hover,
.bg-red .btn-primary.button:hover,
.bg-red input.btn-primary[type=submit]:hover,
.bg-red input.btn-primary[type=button]:hover,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.btn-primary:focus,
.bg-red .btn-primary.button:focus,
.bg-red input.btn-primary[type=submit]:focus,
.bg-red input.btn-primary[type=button]:focus,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.button-primary:hover,
.bg-red .button-primary.button:hover,
.bg-red input.button-primary[type=submit]:hover,
.bg-red input.button-primary[type=button]:hover,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone),
.bg-red .btn.button-primary:focus,
.bg-red .button-primary.button:focus,
.bg-red input.button-primary[type=submit]:focus,
.bg-red input.button-primary[type=button]:focus,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #000;
}
.bg-black .btn.btn-primary:hover:before,
.bg-black .btn-primary.button:hover:before,
.bg-black input.btn-primary[type=submit]:hover:before,
.bg-black input.btn-primary[type=button]:hover:before,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.btn-primary:hover:after,
.bg-black .btn-primary.button:hover:after,
.bg-black input.btn-primary[type=submit]:hover:after,
.bg-black input.btn-primary[type=button]:hover:after,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.btn-primary:focus:before,
.bg-black .btn-primary.button:focus:before,
.bg-black input.btn-primary[type=submit]:focus:before,
.bg-black input.btn-primary[type=button]:focus:before,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.btn-primary:focus:after,
.bg-black .btn-primary.button:focus:after,
.bg-black input.btn-primary[type=submit]:focus:after,
.bg-black input.btn-primary[type=button]:focus:after,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.button-primary:hover:before,
.bg-black .button-primary.button:hover:before,
.bg-black input.button-primary[type=submit]:hover:before,
.bg-black input.button-primary[type=button]:hover:before,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.button-primary:hover:after,
.bg-black .button-primary.button:hover:after,
.bg-black input.button-primary[type=submit]:hover:after,
.bg-black input.button-primary[type=button]:hover:after,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.button-primary:focus:before,
.bg-black .button-primary.button:focus:before,
.bg-black input.button-primary[type=submit]:focus:before,
.bg-black input.button-primary[type=button]:focus:before,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.button-primary:focus:after,
.bg-black .button-primary.button:focus:after,
.bg-black input.button-primary[type=submit]:focus:after,
.bg-black input.button-primary[type=button]:focus:after,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.btn-primary:hover:before,
.bg-red .btn-primary.button:hover:before,
.bg-red input.btn-primary[type=submit]:hover:before,
.bg-red input.btn-primary[type=button]:hover:before,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.btn-primary:hover:after,
.bg-red .btn-primary.button:hover:after,
.bg-red input.btn-primary[type=submit]:hover:after,
.bg-red input.btn-primary[type=button]:hover:after,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.btn-primary:focus:before,
.bg-red .btn-primary.button:focus:before,
.bg-red input.btn-primary[type=submit]:focus:before,
.bg-red input.btn-primary[type=button]:focus:before,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.btn-primary:focus:after,
.bg-red .btn-primary.button:focus:after,
.bg-red input.btn-primary[type=submit]:focus:after,
.bg-red input.btn-primary[type=button]:focus:after,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.button-primary:hover:before,
.bg-red .button-primary.button:hover:before,
.bg-red input.button-primary[type=submit]:hover:before,
.bg-red input.button-primary[type=button]:hover:before,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.button-primary:hover:after,
.bg-red .button-primary.button:hover:after,
.bg-red input.button-primary[type=submit]:hover:after,
.bg-red input.button-primary[type=button]:hover:after,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.button-primary:focus:before,
.bg-red .button-primary.button:focus:before,
.bg-red input.button-primary[type=submit]:focus:before,
.bg-red input.button-primary[type=button]:focus:before,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.button-primary:focus:after,
.bg-red .button-primary.button:focus:after,
.bg-red input.button-primary[type=submit]:focus:after,
.bg-red input.button-primary[type=button]:focus:after,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right.svg");
}
.bg-black .btn.btn-primary:hover:before,
.bg-black .btn-primary.button:hover:before,
.bg-black input.btn-primary[type=submit]:hover:before,
.bg-black input.btn-primary[type=button]:hover:before,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.btn-primary:focus:before,
.bg-black .btn-primary.button:focus:before,
.bg-black input.btn-primary[type=submit]:focus:before,
.bg-black input.btn-primary[type=button]:focus:before,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.button-primary:hover:before,
.bg-black .button-primary.button:hover:before,
.bg-black input.button-primary[type=submit]:hover:before,
.bg-black input.button-primary[type=button]:hover:before,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-black .btn.button-primary:focus:before,
.bg-black .button-primary.button:focus:before,
.bg-black input.button-primary[type=submit]:focus:before,
.bg-black input.button-primary[type=button]:focus:before,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.btn-primary:hover:before,
.bg-red .btn-primary.button:hover:before,
.bg-red input.btn-primary[type=submit]:hover:before,
.bg-red input.btn-primary[type=button]:hover:before,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.btn-primary:focus:before,
.bg-red .btn-primary.button:focus:before,
.bg-red input.btn-primary[type=submit]:focus:before,
.bg-red input.btn-primary[type=button]:focus:before,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.button-primary:hover:before,
.bg-red .button-primary.button:hover:before,
.bg-red input.button-primary[type=submit]:hover:before,
.bg-red input.button-primary[type=button]:hover:before,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before,
.bg-red .btn.button-primary:focus:before,
.bg-red .button-primary.button:focus:before,
.bg-red input.button-primary[type=submit]:focus:before,
.bg-red input.button-primary[type=button]:focus:before,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before {
  transform: translateX(32px);
  opacity: 0;
}
.bg-black .btn.btn-primary:hover:after,
.bg-black .btn-primary.button:hover:after,
.bg-black input.btn-primary[type=submit]:hover:after,
.bg-black input.btn-primary[type=button]:hover:after,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.btn-primary:focus:after,
.bg-black .btn-primary.button:focus:after,
.bg-black input.btn-primary[type=submit]:focus:after,
.bg-black input.btn-primary[type=button]:focus:after,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.button-primary:hover:after,
.bg-black .button-primary.button:hover:after,
.bg-black input.button-primary[type=submit]:hover:after,
.bg-black input.button-primary[type=button]:hover:after,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-black .btn.button-primary:focus:after,
.bg-black .button-primary.button:focus:after,
.bg-black input.button-primary[type=submit]:focus:after,
.bg-black input.button-primary[type=button]:focus:after,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.btn-primary:hover:after,
.bg-red .btn-primary.button:hover:after,
.bg-red input.btn-primary[type=submit]:hover:after,
.bg-red input.btn-primary[type=button]:hover:after,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.btn-primary:focus:after,
.bg-red .btn-primary.button:focus:after,
.bg-red input.btn-primary[type=submit]:focus:after,
.bg-red input.btn-primary[type=button]:focus:after,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.button-primary:hover:after,
.bg-red .button-primary.button:hover:after,
.bg-red input.button-primary[type=submit]:hover:after,
.bg-red input.button-primary[type=button]:hover:after,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after,
.bg-red .btn.button-primary:focus:after,
.bg-red .button-primary.button:focus:after,
.bg-red input.button-primary[type=submit]:focus:after,
.bg-red input.button-primary[type=button]:focus:after,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  transform: translateX(16px);
  opacity: 1;
}
.bg-black .btn.btn-primary:hover .btn-bg,
.bg-black .btn-primary.button:hover .btn-bg,
.bg-black input.btn-primary[type=submit]:hover .btn-bg,
.bg-black input.btn-primary[type=button]:hover .btn-bg,
.bg-black button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-black .btn.btn-primary:focus .btn-bg,
.bg-black .btn-primary.button:focus .btn-bg,
.bg-black input.btn-primary[type=submit]:focus .btn-bg,
.bg-black input.btn-primary[type=button]:focus .btn-bg,
.bg-black button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-black .btn.button-primary:hover .btn-bg,
.bg-black .button-primary.button:hover .btn-bg,
.bg-black input.button-primary[type=submit]:hover .btn-bg,
.bg-black input.button-primary[type=button]:hover .btn-bg,
.bg-black button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-black .btn.button-primary:focus .btn-bg,
.bg-black .button-primary.button:focus .btn-bg,
.bg-black input.button-primary[type=submit]:focus .btn-bg,
.bg-black input.button-primary[type=button]:focus .btn-bg,
.bg-black button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.btn-primary:hover .btn-bg,
.bg-red .btn-primary.button:hover .btn-bg,
.bg-red input.btn-primary[type=submit]:hover .btn-bg,
.bg-red input.btn-primary[type=button]:hover .btn-bg,
.bg-red button.btn-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.btn-primary:focus .btn-bg,
.bg-red .btn-primary.button:focus .btn-bg,
.bg-red input.btn-primary[type=submit]:focus .btn-bg,
.bg-red input.btn-primary[type=button]:focus .btn-bg,
.bg-red button.btn-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.button-primary:hover .btn-bg,
.bg-red .button-primary.button:hover .btn-bg,
.bg-red input.button-primary[type=submit]:hover .btn-bg,
.bg-red input.button-primary[type=button]:hover .btn-bg,
.bg-red button.button-primary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg,
.bg-red .btn.button-primary:focus .btn-bg,
.bg-red .button-primary.button:focus .btn-bg,
.bg-red input.button-primary[type=submit]:focus .btn-bg,
.bg-red input.button-primary[type=button]:focus .btn-bg,
.bg-red button.button-primary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg {
  top: 0;
}

.bg-white .btn.btn-secondary,
.bg-white .btn-secondary.button,
.bg-white input.btn-secondary[type=submit],
.bg-white input.btn-secondary[type=button],
.bg-white button.btn-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-white .btn.button-secondary,
.bg-white .button-secondary.button,
.bg-white input.button-secondary[type=submit],
.bg-white input.button-secondary[type=button],
.bg-white button.button-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #000;
  background: #FFF;
}
.bg-white .btn.btn-secondary:before,
.bg-white .btn-secondary.button:before,
.bg-white input.btn-secondary[type=submit]:before,
.bg-white input.btn-secondary[type=button]:before,
.bg-white button.btn-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.btn-secondary:after,
.bg-white .btn-secondary.button:after,
.bg-white input.btn-secondary[type=submit]:after,
.bg-white input.btn-secondary[type=button]:after,
.bg-white button.btn-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.button-secondary:before,
.bg-white .button-secondary.button:before,
.bg-white input.button-secondary[type=submit]:before,
.bg-white input.button-secondary[type=button]:before,
.bg-white button.button-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.button-secondary:after,
.bg-white .button-secondary.button:after,
.bg-white input.button-secondary[type=submit]:after,
.bg-white input.button-secondary[type=button]:after,
.bg-white button.button-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right.svg");
}
.bg-white .btn.btn-secondary .btn-bg,
.bg-white .btn-secondary.button .btn-bg,
.bg-white input.btn-secondary[type=submit] .btn-bg,
.bg-white input.btn-secondary[type=button] .btn-bg,
.bg-white button.btn-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-white .btn.button-secondary .btn-bg,
.bg-white .button-secondary.button .btn-bg,
.bg-white input.button-secondary[type=submit] .btn-bg,
.bg-white input.button-secondary[type=button] .btn-bg,
.bg-white button.button-secondary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg {
  background: #000;
}
.bg-white .btn.btn-secondary:hover,
.bg-white .btn-secondary.button:hover,
.bg-white input.btn-secondary[type=submit]:hover,
.bg-white input.btn-secondary[type=button]:hover,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-white .btn.btn-secondary:focus,
.bg-white .btn-secondary.button:focus,
.bg-white input.btn-secondary[type=submit]:focus,
.bg-white input.btn-secondary[type=button]:focus,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-white .btn.button-secondary:hover,
.bg-white .button-secondary.button:hover,
.bg-white input.button-secondary[type=submit]:hover,
.bg-white input.button-secondary[type=button]:hover,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone), .bg-white .btn.button-secondary:focus,
.bg-white .button-secondary.button:focus,
.bg-white input.button-secondary[type=submit]:focus,
.bg-white input.button-secondary[type=button]:focus,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #FFF;
}
.bg-white .btn.btn-secondary:hover:before,
.bg-white .btn-secondary.button:hover:before,
.bg-white input.btn-secondary[type=submit]:hover:before,
.bg-white input.btn-secondary[type=button]:hover:before,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.btn-secondary:hover:after,
.bg-white .btn-secondary.button:hover:after,
.bg-white input.btn-secondary[type=submit]:hover:after,
.bg-white input.btn-secondary[type=button]:hover:after,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.btn-secondary:focus:before,
.bg-white .btn-secondary.button:focus:before,
.bg-white input.btn-secondary[type=submit]:focus:before,
.bg-white input.btn-secondary[type=button]:focus:before,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.btn-secondary:focus:after,
.bg-white .btn-secondary.button:focus:after,
.bg-white input.btn-secondary[type=submit]:focus:after,
.bg-white input.btn-secondary[type=button]:focus:after,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.button-secondary:hover:before,
.bg-white .button-secondary.button:hover:before,
.bg-white input.button-secondary[type=submit]:hover:before,
.bg-white input.button-secondary[type=button]:hover:before,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.button-secondary:hover:after,
.bg-white .button-secondary.button:hover:after,
.bg-white input.button-secondary[type=submit]:hover:after,
.bg-white input.button-secondary[type=button]:hover:after,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.button-secondary:focus:before,
.bg-white .button-secondary.button:focus:before,
.bg-white input.button-secondary[type=submit]:focus:before,
.bg-white input.button-secondary[type=button]:focus:before,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.button-secondary:focus:after,
.bg-white .button-secondary.button:focus:after,
.bg-white input.button-secondary[type=submit]:focus:after,
.bg-white input.button-secondary[type=button]:focus:after,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}
.bg-white .btn.btn-secondary:hover:before,
.bg-white .btn-secondary.button:hover:before,
.bg-white input.btn-secondary[type=submit]:hover:before,
.bg-white input.btn-secondary[type=button]:hover:before,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.btn-secondary:focus:before,
.bg-white .btn-secondary.button:focus:before,
.bg-white input.btn-secondary[type=submit]:focus:before,
.bg-white input.btn-secondary[type=button]:focus:before,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.button-secondary:hover:before,
.bg-white .button-secondary.button:hover:before,
.bg-white input.button-secondary[type=submit]:hover:before,
.bg-white input.button-secondary[type=button]:hover:before,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .bg-white .btn.button-secondary:focus:before,
.bg-white .button-secondary.button:focus:before,
.bg-white input.button-secondary[type=submit]:focus:before,
.bg-white input.button-secondary[type=button]:focus:before,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before {
  transform: translateX(32px);
  opacity: 0;
}
.bg-white .btn.btn-secondary:hover:after,
.bg-white .btn-secondary.button:hover:after,
.bg-white input.btn-secondary[type=submit]:hover:after,
.bg-white input.btn-secondary[type=button]:hover:after,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.btn-secondary:focus:after,
.bg-white .btn-secondary.button:focus:after,
.bg-white input.btn-secondary[type=submit]:focus:after,
.bg-white input.btn-secondary[type=button]:focus:after,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.button-secondary:hover:after,
.bg-white .button-secondary.button:hover:after,
.bg-white input.button-secondary[type=submit]:hover:after,
.bg-white input.button-secondary[type=button]:hover:after,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after, .bg-white .btn.button-secondary:focus:after,
.bg-white .button-secondary.button:focus:after,
.bg-white input.button-secondary[type=submit]:focus:after,
.bg-white input.button-secondary[type=button]:focus:after,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  transform: translateX(16px);
  opacity: 1;
}
.bg-white .btn.btn-secondary:hover .btn-bg,
.bg-white .btn-secondary.button:hover .btn-bg,
.bg-white input.btn-secondary[type=submit]:hover .btn-bg,
.bg-white input.btn-secondary[type=button]:hover .btn-bg,
.bg-white button.btn-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-white .btn.btn-secondary:focus .btn-bg,
.bg-white .btn-secondary.button:focus .btn-bg,
.bg-white input.btn-secondary[type=submit]:focus .btn-bg,
.bg-white input.btn-secondary[type=button]:focus .btn-bg,
.bg-white button.btn-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-white .btn.button-secondary:hover .btn-bg,
.bg-white .button-secondary.button:hover .btn-bg,
.bg-white input.button-secondary[type=submit]:hover .btn-bg,
.bg-white input.button-secondary[type=button]:hover .btn-bg,
.bg-white button.button-secondary:hover:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg, .bg-white .btn.button-secondary:focus .btn-bg,
.bg-white .button-secondary.button:focus .btn-bg,
.bg-white input.button-secondary[type=submit]:focus .btn-bg,
.bg-white input.button-secondary[type=button]:focus .btn-bg,
.bg-white button.button-secondary:focus:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg {
  top: 0;
}

header {
  position: fixed;
  width: auto;
  height: 50px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1021;
  background: transparent;
  border: none;
  pointer-events: none;
}
header .header-bar {
  z-index: 1200;
  position: relative;
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  header {
    height: 56px;
  }
}
header.header-hidden .header-bar {
  transform: translateY(-100%);
}
header.header-visible .header-bar {
  transform: translateY(0);
}

.logo-wrapper,
.dropdown-wrapper,
.menu-btn,
.menu-overlay {
  pointer-events: all;
}

.logo-wrapper {
  width: 93px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: #FFF;
}
@media (min-width: 768px) {
  .logo-wrapper {
    width: 117px;
    height: 56px;
  }
}

.logo {
  width: 69px;
  display: inline-block;
}
@media (min-width: 768px) {
  .logo {
    width: 85px;
  }
}

.logo-image-secondary {
  display: none;
}

.header-light .logo-image-primary {
  display: none;
}
.header-light .logo-image-secondary {
  display: block;
}

.menu-btn {
  background: #FFF;
  cursor: pointer;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: none;
  border: 0;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 80px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .menu-btn {
    width: 96px;
    height: 56px;
  }
}
.menu-btn:focus {
  outline: none;
}
.menu-btn:hover {
  opacity: 0.7;
}
.menu-btn .menu-text {
  display: block;
}

.header-main .custom-dropdown {
  pointer-events: all;
}
.header-main .custom-dropdown .dropdown-trigger {
  position: absolute;
  top: 7px;
  right: 12px;
  transition: top 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
@media (min-width: 768px) {
  .header-main .custom-dropdown .dropdown-trigger {
    top: 10px;
    right: 16px;
  }
}
.header-main .custom-dropdown .dropdown-trigger-clone {
  visibility: hidden;
  display: block;
}
.header-main .custom-dropdown .dropdown-trigger,
.header-main .custom-dropdown .dropdown-trigger-clone {
  background: #000;
  border: 1px solid #000;
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  padding: 0 16px;
  height: 36px;
  border-radius: 0;
  text-transform: uppercase;
  z-index: 2;
  white-space: nowrap;
}
.header-main .custom-dropdown .dropdown-trigger:after,
.header-main .custom-dropdown .dropdown-trigger-clone:after {
  content: "";
  border: 0;
  background-image: url("../img/sitedesign-icon-dropdown-arrow-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  vertical-align: middle;
  display: inline-block;
}
.header-main .custom-dropdown .dropdown-trigger:hover, .header-main .custom-dropdown .dropdown-trigger:focus,
.header-main .custom-dropdown .dropdown-trigger-clone:hover,
.header-main .custom-dropdown .dropdown-trigger-clone:focus {
  background: #000;
  color: #FFF;
  border-color: #000;
  box-shadow: none;
  outline: none;
}
.header-main .custom-dropdown .dropdown-content {
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  min-width: auto;
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
  visibility: hidden;
  position: relative;
  top: 0;
  left: 0;
  text-transform: uppercase;
  z-index: 1;
  background: transparent;
  overflow: hidden;
  transform: translate(-100%, -100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  list-style: none;
  margin: 0;
}
.header-main .custom-dropdown .dropdown-content li {
  border: 1px solid #000;
}
.header-main .custom-dropdown .dropdown-content li:last-child {
  margin-bottom: 0;
}
.header-main .custom-dropdown .dropdown-content .dropdown-link {
  padding: 12px 16px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  border-radius: 0;
  line-height: 1;
  display: block;
  text-decoration: none;
}
.header-main .custom-dropdown .dropdown-content .dropdown-link:before {
  display: none;
}
.header-main .custom-dropdown .dropdown-content .dropdown-link:hover, .header-main .custom-dropdown .dropdown-content .dropdown-link:focus {
  background: #EEEAEB;
  color: #000;
}
.header-main .custom-dropdown .dropdown-content .dropdown-link.active {
  background: #000;
  color: #FFF;
}
.header-main .custom-dropdown .dropdown-content .dropdown-link.active:hover {
  background: #EEEAEB;
  color: #000;
}

.dropdown-wrapper {
  padding: 7px 12px;
  border: 1px solid transparent;
  border-top: 0;
  height: 50px;
  width: auto;
  background: #FFF;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 93px;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 768px) {
  .dropdown-wrapper {
    height: 56px;
    padding: 10px 16px;
    left: 117px;
  }
}
.dropdown-wrapper.dropdown-expanding {
  width: 248px;
  transform-origin: top left;
  background: #FFF;
  border-radius: 0;
  z-index: 1001;
  padding: 10px 16px;
}
.dropdown-wrapper.dropdown-expanding .dropdown-trigger {
  top: -46px;
  pointer-events: none;
  z-index: -999;
}
.dropdown-wrapper.dropdown-expanding .dropdown-trigger-clone {
  display: none;
}
.dropdown-wrapper.dropdown-expanding .dropdown-content {
  width: 216px;
  height: auto;
  opacity: 1;
  visibility: visible;
  overflow: visible;
  transform: translate(0, 0);
}

.header-with-dropdown .logo-wrapper {
  border-color: #000;
}
.header-with-dropdown .dropdown-wrapper {
  border-color: #000;
}

.header-dark .menu-btn {
  background: #000;
  color: #FFF;
  border-left: 1px solid #262631;
  border-bottom: 1px solid #262631;
}
.header-dark .logo-wrapper {
  background: #000;
}
.header-dark.header-main .custom-dropdown .dropdown-trigger {
  background: #262631;
}
.header-dark.header-main .custom-dropdown .dropdown-content {
  background: #000;
  color: #FFF;
  border-color: #262631;
}
.header-dark.header-main .custom-dropdown .dropdown-content li {
  border-color: #262631;
}
.header-dark.header-main .custom-dropdown .dropdown-content .dropdown-link {
  color: #FFF;
}
.header-dark.header-main .custom-dropdown .dropdown-content .dropdown-link:hover, .header-dark.header-main .custom-dropdown .dropdown-content .dropdown-link:focus {
  background: #262631;
  color: #FFF;
}
.header-dark.header-main .custom-dropdown .dropdown-content .dropdown-link.active {
  background: #262631;
  color: #FFF;
}
.header-dark.header-main .custom-dropdown .dropdown-content .dropdown-link.active:hover {
  background: #262631;
  color: #FFF;
}

.header-dark.header-with-dropdown .logo-wrapper,
.header-dark.header-with-dropdown .dropdown-wrapper {
  border-color: #262631;
  background: #000;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1100;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.5s ease, visibility 0s 0.5s;
}
.menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.5s ease, visibility 0s 0s;
}
.menu-overlay .menu-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 80px 12px 32px 12px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content {
    padding: 60px 24px 40px 24px;
  }
}
.menu-overlay .menu-content .menu-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: transform 0.4s ease;
  padding: 80px 12px 90px 12px;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer {
    padding: 0 24px;
    justify-content: center;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-main {
  transform: translateX(0);
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-main {
    justify-content: center;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .nav-main .sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-layout {
  flex-direction: row;
  height: 80%;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container {
  flex: 1;
  position: relative;
  height: 100%;
  overflow: hidden;
  padding-left: 0;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-gradient {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-gradient.main-menu-gradient-top {
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-gradient.main-menu-gradient-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container.main-menu-scrolled .main-menu-gradient-top {
  opacity: 1;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container.main-menu-scroll-bottom .main-menu-gradient-bottom {
  opacity: 1;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-wrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-wrapper::-webkit-scrollbar {
  display: none;
}
@media (max-height: 1000px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-main .main-menu-container .main-menu-wrapper {
    justify-content: flex-start;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu {
  opacity: 0;
  visibility: hidden;
  transform: translateX(0);
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .submenu-layout {
  display: flex;
  flex-direction: column;
  height: 95%;
  gap: 48px;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-submenu .submenu-layout {
    flex-direction: row;
    gap: 48px;
    height: 80%;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper {
  min-width: auto;
  display: flex;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper {
    min-width: 150px;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper .menu-back-item {
  margin: 0 !important;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper .menu-back-item .menu-back-trigger {
  background: none;
  border: none;
  color: #FFF;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper .menu-back-item .menu-back-trigger:before {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-right: 8px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper .menu-back-item .menu-back-trigger:hover {
  opacity: 0.7;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .menu-back-wrapper .menu-back-item .menu-back-trigger:hover:before {
  transform: rotate(180deg) translateX(4px);
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container {
  flex: 1;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  padding-left: 0;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container {
    padding-left: 48px;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .submenu-gradient {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .submenu-gradient.submenu-gradient-top {
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .submenu-gradient.submenu-gradient-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .submenu-gradient.submenu-gradient-right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 40px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  display: none;
}
@media (min-width: 768px) {
  .menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .submenu-gradient.submenu-gradient-right {
    display: block;
  }
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container.submenu-scrolled .submenu-gradient-top {
  opacity: 1;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container.submenu-scroll-bottom .submenu-gradient-bottom {
  opacity: 1;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper::-webkit-scrollbar {
  display: none;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper .nav-submenu {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease 0.2s;
  position: relative;
  z-index: 0;
}
.menu-overlay .menu-content .menu-layer.menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper .nav-submenu .menuSubmenu {
  padding-right: 0;
}
.menu-overlay.active .menuMain li a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.menu-overlay.active .menu-footer-bottom {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.menu-overlay.show-submenu .menu-content .menu-layer-main .menuMain li a {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.show-submenu .menu-content .menu-layer-submenu {
  opacity: 1;
  visibility: visible;
}
.menu-overlay.show-submenu .menu-content .menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper .nav-submenu {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.show-submenu .menu-content .menu-layer-submenu .nav-submenu-container .nav-submenu-wrapper .nav-submenu .menuSubmenu li a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}
.menu-overlay .menu-footer-bottom {
  font-size: 14px;
  line-height: 1.5;
  color: #FFF;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.menu-overlay .menu-footer-bottom a {
  text-decoration: none;
  color: #FFF;
}
.menu-overlay .menu-footer-bottom a:hover, .menu-overlay .menu-footer-bottom a:focus {
  color: #FFF;
}
.menu-overlay .menu-footer-bottom .copyright-text {
  color: #FFF;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link {
  list-style: none;
  margin: 0;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li {
  margin: 0 0 0 8px;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li a {
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li a:before, .menu-overlay .menu-footer-bottom .footer-bottom-link li a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
  margin-right: 8px;
  transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;
  transform: translateX(0);
  opacity: 1;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li a:after {
  transform: translateX(-16px);
  opacity: 0;
  position: absolute;
  left: 0;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li a:hover:before, .menu-overlay .menu-footer-bottom .footer-bottom-link li a:focus:before {
  transform: translateX(20px);
  opacity: 0;
}
.menu-overlay .menu-footer-bottom .footer-bottom-link li a:hover:after, .menu-overlay .menu-footer-bottom .footer-bottom-link li a:focus:after {
  transform: translateX(0);
  opacity: 1;
}
.menu-overlay.active .menu-footer-bottom {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.closing .menu-footer-bottom {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in;
}

.menuMain {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: left;
}
.menuMain li {
  margin: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.menuMain li a {
  font-size: 46px;
  line-height: 1;
  color: white;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: -1.38px;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, color 0.3s ease;
}
@media (min-width: 768px) {
  .menuMain li a {
    font-size: 100px;
    letter-spacing: -5px;
  }
}
.menu-overlay.active .menuMain li a {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.closing .menuMain li a {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in, color 0.3s ease;
}
.menuMain:hover li {
  opacity: 0.3;
}
.menuMain:hover li:hover {
  opacity: 1;
}

.menuSubmenu {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-align: left;
}
.menuSubmenu li {
  margin: 0 0 24px 0;
  overflow: hidden;
  height: 26px;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .menuSubmenu li {
    height: 60px;
  }
}
.menuSubmenu li a {
  font-size: 26px;
  line-height: 1;
  color: #FFF;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: -0.52px;
  white-space: normal;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out, color 0.3s ease;
}
@media (min-width: 768px) {
  .menuSubmenu li a {
    font-size: 60px;
    letter-spacing: -1.8px;
    white-space: nowrap;
  }
}
.menuSubmenu li a:hover {
  color: #cccccc;
  transform: translateY(0) translateX(10px);
}
.menuSubmenu li.current-menu-item a {
  color: #cccccc;
}
.menuSubmenu:hover li {
  opacity: 0.3;
}
.menuSubmenu:hover li:hover {
  opacity: 1;
}
.menu-overlay.show-submenu .menuSubmenu li a {
  opacity: 1;
  transform: translateY(0);
}
.menu-overlay.closing .menuSubmenu li a {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease-in, transform 0.3s ease-in, color 0.3s ease;
}

.menu-open {
  overflow: hidden;
}
.menu-open header,
.menu-open header.header-light {
  z-index: 1200;
}
.menu-open header .logo-wrapper,
.menu-open header.header-light .logo-wrapper {
  background: #000;
}
.menu-open header .logo-image-primary,
.menu-open header.header-light .logo-image-primary {
  display: block;
}
.menu-open header .logo-image-secondary,
.menu-open header.header-light .logo-image-secondary {
  display: none;
}
.menu-open header .menu-btn,
.menu-open header.header-light .menu-btn {
  color: white;
  background: #262631;
}
.menu-open header .dropdown-wrapper,
.menu-open header.header-light .dropdown-wrapper {
  display: none;
}

.header-main .dropdown-wrapper .btn.btn-text-link,
.header-main .dropdown-wrapper .btn-text-link.button,
.header-main .dropdown-wrapper input.btn-text-link[type=submit],
.header-main .dropdown-wrapper input.btn-text-link[type=button],
.header-main .dropdown-wrapper button.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  pointer-events: all;
}
.header-main .dropdown-wrapper .btn.btn-text-link:before,
.header-main .dropdown-wrapper .btn-text-link.button:before,
.header-main .dropdown-wrapper input.btn-text-link[type=submit]:before,
.header-main .dropdown-wrapper input.btn-text-link[type=button]:before,
.header-main .dropdown-wrapper button.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .header-main .dropdown-wrapper .btn.btn-text-link:after,
.header-main .dropdown-wrapper .btn-text-link.button:after,
.header-main .dropdown-wrapper input.btn-text-link[type=submit]:after,
.header-main .dropdown-wrapper input.btn-text-link[type=button]:after,
.header-main .dropdown-wrapper button.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right.svg");
  transform: rotate(180deg);
}

.header-dark .dropdown-wrapper .btn.btn-text-link:before,
.header-dark .dropdown-wrapper .btn-text-link.button:before,
.header-dark .dropdown-wrapper input.btn-text-link[type=submit]:before,
.header-dark .dropdown-wrapper input.btn-text-link[type=button]:before,
.header-dark .dropdown-wrapper button.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .header-dark .dropdown-wrapper .btn.btn-text-link:after,
.header-dark .dropdown-wrapper .btn-text-link.button:after,
.header-dark .dropdown-wrapper input.btn-text-link[type=submit]:after,
.header-dark .dropdown-wrapper input.btn-text-link[type=button]:after,
.header-dark .dropdown-wrapper button.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
  transform: rotate(180deg);
}

footer {
  padding: 24px 0 64px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #FFF;
}
footer a {
  text-decoration: none;
  color: #FFF;
}
footer a:hover, footer a:focus {
  color: #FFF;
}
footer .logo-footer {
  width: 106px;
}
footer ul {
  list-style: none;
  margin: 0;
}
footer ul.menuFooter li a, footer ul.footer-bottom-link li a {
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  position: relative;
}
footer ul.menuFooter li a:before, footer ul.menuFooter li a:after, footer ul.footer-bottom-link li a:before, footer ul.footer-bottom-link li a:after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
  margin-right: 8px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform: translateX(0);
  opacity: 1;
}
footer ul.menuFooter li a:after, footer ul.footer-bottom-link li a:after {
  transform: translateX(-16px);
  opacity: 0;
  position: absolute;
  left: 0;
}
footer ul.menuFooter li a:hover:before, footer ul.menuFooter li a:focus:before, footer ul.footer-bottom-link li a:hover:before, footer ul.footer-bottom-link li a:focus:before {
  transform: translateX(20px);
  opacity: 0;
}
footer ul.menuFooter li a:hover:after, footer ul.menuFooter li a:focus:after, footer ul.footer-bottom-link li a:hover:after, footer ul.footer-bottom-link li a:focus:after {
  transform: translateX(0);
  opacity: 1;
}
footer ul.menuFooter li a {
  font-size: 34px;
  letter-spacing: -0.68px;
}
@media (min-width: 768px) {
  footer ul.menuFooter li a {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}
footer ul.menuFooter .sub-menu {
  display: none;
}
footer ul.footer-bottom-link li {
  margin: 0 0 0 8px;
}
footer .menuSocial {
  display: flex;
  flex-direction: row;
  align-items: center;
}
footer .menuSocial li {
  margin-right: 4px;
}
footer .menuSocial li:last-child {
  margin-right: 0;
}
footer .menuSocial li a {
  font-size: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #262631;
}
footer .menuSocial li a:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
footer .menuSocial li.icon-social-facebook a:before {
  background-image: url(../img/sitedesign-social-facebook.svg);
}
footer .menuSocial li.icon-social-instagram a:before {
  background-image: url(../img/sitedesign-social-instagram.svg);
}
footer .menuSocial li.icon-social-linkedin a:before {
  background-image: url(../img/sitedesign-social-linkedin.svg);
}
footer .menuSocial li.icon-social-youtube a:before {
  background-image: url(../img/sitedesign-social-youtube.svg);
}
footer .menuSocial li.icon-social-x a:before {
  background-image: url(../img/sitedesign-social-x.svg);
}
footer .menuSocial li.icon-social-vimeo a:before {
  background-image: url(../img/sitedesign-social-vimeo.svg);
}
footer .footer-text {
  font-size: 12px;
}
footer .footer-text p {
  margin-bottom: 0;
}

/** Forms **/
form {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=phone],
input[type=number],
input[type=tel],
textarea,
.gform_wrapper.gravity-theme form input[type=text],
.gform_wrapper.gravity-theme form input[type=email],
.gform_wrapper.gravity-theme form input[type=number],
.gform_wrapper.gravity-theme form input[type=password],
.gform_wrapper.gravity-theme form input[type=phone],
.gform_wrapper.gravity-theme form input[type=number],
.gform_wrapper.gravity-theme form input[type=tel],
.gform_wrapper.gravity-theme form textarea {
  width: 100%;
  height: 40px;
  padding: 0 16px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  outline: none;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=text]:hover, input[type=text]:focus,
input[type=email]:hover,
input[type=email]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=password]:hover,
input[type=password]:focus,
input[type=phone]:hover,
input[type=phone]:focus,
input[type=number]:hover,
input[type=number]:focus,
input[type=tel]:hover,
input[type=tel]:focus,
textarea:hover,
textarea:focus,
.gform_wrapper.gravity-theme form input[type=text]:hover,
.gform_wrapper.gravity-theme form input[type=text]:focus,
.gform_wrapper.gravity-theme form input[type=email]:hover,
.gform_wrapper.gravity-theme form input[type=email]:focus,
.gform_wrapper.gravity-theme form input[type=number]:hover,
.gform_wrapper.gravity-theme form input[type=number]:focus,
.gform_wrapper.gravity-theme form input[type=password]:hover,
.gform_wrapper.gravity-theme form input[type=password]:focus,
.gform_wrapper.gravity-theme form input[type=phone]:hover,
.gform_wrapper.gravity-theme form input[type=phone]:focus,
.gform_wrapper.gravity-theme form input[type=number]:hover,
.gform_wrapper.gravity-theme form input[type=number]:focus,
.gform_wrapper.gravity-theme form input[type=tel]:hover,
.gform_wrapper.gravity-theme form input[type=tel]:focus,
.gform_wrapper.gravity-theme form textarea:hover,
.gform_wrapper.gravity-theme form textarea:focus {
  border-color: #000;
}

textarea,
.gform_wrapper.gravity-theme form textarea {
  padding: 12px;
  height: 120px;
}
textarea.medium,
.gform_wrapper.gravity-theme form textarea.medium {
  height: 120px !important;
}

::-webkit-input-placeholder { /* WebKit browsers */
  opacity: 1;
  font-weight: 600;
  color: #000;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  opacity: 1;
  font-weight: 600;
  color: #000;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  opacity: 1;
  font-weight: 600;
  color: #000;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  opacity: 1;
  font-weight: 600;
  color: #000;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

textarea {
  min-height: 100px;
  padding: 10px 16px;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input, textarea {
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}

.btnClear {
  width: 44px;
  height: 44px;
  line-height: 42px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 18px;
  color: #000;
  position: absolute;
  text-align: center;
  top: 0;
  right: 0;
  cursor: pointer;
  display: none;
}
.btnClear:before {
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  background: url(../img/icon-close-white.svg);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.gform_wrapper.gravity-theme form select,
select {
  width: 100%;
  height: 100%;
  min-height: 40px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  padding: 0 44px 0 0;
  box-shadow: none;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  color: #000;
  border: 0;
  border-bottom: 1px solid #000;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 16px;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ginput_container_select {
  width: 100%;
  height: 48px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  position: relative;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ginput_container_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
}
.ginput_container_select:before {
  content: "";
  width: 18px;
  height: 9px;
  display: block;
  position: absolute;
  right: 12px;
  top: 50%;
  background: url(../img/sitedesign-icon-arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.select2-container--default .select2-selection--single {
  border: solid 1px #000;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 44px;
  padding: 0 44px 0 16px;
  font-size: 14px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select2-container--default .select2-search--dropdown {
  padding: 16px;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: solid 1px #000;
}
.select2-container--default .select2-dropdown {
  border: solid 1px #000;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #950303;
}

.select2-results__options {
  font-size: 14px;
  color: #000;
}
.select2-results__options .select2-results__option {
  padding: 8px 16px;
}

.select2-container .select2-selection--single {
  height: 44px;
}

input[type=radio],
input[type=checkbox] {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background: #FFF;
  display: inline-block;
  position: relative;
  margin: 2px 8px 0 0 !important;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
input[type=radio]:focus,
input[type=checkbox]:focus {
  outline: none;
}

input[type=checkbox]:checked:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "\f122";
  font-family: "Ionicons";
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  color: #000;
}

input[type=radio] {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

input[type=radio]:checked:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #000;
  border: solid 3px #FFF;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.ginput_container_consent input {
  vertical-align: top;
  float: left;
}
.ginput_container_consent label {
  float: left;
}

.ginput_container_fileupload .gform_drop_area {
  width: 100%;
  float: left;
  margin: 0 0 15px 0;
  padding: 20px;
  text-align: center;
  border: dashed 2px #000;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions {
  width: 100%;
  float: left;
  text-align: center;
  display: block;
  margin: 0 0 10px 0;
}
.ginput_container_fileupload .gform_drop_area .gform_drop_instructions input[type=button] {
  margin: 0 auto;
  float: none;
}
.ginput_container_fileupload #extensions_message {
  font-size: 12px;
}

label,
legend {
  margin: 0 0 16px 0;
  font-weight: 500;
  font-size: 16px;
  border: none;
}
label.checkBoxLabel,
legend.checkBoxLabel {
  font-weight: normal;
}
label.gfield_label,
legend.gfield_label {
  margin: 0 0 16px 0 !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
label .gfield_required .gfield_required_text,
legend .gfield_required .gfield_required_text {
  color: #000 !important;
}
label.gfield_consent_label,
legend.gfield_consent_label {
  width: calc(100% - 40px);
}

/** Form Validation **/
.gfield_error input[type=radio],
.gfield_error input[type=checkbox] {
  border: solid 1px #950303 !important;
}
.gfield_error input[type=text],
.gfield_error input[type=email],
.gfield_error input[type=number],
.gfield_error input[type=password],
.gfield_error input[type=phone],
.gfield_error input[type=number],
.gfield_error input[type=tel],
.gfield_error textarea,
.gfield_error .ginput_container_select {
  border: 0 !important;
  border-bottom: solid 1px #950303 !important;
}
.gfield_error .gform_drop_area {
  border: dashed px #950303;
}
.gfield_error .ginput_container_select:before {
  border-color: #950303 transparent transparent transparent;
}
.gfield_error .validation_message {
  color: #950303;
  margin: 5px 0 0 0;
  font-size: 12px;
  font-weight: normal;
  background: none !important;
  padding: 0 !important;
  border: none !important;
}

.gform_wrapper.gravity-theme form .description,
.gform_wrapper.gravity-theme form .gfield_description,
.gform_wrapper.gravity-theme form .gsection_description,
.gform_wrapper.gravity-theme form .instruction {
  font-size: 12px;
}

/** Global Validation Message **/
.gform_validation_errors {
  display: none !important;
}

.validation_error {
  padding: 15px;
  margin: 0 0 15px 0;
  text-align: center;
  color: #950303;
  display: none !important;
}

/** Form Wrapper **/
/** Styled specifically for Gravity Forms class structure **/
.gform_wrapper {
  width: 100%;
  margin: 0 auto;
}
.gform_wrapper form {
  float: left;
}
.gform_wrapper.noLabels_wrapper .gfield_label {
  display: none;
}
.gform_wrapper .checkBoxGroup .gfield_label {
  display: inline-block;
}

ul.gform_fields,
div.gform_fields {
  margin: 0;
  padding: 0;
}
ul.gform_fields li,
ul.gform_fields .gfield,
div.gform_fields li,
div.gform_fields .gfield {
  list-style: none;
  margin: 0;
}
ul.gform_fields li .ginput_container,
ul.gform_fields .gfield .ginput_container,
div.gform_fields li .ginput_container,
div.gform_fields .gfield .ginput_container {
  position: relative;
}
ul.gform_fields li .ginput_container .ginput_counter,
ul.gform_fields .gfield .ginput_container .ginput_counter,
div.gform_fields li .ginput_container .ginput_counter,
div.gform_fields .gfield .ginput_container .ginput_counter {
  display: none;
}
ul.gform_fields li.hideLabel > label,
ul.gform_fields .gfield.hideLabel > label,
div.gform_fields li.hideLabel > label,
div.gform_fields .gfield.hideLabel > label {
  display: none;
}
ul.gform_fields li.dateOfBirthLabel,
ul.gform_fields .gfield.dateOfBirthLabel,
div.gform_fields li.dateOfBirthLabel,
div.gform_fields .gfield.dateOfBirthLabel {
  margin: 0;
}
ul.gform_fields li:before,
ul.gform_fields .gfield:before,
div.gform_fields li:before,
div.gform_fields .gfield:before {
  display: none;
}

ul.gfield_checkbox, ul.gfield_radio {
  margin: 0;
  padding: 0;
}
ul.gfield_checkbox li, ul.gfield_radio li {
  margin: 0 0 16px 0;
}
ul.gfield_checkbox li input, ul.gfield_radio li input {
  float: left;
}
ul.gfield_checkbox li label, ul.gfield_radio li label {
  margin: 0;
  overflow: auto;
  display: block;
  font-weight: normal;
  color: #000;
  font-size: 14px;
}
ul.gfield_checkbox li:last-child, ul.gfield_radio li:last-child {
  margin-bottom: 0;
}

.gform_wrapper.gravity-theme form .gfield_checkbox label,
.gform_wrapper.gravity-theme form .gfield_radio label {
  font-size: 14px;
}

/* The switch - the box around the slider */
/* Hide default HTML checkbox */
.checkboxSwitch {
  overflow: hidden;
}
.checkboxSwitch .ginput_container {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.checkboxSwitch .ginput_container input {
  display: none;
}
.checkboxSwitch .ginput_container input:checked + .slider {
  background-color: #000;
}
.checkboxSwitch .ginput_container input:focus + .slider {
  box-shadow: 0 0 1px #000;
}
.checkboxSwitch .ginput_container input:checked + .slider:before {
  transform: translateX(26px);
}
.checkboxSwitch .ginput_container .gfield_label {
  width: 600px;
  max-width: none;
  float: none;
  padding-left: 75px;
  position: relative;
  z-index: 3;
  line-height: 34px;
}
.checkboxSwitch .ginput_container .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  z-index: 1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-border-radius: 34px;
  -moz-border-radius: 34px;
  border-radius: 34px;
}
.checkboxSwitch .ginput_container .slider:before {
  position: absolute;
  content: "";
  height: 30px;
  width: 30px;
  left: 2px;
  bottom: 2px;
  background: #FFF;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.ginput_container_fileupload {
  color: #000;
  font-size: 14px;
}
.ginput_container_fileupload .gform_fileupload_rules {
  font-size: 14px !important;
}

input[type=file] {
  font-size: 13px;
  margin-bottom: 8px;
  outline: none !important;
  width: auto;
  color: #000;
}
input[type=file]::-webkit-file-upload-button {
  visibility: hidden;
  margin-left: -74px;
}
input[type=file]:before {
  content: "Choose File";
  width: auto;
  min-width: 140px;
  height: 44px;
  line-height: 44px;
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: normal;
  padding: 0 24px;
  margin: 0;
  display: inline-block;
  background: #000;
  color: #FFF;
  text-shadow: none;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  outline: none;
  box-shadow: none !important;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
}
input[type=file]:hover {
  cursor: pointer;
}
input[type=file]:hover:before {
  background: #000;
  color: #FFF;
}
.btnClearFile {
  top: 4px;
}

/** Specific Gravity Form Classes **/
.gfield_description {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.gform_heading {
  text-align: center;
}
.gform_heading .gform_title {
  color: #000;
  font-weight: 700;
}
.gform_heading .gform_description {
  color: #000;
  display: inline-block;
  margin-bottom: 32px;
  max-width: 480px;
}

.gform_footer {
  padding: 0 !important;
  float: none !important;
  display: inline-block !important;
  position: relative;
}
.gform_footer input[type=submit] {
  margin: 0;
}
.gform_footer .gform_ajax_spinner {
  position: absolute;
  top: 50%;
  padding-left: 8px;
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.input-large input[type=text],
.input-large input[type=email],
.input-large input[type=number],
.input-large input[type=password],
.input-large input[type=phone],
.input-large input[type=number],
.input-large input[type=tel],
.input-large textarea {
  height: 60px;
  font-size: 14px;
}
.input-large .ginput_container_select {
  height: 60px;
}

.hidden_label .gfield_label {
  display: none;
}

.gform-body .gform_fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: -6px;
  margin-right: -6px;
}
.gform-body .gfield {
  margin-bottom: 12px !important;
  padding: 0 6px;
}
.gform-body .ginput_complex.gf_name_has_2 {
  display: flex;
  align-items: flex-start;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: -6px;
  margin-left: -6px;
  flex-wrap: wrap;
}
.gform-body .ginput_complex.gf_name_has_2 > span {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 6px;
  padding-left: 6px;
  margin-top: var(--bs-gutter-y);
}
.gform-body .ginput_complex.gf_name_has_2 > span:first-child {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .gform-body .ginput_complex.gf_name_has_2 > span {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .gform-body .ginput_complex.gf_name_has_2 > span:first-child {
    margin-bottom: 0;
  }
}

.gform_heading {
  display: none;
}

.grecaptcha-badge {
  pointer-events: none;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
  margin: 0 4px;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

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

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.splide__arrows {
  display: flex;
  gap: 16px;
  align-items: center;
}
.splide__arrows.splide__arrows--side {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  justify-content: space-between;
  padding: 0 32px;
  pointer-events: none;
  transform: translateY(-50%);
}
.splide__arrows.splide__arrows--side .splide__arrow {
  pointer-events: auto;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}
.splide__arrows.splide__arrows--overlay {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.splide__arrows.splide__arrows--minimal .splide__arrow {
  width: 24px;
  height: 24px;
}
.splide__arrows.splide__arrows--large .splide__arrow {
  width: 48px;
  height: 48px;
}

.panel-feature__arrows {
  z-index: 10;
}
.panel-feature__arrows .splide__arrows {
  gap: 16px;
  margin: 0;
}

.splide__arrow {
  position: relative;
  top: auto;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 0;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.2s ease-in-out;
  padding: 0;
  cursor: pointer;
}
.splide__arrow svg {
  width: 100%;
  height: 100%;
}
.splide__arrow:hover {
  opacity: 0.7;
}
.splide__arrow[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}
.splide__arrow[disabled]:hover {
  transform: none;
}

/** Pagination **/
ul.pagination {
  width: 100%;
  height: 24px;
  text-align: center;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}
ul.pagination li {
  list-style: none;
  float: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
  width: 24px;
  height: 24px;
}
ul.pagination li .ion {
  font-size: 12px;
}
ul.pagination li a {
  cursor: pointer;
  margin: 0;
  padding: 0;
  border: none;
  color: #000;
  text-decoration: none;
  width: 100%;
  height: 100%;
  line-height: 24px;
  display: block;
  background: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
ul.pagination li a:hover, ul.pagination li a:focus {
  color: #000;
  border: none;
  background: none;
  outline: none;
}
ul.pagination li.active a {
  background: none;
  color: #000;
}
ul.pagination li.active a:hover, ul.pagination li.active a:focus {
  color: #000;
  background: none;
  border: none;
  outline: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  display: block;
}
.video-wrapper.video-overlay:after {
  content: " ";
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.video-wrapper img,
.video-wrapper video {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  object-fit: cover;
}

.video-play-button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.3);
  color: #FFF;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .video-play-button svg {
    width: 68px;
  }
}

.fancybox__thumbs {
  height: 1px;
  overflow: hidden;
}

.fancybox__caption {
  text-align: center;
}

.fancybox-gallery .fancybox__content > .carousel__button.is-close,
.fancybox-gallery .carousel__button.fancybox__button--close,
.fancybox-video .fancybox__content > .carousel__button.is-close,
.fancybox-video .carousel__button.fancybox__button--close {
  position: fixed;
  top: 16px;
  right: 16px;
  background: #000;
  border-radius: 0;
  width: 40px;
  height: 40px;
}
.fancybox-gallery .fancybox__content > .carousel__button.is-close:hover,
.fancybox-gallery .carousel__button.fancybox__button--close:hover,
.fancybox-video .fancybox__content > .carousel__button.is-close:hover,
.fancybox-video .carousel__button.fancybox__button--close:hover {
  color: #FFF;
}

.fancybox__gallery_title, .fancybox-video .fancybox__caption {
  font-family: "Barlow", Helvetica, Arial, sans-serif;
  font-size: 20px;
  position: fixed;
  top: 20px;
  left: 20px;
  text-transform: uppercase;
  padding-right: 64px;
}
@media (min-width: 768px) {
  .fancybox__gallery_title, .fancybox-video .fancybox__caption {
    font-size: 50px;
    top: 4px;
    left: 16px;
  }
}

@media (min-width: 1024px) {
  .fancybox-video .fancybox__slide {
    padding: 64px 0;
  }
}
@media (min-width: 768px) {
  .fancybox-video .fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    width: 85%;
    height: 85%;
  }
}

@media (min-width: 1024px) {
  .fancybox-gallery .fancybox__slide {
    padding: 120px 100px;
  }
}
.fancybox-gallery .fancybox__nav .carousel__button {
  background-color: #FFF;
  color: #000;
  border-radius: 0;
  width: 40px;
  height: 40px;
}
.fancybox-gallery .fancybox__nav .carousel__button svg {
  filter: none;
}
.fancybox-gallery .fancybox__nav .carousel__button.is-next {
  right: 0 !important;
}
.fancybox-gallery .fancybox__nav .carousel__button.is-prev {
  left: 0 !important;
}

.fancybox__container {
  z-index: 1200;
}

.image-tile {
  position: relative;
  overflow: hidden;
}
.image-tile .image-wrapper {
  transition: all 0.3s ease;
}
.image-tile .image-wrapper.ratio {
  --bs-aspect-ratio: 100%;
}
.image-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}
.image-tile .video-play-overlay {
  width: 80%;
  margin: auto;
}
.image-tile__content {
  position: relative;
  z-index: 3;
}
.image-tile:hover::before {
  opacity: 1;
}
.image-tile:hover .image-title:before {
  opacity: 1;
  transform: translateX(0);
}
.image-tile:hover .image-title__text {
  transform: translateX(0);
}
.image-tile .image-title {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
}
.image-tile .image-title:before {
  content: "";
  display: inline-block;
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
  width: 26px;
  height: 26px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transform: translateX(-34px);
  transition: all 0.3s ease;
  flex: 0 0 auto;
}
.image-tile .image-title__text {
  transform: translateX(-24px);
  transition: transform 0.3s ease;
}

.image-tile__content {
  max-width: 350px;
}

.tile-hover--video .video-play-overlay {
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 2;
}
.tile-hover--video .video-play-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(0.8);
  transition: transform 0.5s ease;
}
.tile-hover--video:hover .video-play-overlay {
  opacity: 1;
}
.tile-hover--video:hover .video-play-overlay video {
  transform: scale(1);
}

@media (min-width: 768px) {
  .image-tile.image-tile--carousel .ratio {
    --bs-aspect-ratio: 66.67%;
  }
  .image-tile.image-tile--grid .ratio {
    --bs-aspect-ratio: 80%;
  }
}

.tile-team {
  padding-bottom: 158px;
  overflow: hidden;
}
.tile-team.tile-team--expanded .tile-team__detail {
  height: calc(100% - 80px);
  overflow: visible;
}
.tile-team.tile-team--expanded .tile-team__detail .tile-detail-gradient {
  display: block;
}
.tile-team.tile-team--expanded .tile-team__detail .tile-team__detail-scroll {
  overflow-y: auto;
  scroll-behavior: smooth;
}
.tile-team.tile-team--expanded .tile-team__more.btn.btn-text-link,
.tile-team.tile-team--expanded .tile-team__more.btn-text-link.button,
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=submit],
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=button],
.tile-team.tile-team--expanded button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  bottom: 24px;
}
.tile-team.tile-team--expanded .tile-team__more.btn.btn-text-link:before,
.tile-team.tile-team--expanded .tile-team__more.btn-text-link.button:before,
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=submit]:before,
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=button]:before,
.tile-team.tile-team--expanded button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .tile-team.tile-team--expanded .tile-team__more.btn.btn-text-link:after,
.tile-team.tile-team--expanded .tile-team__more.btn-text-link.button:after,
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=submit]:after,
.tile-team.tile-team--expanded input.tile-team__more.btn-text-link[type=button]:after,
.tile-team.tile-team--expanded button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-minus-white.svg");
}

.tile-team__detail {
  transition: all 0.5s ease-in-out;
  height: 78px;
  overflow: hidden;
  bottom: 80px;
  left: 0;
  right: 0;
  top: auto;
  position: absolute;
  background: #000;
  z-index: 1;
}
.tile-team__detail .tile-detail-gradient {
  position: absolute;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.tile-team__detail .tile-detail-gradient.tile-detail-gradient-top {
  top: 20px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.tile-team__detail .tile-detail-gradient.tile-detail-gradient-bottom {
  bottom: 20px;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}
.tile-team__detail.scrolled .tile-detail-gradient-top {
  opacity: 1;
}
.tile-team__detail.scroll-bottom .tile-detail-gradient-bottom {
  opacity: 1;
}

.tile-team__detail-scroll {
  height: 100%;
}
.tile-team--expanded .tile-team__detail-scroll {
  height: calc(100% - 0px);
}

.tile-team__image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.tile-team__profile {
  z-index: 1;
}

.tile-team__more.btn.btn-text-link,
.tile-team__more.btn-text-link.button,
input.tile-team__more.btn-text-link[type=submit],
input.tile-team__more.btn-text-link[type=button],
button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  position: absolute;
  bottom: 40px;
  left: 24px;
  border: 0;
  background: transparent;
  color: #FFF;
  font-size: 14px;
  line-height: 1;
  min-height: 0;
  font-weight: 600;
  padding: 0;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}
.tile-team__more.btn.btn-text-link:before,
.tile-team__more.btn-text-link.button:before,
input.tile-team__more.btn-text-link[type=submit]:before,
input.tile-team__more.btn-text-link[type=button]:before,
button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .tile-team__more.btn.btn-text-link:after,
.tile-team__more.btn-text-link.button:after,
input.tile-team__more.btn-text-link[type=submit]:after,
input.tile-team__more.btn-text-link[type=button]:after,
button.tile-team__more.btn-text-link:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-plus-white.svg");
}

.tile-product-list-item {
  position: relative;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 20px 24px;
}
@media (min-width: 768px) {
  .tile-product-list-item::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    transition: top 0.3s ease;
    z-index: 1;
  }
}
.tile-product-list-item .h3 {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .tile-product-list-item .h3 {
    white-space: nowrap;
  }
}
.tile-product-list-item .h3 .default-text {
  transition: opacity 0.3s ease;
  opacity: 1;
}
.tile-product-list-item .h3 .marquee-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation-play-state: paused;
  color: #FFF;
  display: none;
}
@media (min-width: 768px) {
  .tile-product-list-item .h3 .marquee-wrapper {
    display: inline-block;
  }
}
.tile-product-list-item .h3 .marquee-wrapper .marquee-content {
  display: inline-block;
  white-space: nowrap;
  padding-right: 4rem;
}
.tile-product-list-item .video-play-overlay {
  width: 400px;
  z-index: 3;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.tile-product-list-item:hover {
  text-decoration: none;
  color: #000;
}
.tile-product-list-item:hover::before {
  top: 0;
}
.tile-product-list-item:hover .h3 .default-text {
  color: #000;
}
@media (min-width: 768px) {
  .tile-product-list-item:hover .h3 .default-text {
    opacity: 0;
  }
}
.tile-product-list-item:hover .h3 .marquee-wrapper {
  color: #FFF;
  opacity: 1;
  animation: marquee-move 8s linear infinite;
  animation-play-state: running;
}

@keyframes marquee-move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.tile-office h6, .tile-office .h6 {
  margin-bottom: 10px;
}

.tile-job-text {
  line-height: 0.75;
}

.tile-news {
  text-decoration: none;
  cursor: pointer;
}
.tile-news .tile-news__image {
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
  z-index: 2;
}
.tile-news .tile-news__image img {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0.5;
  object-fit: cover;
}
.tile-news .tile-news__text {
  z-index: 3;
}
.tile-news:hover .tile-news__image {
  opacity: 1;
}
.tile-news:hover .btn.btn-primary,
.tile-news:hover .btn-primary.button,
.tile-news:hover input.btn-primary[type=submit],
.tile-news:hover input.btn-primary[type=button],
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) {
  color: #FFF;
}
.tile-news:hover .btn.btn-primary:before,
.tile-news:hover .btn-primary.button:before,
.tile-news:hover input.btn-primary[type=submit]:before,
.tile-news:hover input.btn-primary[type=button]:before,
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before, .tile-news:hover .btn.btn-primary:after,
.tile-news:hover .btn-primary.button:after,
.tile-news:hover input.btn-primary[type=submit]:after,
.tile-news:hover input.btn-primary[type=button]:after,
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}
.tile-news:hover .btn.btn-primary:before,
.tile-news:hover .btn-primary.button:before,
.tile-news:hover input.btn-primary[type=submit]:before,
.tile-news:hover input.btn-primary[type=button]:before,
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):before {
  transform: translateX(32px);
  opacity: 0;
}
.tile-news:hover .btn.btn-primary:after,
.tile-news:hover .btn-primary.button:after,
.tile-news:hover input.btn-primary[type=submit]:after,
.tile-news:hover input.btn-primary[type=button]:after,
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone):after {
  transform: translateX(16px);
  opacity: 1;
}
.tile-news:hover .btn.btn-primary .btn-bg,
.tile-news:hover .btn-primary.button .btn-bg,
.tile-news:hover input.btn-primary[type=submit] .btn-bg,
.tile-news:hover input.btn-primary[type=button] .btn-bg,
.tile-news:hover button.btn-primary:not(.accordion-button, .splide__arrow, .filter-btn, .tile-team__more, .dropdown-toggle, .menu-btn, .dropdown-trigger, .dropdown-trigger-clone) .btn-bg {
  top: 0;
}
.tile-news.tile-news--red .tile-news__image {
  background-color: rgb(234, 23, 66);
}
.tile-news.tile-news--blue .tile-news__image {
  background-color: rgb(40, 111, 255);
}
.tile-news.tile-news--peach .tile-news__image {
  background-color: rgb(255, 146, 127);
}
.tile-news.tile-news--no-image .tile-news__text {
  height: 100%;
}

.content-text ul {
  margin: 0 0 24px 24px;
  padding: 0;
}
.content-text ul li {
  margin: 0 0 8px 0;
  position: relative;
}
.content-text ul li ul {
  margin: 10px 0 0 0;
}
.content-text ul li ul li::before {
  content: "-";
}
.content-text ol {
  margin: 0 0 24px 24px;
  padding: 0;
  counter-reset: item;
}
.content-text ol li {
  margin: 0 0 8px 0;
  padding: 0;
  position: relative;
  counter-increment: item;
  list-style: none;
}
.content-text ol li:before {
  content: counter(item).;
  display: inline-block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: -24px;
  top: -2px;
  font-weight: 700;
}
.content-text iframe[src*="youtube.com"],
.content-text iframe[src*="youtu.be"],
.content-text iframe[src*="vimeo.com"] {
  width: 100% !important;
  height: auto;
  aspect-ratio: 16/9;
}
.content-text iframe {
  width: 100%;
  max-width: 100%;
}

.content-block-list-1 h1, .content-block-list-1 h2, .content-block-list-1 h3, .content-block-list-1 h4, .content-block-list-1 .lead,
.content-block-list-1 .lead p,
.lead .content-block-list-1 p, .content-block-list-1 h5, .content-block-list-1 h6, .content-block-list-1 .h1, .content-block-list-1 .h2, .content-block-list-1 .h3, .content-block-list-1 .h4, .content-block-list-1 .h5, .content-block-list-1 .h6 {
  margin-bottom: 0;
}

.content-block-list-2 table td {
  width: 50%;
}

.content-quote blockquote {
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
}
table td {
  width: 1%;
  padding: 16px;
  border-top: 1px solid;
}
table td:first-child {
  padding-left: 0;
}
table td:last-child {
  padding-right: 0;
}
table + table {
  margin-top: 24px;
}

.accordion.accordion-flush:first-child {
  border-top: 1px solid;
}
.accordion.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion.accordion-flush .accordion-button:not(.collapsed):after {
  background-image: url("../img/sitedesign-icon-minus.svg");
  transform: rotate(0);
}
.accordion.accordion-flush .accordion-button:after {
  background-image: url("../img/sitedesign-icon-plus.svg");
}
.accordion.accordion-flush .accordion-header > * {
  font-weight: inherit;
  font-size: inherit;
  text-transform: inherit;
}

.gform-body .gfield {
  margin-bottom: 16px !important;
}
.gform-body .ginput_complex.gf_name_has_2 > span:first-child {
  margin-bottom: 16px;
}

.gform_footer {
  margin-top: 16px;
}

.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) {
  position: relative;
}
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) .gfield_label {
  position: absolute;
  top: 10px;
  left: 16px;
  text-transform: uppercase;
  background: transparent;
  padding: 0 4px;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
  margin: 0 !important;
  transform-origin: left top;
}
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) .ginput_container {
  position: relative;
}
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=text]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=email]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=number]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=password]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=phone]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) input[type=tel]::placeholder,
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent) textarea::placeholder {
  opacity: 0;
}
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent):focus-within .gfield_label, .content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent).gfield--has-input-focused .gfield_label {
  top: -10px;
  font-size: 12px;
  font-weight: 600;
  transform: scale(0.75);
}
.content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent).gfield_error:focus-within .gfield_label, .content-block-form .gform_wrapper .gfield:not(.gfield--type-checkbox, .gfield--type-radio, .gfield--type-consent).gfield_error.gfield--has-input-focused .gfield_label {
  color: #950303;
}
.content-block-form .gform_wrapper .ginput_container_consent label {
  margin-bottom: 0;
}

.bg-black .accordion.accordion-flush .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.bg-black .accordion.accordion-flush .accordion-button:not(.collapsed):after {
  background-image: url("../img/sitedesign-icon-minus-white.svg");
}
.bg-black .accordion.accordion-flush .accordion-button:after {
  background-image: url("../img/sitedesign-icon-plus-white.svg");
}
.bg-black .accordion.accordion-flush .accordion-item {
  border-color: #FFF;
}
.bg-black input[type=text],
.bg-black input[type=email],
.bg-black input[type=number],
.bg-black input[type=password],
.bg-black input[type=phone],
.bg-black input[type=number],
.bg-black input[type=tel],
.bg-black textarea,
.bg-black .gform_wrapper.gravity-theme form input[type=text],
.bg-black .gform_wrapper.gravity-theme form input[type=email],
.bg-black .gform_wrapper.gravity-theme form input[type=number],
.bg-black .gform_wrapper.gravity-theme form input[type=password],
.bg-black .gform_wrapper.gravity-theme form input[type=phone],
.bg-black .gform_wrapper.gravity-theme form input[type=number],
.bg-black .gform_wrapper.gravity-theme form input[type=tel],
.bg-black .gform_wrapper.gravity-theme form textarea {
  border-color: #FFF;
  color: #FFF;
}
.bg-black .gform_wrapper.gravity-theme form select,
.bg-black select {
  border-color: #FFF;
  color: #FFF;
}

.splide__arrow {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  left: auto;
  right: auto;
  padding: 0;
  color: inherit;
}
.splide__arrow.splide__arrow--prev {
  left: auto;
}
.splide__arrow.splide__arrow--next {
  right: auto;
}

.bg-black .splide__arrow:before,
.bg-red .splide__arrow:before {
  background-image: url("../img/sitedesign-icon-arrow-right-white.svg");
}

.panel-carousel .splide__arrow {
  width: 40px;
  height: 40px;
}

.panel-video-header .video-header {
  position: sticky;
  height: 100vh;
  top: 0;
  overflow: hidden;
}
.panel-video-header .video-header__video {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.intro-content {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .intro-content {
    padding-top: 188px;
    padding-bottom: 200px;
  }
  .is-relative .intro-content {
    padding-top: 40px;
  }
}

.video-header:after {
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  height: 200px;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.panel-video-with-horizontal-text .video-header {
  height: 100vh !important;
  height: 100dvh !important;
}
.panel-video-with-horizontal-text .video-header__video {
  height: 100vh !important;
  height: 100dvh !important;
}
.panel-video-with-horizontal-text .video-header:after {
  background: linear-gradient(180deg, var(--start-color) 0%, var(--end-color) 100%);
}

.vertical-text-slider--wrapper {
  position: relative;
  transition: all 0.3s ease;
}

.vertical-text-slider {
  z-index: 3;
  display: flex;
  align-items: flex-end;
  position: fixed;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
}
.is-relative .vertical-text-slider {
  position: relative;
}
.vertical-text-slider:before {
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../img/sitedesign-icon-arrow-down-white.svg");
  margin-right: 8px;
}
@media (min-width: 768px) {
  .vertical-text-slider:before {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }
}
.vertical-text-slider .vertical-text-item {
  white-space: nowrap;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.64px;
}
@media (min-width: 768px) {
  .vertical-text-slider .vertical-text-item {
    font-size: 100px;
    letter-spacing: -5px;
  }
}

.horizontal-text-slider--wrapper {
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .horizontal-text-slider--wrapper {
    bottom: env(safe-area-inset-bottom, 20px) !important;
    padding-bottom: 20px;
    min-height: calc(env(safe-area-inset-bottom, 0px) + 80px);
  }
}

.stack-container {
  min-height: 100vh;
}

.stack-item-wrapper {
  min-height: 50vh;
  position: sticky;
}
.stack-item-wrapper:last-of-type .stack-item {
  border-bottom: solid 1px #000;
}

.stack-item-list {
  display: grid;
  position: sticky;
  top: 0;
}

.stack-item {
  grid-area: 1/1/2/2;
  height: calc(50vh - 64px);
  overflow: hidden;
  position: relative;
  background: #FFF;
  border: solid 1px #000;
  border-bottom: none;
}

.stack-header {
  display: flex;
  align-items: center;
  min-height: 54px;
}
.stack-header.h4, .stack-header.lead,
.lead p.stack-header {
  min-height: 50px;
}

.stack-header,
.stack-content {
  z-index: 2;
}

.stack-image {
  z-index: 1;
}
.stack-image img {
  mix-blend-mode: screen;
  opacity: 0.5;
  object-fit: cover;
}

.panel-feature.ratio {
  --bs-aspect-ratio: 200%;
}
@media (min-width: 768px) {
  .panel-feature.ratio {
    --bs-aspect-ratio: 56.25% ;
  }
}
.panel-feature--has-border .panel-feature__container {
  border: 12px solid #FFF;
}
@media (min-width: 768px) {
  .panel-feature--has-border .panel-feature__container {
    border-width: 24px;
  }
}
@media (max-width: 767.98px) {
  .panel-feature--has-border:not(.panel-feature--split) .panel-feature__container {
    border-right: 0;
  }
}

.panel-feature__container {
  transition: border-color 0.3s ease;
}

.panel-feature__background {
  z-index: 1;
}

.panel-feature__image {
  object-fit: cover;
  object-position: center;
}

.panel-feature__carousel .splide__slide .panel-feature__image {
  object-fit: cover;
  object-position: center;
}

.panel-feature__arrows {
  background: #FFF;
  z-index: 3;
  width: 112px;
  position: absolute;
  padding: 24px;
}
.panel-feature__arrows .splide__arrow {
  color: #000;
}
.bg-black .panel-feature__arrows {
  background: #000;
}
.bg-black .panel-feature__arrows .splide__arrow {
  color: #FFF;
}
.bg-black .panel-feature__arrows .splide__arrow path {
  fill: #FFF;
}

.panel-feature.panel-feature--has-border .panel-feature__arrows {
  top: 0;
  right: 0;
}
@media (max-width: 767.98px) {
  .panel-feature.panel-feature--has-border .panel-feature__arrows {
    right: 24px;
  }
}
.panel-feature.panel-feature--no-border .panel-feature__arrows {
  right: 24px;
  top: 24px;
}
@media (max-width: 767.98px) {
  .panel-feature.panel-feature--no-border .panel-feature__arrows {
    top: 0;
  }
}

.panel-feature__heading {
  z-index: 3;
  top: 12px;
  left: 12px;
}
@media (min-width: 768px) {
  .panel-feature__heading {
    top: 24px;
    left: 24px;
  }
}

.panel-feature__textbox {
  z-index: 3;
  margin-right: 24px;
}
@media (min-width: 768px) {
  .panel-feature__textbox {
    max-width: 460px;
    position: absolute;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .panel-feature--text-top-right .panel-feature__textbox {
    top: 0;
    right: 0;
  }
  .panel-feature--text-top-right.panel-feature--no-border .panel-feature__textbox {
    top: 24px;
    right: 24px;
  }
}

@media (min-width: 768px) {
  .panel-feature--text-bottom-right .panel-feature__textbox {
    bottom: 0;
    right: 0;
  }
  .panel-feature--text-bottom-right.panel-feature--no-border .panel-feature__textbox {
    bottom: 24px;
    right: 24px;
  }
}

@media (max-width: 767.98px) {
  .panel-feature--type-heading .image-caption {
    z-index: 3;
  }
}

@media (max-width: 767.98px) {
  .panel-feature--type-carousel .panel-feature__textbox {
    top: 0;
    left: 0;
    right: 24px;
    position: absolute;
    margin-right: 0;
  }
  .panel-feature--type-carousel.panel-feature--has-border .panel-feature__textbox {
    padding-left: 0 !important;
  }
}

.panel-feature.panel-feature--has-border .panel-feature__container {
  border-color: #FFF;
}

.panel-feature.bg-red.panel-feature--has-border:not(.panel-feature--split) .panel-feature__container {
  border-color: #950303;
}

.panel-feature.bg-black.panel-feature--has-border:not(.panel-feature--split) .panel-feature__container {
  border-color: #000;
}

.panel-feature.bg-white.panel-feature--has-border .panel-feature__container {
  border-color: #FFF;
}

@media (min-width: 768px) {
  .panel-feature--split .panel-feature__background {
    flex: 0 0 50%;
    width: 50%;
  }
}
@media (max-width: 767.98px) {
  .panel-feature--split .panel-feature__background {
    width: 100%;
    position: relative;
    padding-bottom: 100%;
  }
  .panel-feature--split .panel-feature__background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.panel-feature--split .panel-feature__textbox {
  z-index: 2;
  max-width: none;
  padding: 32px 16px;
}
@media (min-width: 768px) {
  .panel-feature--split .panel-feature__textbox {
    flex: 0 0 50%;
    max-height: none;
    max-width: none;
    width: 50%;
    padding: 64px;
  }
  .panel-feature--split .panel-feature__textbox .panel-feature__content {
    max-width: 450px;
  }
}
.panel-feature--split .panel-feature__heading {
  z-index: 3;
}
@media (min-width: 768px) {
  .panel-feature--split .panel-feature__heading {
    position: absolute;
    top: 24px;
    left: 24px;
  }
}
.panel-feature--split.panel-feature--no-image .panel-feature__textbox {
  flex: none;
}
@media (min-width: 768px) {
  .panel-feature--split.panel-feature--no-image .panel-feature__textbox {
    margin-top: 84px;
  }
  .panel-feature--split.panel-feature--no-image .panel-feature__textbox .panel-feature__content {
    max-width: 700px;
  }
}
.panel-feature--split.panel-feature--condensed {
  min-height: auto;
  height: auto;
}
.panel-feature--split.panel-feature--condensed .panel-feature__container {
  min-height: auto;
  height: auto;
}
@media (min-width: 768px) {
  .panel-feature--split.panel-feature--full {
    min-height: 800px;
    height: 100vh;
  }
}
@media (max-width: 767.98px) {
  .panel-feature--split .panel-feature__background {
    order: 0;
  }
  .panel-feature--split .panel-feature__heading {
    order: 1;
  }
  .panel-feature--split .panel-feature__textbox {
    order: 2;
  }
  .panel-feature--split.panel-feature-layout-2 .image__carousel {
    position: absolute;
  }
}

.filter-btn {
  border: 0;
  background: transparent;
  padding: 0 16px;
  height: 26px;
  border-radius: 32px;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  color: #000;
  text-decoration: none;
}
.filter-btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #000;
  margin-right: 6px;
  background: transparent;
  transition: all 0.25s ease-in-out;
}
.filter-btn.active {
  background: #000;
  color: #FFF;
}
.filter-btn.active:before {
  background: #FFF;
}
.filter-btn:hover, .filter-btn:active, .filter-btn:focus {
  background: #EEEAEB;
  color: #000;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .filter-btn {
    color: #000 !important;
    text-decoration: none !important;
  }
  .filter-btn:hover, .filter-btn:active, .filter-btn:focus, .filter-btn:visited {
    color: #000 !important;
    text-decoration: none !important;
  }
  .filter-btn.active {
    color: #FFF !important;
    background: #000 !important;
  }
}

.bg-black .filter-btn, .bg-red .filter-btn {
  color: #FFF;
}
.bg-black .filter-btn:before, .bg-red .filter-btn:before {
  border-color: #FFF;
}
.bg-black .filter-btn.active, .bg-red .filter-btn.active {
  background: #262631;
  color: #FFF;
}
.bg-black .filter-btn.active:before, .bg-red .filter-btn.active:before {
  background: #FFF;
  border-color: #FFF;
}
.bg-black .filter-btn:hover, .bg-black .filter-btn:active, .bg-red .filter-btn:hover, .bg-red .filter-btn:active {
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
}
@media (max-width: 767.98px) {
  .bg-black .filter-btn, .bg-red .filter-btn {
    color: #FFF !important;
    text-decoration: none !important;
  }
  .bg-black .filter-btn:hover, .bg-black .filter-btn:active, .bg-black .filter-btn:focus, .bg-black .filter-btn:visited, .bg-red .filter-btn:hover, .bg-red .filter-btn:active, .bg-red .filter-btn:focus, .bg-red .filter-btn:visited {
    color: #FFF !important;
    text-decoration: none !important;
  }
  .bg-black .filter-btn.active, .bg-red .filter-btn.active {
    color: #FFF !important;
    background: #262631 !important;
  }
}

.masonry-grid-custom {
  margin-right: -1px;
}
.masonry-grid-custom.masonry-grid-images {
  margin-right: -25px;
}
@media (max-width: 767.98px) {
  .masonry-grid-custom.masonry-grid-images {
    margin-right: -13px;
  }
}
.masonry-grid-custom .grid-item {
  width: 33%;
  height: 320px;
}
.masonry-grid-custom .grid-item .tile-news {
  height: 100%;
  border-left: none;
  border-bottom: none;
}
.masonry-grid-custom .grid-item .tile-image {
  border-left: none;
  border-bottom: none;
}
.bg-black .masonry-grid-custom.masonry-grid-custom {
  border-bottom: solid 1px #FFF;
}
.bg-white .masonry-grid-custom.masonry-grid-custom {
  border-bottom: solid 1px #000;
}

.masonry-grid-custom .grid-item.active:nth-of-type(7n+1),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+2),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+3),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+4),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+5),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+6),
.masonry-grid-custom .grid-item.active:nth-of-type(7n) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom .grid-item.active:nth-of-type(7n+1),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+4),
.masonry-grid-custom .grid-item.active:nth-of-type(7n) {
  height: 320px;
}
.masonry-grid-custom .grid-item.active:nth-of-type(7n+2),
.masonry-grid-custom .grid-item.active:nth-of-type(7n+6) {
  height: 480px;
}
.masonry-grid-custom .grid-item.active:nth-of-type(7n+3) {
  height: 400px;
}
.masonry-grid-custom .grid-item.active:nth-of-type(7n+5) {
  height: 560px;
}

.masonry-grid-custom.itemcount-1 .grid-item.active:nth-of-type(1) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-8 .grid-item.active:nth-of-type(8) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-15 .grid-item.active:nth-of-type(15) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-22 .grid-item.active:nth-of-type(22) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-29 .grid-item.active:nth-of-type(29) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-36 .grid-item.active:nth-of-type(36) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-43 .grid-item.active:nth-of-type(43) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-50 .grid-item.active:nth-of-type(50) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-57 .grid-item.active:nth-of-type(57) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-64 .grid-item.active:nth-of-type(64) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-71 .grid-item.active:nth-of-type(71) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-78 .grid-item.active:nth-of-type(78) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-85 .grid-item.active:nth-of-type(85) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-92 .grid-item.active:nth-of-type(92) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-99 .grid-item.active:nth-of-type(99) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-106 .grid-item.active:nth-of-type(106) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-113 .grid-item.active:nth-of-type(113) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-120 .grid-item.active:nth-of-type(120) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-127 .grid-item.active:nth-of-type(127) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-134 .grid-item.active:nth-of-type(134) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-141 .grid-item.active:nth-of-type(141) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-148 .grid-item.active:nth-of-type(148) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-155 .grid-item.active:nth-of-type(155) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-162 .grid-item.active:nth-of-type(162) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-169 .grid-item.active:nth-of-type(169) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-176 .grid-item.active:nth-of-type(176) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-183 .grid-item.active:nth-of-type(183) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-190 .grid-item.active:nth-of-type(190) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-197 .grid-item.active:nth-of-type(197) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-204 .grid-item.active:nth-of-type(204) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-211 .grid-item.active:nth-of-type(211) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-218 .grid-item.active:nth-of-type(218) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-225 .grid-item.active:nth-of-type(225) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-232 .grid-item.active:nth-of-type(232) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-239 .grid-item.active:nth-of-type(239) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-246 .grid-item.active:nth-of-type(246) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-253 .grid-item.active:nth-of-type(253) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-260 .grid-item.active:nth-of-type(260) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-267 .grid-item.active:nth-of-type(267) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-274 .grid-item.active:nth-of-type(274) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-281 .grid-item.active:nth-of-type(281) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-288 .grid-item.active:nth-of-type(288) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-295 .grid-item.active:nth-of-type(295) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-302 .grid-item.active:nth-of-type(302) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-309 .grid-item.active:nth-of-type(309) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-316 .grid-item.active:nth-of-type(316) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-323 .grid-item.active:nth-of-type(323) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-330 .grid-item.active:nth-of-type(330) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-337 .grid-item.active:nth-of-type(337) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-344 .grid-item.active:nth-of-type(344) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-351 .grid-item.active:nth-of-type(351) {
  width: 100%;
  height: auto;
}

.masonry-grid-custom.itemcount-2 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-2 .grid-item.active:nth-of-type(2) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-9 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-9 .grid-item.active:nth-of-type(9) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-16 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-16 .grid-item.active:nth-of-type(16) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-23 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-23 .grid-item.active:nth-of-type(23) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-30 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-30 .grid-item.active:nth-of-type(30) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-37 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-37 .grid-item.active:nth-of-type(37) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-44 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-44 .grid-item.active:nth-of-type(44) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-51 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-51 .grid-item.active:nth-of-type(51) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-58 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-58 .grid-item.active:nth-of-type(58) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-65 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-65 .grid-item.active:nth-of-type(65) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-72 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-72 .grid-item.active:nth-of-type(72) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-79 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-79 .grid-item.active:nth-of-type(79) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-86 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-86 .grid-item.active:nth-of-type(86) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-93 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-93 .grid-item.active:nth-of-type(93) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-100 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-100 .grid-item.active:nth-of-type(100) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-107 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-107 .grid-item.active:nth-of-type(107) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-114 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-114 .grid-item.active:nth-of-type(114) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-121 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-121 .grid-item.active:nth-of-type(121) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-128 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-128 .grid-item.active:nth-of-type(128) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-135 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-135 .grid-item.active:nth-of-type(135) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-142 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-142 .grid-item.active:nth-of-type(142) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-149 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-149 .grid-item.active:nth-of-type(149) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-156 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-156 .grid-item.active:nth-of-type(156) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-163 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-163 .grid-item.active:nth-of-type(163) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-170 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-170 .grid-item.active:nth-of-type(170) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-177 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-177 .grid-item.active:nth-of-type(177) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-184 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-184 .grid-item.active:nth-of-type(184) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-191 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-191 .grid-item.active:nth-of-type(191) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-198 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-198 .grid-item.active:nth-of-type(198) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-205 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-205 .grid-item.active:nth-of-type(205) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-212 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-212 .grid-item.active:nth-of-type(212) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-219 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-219 .grid-item.active:nth-of-type(219) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-226 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-226 .grid-item.active:nth-of-type(226) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-233 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-233 .grid-item.active:nth-of-type(233) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-240 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-240 .grid-item.active:nth-of-type(240) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-247 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-247 .grid-item.active:nth-of-type(247) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-254 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-254 .grid-item.active:nth-of-type(254) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-261 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-261 .grid-item.active:nth-of-type(261) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-268 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-268 .grid-item.active:nth-of-type(268) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-275 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-275 .grid-item.active:nth-of-type(275) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-282 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-282 .grid-item.active:nth-of-type(282) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-289 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-289 .grid-item.active:nth-of-type(289) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-296 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-296 .grid-item.active:nth-of-type(296) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-303 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-303 .grid-item.active:nth-of-type(303) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-310 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-310 .grid-item.active:nth-of-type(310) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-317 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-317 .grid-item.active:nth-of-type(317) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-324 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-324 .grid-item.active:nth-of-type(324) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-331 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-331 .grid-item.active:nth-of-type(331) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-338 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-338 .grid-item.active:nth-of-type(338) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-345 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-345 .grid-item.active:nth-of-type(345) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-352 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-352 .grid-item.active:nth-of-type(352) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-3 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-3 .grid-item.active:nth-of-type(2),
.masonry-grid-custom.itemcount-3 .grid-item.active:nth-of-type(3) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-10 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-10 .grid-item.active:nth-of-type(9),
.masonry-grid-custom.itemcount-10 .grid-item.active:nth-of-type(10) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-17 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-17 .grid-item.active:nth-of-type(16),
.masonry-grid-custom.itemcount-17 .grid-item.active:nth-of-type(17) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-24 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-24 .grid-item.active:nth-of-type(23),
.masonry-grid-custom.itemcount-24 .grid-item.active:nth-of-type(24) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-31 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-31 .grid-item.active:nth-of-type(30),
.masonry-grid-custom.itemcount-31 .grid-item.active:nth-of-type(31) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-38 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-38 .grid-item.active:nth-of-type(37),
.masonry-grid-custom.itemcount-38 .grid-item.active:nth-of-type(38) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-45 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-45 .grid-item.active:nth-of-type(44),
.masonry-grid-custom.itemcount-45 .grid-item.active:nth-of-type(45) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-52 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-52 .grid-item.active:nth-of-type(51),
.masonry-grid-custom.itemcount-52 .grid-item.active:nth-of-type(52) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-59 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-59 .grid-item.active:nth-of-type(58),
.masonry-grid-custom.itemcount-59 .grid-item.active:nth-of-type(59) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-66 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-66 .grid-item.active:nth-of-type(65),
.masonry-grid-custom.itemcount-66 .grid-item.active:nth-of-type(66) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-73 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-73 .grid-item.active:nth-of-type(72),
.masonry-grid-custom.itemcount-73 .grid-item.active:nth-of-type(73) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-80 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-80 .grid-item.active:nth-of-type(79),
.masonry-grid-custom.itemcount-80 .grid-item.active:nth-of-type(80) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-87 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-87 .grid-item.active:nth-of-type(86),
.masonry-grid-custom.itemcount-87 .grid-item.active:nth-of-type(87) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-94 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-94 .grid-item.active:nth-of-type(93),
.masonry-grid-custom.itemcount-94 .grid-item.active:nth-of-type(94) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-101 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-101 .grid-item.active:nth-of-type(100),
.masonry-grid-custom.itemcount-101 .grid-item.active:nth-of-type(101) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-108 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-108 .grid-item.active:nth-of-type(107),
.masonry-grid-custom.itemcount-108 .grid-item.active:nth-of-type(108) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-115 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-115 .grid-item.active:nth-of-type(114),
.masonry-grid-custom.itemcount-115 .grid-item.active:nth-of-type(115) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-122 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-122 .grid-item.active:nth-of-type(121),
.masonry-grid-custom.itemcount-122 .grid-item.active:nth-of-type(122) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-129 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-129 .grid-item.active:nth-of-type(128),
.masonry-grid-custom.itemcount-129 .grid-item.active:nth-of-type(129) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-136 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-136 .grid-item.active:nth-of-type(135),
.masonry-grid-custom.itemcount-136 .grid-item.active:nth-of-type(136) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-143 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-143 .grid-item.active:nth-of-type(142),
.masonry-grid-custom.itemcount-143 .grid-item.active:nth-of-type(143) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-150 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-150 .grid-item.active:nth-of-type(149),
.masonry-grid-custom.itemcount-150 .grid-item.active:nth-of-type(150) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-157 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-157 .grid-item.active:nth-of-type(156),
.masonry-grid-custom.itemcount-157 .grid-item.active:nth-of-type(157) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-164 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-164 .grid-item.active:nth-of-type(163),
.masonry-grid-custom.itemcount-164 .grid-item.active:nth-of-type(164) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-171 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-171 .grid-item.active:nth-of-type(170),
.masonry-grid-custom.itemcount-171 .grid-item.active:nth-of-type(171) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-178 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-178 .grid-item.active:nth-of-type(177),
.masonry-grid-custom.itemcount-178 .grid-item.active:nth-of-type(178) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-185 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-185 .grid-item.active:nth-of-type(184),
.masonry-grid-custom.itemcount-185 .grid-item.active:nth-of-type(185) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-192 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-192 .grid-item.active:nth-of-type(191),
.masonry-grid-custom.itemcount-192 .grid-item.active:nth-of-type(192) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-199 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-199 .grid-item.active:nth-of-type(198),
.masonry-grid-custom.itemcount-199 .grid-item.active:nth-of-type(199) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-206 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-206 .grid-item.active:nth-of-type(205),
.masonry-grid-custom.itemcount-206 .grid-item.active:nth-of-type(206) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-213 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-213 .grid-item.active:nth-of-type(212),
.masonry-grid-custom.itemcount-213 .grid-item.active:nth-of-type(213) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-220 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-220 .grid-item.active:nth-of-type(219),
.masonry-grid-custom.itemcount-220 .grid-item.active:nth-of-type(220) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-227 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-227 .grid-item.active:nth-of-type(226),
.masonry-grid-custom.itemcount-227 .grid-item.active:nth-of-type(227) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-234 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-234 .grid-item.active:nth-of-type(233),
.masonry-grid-custom.itemcount-234 .grid-item.active:nth-of-type(234) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-241 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-241 .grid-item.active:nth-of-type(240),
.masonry-grid-custom.itemcount-241 .grid-item.active:nth-of-type(241) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-248 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-248 .grid-item.active:nth-of-type(247),
.masonry-grid-custom.itemcount-248 .grid-item.active:nth-of-type(248) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-255 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-255 .grid-item.active:nth-of-type(254),
.masonry-grid-custom.itemcount-255 .grid-item.active:nth-of-type(255) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-262 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-262 .grid-item.active:nth-of-type(261),
.masonry-grid-custom.itemcount-262 .grid-item.active:nth-of-type(262) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-269 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-269 .grid-item.active:nth-of-type(268),
.masonry-grid-custom.itemcount-269 .grid-item.active:nth-of-type(269) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-276 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-276 .grid-item.active:nth-of-type(275),
.masonry-grid-custom.itemcount-276 .grid-item.active:nth-of-type(276) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-283 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-283 .grid-item.active:nth-of-type(282),
.masonry-grid-custom.itemcount-283 .grid-item.active:nth-of-type(283) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-290 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-290 .grid-item.active:nth-of-type(289),
.masonry-grid-custom.itemcount-290 .grid-item.active:nth-of-type(290) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-297 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-297 .grid-item.active:nth-of-type(296),
.masonry-grid-custom.itemcount-297 .grid-item.active:nth-of-type(297) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-304 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-304 .grid-item.active:nth-of-type(303),
.masonry-grid-custom.itemcount-304 .grid-item.active:nth-of-type(304) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-311 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-311 .grid-item.active:nth-of-type(310),
.masonry-grid-custom.itemcount-311 .grid-item.active:nth-of-type(311) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-318 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-318 .grid-item.active:nth-of-type(317),
.masonry-grid-custom.itemcount-318 .grid-item.active:nth-of-type(318) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-325 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-325 .grid-item.active:nth-of-type(324),
.masonry-grid-custom.itemcount-325 .grid-item.active:nth-of-type(325) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-332 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-332 .grid-item.active:nth-of-type(331),
.masonry-grid-custom.itemcount-332 .grid-item.active:nth-of-type(332) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-339 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-339 .grid-item.active:nth-of-type(338),
.masonry-grid-custom.itemcount-339 .grid-item.active:nth-of-type(339) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-346 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-346 .grid-item.active:nth-of-type(345),
.masonry-grid-custom.itemcount-346 .grid-item.active:nth-of-type(346) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-353 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-353 .grid-item.active:nth-of-type(352),
.masonry-grid-custom.itemcount-353 .grid-item.active:nth-of-type(353) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-4 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-4 .grid-item.active:nth-of-type(4) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-4 .grid-item.active:nth-of-type(2),
.masonry-grid-custom.itemcount-4 .grid-item.active:nth-of-type(3) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-11 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-11 .grid-item.active:nth-of-type(11) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-11 .grid-item.active:nth-of-type(9),
.masonry-grid-custom.itemcount-11 .grid-item.active:nth-of-type(10) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-18 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-18 .grid-item.active:nth-of-type(18) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-18 .grid-item.active:nth-of-type(16),
.masonry-grid-custom.itemcount-18 .grid-item.active:nth-of-type(17) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-25 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-25 .grid-item.active:nth-of-type(25) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-25 .grid-item.active:nth-of-type(23),
.masonry-grid-custom.itemcount-25 .grid-item.active:nth-of-type(24) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-32 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-32 .grid-item.active:nth-of-type(32) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-32 .grid-item.active:nth-of-type(30),
.masonry-grid-custom.itemcount-32 .grid-item.active:nth-of-type(31) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-39 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-39 .grid-item.active:nth-of-type(39) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-39 .grid-item.active:nth-of-type(37),
.masonry-grid-custom.itemcount-39 .grid-item.active:nth-of-type(38) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-46 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-46 .grid-item.active:nth-of-type(46) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-46 .grid-item.active:nth-of-type(44),
.masonry-grid-custom.itemcount-46 .grid-item.active:nth-of-type(45) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-53 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-53 .grid-item.active:nth-of-type(53) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-53 .grid-item.active:nth-of-type(51),
.masonry-grid-custom.itemcount-53 .grid-item.active:nth-of-type(52) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-60 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-60 .grid-item.active:nth-of-type(60) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-60 .grid-item.active:nth-of-type(58),
.masonry-grid-custom.itemcount-60 .grid-item.active:nth-of-type(59) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-67 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-67 .grid-item.active:nth-of-type(67) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-67 .grid-item.active:nth-of-type(65),
.masonry-grid-custom.itemcount-67 .grid-item.active:nth-of-type(66) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-74 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-74 .grid-item.active:nth-of-type(74) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-74 .grid-item.active:nth-of-type(72),
.masonry-grid-custom.itemcount-74 .grid-item.active:nth-of-type(73) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-81 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-81 .grid-item.active:nth-of-type(81) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-81 .grid-item.active:nth-of-type(79),
.masonry-grid-custom.itemcount-81 .grid-item.active:nth-of-type(80) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-88 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-88 .grid-item.active:nth-of-type(88) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-88 .grid-item.active:nth-of-type(86),
.masonry-grid-custom.itemcount-88 .grid-item.active:nth-of-type(87) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-95 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-95 .grid-item.active:nth-of-type(95) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-95 .grid-item.active:nth-of-type(93),
.masonry-grid-custom.itemcount-95 .grid-item.active:nth-of-type(94) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-102 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-102 .grid-item.active:nth-of-type(102) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-102 .grid-item.active:nth-of-type(100),
.masonry-grid-custom.itemcount-102 .grid-item.active:nth-of-type(101) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-109 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-109 .grid-item.active:nth-of-type(109) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-109 .grid-item.active:nth-of-type(107),
.masonry-grid-custom.itemcount-109 .grid-item.active:nth-of-type(108) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-116 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-116 .grid-item.active:nth-of-type(116) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-116 .grid-item.active:nth-of-type(114),
.masonry-grid-custom.itemcount-116 .grid-item.active:nth-of-type(115) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-123 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-123 .grid-item.active:nth-of-type(123) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-123 .grid-item.active:nth-of-type(121),
.masonry-grid-custom.itemcount-123 .grid-item.active:nth-of-type(122) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-130 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-130 .grid-item.active:nth-of-type(130) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-130 .grid-item.active:nth-of-type(128),
.masonry-grid-custom.itemcount-130 .grid-item.active:nth-of-type(129) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-137 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-137 .grid-item.active:nth-of-type(137) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-137 .grid-item.active:nth-of-type(135),
.masonry-grid-custom.itemcount-137 .grid-item.active:nth-of-type(136) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-144 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-144 .grid-item.active:nth-of-type(144) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-144 .grid-item.active:nth-of-type(142),
.masonry-grid-custom.itemcount-144 .grid-item.active:nth-of-type(143) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-151 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-151 .grid-item.active:nth-of-type(151) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-151 .grid-item.active:nth-of-type(149),
.masonry-grid-custom.itemcount-151 .grid-item.active:nth-of-type(150) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-158 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-158 .grid-item.active:nth-of-type(158) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-158 .grid-item.active:nth-of-type(156),
.masonry-grid-custom.itemcount-158 .grid-item.active:nth-of-type(157) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-165 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-165 .grid-item.active:nth-of-type(165) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-165 .grid-item.active:nth-of-type(163),
.masonry-grid-custom.itemcount-165 .grid-item.active:nth-of-type(164) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-172 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-172 .grid-item.active:nth-of-type(172) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-172 .grid-item.active:nth-of-type(170),
.masonry-grid-custom.itemcount-172 .grid-item.active:nth-of-type(171) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-179 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-179 .grid-item.active:nth-of-type(179) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-179 .grid-item.active:nth-of-type(177),
.masonry-grid-custom.itemcount-179 .grid-item.active:nth-of-type(178) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-186 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-186 .grid-item.active:nth-of-type(186) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-186 .grid-item.active:nth-of-type(184),
.masonry-grid-custom.itemcount-186 .grid-item.active:nth-of-type(185) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-193 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-193 .grid-item.active:nth-of-type(193) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-193 .grid-item.active:nth-of-type(191),
.masonry-grid-custom.itemcount-193 .grid-item.active:nth-of-type(192) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-200 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-200 .grid-item.active:nth-of-type(200) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-200 .grid-item.active:nth-of-type(198),
.masonry-grid-custom.itemcount-200 .grid-item.active:nth-of-type(199) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-207 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-207 .grid-item.active:nth-of-type(207) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-207 .grid-item.active:nth-of-type(205),
.masonry-grid-custom.itemcount-207 .grid-item.active:nth-of-type(206) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-214 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-214 .grid-item.active:nth-of-type(214) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-214 .grid-item.active:nth-of-type(212),
.masonry-grid-custom.itemcount-214 .grid-item.active:nth-of-type(213) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-221 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-221 .grid-item.active:nth-of-type(221) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-221 .grid-item.active:nth-of-type(219),
.masonry-grid-custom.itemcount-221 .grid-item.active:nth-of-type(220) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-228 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-228 .grid-item.active:nth-of-type(228) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-228 .grid-item.active:nth-of-type(226),
.masonry-grid-custom.itemcount-228 .grid-item.active:nth-of-type(227) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-235 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-235 .grid-item.active:nth-of-type(235) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-235 .grid-item.active:nth-of-type(233),
.masonry-grid-custom.itemcount-235 .grid-item.active:nth-of-type(234) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-242 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-242 .grid-item.active:nth-of-type(242) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-242 .grid-item.active:nth-of-type(240),
.masonry-grid-custom.itemcount-242 .grid-item.active:nth-of-type(241) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-249 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-249 .grid-item.active:nth-of-type(249) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-249 .grid-item.active:nth-of-type(247),
.masonry-grid-custom.itemcount-249 .grid-item.active:nth-of-type(248) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-256 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-256 .grid-item.active:nth-of-type(256) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-256 .grid-item.active:nth-of-type(254),
.masonry-grid-custom.itemcount-256 .grid-item.active:nth-of-type(255) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-263 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-263 .grid-item.active:nth-of-type(263) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-263 .grid-item.active:nth-of-type(261),
.masonry-grid-custom.itemcount-263 .grid-item.active:nth-of-type(262) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-270 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-270 .grid-item.active:nth-of-type(270) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-270 .grid-item.active:nth-of-type(268),
.masonry-grid-custom.itemcount-270 .grid-item.active:nth-of-type(269) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-277 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-277 .grid-item.active:nth-of-type(277) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-277 .grid-item.active:nth-of-type(275),
.masonry-grid-custom.itemcount-277 .grid-item.active:nth-of-type(276) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-284 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-284 .grid-item.active:nth-of-type(284) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-284 .grid-item.active:nth-of-type(282),
.masonry-grid-custom.itemcount-284 .grid-item.active:nth-of-type(283) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-291 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-291 .grid-item.active:nth-of-type(291) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-291 .grid-item.active:nth-of-type(289),
.masonry-grid-custom.itemcount-291 .grid-item.active:nth-of-type(290) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-298 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-298 .grid-item.active:nth-of-type(298) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-298 .grid-item.active:nth-of-type(296),
.masonry-grid-custom.itemcount-298 .grid-item.active:nth-of-type(297) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-305 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-305 .grid-item.active:nth-of-type(305) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-305 .grid-item.active:nth-of-type(303),
.masonry-grid-custom.itemcount-305 .grid-item.active:nth-of-type(304) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-312 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-312 .grid-item.active:nth-of-type(312) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-312 .grid-item.active:nth-of-type(310),
.masonry-grid-custom.itemcount-312 .grid-item.active:nth-of-type(311) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-319 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-319 .grid-item.active:nth-of-type(319) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-319 .grid-item.active:nth-of-type(317),
.masonry-grid-custom.itemcount-319 .grid-item.active:nth-of-type(318) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-326 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-326 .grid-item.active:nth-of-type(326) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-326 .grid-item.active:nth-of-type(324),
.masonry-grid-custom.itemcount-326 .grid-item.active:nth-of-type(325) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-333 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-333 .grid-item.active:nth-of-type(333) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-333 .grid-item.active:nth-of-type(331),
.masonry-grid-custom.itemcount-333 .grid-item.active:nth-of-type(332) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-340 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-340 .grid-item.active:nth-of-type(340) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-340 .grid-item.active:nth-of-type(338),
.masonry-grid-custom.itemcount-340 .grid-item.active:nth-of-type(339) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-347 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-347 .grid-item.active:nth-of-type(347) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-347 .grid-item.active:nth-of-type(345),
.masonry-grid-custom.itemcount-347 .grid-item.active:nth-of-type(346) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-354 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-354 .grid-item.active:nth-of-type(354) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-354 .grid-item.active:nth-of-type(352),
.masonry-grid-custom.itemcount-354 .grid-item.active:nth-of-type(353) {
  width: calc(66.666% - 1px);
  height: 360px;
}

.masonry-grid-custom.itemcount-5 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-5 .grid-item.active:nth-of-type(2),
.masonry-grid-custom.itemcount-5 .grid-item.active:nth-of-type(3) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-5 .grid-item.active:nth-of-type(4),
.masonry-grid-custom.itemcount-5 .grid-item.active:nth-of-type(5) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-12 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-12 .grid-item.active:nth-of-type(9),
.masonry-grid-custom.itemcount-12 .grid-item.active:nth-of-type(10) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-12 .grid-item.active:nth-of-type(11),
.masonry-grid-custom.itemcount-12 .grid-item.active:nth-of-type(12) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-19 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-19 .grid-item.active:nth-of-type(16),
.masonry-grid-custom.itemcount-19 .grid-item.active:nth-of-type(17) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-19 .grid-item.active:nth-of-type(18),
.masonry-grid-custom.itemcount-19 .grid-item.active:nth-of-type(19) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-26 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-26 .grid-item.active:nth-of-type(23),
.masonry-grid-custom.itemcount-26 .grid-item.active:nth-of-type(24) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-26 .grid-item.active:nth-of-type(25),
.masonry-grid-custom.itemcount-26 .grid-item.active:nth-of-type(26) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-33 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-33 .grid-item.active:nth-of-type(30),
.masonry-grid-custom.itemcount-33 .grid-item.active:nth-of-type(31) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-33 .grid-item.active:nth-of-type(32),
.masonry-grid-custom.itemcount-33 .grid-item.active:nth-of-type(33) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-40 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-40 .grid-item.active:nth-of-type(37),
.masonry-grid-custom.itemcount-40 .grid-item.active:nth-of-type(38) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-40 .grid-item.active:nth-of-type(39),
.masonry-grid-custom.itemcount-40 .grid-item.active:nth-of-type(40) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-47 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-47 .grid-item.active:nth-of-type(44),
.masonry-grid-custom.itemcount-47 .grid-item.active:nth-of-type(45) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-47 .grid-item.active:nth-of-type(46),
.masonry-grid-custom.itemcount-47 .grid-item.active:nth-of-type(47) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-54 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-54 .grid-item.active:nth-of-type(51),
.masonry-grid-custom.itemcount-54 .grid-item.active:nth-of-type(52) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-54 .grid-item.active:nth-of-type(53),
.masonry-grid-custom.itemcount-54 .grid-item.active:nth-of-type(54) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-61 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-61 .grid-item.active:nth-of-type(58),
.masonry-grid-custom.itemcount-61 .grid-item.active:nth-of-type(59) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-61 .grid-item.active:nth-of-type(60),
.masonry-grid-custom.itemcount-61 .grid-item.active:nth-of-type(61) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-68 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-68 .grid-item.active:nth-of-type(65),
.masonry-grid-custom.itemcount-68 .grid-item.active:nth-of-type(66) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-68 .grid-item.active:nth-of-type(67),
.masonry-grid-custom.itemcount-68 .grid-item.active:nth-of-type(68) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-75 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-75 .grid-item.active:nth-of-type(72),
.masonry-grid-custom.itemcount-75 .grid-item.active:nth-of-type(73) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-75 .grid-item.active:nth-of-type(74),
.masonry-grid-custom.itemcount-75 .grid-item.active:nth-of-type(75) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-82 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-82 .grid-item.active:nth-of-type(79),
.masonry-grid-custom.itemcount-82 .grid-item.active:nth-of-type(80) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-82 .grid-item.active:nth-of-type(81),
.masonry-grid-custom.itemcount-82 .grid-item.active:nth-of-type(82) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-89 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-89 .grid-item.active:nth-of-type(86),
.masonry-grid-custom.itemcount-89 .grid-item.active:nth-of-type(87) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-89 .grid-item.active:nth-of-type(88),
.masonry-grid-custom.itemcount-89 .grid-item.active:nth-of-type(89) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-96 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-96 .grid-item.active:nth-of-type(93),
.masonry-grid-custom.itemcount-96 .grid-item.active:nth-of-type(94) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-96 .grid-item.active:nth-of-type(95),
.masonry-grid-custom.itemcount-96 .grid-item.active:nth-of-type(96) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-103 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-103 .grid-item.active:nth-of-type(100),
.masonry-grid-custom.itemcount-103 .grid-item.active:nth-of-type(101) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-103 .grid-item.active:nth-of-type(102),
.masonry-grid-custom.itemcount-103 .grid-item.active:nth-of-type(103) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-110 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-110 .grid-item.active:nth-of-type(107),
.masonry-grid-custom.itemcount-110 .grid-item.active:nth-of-type(108) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-110 .grid-item.active:nth-of-type(109),
.masonry-grid-custom.itemcount-110 .grid-item.active:nth-of-type(110) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-117 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-117 .grid-item.active:nth-of-type(114),
.masonry-grid-custom.itemcount-117 .grid-item.active:nth-of-type(115) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-117 .grid-item.active:nth-of-type(116),
.masonry-grid-custom.itemcount-117 .grid-item.active:nth-of-type(117) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-124 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-124 .grid-item.active:nth-of-type(121),
.masonry-grid-custom.itemcount-124 .grid-item.active:nth-of-type(122) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-124 .grid-item.active:nth-of-type(123),
.masonry-grid-custom.itemcount-124 .grid-item.active:nth-of-type(124) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-131 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-131 .grid-item.active:nth-of-type(128),
.masonry-grid-custom.itemcount-131 .grid-item.active:nth-of-type(129) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-131 .grid-item.active:nth-of-type(130),
.masonry-grid-custom.itemcount-131 .grid-item.active:nth-of-type(131) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-138 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-138 .grid-item.active:nth-of-type(135),
.masonry-grid-custom.itemcount-138 .grid-item.active:nth-of-type(136) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-138 .grid-item.active:nth-of-type(137),
.masonry-grid-custom.itemcount-138 .grid-item.active:nth-of-type(138) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-145 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-145 .grid-item.active:nth-of-type(142),
.masonry-grid-custom.itemcount-145 .grid-item.active:nth-of-type(143) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-145 .grid-item.active:nth-of-type(144),
.masonry-grid-custom.itemcount-145 .grid-item.active:nth-of-type(145) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-152 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-152 .grid-item.active:nth-of-type(149),
.masonry-grid-custom.itemcount-152 .grid-item.active:nth-of-type(150) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-152 .grid-item.active:nth-of-type(151),
.masonry-grid-custom.itemcount-152 .grid-item.active:nth-of-type(152) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-159 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-159 .grid-item.active:nth-of-type(156),
.masonry-grid-custom.itemcount-159 .grid-item.active:nth-of-type(157) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-159 .grid-item.active:nth-of-type(158),
.masonry-grid-custom.itemcount-159 .grid-item.active:nth-of-type(159) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-166 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-166 .grid-item.active:nth-of-type(163),
.masonry-grid-custom.itemcount-166 .grid-item.active:nth-of-type(164) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-166 .grid-item.active:nth-of-type(165),
.masonry-grid-custom.itemcount-166 .grid-item.active:nth-of-type(166) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-173 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-173 .grid-item.active:nth-of-type(170),
.masonry-grid-custom.itemcount-173 .grid-item.active:nth-of-type(171) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-173 .grid-item.active:nth-of-type(172),
.masonry-grid-custom.itemcount-173 .grid-item.active:nth-of-type(173) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-180 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-180 .grid-item.active:nth-of-type(177),
.masonry-grid-custom.itemcount-180 .grid-item.active:nth-of-type(178) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-180 .grid-item.active:nth-of-type(179),
.masonry-grid-custom.itemcount-180 .grid-item.active:nth-of-type(180) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-187 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-187 .grid-item.active:nth-of-type(184),
.masonry-grid-custom.itemcount-187 .grid-item.active:nth-of-type(185) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-187 .grid-item.active:nth-of-type(186),
.masonry-grid-custom.itemcount-187 .grid-item.active:nth-of-type(187) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-194 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-194 .grid-item.active:nth-of-type(191),
.masonry-grid-custom.itemcount-194 .grid-item.active:nth-of-type(192) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-194 .grid-item.active:nth-of-type(193),
.masonry-grid-custom.itemcount-194 .grid-item.active:nth-of-type(194) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-201 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-201 .grid-item.active:nth-of-type(198),
.masonry-grid-custom.itemcount-201 .grid-item.active:nth-of-type(199) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-201 .grid-item.active:nth-of-type(200),
.masonry-grid-custom.itemcount-201 .grid-item.active:nth-of-type(201) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-208 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-208 .grid-item.active:nth-of-type(205),
.masonry-grid-custom.itemcount-208 .grid-item.active:nth-of-type(206) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-208 .grid-item.active:nth-of-type(207),
.masonry-grid-custom.itemcount-208 .grid-item.active:nth-of-type(208) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-215 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-215 .grid-item.active:nth-of-type(212),
.masonry-grid-custom.itemcount-215 .grid-item.active:nth-of-type(213) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-215 .grid-item.active:nth-of-type(214),
.masonry-grid-custom.itemcount-215 .grid-item.active:nth-of-type(215) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-222 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-222 .grid-item.active:nth-of-type(219),
.masonry-grid-custom.itemcount-222 .grid-item.active:nth-of-type(220) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-222 .grid-item.active:nth-of-type(221),
.masonry-grid-custom.itemcount-222 .grid-item.active:nth-of-type(222) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-229 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-229 .grid-item.active:nth-of-type(226),
.masonry-grid-custom.itemcount-229 .grid-item.active:nth-of-type(227) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-229 .grid-item.active:nth-of-type(228),
.masonry-grid-custom.itemcount-229 .grid-item.active:nth-of-type(229) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-236 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-236 .grid-item.active:nth-of-type(233),
.masonry-grid-custom.itemcount-236 .grid-item.active:nth-of-type(234) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-236 .grid-item.active:nth-of-type(235),
.masonry-grid-custom.itemcount-236 .grid-item.active:nth-of-type(236) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-243 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-243 .grid-item.active:nth-of-type(240),
.masonry-grid-custom.itemcount-243 .grid-item.active:nth-of-type(241) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-243 .grid-item.active:nth-of-type(242),
.masonry-grid-custom.itemcount-243 .grid-item.active:nth-of-type(243) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-250 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-250 .grid-item.active:nth-of-type(247),
.masonry-grid-custom.itemcount-250 .grid-item.active:nth-of-type(248) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-250 .grid-item.active:nth-of-type(249),
.masonry-grid-custom.itemcount-250 .grid-item.active:nth-of-type(250) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-257 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-257 .grid-item.active:nth-of-type(254),
.masonry-grid-custom.itemcount-257 .grid-item.active:nth-of-type(255) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-257 .grid-item.active:nth-of-type(256),
.masonry-grid-custom.itemcount-257 .grid-item.active:nth-of-type(257) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-264 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-264 .grid-item.active:nth-of-type(261),
.masonry-grid-custom.itemcount-264 .grid-item.active:nth-of-type(262) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-264 .grid-item.active:nth-of-type(263),
.masonry-grid-custom.itemcount-264 .grid-item.active:nth-of-type(264) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-271 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-271 .grid-item.active:nth-of-type(268),
.masonry-grid-custom.itemcount-271 .grid-item.active:nth-of-type(269) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-271 .grid-item.active:nth-of-type(270),
.masonry-grid-custom.itemcount-271 .grid-item.active:nth-of-type(271) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-278 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-278 .grid-item.active:nth-of-type(275),
.masonry-grid-custom.itemcount-278 .grid-item.active:nth-of-type(276) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-278 .grid-item.active:nth-of-type(277),
.masonry-grid-custom.itemcount-278 .grid-item.active:nth-of-type(278) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-285 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-285 .grid-item.active:nth-of-type(282),
.masonry-grid-custom.itemcount-285 .grid-item.active:nth-of-type(283) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-285 .grid-item.active:nth-of-type(284),
.masonry-grid-custom.itemcount-285 .grid-item.active:nth-of-type(285) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-292 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-292 .grid-item.active:nth-of-type(289),
.masonry-grid-custom.itemcount-292 .grid-item.active:nth-of-type(290) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-292 .grid-item.active:nth-of-type(291),
.masonry-grid-custom.itemcount-292 .grid-item.active:nth-of-type(292) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-299 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-299 .grid-item.active:nth-of-type(296),
.masonry-grid-custom.itemcount-299 .grid-item.active:nth-of-type(297) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-299 .grid-item.active:nth-of-type(298),
.masonry-grid-custom.itemcount-299 .grid-item.active:nth-of-type(299) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-306 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-306 .grid-item.active:nth-of-type(303),
.masonry-grid-custom.itemcount-306 .grid-item.active:nth-of-type(304) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-306 .grid-item.active:nth-of-type(305),
.masonry-grid-custom.itemcount-306 .grid-item.active:nth-of-type(306) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-313 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-313 .grid-item.active:nth-of-type(310),
.masonry-grid-custom.itemcount-313 .grid-item.active:nth-of-type(311) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-313 .grid-item.active:nth-of-type(312),
.masonry-grid-custom.itemcount-313 .grid-item.active:nth-of-type(313) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-320 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-320 .grid-item.active:nth-of-type(317),
.masonry-grid-custom.itemcount-320 .grid-item.active:nth-of-type(318) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-320 .grid-item.active:nth-of-type(319),
.masonry-grid-custom.itemcount-320 .grid-item.active:nth-of-type(320) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-327 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-327 .grid-item.active:nth-of-type(324),
.masonry-grid-custom.itemcount-327 .grid-item.active:nth-of-type(325) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-327 .grid-item.active:nth-of-type(326),
.masonry-grid-custom.itemcount-327 .grid-item.active:nth-of-type(327) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-334 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-334 .grid-item.active:nth-of-type(331),
.masonry-grid-custom.itemcount-334 .grid-item.active:nth-of-type(332) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-334 .grid-item.active:nth-of-type(333),
.masonry-grid-custom.itemcount-334 .grid-item.active:nth-of-type(334) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-341 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-341 .grid-item.active:nth-of-type(338),
.masonry-grid-custom.itemcount-341 .grid-item.active:nth-of-type(339) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-341 .grid-item.active:nth-of-type(340),
.masonry-grid-custom.itemcount-341 .grid-item.active:nth-of-type(341) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-348 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-348 .grid-item.active:nth-of-type(345),
.masonry-grid-custom.itemcount-348 .grid-item.active:nth-of-type(346) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-348 .grid-item.active:nth-of-type(347),
.masonry-grid-custom.itemcount-348 .grid-item.active:nth-of-type(348) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-355 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-355 .grid-item.active:nth-of-type(352),
.masonry-grid-custom.itemcount-355 .grid-item.active:nth-of-type(353) {
  width: calc(33.3333% - 0.5px);
  height: 360px;
}
.masonry-grid-custom.itemcount-355 .grid-item.active:nth-of-type(354),
.masonry-grid-custom.itemcount-355 .grid-item.active:nth-of-type(355) {
  width: calc(50% - 0.5px);
  height: 360px;
}

.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(2),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(3),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(4),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(5),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(6) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(1),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(3),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(6) {
  height: 380px;
}
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(2),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(4),
.masonry-grid-custom.itemcount-6 .grid-item.active:nth-of-type(5) {
  height: 480px;
}

.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(9),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(10),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(11),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(12),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(13) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(8),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(10),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(13) {
  height: 380px;
}
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(9),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(11),
.masonry-grid-custom.itemcount-13 .grid-item.active:nth-of-type(12) {
  height: 480px;
}

.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(16),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(17),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(18),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(19),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(20) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(15),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(17),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(20) {
  height: 380px;
}
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(16),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(18),
.masonry-grid-custom.itemcount-20 .grid-item.active:nth-of-type(19) {
  height: 480px;
}

.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(23),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(24),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(25),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(26),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(27) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(22),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(24),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(27) {
  height: 380px;
}
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(23),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(25),
.masonry-grid-custom.itemcount-27 .grid-item.active:nth-of-type(26) {
  height: 480px;
}

.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(30),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(31),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(32),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(33),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(34) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(29),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(31),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(34) {
  height: 380px;
}
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(30),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(32),
.masonry-grid-custom.itemcount-34 .grid-item.active:nth-of-type(33) {
  height: 480px;
}

.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(37),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(38),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(39),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(40),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(41) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(36),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(38),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(41) {
  height: 380px;
}
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(37),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(39),
.masonry-grid-custom.itemcount-41 .grid-item.active:nth-of-type(40) {
  height: 480px;
}

.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(44),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(45),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(46),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(47),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(48) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(43),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(45),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(48) {
  height: 380px;
}
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(44),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(46),
.masonry-grid-custom.itemcount-48 .grid-item.active:nth-of-type(47) {
  height: 480px;
}

.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(51),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(52),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(53),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(54),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(55) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(50),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(52),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(55) {
  height: 380px;
}
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(51),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(53),
.masonry-grid-custom.itemcount-55 .grid-item.active:nth-of-type(54) {
  height: 480px;
}

.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(58),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(59),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(60),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(61),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(62) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(57),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(59),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(62) {
  height: 380px;
}
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(58),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(60),
.masonry-grid-custom.itemcount-62 .grid-item.active:nth-of-type(61) {
  height: 480px;
}

.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(65),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(66),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(67),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(68),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(69) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(64),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(66),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(69) {
  height: 380px;
}
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(65),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(67),
.masonry-grid-custom.itemcount-69 .grid-item.active:nth-of-type(68) {
  height: 480px;
}

.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(72),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(73),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(74),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(75),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(76) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(71),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(73),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(76) {
  height: 380px;
}
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(72),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(74),
.masonry-grid-custom.itemcount-76 .grid-item.active:nth-of-type(75) {
  height: 480px;
}

.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(79),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(80),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(81),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(82),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(83) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(78),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(80),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(83) {
  height: 380px;
}
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(79),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(81),
.masonry-grid-custom.itemcount-83 .grid-item.active:nth-of-type(82) {
  height: 480px;
}

.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(86),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(87),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(88),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(89),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(90) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(85),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(87),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(90) {
  height: 380px;
}
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(86),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(88),
.masonry-grid-custom.itemcount-90 .grid-item.active:nth-of-type(89) {
  height: 480px;
}

.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(93),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(94),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(95),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(96),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(97) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(92),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(94),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(97) {
  height: 380px;
}
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(93),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(95),
.masonry-grid-custom.itemcount-97 .grid-item.active:nth-of-type(96) {
  height: 480px;
}

.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(100),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(101),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(102),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(103),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(104) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(99),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(101),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(104) {
  height: 380px;
}
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(100),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(102),
.masonry-grid-custom.itemcount-104 .grid-item.active:nth-of-type(103) {
  height: 480px;
}

.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(107),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(108),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(109),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(110),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(111) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(106),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(108),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(111) {
  height: 380px;
}
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(107),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(109),
.masonry-grid-custom.itemcount-111 .grid-item.active:nth-of-type(110) {
  height: 480px;
}

.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(114),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(115),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(116),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(117),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(118) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(113),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(115),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(118) {
  height: 380px;
}
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(114),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(116),
.masonry-grid-custom.itemcount-118 .grid-item.active:nth-of-type(117) {
  height: 480px;
}

.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(121),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(122),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(123),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(124),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(125) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(120),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(122),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(125) {
  height: 380px;
}
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(121),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(123),
.masonry-grid-custom.itemcount-125 .grid-item.active:nth-of-type(124) {
  height: 480px;
}

.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(128),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(129),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(130),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(131),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(132) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(127),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(129),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(132) {
  height: 380px;
}
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(128),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(130),
.masonry-grid-custom.itemcount-132 .grid-item.active:nth-of-type(131) {
  height: 480px;
}

.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(135),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(136),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(137),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(138),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(139) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(134),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(136),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(139) {
  height: 380px;
}
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(135),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(137),
.masonry-grid-custom.itemcount-139 .grid-item.active:nth-of-type(138) {
  height: 480px;
}

.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(142),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(143),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(144),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(145),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(146) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(141),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(143),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(146) {
  height: 380px;
}
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(142),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(144),
.masonry-grid-custom.itemcount-146 .grid-item.active:nth-of-type(145) {
  height: 480px;
}

.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(149),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(150),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(151),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(152),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(153) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(148),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(150),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(153) {
  height: 380px;
}
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(149),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(151),
.masonry-grid-custom.itemcount-153 .grid-item.active:nth-of-type(152) {
  height: 480px;
}

.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(156),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(157),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(158),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(159),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(160) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(155),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(157),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(160) {
  height: 380px;
}
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(156),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(158),
.masonry-grid-custom.itemcount-160 .grid-item.active:nth-of-type(159) {
  height: 480px;
}

.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(163),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(164),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(165),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(166),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(167) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(162),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(164),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(167) {
  height: 380px;
}
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(163),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(165),
.masonry-grid-custom.itemcount-167 .grid-item.active:nth-of-type(166) {
  height: 480px;
}

.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(170),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(171),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(172),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(173),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(174) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(169),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(171),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(174) {
  height: 380px;
}
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(170),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(172),
.masonry-grid-custom.itemcount-174 .grid-item.active:nth-of-type(173) {
  height: 480px;
}

.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(177),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(178),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(179),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(180),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(181) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(176),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(178),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(181) {
  height: 380px;
}
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(177),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(179),
.masonry-grid-custom.itemcount-181 .grid-item.active:nth-of-type(180) {
  height: 480px;
}

.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(184),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(185),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(186),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(187),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(188) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(183),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(185),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(188) {
  height: 380px;
}
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(184),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(186),
.masonry-grid-custom.itemcount-188 .grid-item.active:nth-of-type(187) {
  height: 480px;
}

.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(191),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(192),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(193),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(194),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(195) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(190),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(192),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(195) {
  height: 380px;
}
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(191),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(193),
.masonry-grid-custom.itemcount-195 .grid-item.active:nth-of-type(194) {
  height: 480px;
}

.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(198),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(199),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(200),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(201),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(202) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(197),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(199),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(202) {
  height: 380px;
}
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(198),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(200),
.masonry-grid-custom.itemcount-202 .grid-item.active:nth-of-type(201) {
  height: 480px;
}

.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(205),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(206),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(207),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(208),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(209) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(204),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(206),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(209) {
  height: 380px;
}
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(205),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(207),
.masonry-grid-custom.itemcount-209 .grid-item.active:nth-of-type(208) {
  height: 480px;
}

.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(212),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(213),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(214),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(215),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(216) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(211),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(213),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(216) {
  height: 380px;
}
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(212),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(214),
.masonry-grid-custom.itemcount-216 .grid-item.active:nth-of-type(215) {
  height: 480px;
}

.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(219),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(220),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(221),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(222),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(223) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(218),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(220),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(223) {
  height: 380px;
}
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(219),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(221),
.masonry-grid-custom.itemcount-223 .grid-item.active:nth-of-type(222) {
  height: 480px;
}

.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(226),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(227),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(228),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(229),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(230) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(225),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(227),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(230) {
  height: 380px;
}
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(226),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(228),
.masonry-grid-custom.itemcount-230 .grid-item.active:nth-of-type(229) {
  height: 480px;
}

.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(233),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(234),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(235),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(236),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(237) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(232),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(234),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(237) {
  height: 380px;
}
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(233),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(235),
.masonry-grid-custom.itemcount-237 .grid-item.active:nth-of-type(236) {
  height: 480px;
}

.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(240),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(241),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(242),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(243),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(244) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(239),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(241),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(244) {
  height: 380px;
}
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(240),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(242),
.masonry-grid-custom.itemcount-244 .grid-item.active:nth-of-type(243) {
  height: 480px;
}

.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(247),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(248),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(249),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(250),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(251) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(246),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(248),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(251) {
  height: 380px;
}
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(247),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(249),
.masonry-grid-custom.itemcount-251 .grid-item.active:nth-of-type(250) {
  height: 480px;
}

.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(254),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(255),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(256),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(257),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(258) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(253),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(255),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(258) {
  height: 380px;
}
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(254),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(256),
.masonry-grid-custom.itemcount-258 .grid-item.active:nth-of-type(257) {
  height: 480px;
}

.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(261),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(262),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(263),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(264),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(265) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(260),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(262),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(265) {
  height: 380px;
}
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(261),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(263),
.masonry-grid-custom.itemcount-265 .grid-item.active:nth-of-type(264) {
  height: 480px;
}

.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(268),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(269),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(270),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(271),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(272) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(267),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(269),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(272) {
  height: 380px;
}
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(268),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(270),
.masonry-grid-custom.itemcount-272 .grid-item.active:nth-of-type(271) {
  height: 480px;
}

.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(275),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(276),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(277),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(278),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(279) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(274),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(276),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(279) {
  height: 380px;
}
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(275),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(277),
.masonry-grid-custom.itemcount-279 .grid-item.active:nth-of-type(278) {
  height: 480px;
}

.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(282),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(283),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(284),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(285),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(286) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(281),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(283),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(286) {
  height: 380px;
}
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(282),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(284),
.masonry-grid-custom.itemcount-286 .grid-item.active:nth-of-type(285) {
  height: 480px;
}

.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(289),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(290),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(291),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(292),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(293) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(288),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(290),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(293) {
  height: 380px;
}
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(289),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(291),
.masonry-grid-custom.itemcount-293 .grid-item.active:nth-of-type(292) {
  height: 480px;
}

.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(296),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(297),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(298),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(299),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(300) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(295),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(297),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(300) {
  height: 380px;
}
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(296),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(298),
.masonry-grid-custom.itemcount-300 .grid-item.active:nth-of-type(299) {
  height: 480px;
}

.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(303),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(304),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(305),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(306),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(307) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(302),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(304),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(307) {
  height: 380px;
}
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(303),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(305),
.masonry-grid-custom.itemcount-307 .grid-item.active:nth-of-type(306) {
  height: 480px;
}

.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(310),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(311),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(312),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(313),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(314) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(309),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(311),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(314) {
  height: 380px;
}
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(310),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(312),
.masonry-grid-custom.itemcount-314 .grid-item.active:nth-of-type(313) {
  height: 480px;
}

.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(317),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(318),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(319),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(320),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(321) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(316),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(318),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(321) {
  height: 380px;
}
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(317),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(319),
.masonry-grid-custom.itemcount-321 .grid-item.active:nth-of-type(320) {
  height: 480px;
}

.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(324),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(325),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(326),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(327),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(328) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(323),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(325),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(328) {
  height: 380px;
}
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(324),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(326),
.masonry-grid-custom.itemcount-328 .grid-item.active:nth-of-type(327) {
  height: 480px;
}

.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(331),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(332),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(333),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(334),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(335) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(330),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(332),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(335) {
  height: 380px;
}
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(331),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(333),
.masonry-grid-custom.itemcount-335 .grid-item.active:nth-of-type(334) {
  height: 480px;
}

.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(338),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(339),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(340),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(341),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(342) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(337),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(339),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(342) {
  height: 380px;
}
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(338),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(340),
.masonry-grid-custom.itemcount-342 .grid-item.active:nth-of-type(341) {
  height: 480px;
}

.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(345),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(346),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(347),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(348),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(349) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(344),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(346),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(349) {
  height: 380px;
}
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(345),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(347),
.masonry-grid-custom.itemcount-349 .grid-item.active:nth-of-type(348) {
  height: 480px;
}

.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(352),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(353),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(354),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(355),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(356) {
  width: calc(33.3333% - 0.5px);
}
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(351),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(353),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(356) {
  height: 380px;
}
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(352),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(354),
.masonry-grid-custom.itemcount-356 .grid-item.active:nth-of-type(355) {
  height: 480px;
}

@media (max-width: 767.98px) {
  .masonry-grid-custom .grid-item {
    width: 100% !important;
    height: auto !important;
  }
}
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.panel-sticky-content-scroll .sticky-md-top {
  top: 70px;
}

.panel-production-overview .social-list {
  display: inline-flex;
  list-style: none;
  margin-left: 0;
}
.panel-production-overview .social-list li {
  margin-right: 18px;
}
.panel-production-overview .social-list li a {
  display: block;
  width: 24px;
  height: 24px;
  color: inherit;
}

.panel-production-overview a {
  color: inherit;
}

.volume-control {
  z-index: 2;
}
.panel-video-header .volume-control {
  bottom: 8px;
  right: 12px;
}
@media (min-width: 768px) {
  .panel-video-header .volume-control {
    bottom: 24px;
    right: 24px;
  }
}

.icon.icon-volume {
  cursor: pointer;
}
.icon.icon-volume:before {
  width: 100%;
  height: 100%;
  content: "";
  font-family: "Ionicons";
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon.icon-volume.on:before {
  content: "\f3ba";
}
.icon.icon-volume.off:before {
  content: "\f3b9";
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #000;
}
.link-primary:hover, .link-primary:focus {
  color: black;
}

.link-secondary {
  color: #FFF;
}
.link-secondary:hover, .link-secondary:focus {
  color: white;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-3x4 {
  --bs-aspect-ratio: 133.3333333333%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.ratio-3x2 {
  --bs-aspect-ratio: 66.6666666667%;
}

.ratio-4x5 {
  --bs-aspect-ratio: 125%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 2400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 1;
}

.align-baseline {
  vertical-align: baseline;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.align-bottom {
  vertical-align: bottom;
}

.align-text-bottom {
  vertical-align: text-bottom;
}

.align-text-top {
  vertical-align: text-top;
}

.float-start {
  float: left;
}

.float-end {
  float: right;
}

.float-none {
  float: none;
}

.opacity-0 {
  opacity: 0;
}

.opacity-25 {
  opacity: 0.25;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.overflow-auto {
  overflow: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-visible {
  overflow: visible;
}

.overflow-scroll {
  overflow: scroll;
}

.d-inline {
  display: inline;
}

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

.d-block {
  display: block;
}

.d-grid {
  display: grid;
}

.d-table {
  display: table;
}

.d-table-row {
  display: table-row;
}

.d-table-cell {
  display: table-cell;
}

.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-none {
  display: none;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.shadow-none {
  box-shadow: none;
}

.position-static {
  position: static;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.top-50 {
  top: 50%;
}

.top-100 {
  top: 100%;
}

.bottom-0 {
  bottom: 0;
}

.bottom-50 {
  bottom: 50%;
}

.bottom-100 {
  bottom: 100%;
}

.start-0 {
  left: 0;
}

.start-50 {
  left: 50%;
}

.start-100 {
  left: 100%;
}

.end-0 {
  right: 0;
}

.end-50 {
  right: 50%;
}

.end-100 {
  right: 100%;
}

.translate-middle {
  transform: translate(-50%, -50%);
}

.translate-middle-x {
  transform: translateX(-50%);
}

.translate-middle-y {
  transform: translateY(-50%);
}

.border {
  border: 1px solid #000;
}

.border-0 {
  border: 0;
}

.border-top {
  border-top: 1px solid #000;
}

.border-top-0 {
  border-top: 0;
}

.border-end {
  border-right: 1px solid #000;
}

.border-end-0 {
  border-right: 0;
}

.border-bottom {
  border-bottom: 1px solid #000;
}

.border-bottom-0 {
  border-bottom: 0;
}

.border-start {
  border-left: 1px solid #000;
}

.border-start-0 {
  border-left: 0;
}

.border-primary {
  border-color: #000;
}

.border-secondary {
  border-color: #FFF;
}

.border-white {
  border-color: #FFF;
}

.border-1 {
  border-width: 1px;
}

.border-2 {
  border-width: 2px;
}

.border-3 {
  border-width: 3px;
}

.border-4 {
  border-width: 4px;
}

.border-5 {
  border-width: 5px;
}

.w-25 {
  width: 25%;
}

.w-50 {
  width: 50%;
}

.w-75 {
  width: 75%;
}

.w-100 {
  width: 100%;
}

.w-auto {
  width: auto;
}

.mw-100 {
  max-width: 100%;
}

.vw-100 {
  width: 100vw;
}

.min-vw-100 {
  min-width: 100vw;
}

.h-25 {
  height: 25%;
}

.h-50 {
  height: 50%;
}

.h-75 {
  height: 75%;
}

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

.mh-100 {
  max-height: 100%;
}

.vh-100 {
  height: 100vh;
}

.min-vh-100 {
  min-height: 100vh;
}

.flex-fill {
  flex: 1 1 auto;
}

.flex-row {
  flex-direction: row;
}

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

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

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-grow-0 {
  flex-grow: 0;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-shrink-1 {
  flex-shrink: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-5 {
  gap: 24px;
}

.gap-6 {
  gap: 32px;
}

.gap-7 {
  gap: 48px;
}

.gap-8 {
  gap: 64px;
}

.gap-9 {
  gap: 128px;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-around {
  justify-content: space-around;
}

.justify-content-evenly {
  justify-content: space-evenly;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

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

.align-items-baseline {
  align-items: baseline;
}

.align-items-stretch {
  align-items: stretch;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}

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

.align-content-between {
  align-content: space-between;
}

.align-content-around {
  align-content: space-around;
}

.align-content-stretch {
  align-content: stretch;
}

.align-self-auto {
  align-self: auto;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
}

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

.align-self-baseline {
  align-self: baseline;
}

.align-self-stretch {
  align-self: stretch;
}

.order-first {
  order: -1;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-last {
  order: 6;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 4px;
}

.m-2 {
  margin: 8px;
}

.m-3 {
  margin: 12px;
}

.m-4 {
  margin: 16px;
}

.m-5 {
  margin: 24px;
}

.m-6 {
  margin: 32px;
}

.m-7 {
  margin: 48px;
}

.m-8 {
  margin: 64px;
}

.m-9 {
  margin: 128px;
}

.m-auto {
  margin: auto;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-1 {
  margin-right: 4px;
  margin-left: 4px;
}

.mx-2 {
  margin-right: 8px;
  margin-left: 8px;
}

.mx-3 {
  margin-right: 12px;
  margin-left: 12px;
}

.mx-4 {
  margin-right: 16px;
  margin-left: 16px;
}

.mx-5 {
  margin-right: 24px;
  margin-left: 24px;
}

.mx-6 {
  margin-right: 32px;
  margin-left: 32px;
}

.mx-7 {
  margin-right: 48px;
  margin-left: 48px;
}

.mx-8 {
  margin-right: 64px;
  margin-left: 64px;
}

.mx-9 {
  margin-right: 128px;
  margin-left: 128px;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.my-5 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my-6 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.my-7 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.my-8 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.my-9 {
  margin-top: 128px;
  margin-bottom: 128px;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-3 {
  margin-top: 12px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-5 {
  margin-top: 24px;
}

.mt-6 {
  margin-top: 32px;
}

.mt-7 {
  margin-top: 48px;
}

.mt-8 {
  margin-top: 64px;
}

.mt-9 {
  margin-top: 128px;
}

.mt-auto {
  margin-top: auto;
}

.me-0 {
  margin-right: 0;
}

.me-1 {
  margin-right: 4px;
}

.me-2 {
  margin-right: 8px;
}

.me-3 {
  margin-right: 12px;
}

.me-4 {
  margin-right: 16px;
}

.me-5 {
  margin-right: 24px;
}

.me-6 {
  margin-right: 32px;
}

.me-7 {
  margin-right: 48px;
}

.me-8 {
  margin-right: 64px;
}

.me-9 {
  margin-right: 128px;
}

.me-auto {
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 4px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-3 {
  margin-bottom: 12px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-5 {
  margin-bottom: 24px;
}

.mb-6 {
  margin-bottom: 32px;
}

.mb-7 {
  margin-bottom: 48px;
}

.mb-8 {
  margin-bottom: 64px;
}

.mb-9 {
  margin-bottom: 128px;
}

.mb-auto {
  margin-bottom: auto;
}

.ms-0 {
  margin-left: 0;
}

.ms-1 {
  margin-left: 4px;
}

.ms-2 {
  margin-left: 8px;
}

.ms-3 {
  margin-left: 12px;
}

.ms-4 {
  margin-left: 16px;
}

.ms-5 {
  margin-left: 24px;
}

.ms-6 {
  margin-left: 32px;
}

.ms-7 {
  margin-left: 48px;
}

.ms-8 {
  margin-left: 64px;
}

.ms-9 {
  margin-left: 128px;
}

.ms-auto {
  margin-left: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 4px;
}

.p-2 {
  padding: 8px;
}

.p-3 {
  padding: 12px;
}

.p-4 {
  padding: 16px;
}

.p-5 {
  padding: 24px;
}

.p-6 {
  padding: 32px;
}

.p-7 {
  padding: 48px;
}

.p-8 {
  padding: 64px;
}

.p-9 {
  padding: 128px;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 4px;
  padding-left: 4px;
}

.px-2 {
  padding-right: 8px;
  padding-left: 8px;
}

.px-3 {
  padding-right: 12px;
  padding-left: 12px;
}

.px-4 {
  padding-right: 16px;
  padding-left: 16px;
}

.px-5 {
  padding-right: 24px;
  padding-left: 24px;
}

.px-6 {
  padding-right: 32px;
  padding-left: 32px;
}

.px-7 {
  padding-right: 48px;
  padding-left: 48px;
}

.px-8 {
  padding-right: 64px;
  padding-left: 64px;
}

.px-9 {
  padding-right: 128px;
  padding-left: 128px;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-5 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.py-6 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.py-7 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.py-8 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.py-9 {
  padding-top: 128px;
  padding-bottom: 128px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 4px;
}

.pt-2 {
  padding-top: 8px;
}

.pt-3 {
  padding-top: 12px;
}

.pt-4 {
  padding-top: 16px;
}

.pt-5 {
  padding-top: 24px;
}

.pt-6 {
  padding-top: 32px;
}

.pt-7 {
  padding-top: 48px;
}

.pt-8 {
  padding-top: 64px;
}

.pt-9 {
  padding-top: 128px;
}

.pe-0 {
  padding-right: 0;
}

.pe-1 {
  padding-right: 4px;
}

.pe-2 {
  padding-right: 8px;
}

.pe-3 {
  padding-right: 12px;
}

.pe-4 {
  padding-right: 16px;
}

.pe-5 {
  padding-right: 24px;
}

.pe-6 {
  padding-right: 32px;
}

.pe-7 {
  padding-right: 48px;
}

.pe-8 {
  padding-right: 64px;
}

.pe-9 {
  padding-right: 128px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 4px;
}

.pb-2 {
  padding-bottom: 8px;
}

.pb-3 {
  padding-bottom: 12px;
}

.pb-4 {
  padding-bottom: 16px;
}

.pb-5 {
  padding-bottom: 24px;
}

.pb-6 {
  padding-bottom: 32px;
}

.pb-7 {
  padding-bottom: 48px;
}

.pb-8 {
  padding-bottom: 64px;
}

.pb-9 {
  padding-bottom: 128px;
}

.ps-0 {
  padding-left: 0;
}

.ps-1 {
  padding-left: 4px;
}

.ps-2 {
  padding-left: 8px;
}

.ps-3 {
  padding-left: 12px;
}

.ps-4 {
  padding-left: 16px;
}

.ps-5 {
  padding-left: 24px;
}

.ps-6 {
  padding-left: 32px;
}

.ps-7 {
  padding-left: 48px;
}

.ps-8 {
  padding-left: 64px;
}

.ps-9 {
  padding-left: 128px;
}

.font-monospace {
  font-family: var(--bs-font-monospace);
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw);
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw);
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw);
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw);
}

.fs-5 {
  font-size: 1.25rem;
}

.fs-6 {
  font-size: 1rem;
}

.fst-italic {
  font-style: italic;
}

.fst-normal {
  font-style: normal;
}

.fw-light {
  font-weight: 300;
}

.fw-lighter {
  font-weight: lighter;
}

.fw-normal {
  font-weight: 400;
}

.fw-bold {
  font-weight: 700;
}

.fw-bolder {
  font-weight: bolder;
}

.lh-1 {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-base {
  line-height: 1.5;
}

.lh-lg {
  line-height: 2;
}

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

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

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

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

.text-decoration-line-through {
  text-decoration: line-through;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.text-wrap {
  white-space: normal;
}

.text-nowrap {
  white-space: nowrap;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word;
  word-break: break-word;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity));
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity));
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity));
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity));
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity));
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5);
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5);
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity));
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity));
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity));
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity));
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity));
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient);
}

.user-select-all {
  user-select: all;
}

.user-select-auto {
  user-select: auto;
}

.user-select-none {
  user-select: none;
}

.pe-none {
  pointer-events: none;
}

.pe-auto {
  pointer-events: auto;
}

.rounded {
  border-radius: 32px;
}

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

.rounded-1 {
  border-radius: 8px;
}

.rounded-2 {
  border-radius: 32px;
}

.rounded-3 {
  border-radius: 0.3rem;
}

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

.rounded-pill {
  border-radius: 50rem;
}

.rounded-top {
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}

.rounded-end {
  border-top-right-radius: 32px;
  border-bottom-right-radius: 32px;
}

.rounded-bottom {
  border-bottom-right-radius: 32px;
  border-bottom-left-radius: 32px;
}

.rounded-start {
  border-bottom-left-radius: 32px;
  border-top-left-radius: 32px;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left;
  }
  .float-sm-end {
    float: right;
  }
  .float-sm-none {
    float: none;
  }
  .d-sm-inline {
    display: inline;
  }
  .d-sm-inline-block {
    display: inline-block;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-grid {
    display: grid;
  }
  .d-sm-table {
    display: table;
  }
  .d-sm-table-row {
    display: table-row;
  }
  .d-sm-table-cell {
    display: table-cell;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-inline-flex {
    display: inline-flex;
  }
  .d-sm-none {
    display: none;
  }
  .flex-sm-fill {
    flex: 1 1 auto;
  }
  .flex-sm-row {
    flex-direction: row;
  }
  .flex-sm-column {
    flex-direction: column;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-sm-grow-0 {
    flex-grow: 0;
  }
  .flex-sm-grow-1 {
    flex-grow: 1;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1;
  }
  .flex-sm-wrap {
    flex-wrap: wrap;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .gap-sm-0 {
    gap: 0;
  }
  .gap-sm-1 {
    gap: 4px;
  }
  .gap-sm-2 {
    gap: 8px;
  }
  .gap-sm-3 {
    gap: 12px;
  }
  .gap-sm-4 {
    gap: 16px;
  }
  .gap-sm-5 {
    gap: 24px;
  }
  .gap-sm-6 {
    gap: 32px;
  }
  .gap-sm-7 {
    gap: 48px;
  }
  .gap-sm-8 {
    gap: 64px;
  }
  .gap-sm-9 {
    gap: 128px;
  }
  .justify-content-sm-start {
    justify-content: flex-start;
  }
  .justify-content-sm-end {
    justify-content: flex-end;
  }
  .justify-content-sm-center {
    justify-content: center;
  }
  .justify-content-sm-between {
    justify-content: space-between;
  }
  .justify-content-sm-around {
    justify-content: space-around;
  }
  .justify-content-sm-evenly {
    justify-content: space-evenly;
  }
  .align-items-sm-start {
    align-items: flex-start;
  }
  .align-items-sm-end {
    align-items: flex-end;
  }
  .align-items-sm-center {
    align-items: center;
  }
  .align-items-sm-baseline {
    align-items: baseline;
  }
  .align-items-sm-stretch {
    align-items: stretch;
  }
  .align-content-sm-start {
    align-content: flex-start;
  }
  .align-content-sm-end {
    align-content: flex-end;
  }
  .align-content-sm-center {
    align-content: center;
  }
  .align-content-sm-between {
    align-content: space-between;
  }
  .align-content-sm-around {
    align-content: space-around;
  }
  .align-content-sm-stretch {
    align-content: stretch;
  }
  .align-self-sm-auto {
    align-self: auto;
  }
  .align-self-sm-start {
    align-self: flex-start;
  }
  .align-self-sm-end {
    align-self: flex-end;
  }
  .align-self-sm-center {
    align-self: center;
  }
  .align-self-sm-baseline {
    align-self: baseline;
  }
  .align-self-sm-stretch {
    align-self: stretch;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-last {
    order: 6;
  }
  .m-sm-0 {
    margin: 0;
  }
  .m-sm-1 {
    margin: 4px;
  }
  .m-sm-2 {
    margin: 8px;
  }
  .m-sm-3 {
    margin: 12px;
  }
  .m-sm-4 {
    margin: 16px;
  }
  .m-sm-5 {
    margin: 24px;
  }
  .m-sm-6 {
    margin: 32px;
  }
  .m-sm-7 {
    margin: 48px;
  }
  .m-sm-8 {
    margin: 64px;
  }
  .m-sm-9 {
    margin: 128px;
  }
  .m-sm-auto {
    margin: auto;
  }
  .mx-sm-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-sm-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .mx-sm-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .mx-sm-3 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .mx-sm-4 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .mx-sm-5 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .mx-sm-6 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .mx-sm-7 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .mx-sm-8 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .mx-sm-9 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .mx-sm-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-sm-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .my-sm-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .my-sm-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .my-sm-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .my-sm-5 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .my-sm-6 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .my-sm-7 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .my-sm-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .my-sm-9 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .my-sm-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-sm-0 {
    margin-top: 0;
  }
  .mt-sm-1 {
    margin-top: 4px;
  }
  .mt-sm-2 {
    margin-top: 8px;
  }
  .mt-sm-3 {
    margin-top: 12px;
  }
  .mt-sm-4 {
    margin-top: 16px;
  }
  .mt-sm-5 {
    margin-top: 24px;
  }
  .mt-sm-6 {
    margin-top: 32px;
  }
  .mt-sm-7 {
    margin-top: 48px;
  }
  .mt-sm-8 {
    margin-top: 64px;
  }
  .mt-sm-9 {
    margin-top: 128px;
  }
  .mt-sm-auto {
    margin-top: auto;
  }
  .me-sm-0 {
    margin-right: 0;
  }
  .me-sm-1 {
    margin-right: 4px;
  }
  .me-sm-2 {
    margin-right: 8px;
  }
  .me-sm-3 {
    margin-right: 12px;
  }
  .me-sm-4 {
    margin-right: 16px;
  }
  .me-sm-5 {
    margin-right: 24px;
  }
  .me-sm-6 {
    margin-right: 32px;
  }
  .me-sm-7 {
    margin-right: 48px;
  }
  .me-sm-8 {
    margin-right: 64px;
  }
  .me-sm-9 {
    margin-right: 128px;
  }
  .me-sm-auto {
    margin-right: auto;
  }
  .mb-sm-0 {
    margin-bottom: 0;
  }
  .mb-sm-1 {
    margin-bottom: 4px;
  }
  .mb-sm-2 {
    margin-bottom: 8px;
  }
  .mb-sm-3 {
    margin-bottom: 12px;
  }
  .mb-sm-4 {
    margin-bottom: 16px;
  }
  .mb-sm-5 {
    margin-bottom: 24px;
  }
  .mb-sm-6 {
    margin-bottom: 32px;
  }
  .mb-sm-7 {
    margin-bottom: 48px;
  }
  .mb-sm-8 {
    margin-bottom: 64px;
  }
  .mb-sm-9 {
    margin-bottom: 128px;
  }
  .mb-sm-auto {
    margin-bottom: auto;
  }
  .ms-sm-0 {
    margin-left: 0;
  }
  .ms-sm-1 {
    margin-left: 4px;
  }
  .ms-sm-2 {
    margin-left: 8px;
  }
  .ms-sm-3 {
    margin-left: 12px;
  }
  .ms-sm-4 {
    margin-left: 16px;
  }
  .ms-sm-5 {
    margin-left: 24px;
  }
  .ms-sm-6 {
    margin-left: 32px;
  }
  .ms-sm-7 {
    margin-left: 48px;
  }
  .ms-sm-8 {
    margin-left: 64px;
  }
  .ms-sm-9 {
    margin-left: 128px;
  }
  .ms-sm-auto {
    margin-left: auto;
  }
  .p-sm-0 {
    padding: 0;
  }
  .p-sm-1 {
    padding: 4px;
  }
  .p-sm-2 {
    padding: 8px;
  }
  .p-sm-3 {
    padding: 12px;
  }
  .p-sm-4 {
    padding: 16px;
  }
  .p-sm-5 {
    padding: 24px;
  }
  .p-sm-6 {
    padding: 32px;
  }
  .p-sm-7 {
    padding: 48px;
  }
  .p-sm-8 {
    padding: 64px;
  }
  .p-sm-9 {
    padding: 128px;
  }
  .px-sm-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-sm-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .px-sm-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .px-sm-3 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .px-sm-4 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .px-sm-5 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .px-sm-6 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .px-sm-7 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .px-sm-8 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .px-sm-9 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-sm-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .py-sm-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .py-sm-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .py-sm-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .py-sm-5 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .py-sm-6 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .py-sm-7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .py-sm-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .py-sm-9 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .pt-sm-0 {
    padding-top: 0;
  }
  .pt-sm-1 {
    padding-top: 4px;
  }
  .pt-sm-2 {
    padding-top: 8px;
  }
  .pt-sm-3 {
    padding-top: 12px;
  }
  .pt-sm-4 {
    padding-top: 16px;
  }
  .pt-sm-5 {
    padding-top: 24px;
  }
  .pt-sm-6 {
    padding-top: 32px;
  }
  .pt-sm-7 {
    padding-top: 48px;
  }
  .pt-sm-8 {
    padding-top: 64px;
  }
  .pt-sm-9 {
    padding-top: 128px;
  }
  .pe-sm-0 {
    padding-right: 0;
  }
  .pe-sm-1 {
    padding-right: 4px;
  }
  .pe-sm-2 {
    padding-right: 8px;
  }
  .pe-sm-3 {
    padding-right: 12px;
  }
  .pe-sm-4 {
    padding-right: 16px;
  }
  .pe-sm-5 {
    padding-right: 24px;
  }
  .pe-sm-6 {
    padding-right: 32px;
  }
  .pe-sm-7 {
    padding-right: 48px;
  }
  .pe-sm-8 {
    padding-right: 64px;
  }
  .pe-sm-9 {
    padding-right: 128px;
  }
  .pb-sm-0 {
    padding-bottom: 0;
  }
  .pb-sm-1 {
    padding-bottom: 4px;
  }
  .pb-sm-2 {
    padding-bottom: 8px;
  }
  .pb-sm-3 {
    padding-bottom: 12px;
  }
  .pb-sm-4 {
    padding-bottom: 16px;
  }
  .pb-sm-5 {
    padding-bottom: 24px;
  }
  .pb-sm-6 {
    padding-bottom: 32px;
  }
  .pb-sm-7 {
    padding-bottom: 48px;
  }
  .pb-sm-8 {
    padding-bottom: 64px;
  }
  .pb-sm-9 {
    padding-bottom: 128px;
  }
  .ps-sm-0 {
    padding-left: 0;
  }
  .ps-sm-1 {
    padding-left: 4px;
  }
  .ps-sm-2 {
    padding-left: 8px;
  }
  .ps-sm-3 {
    padding-left: 12px;
  }
  .ps-sm-4 {
    padding-left: 16px;
  }
  .ps-sm-5 {
    padding-left: 24px;
  }
  .ps-sm-6 {
    padding-left: 32px;
  }
  .ps-sm-7 {
    padding-left: 48px;
  }
  .ps-sm-8 {
    padding-left: 64px;
  }
  .ps-sm-9 {
    padding-left: 128px;
  }
  .text-sm-start {
    text-align: left;
  }
  .text-sm-end {
    text-align: right;
  }
  .text-sm-center {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .float-md-start {
    float: left;
  }
  .float-md-end {
    float: right;
  }
  .float-md-none {
    float: none;
  }
  .d-md-inline {
    display: inline;
  }
  .d-md-inline-block {
    display: inline-block;
  }
  .d-md-block {
    display: block;
  }
  .d-md-grid {
    display: grid;
  }
  .d-md-table {
    display: table;
  }
  .d-md-table-row {
    display: table-row;
  }
  .d-md-table-cell {
    display: table-cell;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-inline-flex {
    display: inline-flex;
  }
  .d-md-none {
    display: none;
  }
  .flex-md-fill {
    flex: 1 1 auto;
  }
  .flex-md-row {
    flex-direction: row;
  }
  .flex-md-column {
    flex-direction: column;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-md-grow-0 {
    flex-grow: 0;
  }
  .flex-md-grow-1 {
    flex-grow: 1;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1;
  }
  .flex-md-wrap {
    flex-wrap: wrap;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .gap-md-0 {
    gap: 0;
  }
  .gap-md-1 {
    gap: 4px;
  }
  .gap-md-2 {
    gap: 8px;
  }
  .gap-md-3 {
    gap: 12px;
  }
  .gap-md-4 {
    gap: 16px;
  }
  .gap-md-5 {
    gap: 24px;
  }
  .gap-md-6 {
    gap: 32px;
  }
  .gap-md-7 {
    gap: 48px;
  }
  .gap-md-8 {
    gap: 64px;
  }
  .gap-md-9 {
    gap: 128px;
  }
  .justify-content-md-start {
    justify-content: flex-start;
  }
  .justify-content-md-end {
    justify-content: flex-end;
  }
  .justify-content-md-center {
    justify-content: center;
  }
  .justify-content-md-between {
    justify-content: space-between;
  }
  .justify-content-md-around {
    justify-content: space-around;
  }
  .justify-content-md-evenly {
    justify-content: space-evenly;
  }
  .align-items-md-start {
    align-items: flex-start;
  }
  .align-items-md-end {
    align-items: flex-end;
  }
  .align-items-md-center {
    align-items: center;
  }
  .align-items-md-baseline {
    align-items: baseline;
  }
  .align-items-md-stretch {
    align-items: stretch;
  }
  .align-content-md-start {
    align-content: flex-start;
  }
  .align-content-md-end {
    align-content: flex-end;
  }
  .align-content-md-center {
    align-content: center;
  }
  .align-content-md-between {
    align-content: space-between;
  }
  .align-content-md-around {
    align-content: space-around;
  }
  .align-content-md-stretch {
    align-content: stretch;
  }
  .align-self-md-auto {
    align-self: auto;
  }
  .align-self-md-start {
    align-self: flex-start;
  }
  .align-self-md-end {
    align-self: flex-end;
  }
  .align-self-md-center {
    align-self: center;
  }
  .align-self-md-baseline {
    align-self: baseline;
  }
  .align-self-md-stretch {
    align-self: stretch;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-last {
    order: 6;
  }
  .m-md-0 {
    margin: 0;
  }
  .m-md-1 {
    margin: 4px;
  }
  .m-md-2 {
    margin: 8px;
  }
  .m-md-3 {
    margin: 12px;
  }
  .m-md-4 {
    margin: 16px;
  }
  .m-md-5 {
    margin: 24px;
  }
  .m-md-6 {
    margin: 32px;
  }
  .m-md-7 {
    margin: 48px;
  }
  .m-md-8 {
    margin: 64px;
  }
  .m-md-9 {
    margin: 128px;
  }
  .m-md-auto {
    margin: auto;
  }
  .mx-md-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-md-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .mx-md-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .mx-md-3 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .mx-md-4 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .mx-md-5 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .mx-md-6 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .mx-md-7 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .mx-md-8 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .mx-md-9 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .mx-md-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-md-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .my-md-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .my-md-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .my-md-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .my-md-5 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .my-md-6 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .my-md-7 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .my-md-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .my-md-9 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .my-md-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-md-0 {
    margin-top: 0;
  }
  .mt-md-1 {
    margin-top: 4px;
  }
  .mt-md-2 {
    margin-top: 8px;
  }
  .mt-md-3 {
    margin-top: 12px;
  }
  .mt-md-4 {
    margin-top: 16px;
  }
  .mt-md-5 {
    margin-top: 24px;
  }
  .mt-md-6 {
    margin-top: 32px;
  }
  .mt-md-7 {
    margin-top: 48px;
  }
  .mt-md-8 {
    margin-top: 64px;
  }
  .mt-md-9 {
    margin-top: 128px;
  }
  .mt-md-auto {
    margin-top: auto;
  }
  .me-md-0 {
    margin-right: 0;
  }
  .me-md-1 {
    margin-right: 4px;
  }
  .me-md-2 {
    margin-right: 8px;
  }
  .me-md-3 {
    margin-right: 12px;
  }
  .me-md-4 {
    margin-right: 16px;
  }
  .me-md-5 {
    margin-right: 24px;
  }
  .me-md-6 {
    margin-right: 32px;
  }
  .me-md-7 {
    margin-right: 48px;
  }
  .me-md-8 {
    margin-right: 64px;
  }
  .me-md-9 {
    margin-right: 128px;
  }
  .me-md-auto {
    margin-right: auto;
  }
  .mb-md-0 {
    margin-bottom: 0;
  }
  .mb-md-1 {
    margin-bottom: 4px;
  }
  .mb-md-2 {
    margin-bottom: 8px;
  }
  .mb-md-3 {
    margin-bottom: 12px;
  }
  .mb-md-4 {
    margin-bottom: 16px;
  }
  .mb-md-5 {
    margin-bottom: 24px;
  }
  .mb-md-6 {
    margin-bottom: 32px;
  }
  .mb-md-7 {
    margin-bottom: 48px;
  }
  .mb-md-8 {
    margin-bottom: 64px;
  }
  .mb-md-9 {
    margin-bottom: 128px;
  }
  .mb-md-auto {
    margin-bottom: auto;
  }
  .ms-md-0 {
    margin-left: 0;
  }
  .ms-md-1 {
    margin-left: 4px;
  }
  .ms-md-2 {
    margin-left: 8px;
  }
  .ms-md-3 {
    margin-left: 12px;
  }
  .ms-md-4 {
    margin-left: 16px;
  }
  .ms-md-5 {
    margin-left: 24px;
  }
  .ms-md-6 {
    margin-left: 32px;
  }
  .ms-md-7 {
    margin-left: 48px;
  }
  .ms-md-8 {
    margin-left: 64px;
  }
  .ms-md-9 {
    margin-left: 128px;
  }
  .ms-md-auto {
    margin-left: auto;
  }
  .p-md-0 {
    padding: 0;
  }
  .p-md-1 {
    padding: 4px;
  }
  .p-md-2 {
    padding: 8px;
  }
  .p-md-3 {
    padding: 12px;
  }
  .p-md-4 {
    padding: 16px;
  }
  .p-md-5 {
    padding: 24px;
  }
  .p-md-6 {
    padding: 32px;
  }
  .p-md-7 {
    padding: 48px;
  }
  .p-md-8 {
    padding: 64px;
  }
  .p-md-9 {
    padding: 128px;
  }
  .px-md-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-md-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .px-md-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .px-md-3 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .px-md-4 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .px-md-5 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .px-md-6 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .px-md-7 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .px-md-8 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .px-md-9 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-md-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .py-md-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .py-md-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .py-md-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .py-md-5 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .py-md-6 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .py-md-7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .py-md-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .py-md-9 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .pt-md-0 {
    padding-top: 0;
  }
  .pt-md-1 {
    padding-top: 4px;
  }
  .pt-md-2 {
    padding-top: 8px;
  }
  .pt-md-3 {
    padding-top: 12px;
  }
  .pt-md-4 {
    padding-top: 16px;
  }
  .pt-md-5 {
    padding-top: 24px;
  }
  .pt-md-6 {
    padding-top: 32px;
  }
  .pt-md-7 {
    padding-top: 48px;
  }
  .pt-md-8 {
    padding-top: 64px;
  }
  .pt-md-9 {
    padding-top: 128px;
  }
  .pe-md-0 {
    padding-right: 0;
  }
  .pe-md-1 {
    padding-right: 4px;
  }
  .pe-md-2 {
    padding-right: 8px;
  }
  .pe-md-3 {
    padding-right: 12px;
  }
  .pe-md-4 {
    padding-right: 16px;
  }
  .pe-md-5 {
    padding-right: 24px;
  }
  .pe-md-6 {
    padding-right: 32px;
  }
  .pe-md-7 {
    padding-right: 48px;
  }
  .pe-md-8 {
    padding-right: 64px;
  }
  .pe-md-9 {
    padding-right: 128px;
  }
  .pb-md-0 {
    padding-bottom: 0;
  }
  .pb-md-1 {
    padding-bottom: 4px;
  }
  .pb-md-2 {
    padding-bottom: 8px;
  }
  .pb-md-3 {
    padding-bottom: 12px;
  }
  .pb-md-4 {
    padding-bottom: 16px;
  }
  .pb-md-5 {
    padding-bottom: 24px;
  }
  .pb-md-6 {
    padding-bottom: 32px;
  }
  .pb-md-7 {
    padding-bottom: 48px;
  }
  .pb-md-8 {
    padding-bottom: 64px;
  }
  .pb-md-9 {
    padding-bottom: 128px;
  }
  .ps-md-0 {
    padding-left: 0;
  }
  .ps-md-1 {
    padding-left: 4px;
  }
  .ps-md-2 {
    padding-left: 8px;
  }
  .ps-md-3 {
    padding-left: 12px;
  }
  .ps-md-4 {
    padding-left: 16px;
  }
  .ps-md-5 {
    padding-left: 24px;
  }
  .ps-md-6 {
    padding-left: 32px;
  }
  .ps-md-7 {
    padding-left: 48px;
  }
  .ps-md-8 {
    padding-left: 64px;
  }
  .ps-md-9 {
    padding-left: 128px;
  }
  .text-md-start {
    text-align: left;
  }
  .text-md-end {
    text-align: right;
  }
  .text-md-center {
    text-align: center;
  }
}
@media (min-width: 992px) {
  .float-lg-start {
    float: left;
  }
  .float-lg-end {
    float: right;
  }
  .float-lg-none {
    float: none;
  }
  .d-lg-inline {
    display: inline;
  }
  .d-lg-inline-block {
    display: inline-block;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-grid {
    display: grid;
  }
  .d-lg-table {
    display: table;
  }
  .d-lg-table-row {
    display: table-row;
  }
  .d-lg-table-cell {
    display: table-cell;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-inline-flex {
    display: inline-flex;
  }
  .d-lg-none {
    display: none;
  }
  .flex-lg-fill {
    flex: 1 1 auto;
  }
  .flex-lg-row {
    flex-direction: row;
  }
  .flex-lg-column {
    flex-direction: column;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-lg-grow-0 {
    flex-grow: 0;
  }
  .flex-lg-grow-1 {
    flex-grow: 1;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1;
  }
  .flex-lg-wrap {
    flex-wrap: wrap;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .gap-lg-0 {
    gap: 0;
  }
  .gap-lg-1 {
    gap: 4px;
  }
  .gap-lg-2 {
    gap: 8px;
  }
  .gap-lg-3 {
    gap: 12px;
  }
  .gap-lg-4 {
    gap: 16px;
  }
  .gap-lg-5 {
    gap: 24px;
  }
  .gap-lg-6 {
    gap: 32px;
  }
  .gap-lg-7 {
    gap: 48px;
  }
  .gap-lg-8 {
    gap: 64px;
  }
  .gap-lg-9 {
    gap: 128px;
  }
  .justify-content-lg-start {
    justify-content: flex-start;
  }
  .justify-content-lg-end {
    justify-content: flex-end;
  }
  .justify-content-lg-center {
    justify-content: center;
  }
  .justify-content-lg-between {
    justify-content: space-between;
  }
  .justify-content-lg-around {
    justify-content: space-around;
  }
  .justify-content-lg-evenly {
    justify-content: space-evenly;
  }
  .align-items-lg-start {
    align-items: flex-start;
  }
  .align-items-lg-end {
    align-items: flex-end;
  }
  .align-items-lg-center {
    align-items: center;
  }
  .align-items-lg-baseline {
    align-items: baseline;
  }
  .align-items-lg-stretch {
    align-items: stretch;
  }
  .align-content-lg-start {
    align-content: flex-start;
  }
  .align-content-lg-end {
    align-content: flex-end;
  }
  .align-content-lg-center {
    align-content: center;
  }
  .align-content-lg-between {
    align-content: space-between;
  }
  .align-content-lg-around {
    align-content: space-around;
  }
  .align-content-lg-stretch {
    align-content: stretch;
  }
  .align-self-lg-auto {
    align-self: auto;
  }
  .align-self-lg-start {
    align-self: flex-start;
  }
  .align-self-lg-end {
    align-self: flex-end;
  }
  .align-self-lg-center {
    align-self: center;
  }
  .align-self-lg-baseline {
    align-self: baseline;
  }
  .align-self-lg-stretch {
    align-self: stretch;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-last {
    order: 6;
  }
  .m-lg-0 {
    margin: 0;
  }
  .m-lg-1 {
    margin: 4px;
  }
  .m-lg-2 {
    margin: 8px;
  }
  .m-lg-3 {
    margin: 12px;
  }
  .m-lg-4 {
    margin: 16px;
  }
  .m-lg-5 {
    margin: 24px;
  }
  .m-lg-6 {
    margin: 32px;
  }
  .m-lg-7 {
    margin: 48px;
  }
  .m-lg-8 {
    margin: 64px;
  }
  .m-lg-9 {
    margin: 128px;
  }
  .m-lg-auto {
    margin: auto;
  }
  .mx-lg-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-lg-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .mx-lg-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .mx-lg-3 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .mx-lg-4 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .mx-lg-5 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .mx-lg-6 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .mx-lg-7 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .mx-lg-8 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .mx-lg-9 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .mx-lg-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-lg-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-lg-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .my-lg-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .my-lg-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .my-lg-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .my-lg-5 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .my-lg-6 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .my-lg-7 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .my-lg-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .my-lg-9 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .my-lg-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-lg-0 {
    margin-top: 0;
  }
  .mt-lg-1 {
    margin-top: 4px;
  }
  .mt-lg-2 {
    margin-top: 8px;
  }
  .mt-lg-3 {
    margin-top: 12px;
  }
  .mt-lg-4 {
    margin-top: 16px;
  }
  .mt-lg-5 {
    margin-top: 24px;
  }
  .mt-lg-6 {
    margin-top: 32px;
  }
  .mt-lg-7 {
    margin-top: 48px;
  }
  .mt-lg-8 {
    margin-top: 64px;
  }
  .mt-lg-9 {
    margin-top: 128px;
  }
  .mt-lg-auto {
    margin-top: auto;
  }
  .me-lg-0 {
    margin-right: 0;
  }
  .me-lg-1 {
    margin-right: 4px;
  }
  .me-lg-2 {
    margin-right: 8px;
  }
  .me-lg-3 {
    margin-right: 12px;
  }
  .me-lg-4 {
    margin-right: 16px;
  }
  .me-lg-5 {
    margin-right: 24px;
  }
  .me-lg-6 {
    margin-right: 32px;
  }
  .me-lg-7 {
    margin-right: 48px;
  }
  .me-lg-8 {
    margin-right: 64px;
  }
  .me-lg-9 {
    margin-right: 128px;
  }
  .me-lg-auto {
    margin-right: auto;
  }
  .mb-lg-0 {
    margin-bottom: 0;
  }
  .mb-lg-1 {
    margin-bottom: 4px;
  }
  .mb-lg-2 {
    margin-bottom: 8px;
  }
  .mb-lg-3 {
    margin-bottom: 12px;
  }
  .mb-lg-4 {
    margin-bottom: 16px;
  }
  .mb-lg-5 {
    margin-bottom: 24px;
  }
  .mb-lg-6 {
    margin-bottom: 32px;
  }
  .mb-lg-7 {
    margin-bottom: 48px;
  }
  .mb-lg-8 {
    margin-bottom: 64px;
  }
  .mb-lg-9 {
    margin-bottom: 128px;
  }
  .mb-lg-auto {
    margin-bottom: auto;
  }
  .ms-lg-0 {
    margin-left: 0;
  }
  .ms-lg-1 {
    margin-left: 4px;
  }
  .ms-lg-2 {
    margin-left: 8px;
  }
  .ms-lg-3 {
    margin-left: 12px;
  }
  .ms-lg-4 {
    margin-left: 16px;
  }
  .ms-lg-5 {
    margin-left: 24px;
  }
  .ms-lg-6 {
    margin-left: 32px;
  }
  .ms-lg-7 {
    margin-left: 48px;
  }
  .ms-lg-8 {
    margin-left: 64px;
  }
  .ms-lg-9 {
    margin-left: 128px;
  }
  .ms-lg-auto {
    margin-left: auto;
  }
  .p-lg-0 {
    padding: 0;
  }
  .p-lg-1 {
    padding: 4px;
  }
  .p-lg-2 {
    padding: 8px;
  }
  .p-lg-3 {
    padding: 12px;
  }
  .p-lg-4 {
    padding: 16px;
  }
  .p-lg-5 {
    padding: 24px;
  }
  .p-lg-6 {
    padding: 32px;
  }
  .p-lg-7 {
    padding: 48px;
  }
  .p-lg-8 {
    padding: 64px;
  }
  .p-lg-9 {
    padding: 128px;
  }
  .px-lg-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-lg-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .px-lg-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .px-lg-3 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .px-lg-4 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .px-lg-5 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .px-lg-6 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .px-lg-7 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .px-lg-8 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .px-lg-9 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-lg-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .py-lg-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .py-lg-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .py-lg-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .py-lg-5 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .py-lg-6 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .py-lg-7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .py-lg-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .py-lg-9 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .pt-lg-0 {
    padding-top: 0;
  }
  .pt-lg-1 {
    padding-top: 4px;
  }
  .pt-lg-2 {
    padding-top: 8px;
  }
  .pt-lg-3 {
    padding-top: 12px;
  }
  .pt-lg-4 {
    padding-top: 16px;
  }
  .pt-lg-5 {
    padding-top: 24px;
  }
  .pt-lg-6 {
    padding-top: 32px;
  }
  .pt-lg-7 {
    padding-top: 48px;
  }
  .pt-lg-8 {
    padding-top: 64px;
  }
  .pt-lg-9 {
    padding-top: 128px;
  }
  .pe-lg-0 {
    padding-right: 0;
  }
  .pe-lg-1 {
    padding-right: 4px;
  }
  .pe-lg-2 {
    padding-right: 8px;
  }
  .pe-lg-3 {
    padding-right: 12px;
  }
  .pe-lg-4 {
    padding-right: 16px;
  }
  .pe-lg-5 {
    padding-right: 24px;
  }
  .pe-lg-6 {
    padding-right: 32px;
  }
  .pe-lg-7 {
    padding-right: 48px;
  }
  .pe-lg-8 {
    padding-right: 64px;
  }
  .pe-lg-9 {
    padding-right: 128px;
  }
  .pb-lg-0 {
    padding-bottom: 0;
  }
  .pb-lg-1 {
    padding-bottom: 4px;
  }
  .pb-lg-2 {
    padding-bottom: 8px;
  }
  .pb-lg-3 {
    padding-bottom: 12px;
  }
  .pb-lg-4 {
    padding-bottom: 16px;
  }
  .pb-lg-5 {
    padding-bottom: 24px;
  }
  .pb-lg-6 {
    padding-bottom: 32px;
  }
  .pb-lg-7 {
    padding-bottom: 48px;
  }
  .pb-lg-8 {
    padding-bottom: 64px;
  }
  .pb-lg-9 {
    padding-bottom: 128px;
  }
  .ps-lg-0 {
    padding-left: 0;
  }
  .ps-lg-1 {
    padding-left: 4px;
  }
  .ps-lg-2 {
    padding-left: 8px;
  }
  .ps-lg-3 {
    padding-left: 12px;
  }
  .ps-lg-4 {
    padding-left: 16px;
  }
  .ps-lg-5 {
    padding-left: 24px;
  }
  .ps-lg-6 {
    padding-left: 32px;
  }
  .ps-lg-7 {
    padding-left: 48px;
  }
  .ps-lg-8 {
    padding-left: 64px;
  }
  .ps-lg-9 {
    padding-left: 128px;
  }
  .text-lg-start {
    text-align: left;
  }
  .text-lg-end {
    text-align: right;
  }
  .text-lg-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left;
  }
  .float-xl-end {
    float: right;
  }
  .float-xl-none {
    float: none;
  }
  .d-xl-inline {
    display: inline;
  }
  .d-xl-inline-block {
    display: inline-block;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-grid {
    display: grid;
  }
  .d-xl-table {
    display: table;
  }
  .d-xl-table-row {
    display: table-row;
  }
  .d-xl-table-cell {
    display: table-cell;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-inline-flex {
    display: inline-flex;
  }
  .d-xl-none {
    display: none;
  }
  .flex-xl-fill {
    flex: 1 1 auto;
  }
  .flex-xl-row {
    flex-direction: row;
  }
  .flex-xl-column {
    flex-direction: column;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xl-grow-0 {
    flex-grow: 0;
  }
  .flex-xl-grow-1 {
    flex-grow: 1;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xl-wrap {
    flex-wrap: wrap;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .gap-xl-0 {
    gap: 0;
  }
  .gap-xl-1 {
    gap: 4px;
  }
  .gap-xl-2 {
    gap: 8px;
  }
  .gap-xl-3 {
    gap: 12px;
  }
  .gap-xl-4 {
    gap: 16px;
  }
  .gap-xl-5 {
    gap: 24px;
  }
  .gap-xl-6 {
    gap: 32px;
  }
  .gap-xl-7 {
    gap: 48px;
  }
  .gap-xl-8 {
    gap: 64px;
  }
  .gap-xl-9 {
    gap: 128px;
  }
  .justify-content-xl-start {
    justify-content: flex-start;
  }
  .justify-content-xl-end {
    justify-content: flex-end;
  }
  .justify-content-xl-center {
    justify-content: center;
  }
  .justify-content-xl-between {
    justify-content: space-between;
  }
  .justify-content-xl-around {
    justify-content: space-around;
  }
  .justify-content-xl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xl-start {
    align-items: flex-start;
  }
  .align-items-xl-end {
    align-items: flex-end;
  }
  .align-items-xl-center {
    align-items: center;
  }
  .align-items-xl-baseline {
    align-items: baseline;
  }
  .align-items-xl-stretch {
    align-items: stretch;
  }
  .align-content-xl-start {
    align-content: flex-start;
  }
  .align-content-xl-end {
    align-content: flex-end;
  }
  .align-content-xl-center {
    align-content: center;
  }
  .align-content-xl-between {
    align-content: space-between;
  }
  .align-content-xl-around {
    align-content: space-around;
  }
  .align-content-xl-stretch {
    align-content: stretch;
  }
  .align-self-xl-auto {
    align-self: auto;
  }
  .align-self-xl-start {
    align-self: flex-start;
  }
  .align-self-xl-end {
    align-self: flex-end;
  }
  .align-self-xl-center {
    align-self: center;
  }
  .align-self-xl-baseline {
    align-self: baseline;
  }
  .align-self-xl-stretch {
    align-self: stretch;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-last {
    order: 6;
  }
  .m-xl-0 {
    margin: 0;
  }
  .m-xl-1 {
    margin: 4px;
  }
  .m-xl-2 {
    margin: 8px;
  }
  .m-xl-3 {
    margin: 12px;
  }
  .m-xl-4 {
    margin: 16px;
  }
  .m-xl-5 {
    margin: 24px;
  }
  .m-xl-6 {
    margin: 32px;
  }
  .m-xl-7 {
    margin: 48px;
  }
  .m-xl-8 {
    margin: 64px;
  }
  .m-xl-9 {
    margin: 128px;
  }
  .m-xl-auto {
    margin: auto;
  }
  .mx-xl-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-xl-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .mx-xl-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .mx-xl-3 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .mx-xl-4 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .mx-xl-5 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .mx-xl-6 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .mx-xl-7 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .mx-xl-8 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .mx-xl-9 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .mx-xl-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-xl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-xl-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .my-xl-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .my-xl-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .my-xl-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .my-xl-5 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .my-xl-6 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .my-xl-7 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .my-xl-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .my-xl-9 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .my-xl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-xl-0 {
    margin-top: 0;
  }
  .mt-xl-1 {
    margin-top: 4px;
  }
  .mt-xl-2 {
    margin-top: 8px;
  }
  .mt-xl-3 {
    margin-top: 12px;
  }
  .mt-xl-4 {
    margin-top: 16px;
  }
  .mt-xl-5 {
    margin-top: 24px;
  }
  .mt-xl-6 {
    margin-top: 32px;
  }
  .mt-xl-7 {
    margin-top: 48px;
  }
  .mt-xl-8 {
    margin-top: 64px;
  }
  .mt-xl-9 {
    margin-top: 128px;
  }
  .mt-xl-auto {
    margin-top: auto;
  }
  .me-xl-0 {
    margin-right: 0;
  }
  .me-xl-1 {
    margin-right: 4px;
  }
  .me-xl-2 {
    margin-right: 8px;
  }
  .me-xl-3 {
    margin-right: 12px;
  }
  .me-xl-4 {
    margin-right: 16px;
  }
  .me-xl-5 {
    margin-right: 24px;
  }
  .me-xl-6 {
    margin-right: 32px;
  }
  .me-xl-7 {
    margin-right: 48px;
  }
  .me-xl-8 {
    margin-right: 64px;
  }
  .me-xl-9 {
    margin-right: 128px;
  }
  .me-xl-auto {
    margin-right: auto;
  }
  .mb-xl-0 {
    margin-bottom: 0;
  }
  .mb-xl-1 {
    margin-bottom: 4px;
  }
  .mb-xl-2 {
    margin-bottom: 8px;
  }
  .mb-xl-3 {
    margin-bottom: 12px;
  }
  .mb-xl-4 {
    margin-bottom: 16px;
  }
  .mb-xl-5 {
    margin-bottom: 24px;
  }
  .mb-xl-6 {
    margin-bottom: 32px;
  }
  .mb-xl-7 {
    margin-bottom: 48px;
  }
  .mb-xl-8 {
    margin-bottom: 64px;
  }
  .mb-xl-9 {
    margin-bottom: 128px;
  }
  .mb-xl-auto {
    margin-bottom: auto;
  }
  .ms-xl-0 {
    margin-left: 0;
  }
  .ms-xl-1 {
    margin-left: 4px;
  }
  .ms-xl-2 {
    margin-left: 8px;
  }
  .ms-xl-3 {
    margin-left: 12px;
  }
  .ms-xl-4 {
    margin-left: 16px;
  }
  .ms-xl-5 {
    margin-left: 24px;
  }
  .ms-xl-6 {
    margin-left: 32px;
  }
  .ms-xl-7 {
    margin-left: 48px;
  }
  .ms-xl-8 {
    margin-left: 64px;
  }
  .ms-xl-9 {
    margin-left: 128px;
  }
  .ms-xl-auto {
    margin-left: auto;
  }
  .p-xl-0 {
    padding: 0;
  }
  .p-xl-1 {
    padding: 4px;
  }
  .p-xl-2 {
    padding: 8px;
  }
  .p-xl-3 {
    padding: 12px;
  }
  .p-xl-4 {
    padding: 16px;
  }
  .p-xl-5 {
    padding: 24px;
  }
  .p-xl-6 {
    padding: 32px;
  }
  .p-xl-7 {
    padding: 48px;
  }
  .p-xl-8 {
    padding: 64px;
  }
  .p-xl-9 {
    padding: 128px;
  }
  .px-xl-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-xl-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .px-xl-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .px-xl-3 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .px-xl-4 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .px-xl-5 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .px-xl-6 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .px-xl-7 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .px-xl-8 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .px-xl-9 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py-xl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-xl-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .py-xl-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .py-xl-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .py-xl-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .py-xl-5 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .py-xl-6 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .py-xl-7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .py-xl-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .py-xl-9 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .pt-xl-0 {
    padding-top: 0;
  }
  .pt-xl-1 {
    padding-top: 4px;
  }
  .pt-xl-2 {
    padding-top: 8px;
  }
  .pt-xl-3 {
    padding-top: 12px;
  }
  .pt-xl-4 {
    padding-top: 16px;
  }
  .pt-xl-5 {
    padding-top: 24px;
  }
  .pt-xl-6 {
    padding-top: 32px;
  }
  .pt-xl-7 {
    padding-top: 48px;
  }
  .pt-xl-8 {
    padding-top: 64px;
  }
  .pt-xl-9 {
    padding-top: 128px;
  }
  .pe-xl-0 {
    padding-right: 0;
  }
  .pe-xl-1 {
    padding-right: 4px;
  }
  .pe-xl-2 {
    padding-right: 8px;
  }
  .pe-xl-3 {
    padding-right: 12px;
  }
  .pe-xl-4 {
    padding-right: 16px;
  }
  .pe-xl-5 {
    padding-right: 24px;
  }
  .pe-xl-6 {
    padding-right: 32px;
  }
  .pe-xl-7 {
    padding-right: 48px;
  }
  .pe-xl-8 {
    padding-right: 64px;
  }
  .pe-xl-9 {
    padding-right: 128px;
  }
  .pb-xl-0 {
    padding-bottom: 0;
  }
  .pb-xl-1 {
    padding-bottom: 4px;
  }
  .pb-xl-2 {
    padding-bottom: 8px;
  }
  .pb-xl-3 {
    padding-bottom: 12px;
  }
  .pb-xl-4 {
    padding-bottom: 16px;
  }
  .pb-xl-5 {
    padding-bottom: 24px;
  }
  .pb-xl-6 {
    padding-bottom: 32px;
  }
  .pb-xl-7 {
    padding-bottom: 48px;
  }
  .pb-xl-8 {
    padding-bottom: 64px;
  }
  .pb-xl-9 {
    padding-bottom: 128px;
  }
  .ps-xl-0 {
    padding-left: 0;
  }
  .ps-xl-1 {
    padding-left: 4px;
  }
  .ps-xl-2 {
    padding-left: 8px;
  }
  .ps-xl-3 {
    padding-left: 12px;
  }
  .ps-xl-4 {
    padding-left: 16px;
  }
  .ps-xl-5 {
    padding-left: 24px;
  }
  .ps-xl-6 {
    padding-left: 32px;
  }
  .ps-xl-7 {
    padding-left: 48px;
  }
  .ps-xl-8 {
    padding-left: 64px;
  }
  .ps-xl-9 {
    padding-left: 128px;
  }
  .text-xl-start {
    text-align: left;
  }
  .text-xl-end {
    text-align: right;
  }
  .text-xl-center {
    text-align: center;
  }
}
@media (min-width: 2400px) {
  .float-xxl-start {
    float: left;
  }
  .float-xxl-end {
    float: right;
  }
  .float-xxl-none {
    float: none;
  }
  .d-xxl-inline {
    display: inline;
  }
  .d-xxl-inline-block {
    display: inline-block;
  }
  .d-xxl-block {
    display: block;
  }
  .d-xxl-grid {
    display: grid;
  }
  .d-xxl-table {
    display: table;
  }
  .d-xxl-table-row {
    display: table-row;
  }
  .d-xxl-table-cell {
    display: table-cell;
  }
  .d-xxl-flex {
    display: flex;
  }
  .d-xxl-inline-flex {
    display: inline-flex;
  }
  .d-xxl-none {
    display: none;
  }
  .flex-xxl-fill {
    flex: 1 1 auto;
  }
  .flex-xxl-row {
    flex-direction: row;
  }
  .flex-xxl-column {
    flex-direction: column;
  }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse;
  }
  .flex-xxl-grow-0 {
    flex-grow: 0;
  }
  .flex-xxl-grow-1 {
    flex-grow: 1;
  }
  .flex-xxl-shrink-0 {
    flex-shrink: 0;
  }
  .flex-xxl-shrink-1 {
    flex-shrink: 1;
  }
  .flex-xxl-wrap {
    flex-wrap: wrap;
  }
  .flex-xxl-nowrap {
    flex-wrap: nowrap;
  }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse;
  }
  .gap-xxl-0 {
    gap: 0;
  }
  .gap-xxl-1 {
    gap: 4px;
  }
  .gap-xxl-2 {
    gap: 8px;
  }
  .gap-xxl-3 {
    gap: 12px;
  }
  .gap-xxl-4 {
    gap: 16px;
  }
  .gap-xxl-5 {
    gap: 24px;
  }
  .gap-xxl-6 {
    gap: 32px;
  }
  .gap-xxl-7 {
    gap: 48px;
  }
  .gap-xxl-8 {
    gap: 64px;
  }
  .gap-xxl-9 {
    gap: 128px;
  }
  .justify-content-xxl-start {
    justify-content: flex-start;
  }
  .justify-content-xxl-end {
    justify-content: flex-end;
  }
  .justify-content-xxl-center {
    justify-content: center;
  }
  .justify-content-xxl-between {
    justify-content: space-between;
  }
  .justify-content-xxl-around {
    justify-content: space-around;
  }
  .justify-content-xxl-evenly {
    justify-content: space-evenly;
  }
  .align-items-xxl-start {
    align-items: flex-start;
  }
  .align-items-xxl-end {
    align-items: flex-end;
  }
  .align-items-xxl-center {
    align-items: center;
  }
  .align-items-xxl-baseline {
    align-items: baseline;
  }
  .align-items-xxl-stretch {
    align-items: stretch;
  }
  .align-content-xxl-start {
    align-content: flex-start;
  }
  .align-content-xxl-end {
    align-content: flex-end;
  }
  .align-content-xxl-center {
    align-content: center;
  }
  .align-content-xxl-between {
    align-content: space-between;
  }
  .align-content-xxl-around {
    align-content: space-around;
  }
  .align-content-xxl-stretch {
    align-content: stretch;
  }
  .align-self-xxl-auto {
    align-self: auto;
  }
  .align-self-xxl-start {
    align-self: flex-start;
  }
  .align-self-xxl-end {
    align-self: flex-end;
  }
  .align-self-xxl-center {
    align-self: center;
  }
  .align-self-xxl-baseline {
    align-self: baseline;
  }
  .align-self-xxl-stretch {
    align-self: stretch;
  }
  .order-xxl-first {
    order: -1;
  }
  .order-xxl-0 {
    order: 0;
  }
  .order-xxl-1 {
    order: 1;
  }
  .order-xxl-2 {
    order: 2;
  }
  .order-xxl-3 {
    order: 3;
  }
  .order-xxl-4 {
    order: 4;
  }
  .order-xxl-5 {
    order: 5;
  }
  .order-xxl-last {
    order: 6;
  }
  .m-xxl-0 {
    margin: 0;
  }
  .m-xxl-1 {
    margin: 4px;
  }
  .m-xxl-2 {
    margin: 8px;
  }
  .m-xxl-3 {
    margin: 12px;
  }
  .m-xxl-4 {
    margin: 16px;
  }
  .m-xxl-5 {
    margin: 24px;
  }
  .m-xxl-6 {
    margin: 32px;
  }
  .m-xxl-7 {
    margin: 48px;
  }
  .m-xxl-8 {
    margin: 64px;
  }
  .m-xxl-9 {
    margin: 128px;
  }
  .m-xxl-auto {
    margin: auto;
  }
  .mx-xxl-0 {
    margin-right: 0;
    margin-left: 0;
  }
  .mx-xxl-1 {
    margin-right: 4px;
    margin-left: 4px;
  }
  .mx-xxl-2 {
    margin-right: 8px;
    margin-left: 8px;
  }
  .mx-xxl-3 {
    margin-right: 12px;
    margin-left: 12px;
  }
  .mx-xxl-4 {
    margin-right: 16px;
    margin-left: 16px;
  }
  .mx-xxl-5 {
    margin-right: 24px;
    margin-left: 24px;
  }
  .mx-xxl-6 {
    margin-right: 32px;
    margin-left: 32px;
  }
  .mx-xxl-7 {
    margin-right: 48px;
    margin-left: 48px;
  }
  .mx-xxl-8 {
    margin-right: 64px;
    margin-left: 64px;
  }
  .mx-xxl-9 {
    margin-right: 128px;
    margin-left: 128px;
  }
  .mx-xxl-auto {
    margin-right: auto;
    margin-left: auto;
  }
  .my-xxl-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .my-xxl-1 {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .my-xxl-2 {
    margin-top: 8px;
    margin-bottom: 8px;
  }
  .my-xxl-3 {
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .my-xxl-4 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .my-xxl-5 {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .my-xxl-6 {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .my-xxl-7 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .my-xxl-8 {
    margin-top: 64px;
    margin-bottom: 64px;
  }
  .my-xxl-9 {
    margin-top: 128px;
    margin-bottom: 128px;
  }
  .my-xxl-auto {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mt-xxl-0 {
    margin-top: 0;
  }
  .mt-xxl-1 {
    margin-top: 4px;
  }
  .mt-xxl-2 {
    margin-top: 8px;
  }
  .mt-xxl-3 {
    margin-top: 12px;
  }
  .mt-xxl-4 {
    margin-top: 16px;
  }
  .mt-xxl-5 {
    margin-top: 24px;
  }
  .mt-xxl-6 {
    margin-top: 32px;
  }
  .mt-xxl-7 {
    margin-top: 48px;
  }
  .mt-xxl-8 {
    margin-top: 64px;
  }
  .mt-xxl-9 {
    margin-top: 128px;
  }
  .mt-xxl-auto {
    margin-top: auto;
  }
  .me-xxl-0 {
    margin-right: 0;
  }
  .me-xxl-1 {
    margin-right: 4px;
  }
  .me-xxl-2 {
    margin-right: 8px;
  }
  .me-xxl-3 {
    margin-right: 12px;
  }
  .me-xxl-4 {
    margin-right: 16px;
  }
  .me-xxl-5 {
    margin-right: 24px;
  }
  .me-xxl-6 {
    margin-right: 32px;
  }
  .me-xxl-7 {
    margin-right: 48px;
  }
  .me-xxl-8 {
    margin-right: 64px;
  }
  .me-xxl-9 {
    margin-right: 128px;
  }
  .me-xxl-auto {
    margin-right: auto;
  }
  .mb-xxl-0 {
    margin-bottom: 0;
  }
  .mb-xxl-1 {
    margin-bottom: 4px;
  }
  .mb-xxl-2 {
    margin-bottom: 8px;
  }
  .mb-xxl-3 {
    margin-bottom: 12px;
  }
  .mb-xxl-4 {
    margin-bottom: 16px;
  }
  .mb-xxl-5 {
    margin-bottom: 24px;
  }
  .mb-xxl-6 {
    margin-bottom: 32px;
  }
  .mb-xxl-7 {
    margin-bottom: 48px;
  }
  .mb-xxl-8 {
    margin-bottom: 64px;
  }
  .mb-xxl-9 {
    margin-bottom: 128px;
  }
  .mb-xxl-auto {
    margin-bottom: auto;
  }
  .ms-xxl-0 {
    margin-left: 0;
  }
  .ms-xxl-1 {
    margin-left: 4px;
  }
  .ms-xxl-2 {
    margin-left: 8px;
  }
  .ms-xxl-3 {
    margin-left: 12px;
  }
  .ms-xxl-4 {
    margin-left: 16px;
  }
  .ms-xxl-5 {
    margin-left: 24px;
  }
  .ms-xxl-6 {
    margin-left: 32px;
  }
  .ms-xxl-7 {
    margin-left: 48px;
  }
  .ms-xxl-8 {
    margin-left: 64px;
  }
  .ms-xxl-9 {
    margin-left: 128px;
  }
  .ms-xxl-auto {
    margin-left: auto;
  }
  .p-xxl-0 {
    padding: 0;
  }
  .p-xxl-1 {
    padding: 4px;
  }
  .p-xxl-2 {
    padding: 8px;
  }
  .p-xxl-3 {
    padding: 12px;
  }
  .p-xxl-4 {
    padding: 16px;
  }
  .p-xxl-5 {
    padding: 24px;
  }
  .p-xxl-6 {
    padding: 32px;
  }
  .p-xxl-7 {
    padding: 48px;
  }
  .p-xxl-8 {
    padding: 64px;
  }
  .p-xxl-9 {
    padding: 128px;
  }
  .px-xxl-0 {
    padding-right: 0;
    padding-left: 0;
  }
  .px-xxl-1 {
    padding-right: 4px;
    padding-left: 4px;
  }
  .px-xxl-2 {
    padding-right: 8px;
    padding-left: 8px;
  }
  .px-xxl-3 {
    padding-right: 12px;
    padding-left: 12px;
  }
  .px-xxl-4 {
    padding-right: 16px;
    padding-left: 16px;
  }
  .px-xxl-5 {
    padding-right: 24px;
    padding-left: 24px;
  }
  .px-xxl-6 {
    padding-right: 32px;
    padding-left: 32px;
  }
  .px-xxl-7 {
    padding-right: 48px;
    padding-left: 48px;
  }
  .px-xxl-8 {
    padding-right: 64px;
    padding-left: 64px;
  }
  .px-xxl-9 {
    padding-right: 128px;
    padding-left: 128px;
  }
  .py-xxl-0 {
    padding-top: 0;
    padding-bottom: 0;
  }
  .py-xxl-1 {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .py-xxl-2 {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .py-xxl-3 {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .py-xxl-4 {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .py-xxl-5 {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .py-xxl-6 {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .py-xxl-7 {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .py-xxl-8 {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .py-xxl-9 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .pt-xxl-0 {
    padding-top: 0;
  }
  .pt-xxl-1 {
    padding-top: 4px;
  }
  .pt-xxl-2 {
    padding-top: 8px;
  }
  .pt-xxl-3 {
    padding-top: 12px;
  }
  .pt-xxl-4 {
    padding-top: 16px;
  }
  .pt-xxl-5 {
    padding-top: 24px;
  }
  .pt-xxl-6 {
    padding-top: 32px;
  }
  .pt-xxl-7 {
    padding-top: 48px;
  }
  .pt-xxl-8 {
    padding-top: 64px;
  }
  .pt-xxl-9 {
    padding-top: 128px;
  }
  .pe-xxl-0 {
    padding-right: 0;
  }
  .pe-xxl-1 {
    padding-right: 4px;
  }
  .pe-xxl-2 {
    padding-right: 8px;
  }
  .pe-xxl-3 {
    padding-right: 12px;
  }
  .pe-xxl-4 {
    padding-right: 16px;
  }
  .pe-xxl-5 {
    padding-right: 24px;
  }
  .pe-xxl-6 {
    padding-right: 32px;
  }
  .pe-xxl-7 {
    padding-right: 48px;
  }
  .pe-xxl-8 {
    padding-right: 64px;
  }
  .pe-xxl-9 {
    padding-right: 128px;
  }
  .pb-xxl-0 {
    padding-bottom: 0;
  }
  .pb-xxl-1 {
    padding-bottom: 4px;
  }
  .pb-xxl-2 {
    padding-bottom: 8px;
  }
  .pb-xxl-3 {
    padding-bottom: 12px;
  }
  .pb-xxl-4 {
    padding-bottom: 16px;
  }
  .pb-xxl-5 {
    padding-bottom: 24px;
  }
  .pb-xxl-6 {
    padding-bottom: 32px;
  }
  .pb-xxl-7 {
    padding-bottom: 48px;
  }
  .pb-xxl-8 {
    padding-bottom: 64px;
  }
  .pb-xxl-9 {
    padding-bottom: 128px;
  }
  .ps-xxl-0 {
    padding-left: 0;
  }
  .ps-xxl-1 {
    padding-left: 4px;
  }
  .ps-xxl-2 {
    padding-left: 8px;
  }
  .ps-xxl-3 {
    padding-left: 12px;
  }
  .ps-xxl-4 {
    padding-left: 16px;
  }
  .ps-xxl-5 {
    padding-left: 24px;
  }
  .ps-xxl-6 {
    padding-left: 32px;
  }
  .ps-xxl-7 {
    padding-left: 48px;
  }
  .ps-xxl-8 {
    padding-left: 64px;
  }
  .ps-xxl-9 {
    padding-left: 128px;
  }
  .text-xxl-start {
    text-align: left;
  }
  .text-xxl-end {
    text-align: right;
  }
  .text-xxl-center {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem;
  }
  .fs-2 {
    font-size: 2rem;
  }
  .fs-3 {
    font-size: 1.75rem;
  }
  .fs-4 {
    font-size: 1.5rem;
  }
}
@media print {
  .d-print-inline {
    display: inline;
  }
  .d-print-inline-block {
    display: inline-block;
  }
  .d-print-block {
    display: block;
  }
  .d-print-grid {
    display: grid;
  }
  .d-print-table {
    display: table;
  }
  .d-print-table-row {
    display: table-row;
  }
  .d-print-table-cell {
    display: table-cell;
  }
  .d-print-flex {
    display: flex;
  }
  .d-print-inline-flex {
    display: inline-flex;
  }
  .d-print-none {
    display: none;
  }
}

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