@charset "UTF-8";
/*
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

       _       _         _____            _
      | |     | |       |  __ \          (_)
      | | __ _| | __ _  | |  | | ___  ___ _  __ _ _ __
  _   | |/ _` | |/ _` | | |  | |/ _ \/ __| |/ _` | '_ \
 | |__| | (_| | | (_| | | |__| |  __/\__ \ | (_| | | | |
  \____/ \__,_|_|\__,_| |_____/ \___||___/_|\__, |_| |_|
                                             __/ |
                                            |___/

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
/* =Fonts
========================================================================================*/
/*
JD WARNING - Framework File
Should not be modified BUT additional Functions can be added where required
========================================================================================*/
/*
* @Font Weight Classes to be created
*
* Automatically creates classes based on the values inside the variable $font-weights;
* .font-weight-thin, .font-weight-thin... etc..
*
* To use manually use - map-get($font-weights, bold);
*
* .my-custom-class {
*  font-weight: map-get($font-weights, bold);
*  Other styles...
* }
*
*/
/*
* @Aspect Ratios
*
* Automatically creates classes based on the values inside the variable $aspect-ratio;
* .aspect-square, .aspect-video, .aspect-<aspect-ratio-name>... etc..
*
* To use manually use - map-get($aspect-ratio, "square");
*
* .my-custom-class {
*  aspect-ratio: map-get($aspects, "square");
*  Other styles...
* }
*
**/
/*
JD WARNING - Framework File
Should not be modified BUT additional Mixins can be added where required
========================================================================================*/
@keyframes pop {
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*
JD WARNING - Framework File
Should not be modified BUT additional Resets can be added where required
========================================================================================*/
/*=CSS Reset
========================================================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, img, ins, kbd, q, s, samp,
small, strike, sub, sup, tt, var, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main,
menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

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

:focus {
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}

html, body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

img {
  vertical-align: top;
  border: 0;
}

blockquote, q {
  quotes: none;
}

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

/* table { border-collapse: collapse; border-spacing: 0; } */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  a:active {
    background-color: transparent;
  }
}
/*** Form Resets ***/
button,
input[type=password],
input[type=search],
input[type=tel],
input[type=email],
input[type=submit],
input[type=button],
input[type=url],
input[type=date],
input[type=text],
select,
textarea {
  font-size: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: baseline;
  text-overflow: "";
  line-height: 1;
  appearance: none;
  text-decoration: none !important;
  border-radius: 0;
  background: transparent;
}

input[type=submit], button {
  cursor: pointer;
}

select {
  text-overflow: "";
  text-indent: 0.01px;
}

input {
  line-height: normal;
  transform: translate(0);
}

/*For checkboxes*/
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* for IE and Edge */
select::-ms-expand {
  display: none;
}

select:disabled::-ms-expand {
  background: transparent;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

/*
JD WARNING - Framework File
Should not be modified BUT additional Utilities can be added where required
========================================================================================*/
/*!
 * Bootstrap Grid v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 460px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1280px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1.25rem;
  margin-left: -1.25rem;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.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-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.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%;
}

@media (min-width: 460px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .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-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .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%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .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-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .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%;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .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-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .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%;
  }
}
@media (min-width: 1280px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .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-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .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%;
  }
}
@media (min-width: 1600px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .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-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .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%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

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

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

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

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

.d-flex {
  display: flex !important;
}

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

@media (min-width: 460px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

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

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

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

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

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

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

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

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 460px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1024px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1280px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1600px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.625rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.625rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.625rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.625rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.625rem !important;
}

.m-2 {
  margin: 1.25rem !important;
}

.mt-2,
.my-2 {
  margin-top: 1.25rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 1.25rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 1.25rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 1.25rem !important;
}

.m-3 {
  margin: 1.875rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1.875rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1.875rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1.875rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1.875rem !important;
}

.m-4 {
  margin: 2.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 2.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 2.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 2.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 2.5rem !important;
}

.m-5 {
  margin: 3.125rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3.125rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3.125rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3.125rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3.125rem !important;
}

.m-6 {
  margin: 3.75rem !important;
}

.mt-6,
.my-6 {
  margin-top: 3.75rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 3.75rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 3.75rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 3.75rem !important;
}

.m-8 {
  margin: 5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 5rem !important;
}

.m-12 {
  margin: 7.5rem !important;
}

.mt-12,
.my-12 {
  margin-top: 7.5rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 7.5rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 7.5rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 7.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.625rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.625rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.625rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.625rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.625rem !important;
}

.p-2 {
  padding: 1.25rem !important;
}

.pt-2,
.py-2 {
  padding-top: 1.25rem !important;
}

.pr-2,
.px-2 {
  padding-right: 1.25rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 1.25rem !important;
}

.pl-2,
.px-2 {
  padding-left: 1.25rem !important;
}

.p-3 {
  padding: 1.875rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1.875rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1.875rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1.875rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1.875rem !important;
}

.p-4 {
  padding: 2.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 2.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 2.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 2.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 2.5rem !important;
}

.p-5 {
  padding: 3.125rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3.125rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3.125rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3.125rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3.125rem !important;
}

.p-6 {
  padding: 3.75rem !important;
}

.pt-6,
.py-6 {
  padding-top: 3.75rem !important;
}

.pr-6,
.px-6 {
  padding-right: 3.75rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 3.75rem !important;
}

.pl-6,
.px-6 {
  padding-left: 3.75rem !important;
}

.p-8 {
  padding: 5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 5rem !important;
}

.p-12 {
  padding: 7.5rem !important;
}

.pt-12,
.py-12 {
  padding-top: 7.5rem !important;
}

.pr-12,
.px-12 {
  padding-right: 7.5rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 7.5rem !important;
}

.pl-12,
.px-12 {
  padding-left: 7.5rem !important;
}

.m-n1 {
  margin: -0.625rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.625rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.625rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.625rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.625rem !important;
}

.m-n2 {
  margin: -1.25rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -1.25rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -1.25rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -1.25rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -1.25rem !important;
}

.m-n3 {
  margin: -1.875rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1.875rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1.875rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1.875rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1.875rem !important;
}

.m-n4 {
  margin: -2.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -2.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -2.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -2.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -2.5rem !important;
}

.m-n5 {
  margin: -3.125rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3.125rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3.125rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3.125rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3.125rem !important;
}

.m-n6 {
  margin: -3.75rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -3.75rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -3.75rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -3.75rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -3.75rem !important;
}

.m-n8 {
  margin: -5rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -5rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -5rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -5rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -5rem !important;
}

.m-n12 {
  margin: -7.5rem !important;
}

.mt-n12,
.my-n12 {
  margin-top: -7.5rem !important;
}

.mr-n12,
.mx-n12 {
  margin-right: -7.5rem !important;
}

.mb-n12,
.my-n12 {
  margin-bottom: -7.5rem !important;
}

.ml-n12,
.mx-n12 {
  margin-left: -7.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 460px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.625rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.625rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.625rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.625rem !important;
  }

  .m-sm-2 {
    margin: 1.25rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 1.25rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 1.25rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 1.25rem !important;
  }

  .m-sm-3 {
    margin: 1.875rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1.875rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1.875rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1.875rem !important;
  }

  .m-sm-4 {
    margin: 2.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 2.5rem !important;
  }

  .m-sm-5 {
    margin: 3.125rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3.125rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3.125rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3.125rem !important;
  }

  .m-sm-6 {
    margin: 3.75rem !important;
  }

  .mt-sm-6,
.my-sm-6 {
    margin-top: 3.75rem !important;
  }

  .mr-sm-6,
.mx-sm-6 {
    margin-right: 3.75rem !important;
  }

  .mb-sm-6,
.my-sm-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-sm-6,
.mx-sm-6 {
    margin-left: 3.75rem !important;
  }

  .m-sm-8 {
    margin: 5rem !important;
  }

  .mt-sm-8,
.my-sm-8 {
    margin-top: 5rem !important;
  }

  .mr-sm-8,
.mx-sm-8 {
    margin-right: 5rem !important;
  }

  .mb-sm-8,
.my-sm-8 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-8,
.mx-sm-8 {
    margin-left: 5rem !important;
  }

  .m-sm-12 {
    margin: 7.5rem !important;
  }

  .mt-sm-12,
.my-sm-12 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-12,
.mx-sm-12 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-12,
.my-sm-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-12,
.mx-sm-12 {
    margin-left: 7.5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.625rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.625rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.625rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.625rem !important;
  }

  .p-sm-2 {
    padding: 1.25rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 1.25rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 1.25rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 1.25rem !important;
  }

  .p-sm-3 {
    padding: 1.875rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1.875rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1.875rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1.875rem !important;
  }

  .p-sm-4 {
    padding: 2.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 2.5rem !important;
  }

  .p-sm-5 {
    padding: 3.125rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3.125rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3.125rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3.125rem !important;
  }

  .p-sm-6 {
    padding: 3.75rem !important;
  }

  .pt-sm-6,
.py-sm-6 {
    padding-top: 3.75rem !important;
  }

  .pr-sm-6,
.px-sm-6 {
    padding-right: 3.75rem !important;
  }

  .pb-sm-6,
.py-sm-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-sm-6,
.px-sm-6 {
    padding-left: 3.75rem !important;
  }

  .p-sm-8 {
    padding: 5rem !important;
  }

  .pt-sm-8,
.py-sm-8 {
    padding-top: 5rem !important;
  }

  .pr-sm-8,
.px-sm-8 {
    padding-right: 5rem !important;
  }

  .pb-sm-8,
.py-sm-8 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-8,
.px-sm-8 {
    padding-left: 5rem !important;
  }

  .p-sm-12 {
    padding: 7.5rem !important;
  }

  .pt-sm-12,
.py-sm-12 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-12,
.px-sm-12 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-12,
.py-sm-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-12,
.px-sm-12 {
    padding-left: 7.5rem !important;
  }

  .m-sm-n1 {
    margin: -0.625rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.625rem !important;
  }

  .m-sm-n2 {
    margin: -1.25rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -1.25rem !important;
  }

  .m-sm-n3 {
    margin: -1.875rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1.875rem !important;
  }

  .m-sm-n4 {
    margin: -2.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -2.5rem !important;
  }

  .m-sm-n5 {
    margin: -3.125rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3.125rem !important;
  }

  .m-sm-n6 {
    margin: -3.75rem !important;
  }

  .mt-sm-n6,
.my-sm-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-sm-n6,
.mx-sm-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-sm-n6,
.my-sm-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-sm-n6,
.mx-sm-n6 {
    margin-left: -3.75rem !important;
  }

  .m-sm-n8 {
    margin: -5rem !important;
  }

  .mt-sm-n8,
.my-sm-n8 {
    margin-top: -5rem !important;
  }

  .mr-sm-n8,
.mx-sm-n8 {
    margin-right: -5rem !important;
  }

  .mb-sm-n8,
.my-sm-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-sm-n8,
.mx-sm-n8 {
    margin-left: -5rem !important;
  }

  .m-sm-n12 {
    margin: -7.5rem !important;
  }

  .mt-sm-n12,
.my-sm-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n12,
.mx-sm-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n12,
.my-sm-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n12,
.mx-sm-n12 {
    margin-left: -7.5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.625rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.625rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.625rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.625rem !important;
  }

  .m-md-2 {
    margin: 1.25rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 1.25rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 1.25rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 1.25rem !important;
  }

  .m-md-3 {
    margin: 1.875rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1.875rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1.875rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1.875rem !important;
  }

  .m-md-4 {
    margin: 2.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 2.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 2.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 2.5rem !important;
  }

  .m-md-5 {
    margin: 3.125rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3.125rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3.125rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3.125rem !important;
  }

  .m-md-6 {
    margin: 3.75rem !important;
  }

  .mt-md-6,
.my-md-6 {
    margin-top: 3.75rem !important;
  }

  .mr-md-6,
.mx-md-6 {
    margin-right: 3.75rem !important;
  }

  .mb-md-6,
.my-md-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-md-6,
.mx-md-6 {
    margin-left: 3.75rem !important;
  }

  .m-md-8 {
    margin: 5rem !important;
  }

  .mt-md-8,
.my-md-8 {
    margin-top: 5rem !important;
  }

  .mr-md-8,
.mx-md-8 {
    margin-right: 5rem !important;
  }

  .mb-md-8,
.my-md-8 {
    margin-bottom: 5rem !important;
  }

  .ml-md-8,
.mx-md-8 {
    margin-left: 5rem !important;
  }

  .m-md-12 {
    margin: 7.5rem !important;
  }

  .mt-md-12,
.my-md-12 {
    margin-top: 7.5rem !important;
  }

  .mr-md-12,
.mx-md-12 {
    margin-right: 7.5rem !important;
  }

  .mb-md-12,
.my-md-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-12,
.mx-md-12 {
    margin-left: 7.5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.625rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.625rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.625rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.625rem !important;
  }

  .p-md-2 {
    padding: 1.25rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 1.25rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 1.25rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 1.25rem !important;
  }

  .p-md-3 {
    padding: 1.875rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1.875rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1.875rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1.875rem !important;
  }

  .p-md-4 {
    padding: 2.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 2.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 2.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 2.5rem !important;
  }

  .p-md-5 {
    padding: 3.125rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3.125rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3.125rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3.125rem !important;
  }

  .p-md-6 {
    padding: 3.75rem !important;
  }

  .pt-md-6,
.py-md-6 {
    padding-top: 3.75rem !important;
  }

  .pr-md-6,
.px-md-6 {
    padding-right: 3.75rem !important;
  }

  .pb-md-6,
.py-md-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-md-6,
.px-md-6 {
    padding-left: 3.75rem !important;
  }

  .p-md-8 {
    padding: 5rem !important;
  }

  .pt-md-8,
.py-md-8 {
    padding-top: 5rem !important;
  }

  .pr-md-8,
.px-md-8 {
    padding-right: 5rem !important;
  }

  .pb-md-8,
.py-md-8 {
    padding-bottom: 5rem !important;
  }

  .pl-md-8,
.px-md-8 {
    padding-left: 5rem !important;
  }

  .p-md-12 {
    padding: 7.5rem !important;
  }

  .pt-md-12,
.py-md-12 {
    padding-top: 7.5rem !important;
  }

  .pr-md-12,
.px-md-12 {
    padding-right: 7.5rem !important;
  }

  .pb-md-12,
.py-md-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-12,
.px-md-12 {
    padding-left: 7.5rem !important;
  }

  .m-md-n1 {
    margin: -0.625rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.625rem !important;
  }

  .m-md-n2 {
    margin: -1.25rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -1.25rem !important;
  }

  .m-md-n3 {
    margin: -1.875rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1.875rem !important;
  }

  .m-md-n4 {
    margin: -2.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -2.5rem !important;
  }

  .m-md-n5 {
    margin: -3.125rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3.125rem !important;
  }

  .m-md-n6 {
    margin: -3.75rem !important;
  }

  .mt-md-n6,
.my-md-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-md-n6,
.mx-md-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-md-n6,
.my-md-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-md-n6,
.mx-md-n6 {
    margin-left: -3.75rem !important;
  }

  .m-md-n8 {
    margin: -5rem !important;
  }

  .mt-md-n8,
.my-md-n8 {
    margin-top: -5rem !important;
  }

  .mr-md-n8,
.mx-md-n8 {
    margin-right: -5rem !important;
  }

  .mb-md-n8,
.my-md-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-md-n8,
.mx-md-n8 {
    margin-left: -5rem !important;
  }

  .m-md-n12 {
    margin: -7.5rem !important;
  }

  .mt-md-n12,
.my-md-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n12,
.mx-md-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n12,
.my-md-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n12,
.mx-md-n12 {
    margin-left: -7.5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.625rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.625rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.625rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.625rem !important;
  }

  .m-lg-2 {
    margin: 1.25rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 1.25rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 1.25rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 1.25rem !important;
  }

  .m-lg-3 {
    margin: 1.875rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1.875rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1.875rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1.875rem !important;
  }

  .m-lg-4 {
    margin: 2.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 2.5rem !important;
  }

  .m-lg-5 {
    margin: 3.125rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3.125rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3.125rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3.125rem !important;
  }

  .m-lg-6 {
    margin: 3.75rem !important;
  }

  .mt-lg-6,
.my-lg-6 {
    margin-top: 3.75rem !important;
  }

  .mr-lg-6,
.mx-lg-6 {
    margin-right: 3.75rem !important;
  }

  .mb-lg-6,
.my-lg-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-lg-6,
.mx-lg-6 {
    margin-left: 3.75rem !important;
  }

  .m-lg-8 {
    margin: 5rem !important;
  }

  .mt-lg-8,
.my-lg-8 {
    margin-top: 5rem !important;
  }

  .mr-lg-8,
.mx-lg-8 {
    margin-right: 5rem !important;
  }

  .mb-lg-8,
.my-lg-8 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-8,
.mx-lg-8 {
    margin-left: 5rem !important;
  }

  .m-lg-12 {
    margin: 7.5rem !important;
  }

  .mt-lg-12,
.my-lg-12 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-12,
.mx-lg-12 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-12,
.my-lg-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-12,
.mx-lg-12 {
    margin-left: 7.5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.625rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.625rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.625rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.625rem !important;
  }

  .p-lg-2 {
    padding: 1.25rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 1.25rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 1.25rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 1.25rem !important;
  }

  .p-lg-3 {
    padding: 1.875rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1.875rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1.875rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1.875rem !important;
  }

  .p-lg-4 {
    padding: 2.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 2.5rem !important;
  }

  .p-lg-5 {
    padding: 3.125rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3.125rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3.125rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3.125rem !important;
  }

  .p-lg-6 {
    padding: 3.75rem !important;
  }

  .pt-lg-6,
.py-lg-6 {
    padding-top: 3.75rem !important;
  }

  .pr-lg-6,
.px-lg-6 {
    padding-right: 3.75rem !important;
  }

  .pb-lg-6,
.py-lg-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-lg-6,
.px-lg-6 {
    padding-left: 3.75rem !important;
  }

  .p-lg-8 {
    padding: 5rem !important;
  }

  .pt-lg-8,
.py-lg-8 {
    padding-top: 5rem !important;
  }

  .pr-lg-8,
.px-lg-8 {
    padding-right: 5rem !important;
  }

  .pb-lg-8,
.py-lg-8 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-8,
.px-lg-8 {
    padding-left: 5rem !important;
  }

  .p-lg-12 {
    padding: 7.5rem !important;
  }

  .pt-lg-12,
.py-lg-12 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-12,
.px-lg-12 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-12,
.py-lg-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-12,
.px-lg-12 {
    padding-left: 7.5rem !important;
  }

  .m-lg-n1 {
    margin: -0.625rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.625rem !important;
  }

  .m-lg-n2 {
    margin: -1.25rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -1.25rem !important;
  }

  .m-lg-n3 {
    margin: -1.875rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1.875rem !important;
  }

  .m-lg-n4 {
    margin: -2.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -2.5rem !important;
  }

  .m-lg-n5 {
    margin: -3.125rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3.125rem !important;
  }

  .m-lg-n6 {
    margin: -3.75rem !important;
  }

  .mt-lg-n6,
.my-lg-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-lg-n6,
.mx-lg-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-lg-n6,
.my-lg-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-lg-n6,
.mx-lg-n6 {
    margin-left: -3.75rem !important;
  }

  .m-lg-n8 {
    margin: -5rem !important;
  }

  .mt-lg-n8,
.my-lg-n8 {
    margin-top: -5rem !important;
  }

  .mr-lg-n8,
.mx-lg-n8 {
    margin-right: -5rem !important;
  }

  .mb-lg-n8,
.my-lg-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-lg-n8,
.mx-lg-n8 {
    margin-left: -5rem !important;
  }

  .m-lg-n12 {
    margin: -7.5rem !important;
  }

  .mt-lg-n12,
.my-lg-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n12,
.mx-lg-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n12,
.my-lg-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n12,
.mx-lg-n12 {
    margin-left: -7.5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.625rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.625rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.625rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.625rem !important;
  }

  .m-xl-2 {
    margin: 1.25rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 1.25rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 1.25rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 1.25rem !important;
  }

  .m-xl-3 {
    margin: 1.875rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1.875rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1.875rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1.875rem !important;
  }

  .m-xl-4 {
    margin: 2.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 2.5rem !important;
  }

  .m-xl-5 {
    margin: 3.125rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3.125rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3.125rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3.125rem !important;
  }

  .m-xl-6 {
    margin: 3.75rem !important;
  }

  .mt-xl-6,
.my-xl-6 {
    margin-top: 3.75rem !important;
  }

  .mr-xl-6,
.mx-xl-6 {
    margin-right: 3.75rem !important;
  }

  .mb-xl-6,
.my-xl-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-xl-6,
.mx-xl-6 {
    margin-left: 3.75rem !important;
  }

  .m-xl-8 {
    margin: 5rem !important;
  }

  .mt-xl-8,
.my-xl-8 {
    margin-top: 5rem !important;
  }

  .mr-xl-8,
.mx-xl-8 {
    margin-right: 5rem !important;
  }

  .mb-xl-8,
.my-xl-8 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-8,
.mx-xl-8 {
    margin-left: 5rem !important;
  }

  .m-xl-12 {
    margin: 7.5rem !important;
  }

  .mt-xl-12,
.my-xl-12 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-12,
.mx-xl-12 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-12,
.my-xl-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-12,
.mx-xl-12 {
    margin-left: 7.5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.625rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.625rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.625rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.625rem !important;
  }

  .p-xl-2 {
    padding: 1.25rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 1.25rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 1.25rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 1.25rem !important;
  }

  .p-xl-3 {
    padding: 1.875rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1.875rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1.875rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1.875rem !important;
  }

  .p-xl-4 {
    padding: 2.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 2.5rem !important;
  }

  .p-xl-5 {
    padding: 3.125rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3.125rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3.125rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3.125rem !important;
  }

  .p-xl-6 {
    padding: 3.75rem !important;
  }

  .pt-xl-6,
.py-xl-6 {
    padding-top: 3.75rem !important;
  }

  .pr-xl-6,
.px-xl-6 {
    padding-right: 3.75rem !important;
  }

  .pb-xl-6,
.py-xl-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-xl-6,
.px-xl-6 {
    padding-left: 3.75rem !important;
  }

  .p-xl-8 {
    padding: 5rem !important;
  }

  .pt-xl-8,
.py-xl-8 {
    padding-top: 5rem !important;
  }

  .pr-xl-8,
.px-xl-8 {
    padding-right: 5rem !important;
  }

  .pb-xl-8,
.py-xl-8 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-8,
.px-xl-8 {
    padding-left: 5rem !important;
  }

  .p-xl-12 {
    padding: 7.5rem !important;
  }

  .pt-xl-12,
.py-xl-12 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-12,
.px-xl-12 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-12,
.py-xl-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-12,
.px-xl-12 {
    padding-left: 7.5rem !important;
  }

  .m-xl-n1 {
    margin: -0.625rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.625rem !important;
  }

  .m-xl-n2 {
    margin: -1.25rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -1.25rem !important;
  }

  .m-xl-n3 {
    margin: -1.875rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1.875rem !important;
  }

  .m-xl-n4 {
    margin: -2.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -2.5rem !important;
  }

  .m-xl-n5 {
    margin: -3.125rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3.125rem !important;
  }

  .m-xl-n6 {
    margin: -3.75rem !important;
  }

  .mt-xl-n6,
.my-xl-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-xl-n6,
.mx-xl-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-xl-n6,
.my-xl-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-xl-n6,
.mx-xl-n6 {
    margin-left: -3.75rem !important;
  }

  .m-xl-n8 {
    margin: -5rem !important;
  }

  .mt-xl-n8,
.my-xl-n8 {
    margin-top: -5rem !important;
  }

  .mr-xl-n8,
.mx-xl-n8 {
    margin-right: -5rem !important;
  }

  .mb-xl-n8,
.my-xl-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-xl-n8,
.mx-xl-n8 {
    margin-left: -5rem !important;
  }

  .m-xl-n12 {
    margin: -7.5rem !important;
  }

  .mt-xl-n12,
.my-xl-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n12,
.mx-xl-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n12,
.my-xl-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n12,
.mx-xl-n12 {
    margin-left: -7.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.625rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.625rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.625rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.625rem !important;
  }

  .m-xxl-2 {
    margin: 1.25rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 1.25rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 1.25rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 1.25rem !important;
  }

  .m-xxl-3 {
    margin: 1.875rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1.875rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1.875rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1.875rem !important;
  }

  .m-xxl-4 {
    margin: 2.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 2.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 2.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 2.5rem !important;
  }

  .m-xxl-5 {
    margin: 3.125rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3.125rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3.125rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3.125rem !important;
  }

  .m-xxl-6 {
    margin: 3.75rem !important;
  }

  .mt-xxl-6,
.my-xxl-6 {
    margin-top: 3.75rem !important;
  }

  .mr-xxl-6,
.mx-xxl-6 {
    margin-right: 3.75rem !important;
  }

  .mb-xxl-6,
.my-xxl-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-xxl-6,
.mx-xxl-6 {
    margin-left: 3.75rem !important;
  }

  .m-xxl-8 {
    margin: 5rem !important;
  }

  .mt-xxl-8,
.my-xxl-8 {
    margin-top: 5rem !important;
  }

  .mr-xxl-8,
.mx-xxl-8 {
    margin-right: 5rem !important;
  }

  .mb-xxl-8,
.my-xxl-8 {
    margin-bottom: 5rem !important;
  }

  .ml-xxl-8,
.mx-xxl-8 {
    margin-left: 5rem !important;
  }

  .m-xxl-12 {
    margin: 7.5rem !important;
  }

  .mt-xxl-12,
.my-xxl-12 {
    margin-top: 7.5rem !important;
  }

  .mr-xxl-12,
.mx-xxl-12 {
    margin-right: 7.5rem !important;
  }

  .mb-xxl-12,
.my-xxl-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xxl-12,
.mx-xxl-12 {
    margin-left: 7.5rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.625rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.625rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.625rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.625rem !important;
  }

  .p-xxl-2 {
    padding: 1.25rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 1.25rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 1.25rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 1.25rem !important;
  }

  .p-xxl-3 {
    padding: 1.875rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1.875rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1.875rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1.875rem !important;
  }

  .p-xxl-4 {
    padding: 2.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 2.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 2.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 2.5rem !important;
  }

  .p-xxl-5 {
    padding: 3.125rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3.125rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3.125rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3.125rem !important;
  }

  .p-xxl-6 {
    padding: 3.75rem !important;
  }

  .pt-xxl-6,
.py-xxl-6 {
    padding-top: 3.75rem !important;
  }

  .pr-xxl-6,
.px-xxl-6 {
    padding-right: 3.75rem !important;
  }

  .pb-xxl-6,
.py-xxl-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-xxl-6,
.px-xxl-6 {
    padding-left: 3.75rem !important;
  }

  .p-xxl-8 {
    padding: 5rem !important;
  }

  .pt-xxl-8,
.py-xxl-8 {
    padding-top: 5rem !important;
  }

  .pr-xxl-8,
.px-xxl-8 {
    padding-right: 5rem !important;
  }

  .pb-xxl-8,
.py-xxl-8 {
    padding-bottom: 5rem !important;
  }

  .pl-xxl-8,
.px-xxl-8 {
    padding-left: 5rem !important;
  }

  .p-xxl-12 {
    padding: 7.5rem !important;
  }

  .pt-xxl-12,
.py-xxl-12 {
    padding-top: 7.5rem !important;
  }

  .pr-xxl-12,
.px-xxl-12 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-12,
.py-xxl-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xxl-12,
.px-xxl-12 {
    padding-left: 7.5rem !important;
  }

  .m-xxl-n1 {
    margin: -0.625rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.625rem !important;
  }

  .m-xxl-n2 {
    margin: -1.25rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -1.25rem !important;
  }

  .m-xxl-n3 {
    margin: -1.875rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1.875rem !important;
  }

  .m-xxl-n4 {
    margin: -2.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -2.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3.125rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3.125rem !important;
  }

  .m-xxl-n6 {
    margin: -3.75rem !important;
  }

  .mt-xxl-n6,
.my-xxl-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-xxl-n6,
.mx-xxl-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-xxl-n6,
.my-xxl-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-xxl-n6,
.mx-xxl-n6 {
    margin-left: -3.75rem !important;
  }

  .m-xxl-n8 {
    margin: -5rem !important;
  }

  .mt-xxl-n8,
.my-xxl-n8 {
    margin-top: -5rem !important;
  }

  .mr-xxl-n8,
.mx-xxl-n8 {
    margin-right: -5rem !important;
  }

  .mb-xxl-n8,
.my-xxl-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-xxl-n8,
.mx-xxl-n8 {
    margin-left: -5rem !important;
  }

  .m-xxl-n12 {
    margin: -7.5rem !important;
  }

  .mt-xxl-n12,
.my-xxl-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-xxl-n12,
.mx-xxl-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-xxl-n12,
.my-xxl-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xxl-n12,
.mx-xxl-n12 {
    margin-left: -7.5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

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

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

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

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

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.625rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.625rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.625rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.625rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.625rem !important;
}

.m-2 {
  margin: 1.25rem !important;
}

.mt-2,
.my-2 {
  margin-top: 1.25rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 1.25rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 1.25rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 1.25rem !important;
}

.m-3 {
  margin: 1.875rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1.875rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1.875rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1.875rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1.875rem !important;
}

.m-4 {
  margin: 2.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 2.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 2.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 2.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 2.5rem !important;
}

.m-5 {
  margin: 3.125rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3.125rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3.125rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3.125rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3.125rem !important;
}

.m-6 {
  margin: 3.75rem !important;
}

.mt-6,
.my-6 {
  margin-top: 3.75rem !important;
}

.mr-6,
.mx-6 {
  margin-right: 3.75rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 3.75rem !important;
}

.ml-6,
.mx-6 {
  margin-left: 3.75rem !important;
}

.m-8 {
  margin: 5rem !important;
}

.mt-8,
.my-8 {
  margin-top: 5rem !important;
}

.mr-8,
.mx-8 {
  margin-right: 5rem !important;
}

.mb-8,
.my-8 {
  margin-bottom: 5rem !important;
}

.ml-8,
.mx-8 {
  margin-left: 5rem !important;
}

.m-12 {
  margin: 7.5rem !important;
}

.mt-12,
.my-12 {
  margin-top: 7.5rem !important;
}

.mr-12,
.mx-12 {
  margin-right: 7.5rem !important;
}

.mb-12,
.my-12 {
  margin-bottom: 7.5rem !important;
}

.ml-12,
.mx-12 {
  margin-left: 7.5rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.625rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.625rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.625rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.625rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.625rem !important;
}

.p-2 {
  padding: 1.25rem !important;
}

.pt-2,
.py-2 {
  padding-top: 1.25rem !important;
}

.pr-2,
.px-2 {
  padding-right: 1.25rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 1.25rem !important;
}

.pl-2,
.px-2 {
  padding-left: 1.25rem !important;
}

.p-3 {
  padding: 1.875rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1.875rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1.875rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1.875rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1.875rem !important;
}

.p-4 {
  padding: 2.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 2.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 2.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 2.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 2.5rem !important;
}

.p-5 {
  padding: 3.125rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3.125rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3.125rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3.125rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3.125rem !important;
}

.p-6 {
  padding: 3.75rem !important;
}

.pt-6,
.py-6 {
  padding-top: 3.75rem !important;
}

.pr-6,
.px-6 {
  padding-right: 3.75rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 3.75rem !important;
}

.pl-6,
.px-6 {
  padding-left: 3.75rem !important;
}

.p-8 {
  padding: 5rem !important;
}

.pt-8,
.py-8 {
  padding-top: 5rem !important;
}

.pr-8,
.px-8 {
  padding-right: 5rem !important;
}

.pb-8,
.py-8 {
  padding-bottom: 5rem !important;
}

.pl-8,
.px-8 {
  padding-left: 5rem !important;
}

.p-12 {
  padding: 7.5rem !important;
}

.pt-12,
.py-12 {
  padding-top: 7.5rem !important;
}

.pr-12,
.px-12 {
  padding-right: 7.5rem !important;
}

.pb-12,
.py-12 {
  padding-bottom: 7.5rem !important;
}

.pl-12,
.px-12 {
  padding-left: 7.5rem !important;
}

.m-n1 {
  margin: -0.625rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.625rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.625rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.625rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.625rem !important;
}

.m-n2 {
  margin: -1.25rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -1.25rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -1.25rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -1.25rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -1.25rem !important;
}

.m-n3 {
  margin: -1.875rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1.875rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1.875rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1.875rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1.875rem !important;
}

.m-n4 {
  margin: -2.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -2.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -2.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -2.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -2.5rem !important;
}

.m-n5 {
  margin: -3.125rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3.125rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3.125rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3.125rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3.125rem !important;
}

.m-n6 {
  margin: -3.75rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -3.75rem !important;
}

.mr-n6,
.mx-n6 {
  margin-right: -3.75rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -3.75rem !important;
}

.ml-n6,
.mx-n6 {
  margin-left: -3.75rem !important;
}

.m-n8 {
  margin: -5rem !important;
}

.mt-n8,
.my-n8 {
  margin-top: -5rem !important;
}

.mr-n8,
.mx-n8 {
  margin-right: -5rem !important;
}

.mb-n8,
.my-n8 {
  margin-bottom: -5rem !important;
}

.ml-n8,
.mx-n8 {
  margin-left: -5rem !important;
}

.m-n12 {
  margin: -7.5rem !important;
}

.mt-n12,
.my-n12 {
  margin-top: -7.5rem !important;
}

.mr-n12,
.mx-n12 {
  margin-right: -7.5rem !important;
}

.mb-n12,
.my-n12 {
  margin-bottom: -7.5rem !important;
}

.ml-n12,
.mx-n12 {
  margin-left: -7.5rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 460px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.625rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.625rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.625rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.625rem !important;
  }

  .m-sm-2 {
    margin: 1.25rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 1.25rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 1.25rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 1.25rem !important;
  }

  .m-sm-3 {
    margin: 1.875rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1.875rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1.875rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1.875rem !important;
  }

  .m-sm-4 {
    margin: 2.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 2.5rem !important;
  }

  .m-sm-5 {
    margin: 3.125rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3.125rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3.125rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3.125rem !important;
  }

  .m-sm-6 {
    margin: 3.75rem !important;
  }

  .mt-sm-6,
.my-sm-6 {
    margin-top: 3.75rem !important;
  }

  .mr-sm-6,
.mx-sm-6 {
    margin-right: 3.75rem !important;
  }

  .mb-sm-6,
.my-sm-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-sm-6,
.mx-sm-6 {
    margin-left: 3.75rem !important;
  }

  .m-sm-8 {
    margin: 5rem !important;
  }

  .mt-sm-8,
.my-sm-8 {
    margin-top: 5rem !important;
  }

  .mr-sm-8,
.mx-sm-8 {
    margin-right: 5rem !important;
  }

  .mb-sm-8,
.my-sm-8 {
    margin-bottom: 5rem !important;
  }

  .ml-sm-8,
.mx-sm-8 {
    margin-left: 5rem !important;
  }

  .m-sm-12 {
    margin: 7.5rem !important;
  }

  .mt-sm-12,
.my-sm-12 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-12,
.mx-sm-12 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-12,
.my-sm-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-12,
.mx-sm-12 {
    margin-left: 7.5rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.625rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.625rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.625rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.625rem !important;
  }

  .p-sm-2 {
    padding: 1.25rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 1.25rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 1.25rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 1.25rem !important;
  }

  .p-sm-3 {
    padding: 1.875rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1.875rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1.875rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1.875rem !important;
  }

  .p-sm-4 {
    padding: 2.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 2.5rem !important;
  }

  .p-sm-5 {
    padding: 3.125rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3.125rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3.125rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3.125rem !important;
  }

  .p-sm-6 {
    padding: 3.75rem !important;
  }

  .pt-sm-6,
.py-sm-6 {
    padding-top: 3.75rem !important;
  }

  .pr-sm-6,
.px-sm-6 {
    padding-right: 3.75rem !important;
  }

  .pb-sm-6,
.py-sm-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-sm-6,
.px-sm-6 {
    padding-left: 3.75rem !important;
  }

  .p-sm-8 {
    padding: 5rem !important;
  }

  .pt-sm-8,
.py-sm-8 {
    padding-top: 5rem !important;
  }

  .pr-sm-8,
.px-sm-8 {
    padding-right: 5rem !important;
  }

  .pb-sm-8,
.py-sm-8 {
    padding-bottom: 5rem !important;
  }

  .pl-sm-8,
.px-sm-8 {
    padding-left: 5rem !important;
  }

  .p-sm-12 {
    padding: 7.5rem !important;
  }

  .pt-sm-12,
.py-sm-12 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-12,
.px-sm-12 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-12,
.py-sm-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-12,
.px-sm-12 {
    padding-left: 7.5rem !important;
  }

  .m-sm-n1 {
    margin: -0.625rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.625rem !important;
  }

  .m-sm-n2 {
    margin: -1.25rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -1.25rem !important;
  }

  .m-sm-n3 {
    margin: -1.875rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1.875rem !important;
  }

  .m-sm-n4 {
    margin: -2.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -2.5rem !important;
  }

  .m-sm-n5 {
    margin: -3.125rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3.125rem !important;
  }

  .m-sm-n6 {
    margin: -3.75rem !important;
  }

  .mt-sm-n6,
.my-sm-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-sm-n6,
.mx-sm-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-sm-n6,
.my-sm-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-sm-n6,
.mx-sm-n6 {
    margin-left: -3.75rem !important;
  }

  .m-sm-n8 {
    margin: -5rem !important;
  }

  .mt-sm-n8,
.my-sm-n8 {
    margin-top: -5rem !important;
  }

  .mr-sm-n8,
.mx-sm-n8 {
    margin-right: -5rem !important;
  }

  .mb-sm-n8,
.my-sm-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-sm-n8,
.mx-sm-n8 {
    margin-left: -5rem !important;
  }

  .m-sm-n12 {
    margin: -7.5rem !important;
  }

  .mt-sm-n12,
.my-sm-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n12,
.mx-sm-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n12,
.my-sm-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n12,
.mx-sm-n12 {
    margin-left: -7.5rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.625rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.625rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.625rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.625rem !important;
  }

  .m-md-2 {
    margin: 1.25rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 1.25rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 1.25rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 1.25rem !important;
  }

  .m-md-3 {
    margin: 1.875rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1.875rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1.875rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1.875rem !important;
  }

  .m-md-4 {
    margin: 2.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 2.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 2.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 2.5rem !important;
  }

  .m-md-5 {
    margin: 3.125rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3.125rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3.125rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3.125rem !important;
  }

  .m-md-6 {
    margin: 3.75rem !important;
  }

  .mt-md-6,
.my-md-6 {
    margin-top: 3.75rem !important;
  }

  .mr-md-6,
.mx-md-6 {
    margin-right: 3.75rem !important;
  }

  .mb-md-6,
.my-md-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-md-6,
.mx-md-6 {
    margin-left: 3.75rem !important;
  }

  .m-md-8 {
    margin: 5rem !important;
  }

  .mt-md-8,
.my-md-8 {
    margin-top: 5rem !important;
  }

  .mr-md-8,
.mx-md-8 {
    margin-right: 5rem !important;
  }

  .mb-md-8,
.my-md-8 {
    margin-bottom: 5rem !important;
  }

  .ml-md-8,
.mx-md-8 {
    margin-left: 5rem !important;
  }

  .m-md-12 {
    margin: 7.5rem !important;
  }

  .mt-md-12,
.my-md-12 {
    margin-top: 7.5rem !important;
  }

  .mr-md-12,
.mx-md-12 {
    margin-right: 7.5rem !important;
  }

  .mb-md-12,
.my-md-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-12,
.mx-md-12 {
    margin-left: 7.5rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.625rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.625rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.625rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.625rem !important;
  }

  .p-md-2 {
    padding: 1.25rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 1.25rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 1.25rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 1.25rem !important;
  }

  .p-md-3 {
    padding: 1.875rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1.875rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1.875rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1.875rem !important;
  }

  .p-md-4 {
    padding: 2.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 2.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 2.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 2.5rem !important;
  }

  .p-md-5 {
    padding: 3.125rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3.125rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3.125rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3.125rem !important;
  }

  .p-md-6 {
    padding: 3.75rem !important;
  }

  .pt-md-6,
.py-md-6 {
    padding-top: 3.75rem !important;
  }

  .pr-md-6,
.px-md-6 {
    padding-right: 3.75rem !important;
  }

  .pb-md-6,
.py-md-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-md-6,
.px-md-6 {
    padding-left: 3.75rem !important;
  }

  .p-md-8 {
    padding: 5rem !important;
  }

  .pt-md-8,
.py-md-8 {
    padding-top: 5rem !important;
  }

  .pr-md-8,
.px-md-8 {
    padding-right: 5rem !important;
  }

  .pb-md-8,
.py-md-8 {
    padding-bottom: 5rem !important;
  }

  .pl-md-8,
.px-md-8 {
    padding-left: 5rem !important;
  }

  .p-md-12 {
    padding: 7.5rem !important;
  }

  .pt-md-12,
.py-md-12 {
    padding-top: 7.5rem !important;
  }

  .pr-md-12,
.px-md-12 {
    padding-right: 7.5rem !important;
  }

  .pb-md-12,
.py-md-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-12,
.px-md-12 {
    padding-left: 7.5rem !important;
  }

  .m-md-n1 {
    margin: -0.625rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.625rem !important;
  }

  .m-md-n2 {
    margin: -1.25rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -1.25rem !important;
  }

  .m-md-n3 {
    margin: -1.875rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1.875rem !important;
  }

  .m-md-n4 {
    margin: -2.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -2.5rem !important;
  }

  .m-md-n5 {
    margin: -3.125rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3.125rem !important;
  }

  .m-md-n6 {
    margin: -3.75rem !important;
  }

  .mt-md-n6,
.my-md-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-md-n6,
.mx-md-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-md-n6,
.my-md-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-md-n6,
.mx-md-n6 {
    margin-left: -3.75rem !important;
  }

  .m-md-n8 {
    margin: -5rem !important;
  }

  .mt-md-n8,
.my-md-n8 {
    margin-top: -5rem !important;
  }

  .mr-md-n8,
.mx-md-n8 {
    margin-right: -5rem !important;
  }

  .mb-md-n8,
.my-md-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-md-n8,
.mx-md-n8 {
    margin-left: -5rem !important;
  }

  .m-md-n12 {
    margin: -7.5rem !important;
  }

  .mt-md-n12,
.my-md-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n12,
.mx-md-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n12,
.my-md-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n12,
.mx-md-n12 {
    margin-left: -7.5rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.625rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.625rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.625rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.625rem !important;
  }

  .m-lg-2 {
    margin: 1.25rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 1.25rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 1.25rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 1.25rem !important;
  }

  .m-lg-3 {
    margin: 1.875rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1.875rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1.875rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1.875rem !important;
  }

  .m-lg-4 {
    margin: 2.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 2.5rem !important;
  }

  .m-lg-5 {
    margin: 3.125rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3.125rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3.125rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3.125rem !important;
  }

  .m-lg-6 {
    margin: 3.75rem !important;
  }

  .mt-lg-6,
.my-lg-6 {
    margin-top: 3.75rem !important;
  }

  .mr-lg-6,
.mx-lg-6 {
    margin-right: 3.75rem !important;
  }

  .mb-lg-6,
.my-lg-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-lg-6,
.mx-lg-6 {
    margin-left: 3.75rem !important;
  }

  .m-lg-8 {
    margin: 5rem !important;
  }

  .mt-lg-8,
.my-lg-8 {
    margin-top: 5rem !important;
  }

  .mr-lg-8,
.mx-lg-8 {
    margin-right: 5rem !important;
  }

  .mb-lg-8,
.my-lg-8 {
    margin-bottom: 5rem !important;
  }

  .ml-lg-8,
.mx-lg-8 {
    margin-left: 5rem !important;
  }

  .m-lg-12 {
    margin: 7.5rem !important;
  }

  .mt-lg-12,
.my-lg-12 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-12,
.mx-lg-12 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-12,
.my-lg-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-12,
.mx-lg-12 {
    margin-left: 7.5rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.625rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.625rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.625rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.625rem !important;
  }

  .p-lg-2 {
    padding: 1.25rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 1.25rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 1.25rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 1.25rem !important;
  }

  .p-lg-3 {
    padding: 1.875rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1.875rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1.875rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1.875rem !important;
  }

  .p-lg-4 {
    padding: 2.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 2.5rem !important;
  }

  .p-lg-5 {
    padding: 3.125rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3.125rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3.125rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3.125rem !important;
  }

  .p-lg-6 {
    padding: 3.75rem !important;
  }

  .pt-lg-6,
.py-lg-6 {
    padding-top: 3.75rem !important;
  }

  .pr-lg-6,
.px-lg-6 {
    padding-right: 3.75rem !important;
  }

  .pb-lg-6,
.py-lg-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-lg-6,
.px-lg-6 {
    padding-left: 3.75rem !important;
  }

  .p-lg-8 {
    padding: 5rem !important;
  }

  .pt-lg-8,
.py-lg-8 {
    padding-top: 5rem !important;
  }

  .pr-lg-8,
.px-lg-8 {
    padding-right: 5rem !important;
  }

  .pb-lg-8,
.py-lg-8 {
    padding-bottom: 5rem !important;
  }

  .pl-lg-8,
.px-lg-8 {
    padding-left: 5rem !important;
  }

  .p-lg-12 {
    padding: 7.5rem !important;
  }

  .pt-lg-12,
.py-lg-12 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-12,
.px-lg-12 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-12,
.py-lg-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-12,
.px-lg-12 {
    padding-left: 7.5rem !important;
  }

  .m-lg-n1 {
    margin: -0.625rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.625rem !important;
  }

  .m-lg-n2 {
    margin: -1.25rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -1.25rem !important;
  }

  .m-lg-n3 {
    margin: -1.875rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1.875rem !important;
  }

  .m-lg-n4 {
    margin: -2.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -2.5rem !important;
  }

  .m-lg-n5 {
    margin: -3.125rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3.125rem !important;
  }

  .m-lg-n6 {
    margin: -3.75rem !important;
  }

  .mt-lg-n6,
.my-lg-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-lg-n6,
.mx-lg-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-lg-n6,
.my-lg-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-lg-n6,
.mx-lg-n6 {
    margin-left: -3.75rem !important;
  }

  .m-lg-n8 {
    margin: -5rem !important;
  }

  .mt-lg-n8,
.my-lg-n8 {
    margin-top: -5rem !important;
  }

  .mr-lg-n8,
.mx-lg-n8 {
    margin-right: -5rem !important;
  }

  .mb-lg-n8,
.my-lg-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-lg-n8,
.mx-lg-n8 {
    margin-left: -5rem !important;
  }

  .m-lg-n12 {
    margin: -7.5rem !important;
  }

  .mt-lg-n12,
.my-lg-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n12,
.mx-lg-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n12,
.my-lg-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n12,
.mx-lg-n12 {
    margin-left: -7.5rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1280px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.625rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.625rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.625rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.625rem !important;
  }

  .m-xl-2 {
    margin: 1.25rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 1.25rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 1.25rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 1.25rem !important;
  }

  .m-xl-3 {
    margin: 1.875rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1.875rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1.875rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1.875rem !important;
  }

  .m-xl-4 {
    margin: 2.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 2.5rem !important;
  }

  .m-xl-5 {
    margin: 3.125rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3.125rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3.125rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3.125rem !important;
  }

  .m-xl-6 {
    margin: 3.75rem !important;
  }

  .mt-xl-6,
.my-xl-6 {
    margin-top: 3.75rem !important;
  }

  .mr-xl-6,
.mx-xl-6 {
    margin-right: 3.75rem !important;
  }

  .mb-xl-6,
.my-xl-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-xl-6,
.mx-xl-6 {
    margin-left: 3.75rem !important;
  }

  .m-xl-8 {
    margin: 5rem !important;
  }

  .mt-xl-8,
.my-xl-8 {
    margin-top: 5rem !important;
  }

  .mr-xl-8,
.mx-xl-8 {
    margin-right: 5rem !important;
  }

  .mb-xl-8,
.my-xl-8 {
    margin-bottom: 5rem !important;
  }

  .ml-xl-8,
.mx-xl-8 {
    margin-left: 5rem !important;
  }

  .m-xl-12 {
    margin: 7.5rem !important;
  }

  .mt-xl-12,
.my-xl-12 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-12,
.mx-xl-12 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-12,
.my-xl-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-12,
.mx-xl-12 {
    margin-left: 7.5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.625rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.625rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.625rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.625rem !important;
  }

  .p-xl-2 {
    padding: 1.25rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 1.25rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 1.25rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 1.25rem !important;
  }

  .p-xl-3 {
    padding: 1.875rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1.875rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1.875rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1.875rem !important;
  }

  .p-xl-4 {
    padding: 2.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 2.5rem !important;
  }

  .p-xl-5 {
    padding: 3.125rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3.125rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3.125rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3.125rem !important;
  }

  .p-xl-6 {
    padding: 3.75rem !important;
  }

  .pt-xl-6,
.py-xl-6 {
    padding-top: 3.75rem !important;
  }

  .pr-xl-6,
.px-xl-6 {
    padding-right: 3.75rem !important;
  }

  .pb-xl-6,
.py-xl-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-xl-6,
.px-xl-6 {
    padding-left: 3.75rem !important;
  }

  .p-xl-8 {
    padding: 5rem !important;
  }

  .pt-xl-8,
.py-xl-8 {
    padding-top: 5rem !important;
  }

  .pr-xl-8,
.px-xl-8 {
    padding-right: 5rem !important;
  }

  .pb-xl-8,
.py-xl-8 {
    padding-bottom: 5rem !important;
  }

  .pl-xl-8,
.px-xl-8 {
    padding-left: 5rem !important;
  }

  .p-xl-12 {
    padding: 7.5rem !important;
  }

  .pt-xl-12,
.py-xl-12 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-12,
.px-xl-12 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-12,
.py-xl-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-12,
.px-xl-12 {
    padding-left: 7.5rem !important;
  }

  .m-xl-n1 {
    margin: -0.625rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.625rem !important;
  }

  .m-xl-n2 {
    margin: -1.25rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -1.25rem !important;
  }

  .m-xl-n3 {
    margin: -1.875rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1.875rem !important;
  }

  .m-xl-n4 {
    margin: -2.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -2.5rem !important;
  }

  .m-xl-n5 {
    margin: -3.125rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3.125rem !important;
  }

  .m-xl-n6 {
    margin: -3.75rem !important;
  }

  .mt-xl-n6,
.my-xl-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-xl-n6,
.mx-xl-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-xl-n6,
.my-xl-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-xl-n6,
.mx-xl-n6 {
    margin-left: -3.75rem !important;
  }

  .m-xl-n8 {
    margin: -5rem !important;
  }

  .mt-xl-n8,
.my-xl-n8 {
    margin-top: -5rem !important;
  }

  .mr-xl-n8,
.mx-xl-n8 {
    margin-right: -5rem !important;
  }

  .mb-xl-n8,
.my-xl-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-xl-n8,
.mx-xl-n8 {
    margin-left: -5rem !important;
  }

  .m-xl-n12 {
    margin: -7.5rem !important;
  }

  .mt-xl-n12,
.my-xl-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n12,
.mx-xl-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n12,
.my-xl-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n12,
.mx-xl-n12 {
    margin-left: -7.5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1600px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.625rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.625rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.625rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.625rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.625rem !important;
  }

  .m-xxl-2 {
    margin: 1.25rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 1.25rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 1.25rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 1.25rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 1.25rem !important;
  }

  .m-xxl-3 {
    margin: 1.875rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1.875rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1.875rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1.875rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1.875rem !important;
  }

  .m-xxl-4 {
    margin: 2.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 2.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 2.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 2.5rem !important;
  }

  .m-xxl-5 {
    margin: 3.125rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3.125rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3.125rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3.125rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3.125rem !important;
  }

  .m-xxl-6 {
    margin: 3.75rem !important;
  }

  .mt-xxl-6,
.my-xxl-6 {
    margin-top: 3.75rem !important;
  }

  .mr-xxl-6,
.mx-xxl-6 {
    margin-right: 3.75rem !important;
  }

  .mb-xxl-6,
.my-xxl-6 {
    margin-bottom: 3.75rem !important;
  }

  .ml-xxl-6,
.mx-xxl-6 {
    margin-left: 3.75rem !important;
  }

  .m-xxl-8 {
    margin: 5rem !important;
  }

  .mt-xxl-8,
.my-xxl-8 {
    margin-top: 5rem !important;
  }

  .mr-xxl-8,
.mx-xxl-8 {
    margin-right: 5rem !important;
  }

  .mb-xxl-8,
.my-xxl-8 {
    margin-bottom: 5rem !important;
  }

  .ml-xxl-8,
.mx-xxl-8 {
    margin-left: 5rem !important;
  }

  .m-xxl-12 {
    margin: 7.5rem !important;
  }

  .mt-xxl-12,
.my-xxl-12 {
    margin-top: 7.5rem !important;
  }

  .mr-xxl-12,
.mx-xxl-12 {
    margin-right: 7.5rem !important;
  }

  .mb-xxl-12,
.my-xxl-12 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xxl-12,
.mx-xxl-12 {
    margin-left: 7.5rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.625rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.625rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.625rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.625rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.625rem !important;
  }

  .p-xxl-2 {
    padding: 1.25rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 1.25rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 1.25rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 1.25rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 1.25rem !important;
  }

  .p-xxl-3 {
    padding: 1.875rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1.875rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1.875rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1.875rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1.875rem !important;
  }

  .p-xxl-4 {
    padding: 2.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 2.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 2.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 2.5rem !important;
  }

  .p-xxl-5 {
    padding: 3.125rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3.125rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3.125rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3.125rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3.125rem !important;
  }

  .p-xxl-6 {
    padding: 3.75rem !important;
  }

  .pt-xxl-6,
.py-xxl-6 {
    padding-top: 3.75rem !important;
  }

  .pr-xxl-6,
.px-xxl-6 {
    padding-right: 3.75rem !important;
  }

  .pb-xxl-6,
.py-xxl-6 {
    padding-bottom: 3.75rem !important;
  }

  .pl-xxl-6,
.px-xxl-6 {
    padding-left: 3.75rem !important;
  }

  .p-xxl-8 {
    padding: 5rem !important;
  }

  .pt-xxl-8,
.py-xxl-8 {
    padding-top: 5rem !important;
  }

  .pr-xxl-8,
.px-xxl-8 {
    padding-right: 5rem !important;
  }

  .pb-xxl-8,
.py-xxl-8 {
    padding-bottom: 5rem !important;
  }

  .pl-xxl-8,
.px-xxl-8 {
    padding-left: 5rem !important;
  }

  .p-xxl-12 {
    padding: 7.5rem !important;
  }

  .pt-xxl-12,
.py-xxl-12 {
    padding-top: 7.5rem !important;
  }

  .pr-xxl-12,
.px-xxl-12 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-12,
.py-xxl-12 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xxl-12,
.px-xxl-12 {
    padding-left: 7.5rem !important;
  }

  .m-xxl-n1 {
    margin: -0.625rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.625rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.625rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.625rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.625rem !important;
  }

  .m-xxl-n2 {
    margin: -1.25rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -1.25rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -1.25rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -1.25rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -1.25rem !important;
  }

  .m-xxl-n3 {
    margin: -1.875rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1.875rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1.875rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1.875rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1.875rem !important;
  }

  .m-xxl-n4 {
    margin: -2.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -2.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3.125rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3.125rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3.125rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3.125rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3.125rem !important;
  }

  .m-xxl-n6 {
    margin: -3.75rem !important;
  }

  .mt-xxl-n6,
.my-xxl-n6 {
    margin-top: -3.75rem !important;
  }

  .mr-xxl-n6,
.mx-xxl-n6 {
    margin-right: -3.75rem !important;
  }

  .mb-xxl-n6,
.my-xxl-n6 {
    margin-bottom: -3.75rem !important;
  }

  .ml-xxl-n6,
.mx-xxl-n6 {
    margin-left: -3.75rem !important;
  }

  .m-xxl-n8 {
    margin: -5rem !important;
  }

  .mt-xxl-n8,
.my-xxl-n8 {
    margin-top: -5rem !important;
  }

  .mr-xxl-n8,
.mx-xxl-n8 {
    margin-right: -5rem !important;
  }

  .mb-xxl-n8,
.my-xxl-n8 {
    margin-bottom: -5rem !important;
  }

  .ml-xxl-n8,
.mx-xxl-n8 {
    margin-left: -5rem !important;
  }

  .m-xxl-n12 {
    margin: -7.5rem !important;
  }

  .mt-xxl-n12,
.my-xxl-n12 {
    margin-top: -7.5rem !important;
  }

  .mr-xxl-n12,
.mx-xxl-n12 {
    margin-right: -7.5rem !important;
  }

  .mb-xxl-n12,
.my-xxl-n12 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xxl-n12,
.mx-xxl-n12 {
    margin-left: -7.5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

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

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

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

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

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

/*
JD WARNING - Framework File
Should not be modified BUT additional Placeholders can be added where required
========================================================================================*/
/* =Base Placeholders
========================================================================================*/
.cf {
  zoom: 1;
}
.cf::before, .cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}

.ehive-pagination .page-numbers, .responsive-menu li.menu-item-has-children > span, .responsive-menu, .list-item .list-item-body .list-item-content, .header.clone-full, .header.clone-wrap, .tags, .navigation .page-numbers, .accordion-trigger:before, .accordion-trigger:after, .tab-container .tabMobiletrigger:before, .tab-container .tabMobiletrigger:after, html.jd-logged-in #wpadminbar, .transition-all, .transition-all-children *,
.transition-all-slower, .transition-all-children-slower *,
.transition-all-quicker, .transition-all-children-quicker *, .img-only-link, .growed img, .grow img {
  transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
}

.social-network a *, .social-share-buttons a *, .img-only-link * {
  transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
}

.accordion-trigger, .tab-container .tabMobiletrigger, .transition-all-slower, .transition-all-children-slower * {
  transition: all 0.5s ease-in-out;
  backface-visibility: hidden;
}

.transition-all-quicker, .transition-all-children-quicker * {
  transition: all 0.2s ease-in-out;
  backface-visibility: hidden;
}

#mainmenu ul, .btn span, .btn i, .button span, .button i, input[type=button] span, input[type=button] i, input[type=submit] span, input[type=submit] i, button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) span, button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) i, a, button, input, textarea, h1, h2, h3, h4, h5, h6, .transition-colors {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  backface-visibility: hidden;
}

#mainmenu ul * {
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  backface-visibility: hidden;
}

.v-center, .v-center-right, .v-center-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.v-center-left {
  left: 0;
  right: auto;
}

.v-center-right {
  right: 0;
  left: auto;
}

.social-network a svg, .social-share-buttons a span svg, .vh-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.tab-data.full-width .tabnav li, .center-vh, .center-v, .center-v-right {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.tab-data.full-width .tabnav li > *, .center-vh > *, .center-v > *, .center-v-right > * {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  align-items: center;
}

.center-v > * {
  align-items: flex-start;
}

.center-v-right > * {
  align-items: flex-end;
}

.center-vh-wrapper, .center-v-wrapper, .center-v-wrapper-right {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.center-vh-wrapper > .center-wrapper-content, .center-v-wrapper > .center-wrapper-content, .center-v-wrapper-right > .center-wrapper-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  align-items: flex-start;
}

.center-v-wrapper-right > .center-wrapper-content {
  align-items: flex-end;
}

.center-vh-wrapper > .center-wrapper-content {
  align-items: center;
}

.shadow {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1);
}

.shadow-large {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.4);
}

.grow {
  overflow: hidden;
}
.grow:hover img {
  transform: scale(1.02);
}

.growed {
  overflow: hidden;
}
.growed img {
  transform: scale(1.02);
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  margin: 0 auto;
}

.norightmargin {
  margin-right: 0 !important;
}

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

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

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

.pos-relative {
  position: relative;
}

.hide {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.iframe-responsive {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.iframe-responsive iframe, .iframe-responsive object, .iframe-responsive embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rounded {
  border-radius: 1.25rem;
  overflow: hidden;
}

.rounded-small {
  border-radius: 0.625rem;
  overflow: hidden;
}

.circled {
  border-radius: 1000%;
  overflow: hidden;
}
.circled img {
  width: 100%;
}

.invisible, .invisible * {
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
  cursor: default;
}

.visible {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s linear 0s, opacity 0.3s;
}

.img-cover-wrapper img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.square-box {
  position: relative;
  overflow: hidden;
}
.square-box:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.square-box .square-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.square-box .square-content > div {
  display: table;
  width: 100%;
  height: 100%;
}
.square-box .square-content > div > div {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.img-only-link {
  display: inline-block;
  text-align: center;
}
.img-only-link span {
  font-size: 0;
  height: 0;
  left: -999em;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -999em;
  top: -999em;
  width: 0;
}

.flip {
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

/* Responsive Placeholders
========================================================================================*/
@media (min-width: 460px) {
  .align-left-sm {
    text-align: left;
  }

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

  .align-center-sm {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .align-left-md {
    text-align: left;
  }

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

  .align-center-md {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .align-left-lg {
    text-align: left;
  }

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

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

  .v-center-lg, .v-center-right-lg {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .v-center-right-lg {
    right: 0;
    left: auto;
  }

  .vh-center-lg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
/*** Custom Placeholders ***/
/* =Default tag styles
========================================================================================*/
html {
  font-size: 10px;
}
@media screen and (min-width: 460px) {
  html {
    font-size: calc(10px + 6 * ((100vw - 460px) / 1140));
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}

body {
  --text-h1: clamp(2.25rem, 1.7283rem + 2.6087vw, 3.75rem);
  --text-h2: clamp(2rem, 1.8261rem + 0.8696vw, 2.5rem);
  --text-h3: clamp(1.75rem, 1.7065rem + 0.2174vw, 1.875rem);
  --text-h4: clamp(1.5625rem, 1.4973rem + 0.3261vw, 1.75rem);
  --text-h5: clamp(1.375rem, 1.3315rem + 0.2174vw, 1.5rem);
  --text-h6: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  position: relative;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #000000;
  min-width: 320px;
}
@media (max-width: 1279.98px) {
  body {
    font-size: 16px;
  }
}

.site-main img:not(.unstyled), img.responsive_img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  color: #000000;
}

.link2 {
  text-decoration: none;
  color: #000000;
}
.link2:hover {
  color: #000000;
}

/* =Font and Colours styles
========================================================================================*/
.font1 {
  font-family: "Poppins", sans-serif;
}

.font2 {
  font-family: "Azeret Mono", monospace;
}

/* Font Colours */
.font-color1 {
  color: #000000;
}

/*Link*/
.font-color2 {
  color: #000000;
}

/*Link Hover*/
.font-color3 {
  color: #000000;
}

/*Body Font*/
.font-color4 {
  color: #ffffff;
}

/*Quote bg*/
.font-color-white {
  color: #ffffff;
}

.font-color-black {
  color: #000000;
}

.font-color-black-strict {
  color: #000000 !important;
}

.font-color-white-strict h1, .font-color-white-strict h2, .font-color-white-strict h3, .font-color-white-strict h4, .font-color-white-strict h5, .font-color-white-strict h6, .font-color-white-strict a, .font-color-white-strict p, .font-color-white-strict ul, .font-color-white-strict ol, .font-color-white-strict blockquote:before, .font-color-white-strict small, .font-color-white-strict strong, .font-color-white-strict span {
  color: #ffffff;
}
.font-color-white-strict i {
  color: #ffffff;
}
.font-color-white-strict.bg-color1 a:not(.btn):not(.btn2):not(.btn3):not(.button):not(.link2), .font-color-white-strict.bg-color1 .link2:hover {
  color: #000000;
}
.font-color-white-strict.bg-color1 a:not(.btn):not(.btn2):not(.btn3):not(.button):not(.link2):hover, .font-color-white-strict.bg-color1 .link2 {
  color: #000000;
}

/* Bg Colours */
.bg-color1, .bg-color1-hover:hover {
  background-color: #000000 !important;
}

/*Link*/
.bg-color2, .bg-color2-hover:hover {
  background-color: #000000 !important;
}

/*Link Hover*/
.bg-color3, .bg-color3-hover:hover {
  background-color: #000000 !important;
}

/*Body Font*/
.bg-color4, .bg-color4-hover:hover {
  background-color: #ffffff !important;
}

/*Quote bg*/
.bg-color-white, .bg-colour-white, .bg-color-white-hover:hover, .bg-colour-white-hover:hover {
  background-color: #ffffff !important;
}

.bg-colour-black, .bg-colour-black:hover {
  background-color: #000000 !important;
}
.banner-container.image .bg-colour-black, .banner-container.image .bg-colour-black:hover {
  background: rgba(0, 0, 0, 0.8) !important;
}
@media (max-width: 767.98px) {
  .banner-container.image .bg-colour-black, .banner-container.image .bg-colour-black:hover {
    background: black !important;
  }
}

.bg-color-alt {
  background-color: #ffffff !important;
}

.bg-gradient {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 100%);
}

/* =Layout styles
========================================================================================*/
#wrapper {
  background: #ffffff;
  position: relative;
}

.wrap {
  max-width: 1800px;
  margin: 0 auto;
}

.wrap-small {
  max-width: 768px;
  margin: 0 auto;
}

.wrap-medium {
  max-width: 1280px;
  margin: 0 auto;
}

.wrap-large {
  max-width: 1536px;
  margin: 0 auto;
}

.wrap-xxl {
  max-width: 2500px;
  margin: 0 auto;
}

.wrap-p {
  padding: 2.5rem;
}

.wrap-px {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
@media (min-width: 1024px) {
  .wrap-px {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

.wrap-py {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

/* =Block Classes
========================================================================================*/
.block-p {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}

.block-pt {
  padding-top: 3.125rem;
}

.block-mb {
  margin-bottom: 3.125rem;
}

.block-mt {
  margin-top: 3.125rem;
}

.block-wrapper.block-m + .block-wrapper.block-m {
  margin-top: 3.125rem;
}
.block-wrapper.block-m:nth-child(1) {
  margin-top: 3.125rem;
}
.no-banner .block-wrapper.block-p:first-child.bg-colour-white {
  padding-top: 0;
}
.block-wrapper.block-p + .block-wrapper.block-p, .block-wrapper.block-p:nth-child(1) {
  margin-top: 0;
}
.block-wrapper.block-p.bg-color1 + .block-wrapper.block-p.bg-color1 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color2 + .block-wrapper.block-p.bg-color2 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color3 + .block-wrapper.block-p.bg-color3 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color4 + .block-wrapper.block-p.bg-color4 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color-alt + .block-wrapper.block-p.bg-color-alt {
  padding-top: 0;
}
.block-wrapper.block-p:last-child {
  margin-bottom: 0;
}

/* =Editor Classes
========================================================================================*/
.alignnone {
  margin: 0.625rem 1.25rem 1.25rem 0;
}

.aligncenter, div.aligncenter {
  display: block;
  margin: 0.625rem auto 0.625rem auto;
}

.alignright {
  float: right;
  margin: 0.625rem 0 1.25rem 1.25rem;
}

.alignleft {
  float: left;
  margin: 0.625rem 1.25rem 1.25rem 0;
}

a img.alignright {
  float: right;
  margin: 0.625rem 0 1.25rem 1.25rem;
}
a img.alignnone {
  margin: 0.625rem 1.25rem 1.25rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.625rem 1.25rem 1.25rem 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 459.98px) {
  img.aligncemter, img.alignright, img.alignleft {
    margin: 0.625rem 0 !important;
    width: 100%;
    height: auto;
  }
}

.wp-caption {
  /* Image does not overflow the content area */
  text-align: center;
  margin-bottom: 0.625rem;
  max-width: 100%;
}
.wp-caption.alignnone, .wp-caption.alignleft {
  margin: 0.625rem 1.25rem 1.25rem 0;
}
.wp-caption.alignright {
  margin: 0.625rem 0 1.25rem 1.25rem;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}
.wp-caption .wp-caption-text {
  background: #ffffff;
  padding: 0.625rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 459.98px) {
  .wp-caption {
    width: 100% !important;
  }
}

.wp-caption.alignnone {
  width: 100% !important;
  background: #ffffff;
  text-align: center;
  padding: 1.875rem;
  margin: 2.5rem 0;
}

.blocks-container-wrapper .entry a:not(.btn-underline), .blocks-container-wrapper .content-container a:not(.btn-underline), .blocks-container-wrapper .hentry a:not(.btn-underline) {
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline-block;
}
.entry .iframe-responsive, .content-container .iframe-responsive, .hentry .iframe-responsive {
  margin-bottom: 1.25rem;
}
.entry .iframe-responsive:last-child, .content-container .iframe-responsive:last-child, .hentry .iframe-responsive:last-child {
  margin-bottom: 0;
}

/* =Screen readers styles
========================================================================================*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #ffffff;
  clip: auto !important;
  clip-path: none;
  color: #000000;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*** Selection ***/
::selection {
  background: #000000;
  color: #ffffff;
}

/* =General Classes
========================================================================================*/
.pos-sticky {
  position: sticky;
}

/*Trasitions with Fix of opacity movement. */
.no_transition {
  transition: none;
}

.rounded-full {
  border-radius: 999999px;
}

.vertical_align_wrapper {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}
.vertical_align_wrapper .vertical_align_content {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}

.children-x-0 > * + * {
  margin-left: 0;
}

.children-x-1 > * + * {
  margin-left: 0.625rem;
}

.children-x-2 > * + * {
  margin-left: 1.25rem;
}

.children-x-3 > * + * {
  margin-left: 1.875rem;
}

.children-x-4 > * + * {
  margin-left: 2.5rem;
}

.children-x-5 > * + * {
  margin-left: 3.125rem;
}

.children-x-6 > * + * {
  margin-left: 3.75rem;
}

.children-x-8 > * + * {
  margin-left: 5rem;
}

.children-x-12 > * + * {
  margin-left: 7.5rem;
}

.children-y-0 > * + * {
  margin-top: 0;
}

.children-y-1 > * + *, .responsive-menu li .sub-menu > * + * {
  margin-top: 0.625rem;
}

.children-y-2 > * + * {
  margin-top: 1.25rem;
}

.children-y-3 > * + * {
  margin-top: 1.875rem;
}

.children-y-4 > * + * {
  margin-top: 2.5rem;
}

.children-y-5 > * + * {
  margin-top: 3.125rem;
}

.children-y-6 > * + * {
  margin-top: 3.75rem;
}

.children-y-8 > * + * {
  margin-top: 5rem;
}

.children-y-12 > * + * {
  margin-top: 7.5rem;
}

.aspect-video {
  aspect-ratio: 1.7777777778;
  object-fit: cover;
}

.aspect-4-3 {
  aspect-ratio: 1.3333333333;
  object-fit: cover;
}

.aspect-3-2 {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.aspect-1-1 {
  aspect-ratio: 1;
  object-fit: cover;
}

.aspect-banner {
  aspect-ratio: 2.6666666667;
  object-fit: cover;
}

:focus, :focus-visible {
  outline: 0.125rem solid black !important;
}
.dark :focus, .dark :focus-visible {
  outline-color: white !important;
}

a:focus-visible figure.list-item-img, a:focus figure.list-item-img {
  outline: 0.125rem solid black !important;
}

.tribe-events-pro-photo__event-featured-image-wrapper:has(a:focus-visible):has(a:focus) {
  outline: 0.125rem solid black !important;
}

input:focus-visible {
  outline: 0.125rem solid black !important;
}
.dark input:focus-visible {
  outline-color: white !important;
}

/* =JD Media Query
========================================================================================*/
.jd_media_query_activation {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  visibility: hidden;
}

/*
JD WARNING - Framework File
Should not be modified BUT additional Grid styles can be added where required
========================================================================================*/
/* =Grid
========================================================================================*/
.cols {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: 0;
}
.cols > .col, .cols > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.cols-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: 0;
  margin-left: -2.5rem;
}
.cols-grid > .col, .cols-grid > [class*=col-] {
  padding-right: 0;
  padding-left: 2.5rem;
}
.cols-grid:not(.grid-flat) > .col, .cols-grid:not(.grid-flat) > [class*=col-] {
  margin-bottom: 2.5rem;
}
.cols-grid.grid-small {
  margin-left: -1.25rem;
}
.cols-grid.grid-small > .col, .cols-grid.grid-small > [class*=col-] {
  padding-left: 1.25rem;
}
.cols-grid.grid-small:not(.grid-flat) > .col, .cols-grid.grid-small:not(.grid-flat) > [class*=col-] {
  margin-bottom: 1.25rem;
}
.cols-grid.grid-large {
  margin-left: -3.75rem;
}
.cols-grid.grid-large > .col, .cols-grid.grid-large > [class*=col-] {
  padding-left: 3.75rem;
}
.cols-grid.grid-large:not(.grid-flat) > .col, .cols-grid.grid-large:not(.grid-flat) > [class*=col-] {
  margin-bottom: 3.75rem;
}

/* New class to add space-evenly to modern browser, with compabitlity to space-around with IE and Edge*/
.justify-content-evenly {
  justify-content: space-evenly;
}

/* Class to add negative bottom margin to the grid*/
.grid-flat-n {
  margin-bottom: -2.5rem;
}
.grid-flat-n.grid-small {
  margin-bottom: -1.25rem;
}
.grid-flat-n.grid-large {
  margin-bottom: -3.75rem;
}

/* It will create a fluid column layout, based on size the wider col (content) per row, to fit the screen.
    Ex: if there is a col with a long word, it will keep the same size for the rest of the columns (wider column) in that row.
    Recommneded for 1 line grids, ex: 3 or 4 cols wide.
*/
.fluid-cols > [class*=col-] {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0%;
  max-width: none;
  min-width: 18.75rem;
}
.fluid-cols > [class*=col-fluid-3] {
  min-width: 25%;
}
.fluid-cols > [class*=col-fluid-4] {
  min-width: 33.3333333333%;
}
.fluid-cols > [class*=col-fluid-6] {
  min-width: 50%;
}

.fluid-banner-one > [class*=col-]:first-child {
  flex-basis: 100%;
}

.fluid-banner-two > [class*=col-]:nth-child(-n+2) {
  flex-basis: 50%;
}

.fluid-banner-odd > [class*=col-]:first-child:nth-last-child(odd) {
  flex-basis: 100%;
}

/*Media Query "DOWN" Classes*/
/*============================================*/
@media (max-width: 767.98px) {
  .cols-grid:not(.cols-strict) {
    margin-left: 0;
  }

  .cols:not(.cols-strict) > .col, .cols:not(.cols-strict) > [class*=col-], .cols-grid:not(.cols-strict) > [class*=col-], .cols-grid:not(.cols-strict) > .col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .cols-grid:not(.cols-strict) > .col, .cols-grid:not(.cols-strict) > [class*=col-] {
    padding-left: 0;
  }
}
@media (max-width: 767.98px) {
  .grid-sm-small {
    margin-left: -1.25rem;
  }

  .grid-sm-small > .col, .grid-sm-small > [class*=col-] {
    padding-left: 1.25rem;
  }

  .grid-sm-small:not(.grid-flat) > .col, .grid-sm-small:not(.grid-flat) > [class*=col-] {
    margin-bottom: 1.25rem;
  }
}
/*Media Query "UP" Classes*/
/*============================================*/
@media (min-width: 1280px) {
  /* It will create a fluid column layout, based on size the wider col (content) per row, to fit the screen.
      Ex: if there is a col with a long word, it will keep the same size for the rest of the columns (wider column) in that row.
      Recommneded for 1 line grids, ex: 3 or 4 cols wide.
  */
  .fluid-cols-xl-up > [class*=col-] {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0%;
    max-width: none;
    min-width: 18.75rem;
  }
  .fluid-cols-xl-up > [class*=col-fluid-3] {
    min-width: 25%;
  }
  .fluid-cols-xl-up > [class*=col-fluid-4] {
    min-width: 33.3333333333%;
  }
  .fluid-cols-xl-up > [class*=col-fluid-6] {
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  /* It will create a fluid column layout, based on size the wider col (content) per row, to fit the screen.
      Ex: if there is a col with a long word, it will keep the same size for the rest of the columns (wider column) in that row.
      Recommneded for 1 line grids, ex: 3 or 4 cols wide.
  */
  .fluid-cols-lg-up > [class*=col-] {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0%;
    max-width: none;
    min-width: 18.75rem;
  }
  .fluid-cols-lg-up > [class*=col-fluid-3] {
    min-width: 25%;
  }
  .fluid-cols-lg-up > [class*=col-fluid-4] {
    min-width: 33.3333333333%;
  }
  .fluid-cols-lg-up > [class*=col-fluid-6] {
    min-width: 50%;
  }
}
@media (min-width: 768px) {
  /* It will create a fluid column layout, based on size the wider col (content) per row, to fit the screen.
      Ex: if there is a col with a long word, it will keep the same size for the rest of the columns (wider column) in that row.
      Recommneded for 1 line grids, ex: 3 or 4 cols wide.
  */
  .fluid-cols-md-up > [class*=col-] {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0%;
    max-width: none;
    min-width: 18.75rem;
  }
  .fluid-cols-md-up > [class*=col-fluid-3] {
    min-width: 25%;
  }
  .fluid-cols-md-up > [class*=col-fluid-4] {
    min-width: 33.3333333333%;
  }
  .fluid-cols-md-up > [class*=col-fluid-6] {
    min-width: 50%;
  }
}
@media (min-width: 460px) {
  /* It will create a fluid column layout, based on size the wider col (content) per row, to fit the screen.
      Ex: if there is a col with a long word, it will keep the same size for the rest of the columns (wider column) in that row.
      Recommneded for 1 line grids, ex: 3 or 4 cols wide.
  */
  .fluid-cols-md-sm > [class*=col-] {
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0%;
    max-width: none;
    min-width: 18.75rem;
  }
  .fluid-cols-md-sm > [class*=col-fluid-3] {
    min-width: 25%;
  }
  .fluid-cols-md-sm > [class*=col-fluid-4] {
    min-width: 33.3333333333%;
  }
  .fluid-cols-md-sm > [class*=col-fluid-6] {
    min-width: 50%;
  }
}
/*animation elements*/
.animation-element {
  opacity: 0;
  position: relative;
}

.fade-in {
  opacity: 0;
  transition: all 1000ms ease-out;
  backface-visibility: hidden;
}
.quicker.fade-in {
  transition: all 600ms ease-out;
}
.quickest.fade-in {
  transition: all 300ms ease-out;
}
.slower.fade-in {
  transition: all 2000ms ease-out;
}
.in-view.fade-in {
  opacity: 1;
}

.bounce-up {
  opacity: 0;
  transition: all 0.3s ease-in-out, transform 1000ms ease-out;
  transform: translate3d(0, 100px, 0);
  backface-visibility: hidden;
}
.quicker.bounce-up {
  transition: all 0.3s ease-in-out, transform 750ms ease-out;
}
.quickest.bounce-up {
  transition: all 0.3s ease-in-out, transform 500ms ease-out;
}
.slower.bounce-up {
  transition: all 0.3s ease-in-out, transform 2000ms ease-out;
}
.in-view.bounce-up {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}

.bounce-down {
  opacity: 0;
  transition: all 0.3s ease-in-out, transform 1000ms ease-out;
  transform: translate3d(0, -100px, 0);
  backface-visibility: hidden;
}
.in-view.bounce-down {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.quicker.bounce-down {
  transform: translate3d(0, -50px, 0);
}
.in-view.quicker.bounce-down {
  transform: translate3d(0px, 0px, 0px);
}
.quickest.bounce-down {
  transform: translate3d(0, -25px, 0);
}
.in-view.quickest.bounce-down {
  transform: translate3d(0px, 0px, 0px);
}
.slower.bounce-down {
  transform: translate3d(0, -200px, 0);
}
.in-view.slower.bounce-down {
  transform: translate3d(0px, 0px, 0px);
}

.slide-left {
  opacity: 0;
  transition: all 0.3s ease-in-out, transform 1000ms linear;
  transform: translate3d(-100px, 0px, 0px);
}
.in-view.slide-left {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.quicker.slide-left {
  transform: translate3d(-50px, 0px, 0px);
}
.in-view.quicker.slide-left {
  transform: translate3d(0px, 0px, 0px);
}
.quickest.slide-left {
  transform: translate3d(-25px, 0px, 0px);
}
.in-view.quickest.slide-left {
  transform: translate3d(0px, 0px, 0px);
}
.slower.slide-left {
  transform: translate3d(-200, 0px, 0);
}
.in-view.slower.slide-left {
  transform: translate3d(0px, 0px, 0px);
}

.slide-right {
  opacity: 0;
  transition: all 0.3s ease-in-out, transform 1000ms linear;
  transform: translate3d(100px, 0px, 0px);
}
.in-view.slide-right {
  opacity: 1;
  transform: translate3d(0px, 0px, 0px);
}
.quicker.slide-right {
  transform: translate3d(50px, 0px, 0px);
}
.in-view.quicker.slide-right {
  transform: translate3d(0px, 0px, 0px);
}
.quickest.slide-right {
  transform: translate3d(25px, 0px, 0px);
}
.in-view.quickest.slide-right {
  transform: translate3d(0px, 0px, 0px);
}
.slower.slide-right {
  transform: translate3d(200, 0px, 0);
}
.in-view.slower.slide-right {
  transform: translate3d(0px, 0px, 0px);
}

/* animation Classes (Initial examples) */
@media (max-width: 1023.98px) {
  .animation-element, .animation-element.in-view {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 1599.98px) {
  .animation-wrapper {
    overflow-x: hidden;
  }
}

.jala-whitepearl-error {
  margin: 2.5rem;
  border: 1px solid red;
  background-color: white;
  color: black;
  padding: 2.5rem;
  font-family: monospace;
  overflow-wrap: break-word;
  font-size: 16px;
  line-height: 22px;
  z-index: 9999;
}
.jala-whitepearl-error .jala-whitepearl-error-title {
  color: red;
  font-weight: bold;
}
.jala-whitepearl-error .jala-whitepearl-error-title span {
  font-weight: normal;
  font-style: italic;
}

.jala-whitepearl-debug {
  margin: 2.5rem;
  border: 1px solid black;
  background-color: white;
  padding: 2.5rem;
  font-family: monospace;
  overflow-wrap: break-word;
  z-index: 9999;
}
.jala-whitepearl-debug.jala-whitepearl-debug-public {
  display: none;
}
.jala-whitepearl-debug pre {
  white-space: pre-wrap;
  font-size: 16px;
  color: black;
  line-height: 22px;
  position: relative;
  background-image: linear-gradient(0deg, #F2F2F2 25%, #FFFFFF 25%, #FFFFFF 50%, #F2F2F2 50%, #F2F2F2 75%, #FFFFFF 75%, #FFFFFF 100%);
  background-size: 1px 88px;
}
.jala-whitepearl-debug > p {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 16px;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slick Lightbox */
.slick-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: #000000;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.slick-lightbox .slick-loading .slick-list {
  background-color: transparent;
}
.slick-lightbox .slick-prev {
  left: 15px;
}
.slick-lightbox .slick-next {
  right: 15px;
}

.slick-lightbox-hide {
  opacity: 0;
}

.slick-lightbox-hide.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-hide-init {
  position: absolute;
  top: -9999px;
  opacity: 0;
}

.slick-lightbox-hide-init.slick-lightbox-ie {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}

.slick-lightbox-inner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick-item {
  text-align: center;
  overflow: hidden;
}
.slick-lightbox-slick-item:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.slick-caption-bottom .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}

.slick-caption-dynamic .slick-lightbox-slick-item .slick-lightbox-slick-item .slick-lightbox-slick-caption {
  display: block;
  text-align: center;
}

.slick-lightbox-slick-item-inner {
  display: inline-block;
  vertical-align: middle;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-img {
  margin: 0 auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.slick-lightbox-slick-caption {
  display: inline-block;
  margin: 0.625rem 0 0;
  color: #ffffff;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.lity-loading .lity-content, .lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover, .lity-close:focus, .lity-close:active, .lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

.lity-iframe .lity-container, .lity-youtube .lity-container, .lity-vimeo .lity-container, .lity-facebookvideo .lity-container, .lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

/* =Buttons
========================================================================================*/
.btn, .btn2, .btn3, .btn4, .button, input[type=button], input[type=submit], button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) {
  margin: 0;
  display: inline-flex;
  text-align: center;
  border: 2px solid #000000;
  cursor: pointer;
  font-weight: 700;
  padding: 12px 18px;
  text-decoration: none !important;
  font-family: "Azeret Mono", monospace;
  line-height: 1.6;
  font-size: 16px;
  background: transparent;
}

.btn, .button, input[type=button], input[type=submit], button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) {
  background: transparent;
  color: #000000;
}
.btn:hover, .button:hover, input[type=button]:hover, input[type=submit]:hover, button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover {
  background: #000000;
  color: #ffffff;
}
.dark .btn, .dark .button, .dark input[type=button], .dark input[type=submit], .dark button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) {
  color: #ffffff;
  border: 2px solid #ffffff;
}
.dark .btn span, .dark .btn i, .dark .button span, .dark .button i, .dark input[type=button] span, .dark input[type=button] i, .dark input[type=submit] span, .dark input[type=submit] i, .dark button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) span, .dark button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) i {
  color: inherit !important;
}
.dark .btn:hover, .dark .button:hover, .dark input[type=button]:hover, .dark input[type=submit]:hover, .dark button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover {
  background: #ffffff !important;
  color: #000000 !important;
}
.button-block .btn span, .button-block .btn i, .highlight-block .btn span, .highlight-block .btn i, .anchor-list-block .btn span, .anchor-list-block .btn i, .button-block .button span, .button-block .button i, .highlight-block .button span, .highlight-block .button i, .anchor-list-block .button span, .anchor-list-block .button i, .button-block input[type=button] span, .button-block input[type=button] i, .highlight-block input[type=button] span, .highlight-block input[type=button] i, .anchor-list-block input[type=button] span, .anchor-list-block input[type=button] i, .button-block input[type=submit] span, .button-block input[type=submit] i, .highlight-block input[type=submit] span, .highlight-block input[type=submit] i, .anchor-list-block input[type=submit] span, .anchor-list-block input[type=submit] i, .button-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) span, .button-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) i, .highlight-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) span, .highlight-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) i, .anchor-list-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) span, .anchor-list-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) i {
  color: initial;
}
.button-block .btn:hover span, .button-block .btn:hover i, .highlight-block .btn:hover span, .highlight-block .btn:hover i, .anchor-list-block .btn:hover span, .anchor-list-block .btn:hover i, .button-block .button:hover span, .button-block .button:hover i, .highlight-block .button:hover span, .highlight-block .button:hover i, .anchor-list-block .button:hover span, .anchor-list-block .button:hover i, .button-block input[type=button]:hover span, .button-block input[type=button]:hover i, .highlight-block input[type=button]:hover span, .highlight-block input[type=button]:hover i, .anchor-list-block input[type=button]:hover span, .anchor-list-block input[type=button]:hover i, .button-block input[type=submit]:hover span, .button-block input[type=submit]:hover i, .highlight-block input[type=submit]:hover span, .highlight-block input[type=submit]:hover i, .anchor-list-block input[type=submit]:hover span, .anchor-list-block input[type=submit]:hover i, .button-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover span, .button-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover i, .highlight-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover span, .highlight-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover i, .anchor-list-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover span, .anchor-list-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover i {
  color: #ffffff;
}
.content-block .btn, .content-block .button, .content-block input[type=button], .content-block input[type=submit], .content-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) {
  color: inherit !important;
}
.content-block .btn:hover, .content-block .button:hover, .content-block input[type=button]:hover, .content-block input[type=submit]:hover, .content-block button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover {
  color: #ffffff !important;
}
.content-block.bg-colour-black .btn, .content-block.bg-colour-black .button, .content-block.bg-colour-black input[type=button], .content-block.bg-colour-black input[type=submit], .content-block.bg-colour-black button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]) {
  color: black !important;
  background: #ffffff !important;
}
.content-block.bg-colour-black .btn:hover, .content-block.bg-colour-black .button:hover, .content-block.bg-colour-black input[type=button]:hover, .content-block.bg-colour-black input[type=submit]:hover, .content-block.bg-colour-black button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.slick-arrow):not([class^=tribe]):hover {
  color: #ffffff !important;
  background: #000000 !important;
}

.btn:hover {
  border-color: #000000;
  background: #000000 !important;
  color: #ffffff;
}

.btn-small {
  min-height: 2.5rem;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 0.9583333333rem);
  padding: 0.5rem 1.5rem;
}

.btn-large {
  min-height: 5.625rem;
  font-size: 2.15625rem;
  padding: 1.125rem 3.375rem;
}

.btn2 {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}
.btn2:hover {
  background: transparent !important;
  color: #000000;
}
.content-block .btn2 {
  color: #ffffff !important;
}
.content-block .btn2:hover {
  color: #000000 !important;
}

/* Custom Buttons*/
/*****************************/
.btn-underline, .btn-underline-icon {
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline-block;
  font-family: "Azeret Mono", monospace;
}
.btn-underline i, .btn-underline-icon i {
  font-size: inherit;
}

.btn-underline-icon {
  text-decoration: none;
  text-decoration-thickness: none;
  text-underline-offset: 0;
  border-bottom: 1px solid #ffffff;
}

/*Responsive Menu*/
/****************************/
.responsive-menu-btn, .close_overlay, .search-btn, .btn3 {
  border: none !important;
  width: auto;
  cursor: pointer;
  outline: none;
  position: relative;
  background: transparent !important;
  padding: 0 !important;
  align-items: center;
  font-size: 20px !important;
}
.responsive-menu-btn i, .close_overlay i, .search-btn i, .btn3 i {
  font-size: 1.875rem;
  margin-right: 1.25rem;
}
@media (max-width: 1023.98px) {
  .responsive-menu-btn i, .close_overlay i, .search-btn i, .btn3 i {
    font-size: 24px;
  }
}
.responsive-menu-btn span, .close_overlay span, .search-btn span, .btn3 span {
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
}
.responsive-menu-btn:hover, .close_overlay:hover, .search-btn:hover, .btn3:hover {
  background: transparent !important;
  color: #000000 !important;
}
.dark .responsive-menu-btn:hover, .dark .close_overlay:hover, .dark .search-btn:hover, .dark .btn3:hover {
  color: #ffffff !important;
  opacity: 0.8;
}

@media (max-width: 767.98px) {
  .whats-on-btn i, .search-btn i {
    margin-right: 0;
  }
}

.btn4 {
  width: auto;
  cursor: pointer;
  outline: none;
  position: relative;
  background: transparent !important;
  align-items: center;
  font-size: 20px !important;
}
.btn4 i {
  font-size: 1.875rem;
  margin-right: 1.25rem;
}
.btn4 span {
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
}
.dark .btn4:hover span, .dark .btn4:hover i {
  color: #000000 !important;
}

/* Responsive Menu Icon effect */
body .responsive-menu-btn span, body .close_overlay span {
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 75ms;
}
/* =Form Styles
========================================================================================*/
/*** Form Inputs ***/
input[type=text],
input[type=url],
input[type=date],
input[type=number],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
textarea,
select {
  font-family: "Azeret Mono", monospace;
  color: #000000;
  background: transparent;
  padding: 12px 0;
  font-size: 16px;
  line-height: 1.6;
  width: 100%;
  /*Custom*/
  border-bottom: 2px solid #000000;
  margin-bottom: 0.625rem;
}
input[type=text]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  border-color: #000000;
}

input[type=file], input[type=range] {
  color: #000000;
  background: #ffffff;
  border-radius: 1.25rem;
}

input[type=date], input[type=file] {
  width: auto;
  padding: 0.75rem;
}
@media (max-width: 459.98px) {
  input[type=date], input[type=file] {
    width: 100%;
  }
}

textarea {
  line-height: 1.6;
  overflow: auto;
  resize: none;
  height: 3.125rem;
  padding: 0.75rem 0;
}

input[type=radio], input[type=checkbox], input[type=range], progress {
  accent-color: #000000;
}

select option:checked, select option:hover {
  background: #000000;
  color: #ffffff;
}

/* body select.select_box */
body select {
  background: url("../../images/bgi/select-triangle.svg") right 15px center no-repeat #ffffff;
  padding-right: 1.25rem;
}

select option {
  padding: 0 0.25rem;
}

/*** PlaceHolders ***/
::-webkit-input-placeholder {
  /* WebKit browsers */
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}

/* CF7 styles */
form.wpcf7-form, form {
  overflow: hidden;
  padding: 1.25rem;
  background: #ffffff;
}

.wpcf7-form .wpcf7-spinner {
  width: 0.625rem !important;
  height: 0.625rem !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0rem;
  background-image: url(../../images/bgi/loading.gif) !important;
  margin: 0;
  background-color: transparent !important;
}
.wpcf7-form .wpcf7-spinner::before {
  content: none;
}

html:not(.no-smil) .wpcf7-form .wpcf7-spinner {
  background-image: url(../../images/bgi/loading.svg) !important;
  vertical-align: middle;
  background-color: transparent !important;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid {
  border: 0.125rem solid #dc3545 !important;
}

span.wpcf7-not-valid-tip {
  display: none;
}

div.wpcf7-response-output {
  width: 100% !important;
  padding: 0.625rem !important;
  margin: 1.875rem 0 1.25rem !important;
  border-style: solid !important;
  border-width: 0.125rem !important;
  border-radius: 1.25rem !important;
}
#sidebar div.wpcf7-response-output {
  padding: 0 !important;
}

.forminator-response-message.forminator-show {
  width: 100% !important;
  padding: 12px 18px !important;
  margin-bottom: 1.25rem;
  border-style: solid !important;
  border-width: 0.125rem !important;
  background: transparent;
}
.dark .forminator-response-message.forminator-show {
  background-color: #ffffff;
}
.forminator-response-message.forminator-error {
  border-color: #dc3545 !important;
  color: #dc3545 !important;
}

.forminator-error-message {
  font-style: italic;
}

.wpcf7-form.sent .wpcf7-response-output, .forminator-ui.sent .wpcf7-response-output {
  border-color: #000000 !important;
  background-color: transparent !important;
  color: #000000 !important;
}
.wpcf7-form.invalid .wpcf7-response-output, .forminator-ui.invalid .wpcf7-response-output {
  border-color: #dc3545 !important;
  background-color: transparent !important;
  color: #dc3545 !important;
}

.required-field, .required {
  color: #dc3545;
}

label {
  display: block;
  margin-bottom: 1.25rem;
}

label .wpcf7-form-control-wrap {
  padding-top: 0.625rem;
}

.wpcf7-quiz-label {
  display: inline-block;
  padding-bottom: 0.625rem;
}

.forminator-ui .forminator-label {
  display: none;
}

.dark {
  /*** PlaceHolders ***/
}
.dark input[type=text],
.dark input[type=url],
.dark input[type=date],
.dark input[type=number],
.dark input[type=password],
.dark input[type=email],
.dark input[type=tel],
.dark input[type=search],
.dark textarea,
.dark select {
  border-color: #ffffff;
  color: #ffffff;
  border-top: 0;
}
.dark ::-webkit-input-placeholder {
  /* WebKit browsers */
  font-style: italic;
  color: #ffffff;
}
.dark :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #ffffff;
  font-style: italic;
  opacity: 1;
}
.dark ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #ffffff;
  font-style: italic;
  opacity: 1;
}
.dark :-ms-input-placeholder {
  /* Internet Explorer 10+ */
  font-style: italic;
  color: #ffffff;
}

@media (max-width: 767.98px) {
  input[type=date]:not(.active):in-range::-webkit-datetime-edit-year-field,
input[type=date]:not(.active):in-range::-webkit-datetime-edit-month-field,
input[type=date]:not(.active):in-range::-webkit-datetime-edit-day-field,
input[type=date]:not(.active):in-range::-webkit-datetime-edit-text {
    color: transparent;
  }

  input[type=date]:not(.active)::before {
    content: attr(placeholder);
  }
}
/* =Gallery
========================================================================================*/
.popup-gallery a {
  display: block;
  width: 100%;
  height: 100%;
}
.popup-gallery a figure {
  /*height:0; padding-bottom:100%;*/
}

/*Slick Lightbox*/
.slick-lightbox {
  background: #000000 !important;
}

.slick-lightbox-slick .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 100;
}
.slick-lightbox-slick .slick-arrow:hover {
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .slick-lightbox-slick .slick-arrow {
    display: none !important;
  }
}
.slick-lightbox-slick .slick-prev.slick-arrow {
  left: 2.5rem !important;
  transform: rotate(90deg);
}
.slick-lightbox-slick .slick-next.slick-arrow {
  right: 2.5rem !important;
  transform: rotate(-90deg);
}
.slick-lightbox-slick:hover {
  background-color: transparent !important;
}
.slick-lightbox-slick .slider-btn, .slick-lightbox-slick .slick-arrow {
  display: inline-block;
  width: 4.1875rem;
  height: 4.1875rem;
  text-indent: -999em;
  background: url("../../images/bgi/triangle.svg") no-repeat center center !important;
  border-radius: 999px !important;
  border: none !important;
  padding: 0 !important;
  background-size: 1.875rem !important;
  transition: all 0.4s ease-in-out, transform 200ms linear;
  /* To avoid conflict with "Button" hover styles*/
}
.slick-lightbox-slick .slider-btn:hover, .slick-lightbox-slick .slick-arrow:hover {
  background-size: 1.875rem !important;
}

/*Close button*/
.slick-lightbox-close {
  position: absolute;
  right: 1.875rem;
  top: 1.875rem;
  width: 4.1875rem;
  height: 4.1875rem;
  background: transparent !important;
  border-radius: 0 !important;
  border: none !important;
}
.slick-lightbox-close:before, .slick-lightbox-close:after {
  content: "";
  position: absolute;
  display: block;
  width: 38px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 0.625rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.slick-lightbox-close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =GMaps
========================================================================================*/
/*Reset Map button*/
.map-canvas {
  width: 100%;
  padding-bottom: 35% !important;
  height: 0;
  min-height: 400px !important;
}
@media (max-width: 767.98px) {
  .map-canvas {
    min-height: 300px !important;
  }
}

.map_marker {
  width: 12.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.map_marker h3 {
  font-size: 1.75rem;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  margin-bottom: 5px;
}
body.post-type-archive-projects .map_marker h3 {
  color: #000000 !important;
}
.map_marker p {
  margin-bottom: 5px;
}

.gm-style button {
  background: none !important;
  min-height: auto !important;
}
.map-block .acf-map {
  width: 100%;
  height: 37.5rem;
}
.map-block .acf-map img {
  max-width: inherit !important;
}
.map-block .content-container .map-title {
  font-size: 16px;
}
.map-block .content-container .map-address, .map-block .content-container .map-content {
  font-size: 14px;
}

/* =Page Overlay
========================================================================================*/
.page-overlay-displayed {
  overflow: hidden;
}

.page-overlay {
  opacity: 0;
  display: none;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999999;
  background: #000000;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, #ffffff 100%);
}
.page-overlay[data-page-overlay=menu_overlay] .overlay-content-container {
  position: relative;
  gap: 3.75rem;
  height: 100%;
}
@media (max-width: 1023.98px) {
  .page-overlay[data-page-overlay=menu_overlay] .overlay-content-container {
    min-height: 50vh;
  }
}
.page-overlay[data-page-overlay=menu_overlay] .promotion-content-container {
  gap: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  flex-direction: column;
  height: 100%;
}
.page-overlay[data-page-overlay=menu_overlay] .promotion-content-container .image-container, .page-overlay[data-page-overlay=menu_overlay] .promotion-content-container .promotion-content {
  width: 100%;
}
.page-overlay[data-page-overlay=menu_overlay] .promotion-content-container .image-container {
  overflow: hidden;
}
.page-overlay[data-page-overlay=menu_overlay] .promotion-content-container .image-container img {
  height: auto;
}
.page-overlay[data-page-overlay=menu_overlay] .promotion-content-container .promotion-content {
  flex-grow: 1;
  font-size: 24px;
  line-height: 24px;
  min-height: 40vh;
}
.page-overlay[data-page-overlay=search_overlay] .search-container {
  align-items: start;
  justify-content: start;
  align-content: start;
  height: auto;
}
@media (max-width: 767.98px) {
  .page-overlay[data-page-overlay=search_overlay] .form-container form .searchtxt {
    flex-wrap: wrap;
    gap: 1.875rem;
  }
  .page-overlay[data-page-overlay=search_overlay] .form-container form .searchtxt .btn4 {
    width: 100%;
  }
}
.page-overlay ::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.8);
}
.page-overlay ::-webkit-scrollbar {
  width: 0.375rem;
  background-color: rgba(255, 255, 255, 0.8);
}
.page-overlay ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.page-overlay .page-overlay-content {
  opacity: 0;
  margin-top: -500px;
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 800;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: tranzlateZ(0);
  transform: tranzlateZ(0);
  min-height: 100vh;
}
.page-overlay .page-overlay-content.inner-partial-container .cols {
  min-height: 100vh;
}
.page-overlay .page-overlay-content.inner-partial-container .overlay-wrapper {
  display: block;
  width: 100%;
}
.page-overlay .page-overlay-content.inner-partial-container .overlay-content {
  width: 100%;
  height: 100%;
}
.page-overlay .page-overlay-content .vertical_align_wrapper .vertical_align_content {
  background-color: #000000;
}
.page-overlay.overlay-top .page-overlay-content {
  overflow: hidden;
}
.page-overlay.overlay-top .page-overlay-content .page-overlay-content-main {
  height: 100%;
  overflow: auto;
}
.page-overlay.overlay-top .page-overlay-content .vertical_align_wrapper .vertical_align_content {
  vertical-align: top;
  padding: 10rem 0 2.5rem;
}

.page-overlay.actived {
  visibility: visible;
  display: block;
}

.page-overlay.displayed {
  opacity: 1;
}

.page-overlay-content.displayed {
  opacity: 1;
  margin-top: 0;
}

.overflow-container {
  max-height: 100%;
  overflow: auto;
  text-align: right;
}

.close_overlay {
  position: relative;
}
@media (max-width: 767.98px) {
  .page-overlay .page-overlay-content {
    width: 100%;
  }

  .responsive-menu {
    max-width: 95% !important;
  }
  .responsive-menu .menu-item-has-children > span {
    width: 24px !important;
    height: 24px !important;
  }
  .responsive-menu .menu-item-has-children > span:after {
    background-size: 12px !important;
    line-height: 1 !important;
  }
}
/* =Slider
========================================================================================*/
/* Dots */
/* Dots Horizontal */
.slick-dots {
  position: absolute;
  display: block;
  padding: 0 !important;
  margin: 0 0 1.25rem !important;
  list-style: none !important;
  width: 100%;
  text-align: center;
  bottom: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 1.25rem;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0 !important;
  text-indent: -999em !important;
  line-height: 0 !important;
  min-height: 0 !important;
  display: block !important;
  width: 1.25rem !important;
  height: 1.25rem !important;
  padding: 0 !important;
  cursor: pointer !important;
  background: #ffffff;
  border: none !important;
  border-radius: 50% !important;
}
.slick-dots li.slick-active button {
  background: #000000 !important;
}
.vertical-dots .slick-dots {
  width: 2.375rem;
  top: 50%;
  right: 0;
  bottom: auto;
  transform: translateY(-50%);
  margin: 0 !important;
}
.vertical-dots .slick-dots li {
  margin: 1.25rem 0;
}

/* Slider Arrows*/
button[type=button].slick-arrow, .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 5000;
  text-indent: -999em;
  margin-top: -1.9375rem !important;
  background: url(../../images/bgi/triangle.svg) no-repeat center center #ffffff !important;
  background-size: 1.25rem !important;
  overflow: hidden;
}
button[type=button].slick-arrow:hover, .slick-arrow:hover {
  opacity: 0.7;
  border-color: #000000 !important;
  background-size: 1.25rem !important;
}
button[type=button].slick-arrow.slick-prev, .slick-arrow.slick-prev {
  left: 0;
  transform: rotate(90deg);
}
button[type=button].slick-arrow.slick-next, .slick-arrow.slick-next {
  right: 0;
  transform: rotate(-90deg);
}

/* =Table
========================================================================================*/
.entry table, .content-container table, .hentry table {
  max-width: 100%;
  background-color: #ffffff;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0.125rem solid #ffffff;
  width: 100%;
  margin-bottom: 1.875rem;
}
.entry table th, .content-container table th, .hentry table th {
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
  background: #000000;
  padding: 0.75rem 2.25rem;
  font-size: 1.4375rem;
  color: #ffffff;
}
.entry table td, .content-container table td, .hentry table td {
  padding: 0.75rem 2.25rem;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  border-top: 0.125rem solid #ffffff;
  border-right: 0.125rem solid #ffffff;
}
.entry table tr:hover td, .content-container table tr:hover td, .hentry table tr:hover td {
  background: #ffffff;
}
.entry table tr.selected td, .content-container table tr.selected td, .hentry table tr.selected td {
  background: #ffffff;
}
.entry table thead th, .content-container table thead th, .hentry table thead th {
  vertical-align: middle;
}
.entry table thead:first-child tr:first-child th, .content-container table thead:first-child tr:first-child th, .hentry table thead:first-child tr:first-child th {
  border-top: 0;
}
.entry table thead:first-child tr:first-child td, .content-container table thead:first-child tr:first-child td, .hentry table thead:first-child tr:first-child td {
  border-top: 0;
}
.entry table caption + thead tr:first-child th, .content-container table caption + thead tr:first-child th, .hentry table caption + thead tr:first-child th {
  border-top: 0;
}
.entry table caption + thead tr:first-child td, .content-container table caption + thead tr:first-child td, .hentry table caption + thead tr:first-child td {
  border-top: 0;
}
.entry table colgroup + thead tr:first-child th, .content-container table colgroup + thead tr:first-child th, .hentry table colgroup + thead tr:first-child th {
  border-top: 0;
}
.entry table colgroup + thead tr:first-child td, .content-container table colgroup + thead tr:first-child td, .hentry table colgroup + thead tr:first-child td {
  border-top: 0;
}

/* Resposive tables */
/*--------------------------------------------------*/
@media (max-width: 767.98px) {
  /* Responsive Table Styles 2 */
  /*--------------------------------------------------*/
  table.res-table {
    border-top: 0;
  }

  table.res-table tr th {
    display: none;
  }

  table.res-table tr td {
    background: #ffffff;
    display: block;
    position: relative;
    padding-left: 50%;
    border-right: 0;
    font-size: 14px;
  }

  table.res-table td:before {
    content: attr(data-th) ": ";
    font-weight: 500;
    width: 50%;
    display: block;
    padding: 6px;
    padding-right: 10px;
    position: absolute;
    left: 0;
    top: 9px;
  }

  table.res-table tr:nth-child(2n+2) td {
    background: #ffffff;
  }

  table.res-table tr:nth-child(2n+2):hover td {
    background: #ffffff;
  }

  table.res-table tr:hover td {
    background: #ffffff;
  }
}
/*=Typography
========================================================================================*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  margin-bottom: 1.25rem;
  display: block;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, .h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child {
  margin-bottom: 0;
}

h1, .h1 {
  font-size: var(--text-h1);
}

h2, .h2 {
  font-size: 2.5rem;
  font-size: var(--text-h2);
}

h3, .h3 {
  font-size: 1.875rem;
  font-size: var(--text-h3);
}

h4, .h4 {
  font-size: 1.75rem;
  font-size: var(--text-h4);
}

h5, .h5 {
  font-size: 1.5rem;
  font-size: var(--text-h5);
}

h6, .h6 {
  font-size: 1.25rem;
  font-size: var(--text-h6);
}

.lead, .text-emphasis {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
}

small, .small {
  font-size: 75%;
}

hr {
  height: 2px;
  border-radius: 0.625rem;
  border: 0;
  margin: 1.875rem 0;
  background-color: #000000;
}
.font-color-white-strict hr {
  background-color: #ffffff;
}
.font-color-black-strict hr {
  background-color: #000000;
}

blockquote {
  background: #ffffff;
  padding: 3.125rem;
  quotes: "“" "”";
  font-style: italic;
  font-size: 1.3rem;
  color: #000000;
}
.block-wrapper.bg-color-alt blockquote {
  background: #ffffff;
}
.bg-colour-white blockquote {
  background: #000000;
  color: #ffffff !important;
}
.bg-colour-white blockquote h1, .bg-colour-white blockquote h2, .bg-colour-white blockquote h3, .bg-colour-white blockquote h4, .bg-colour-white blockquote h5, .bg-colour-white blockquote h6 {
  color: #ffffff !important;
}
blockquote:before {
  color: inherit !important;
  content: open-quote;
  font-size: 32px;
  line-height: 0;
  margin-right: 1.25rem;
  font-family: "FontAwesome";
}
blockquote p {
  display: inline;
  color: inherit !important;
}

p, blockquote {
  margin-bottom: 1.25rem;
}
p:last-child, blockquote:last-child {
  margin-bottom: 0;
}

p, ul, ol {
  line-height: 1.6;
}

sup {
  vertical-align: super;
  font-size: small;
}

sub {
  vertical-align: sub;
  font-size: small;
}

.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) {
  margin-bottom: 1.25rem;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) {
  margin-bottom: 0;
}

.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem 1.25rem;
  list-style-image: url("../../images/bgi/bullet.svg");
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li {
  padding-left: 0.625rem;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul {
  list-style-image: url("../../images/bgi/bullet-linear-circle.svg");
  margin: 0;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child {
  margin-bottom: 0;
}
.entry .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .entry.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) {
  list-style-image: url("../../images/bgi/bullet-alt.svg");
}
.entry .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .entry .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .entry .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .entry.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .content-container .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .content-container .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .content-container .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .content-container.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .hentry .bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .hentry .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .hentry .bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul, .hentry.bg-colour-black ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ul {
  list-style-image: url("../../images/bgi/bullet-linear-circle-alt.svg");
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem 1.25rem;
  list-style-type: decimal;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li {
  padding-left: 0.625rem;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol {
  list-style-type: lower-roman;
  margin: 0;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol li ol, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol li ol, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers) li ol li ol {
  list-style-type: lower-latin;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):last-child {
  margin-bottom: 0;
}

.font-weight-thin {
  font-weight: 100;
}

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

.font-weight-light {
  font-weight: 300;
}

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

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

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

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

.font-weight-extrabold {
  font-weight: 800;
}

.font-weight-black {
  font-weight: 900;
}

/*** WP Admin Bar ***/
html.jd-logged-in, html.jd-logged-in body, * html.jd-logged-in body {
  margin-top: -32px;
}
@media only screen and (max-width: 782px) {
  html.jd-logged-in, html.jd-logged-in body, * html.jd-logged-in body {
    margin-top: -46px;
  }
}

html.jd-logged-in #wpadminbar {
  opacity: 0.5;
  z-index: 10000;
}
html.jd-logged-in #wpadminbar:hover {
  opacity: 1;
}

/* =Accordion
========================================================================================*/
.accordion-data {
  display: none;
  background: #ffffff;
}
.font-color-white-strict .accordion-data * {
  color: #000000;
}

.accordion-row {
  margin-bottom: 1.25rem;
  background: #ffffff;
}
.accordion-row .accordion-data {
  padding: 2.5rem;
}
.accordion-block.block-p .accordion-row .accordion-data {
  background-color: #ffffff;
}
.accordion-row:last-child {
  margin-bottom: 0;
}

.accordion-trigger, .tab-container .tabMobiletrigger {
  padding: 1.25rem;
  background: #000000;
  cursor: pointer;
  position: relative;
  color: #ffffff;
  padding-left: 4.375rem;
  margin: 0;
}
.accordion-trigger h3, .tab-container .tabMobiletrigger h3 {
  color: inherit !important;
}
.accordion-trigger:before, .accordion-trigger:after, .tab-container .tabMobiletrigger:before, .tab-container .tabMobiletrigger:after {
  content: "";
  background: #ffffff;
  height: 4px;
  border-radius: 0.625rem;
  width: 1.75rem;
  position: absolute;
  left: 1.25rem;
  top: 1.875rem;
}
.accordion-trigger:after, .tab-container .tabMobiletrigger:after {
  transform: rotate(90deg);
}
.bg-colour-black .accordion-trigger, .bg-colour-black .tab-container .tabMobiletrigger {
  color: #000000;
  background: #ffffff;
}
.bg-colour-black .accordion-trigger:before, .bg-colour-black .accordion-trigger:after, .bg-colour-black .tab-container .tabMobiletrigger:before, .bg-colour-black .tab-container .tabMobiletrigger:after {
  background: #000000;
}
.accordion-row.open .accordion-trigger:after, .accordion-trigger.rotate:after, .accordion-row.open .tab-container .tabMobiletrigger:after, .tab-container .tabMobiletrigger.rotate:after {
  transform: rotate(180deg);
}

/*
========================================================================================
CSS Name: Anchor List
========================================================================================
*/
@media (max-width: 767.98px) {
  .anchor-list-block .button-block {
    justify-content: start !important;
  }
}
.anchor-list-block .button-block a, .anchor-list-block .button-block input, .anchor-list-block .button-block button, .anchor-list-block .button-block .btn {
  margin-right: 2.5rem;
}
@media (max-width: 767.98px) {
  .anchor-list-block .button-block a, .anchor-list-block .button-block input, .anchor-list-block .button-block button, .anchor-list-block .button-block .btn {
    margin-right: 1.25rem;
  }
}
.anchor-list-block .button-block a:last-child, .anchor-list-block .button-block input:last-child, .anchor-list-block .button-block button:last-child, .anchor-list-block .button-block .btn:last-child {
  margin-right: 0;
}

.bg-colour-black .inner-block-container {
  border-color: #ffffff !important;
}

/* =Button Block
========================================================================================*/
.button-block a, .button-block input, .button-block button, .button-block .btn {
  margin-right: 0.625rem;
}
.button-block a:last-child, .button-block input:last-child, .button-block button:last-child, .button-block .btn:last-child {
  margin-right: 0;
}

.multi-line {
  overflow: hidden;
}
.multi-line .wrap, .multi-line div[class^=wrap], .multi-line div[class*=" wrap"], .multi-line .multi-line-content {
  margin-bottom: -1.25rem;
  overflow: hidden;
}
.multi-line .wrap a, .multi-line .wrap input, .multi-line .wrap button, .multi-line .wrap .btn, .multi-line div[class^=wrap] a, .multi-line div[class^=wrap] input, .multi-line div[class^=wrap] button, .multi-line div[class^=wrap] .btn, .multi-line div[class*=" wrap"] a, .multi-line div[class*=" wrap"] input, .multi-line div[class*=" wrap"] button, .multi-line div[class*=" wrap"] .btn, .multi-line .multi-line-content a, .multi-line .multi-line-content input, .multi-line .multi-line-content button, .multi-line .multi-line-content .btn {
  margin-bottom: 1.25rem;
}

/* = column blocks
========================================================================================*/
.column-block.full-width > .wrap, .column-block.full-width > div[class^=wrap], .column-block.full-width > div[class*=" wrap"] {
  max-width: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .column-block.cols-responsive-no-gap .col-6.col-item:nth-child(4n) .col-item-content, .column-block.cols-responsive-no-gap .col-6.col-item:nth-child(4n-1) .col-item-content {
    padding-top: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .column-block.cols-responsive-no-gap .col-item:nth-child(n+2) .col-item-content {
    padding-top: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1279.98px) {
  .column-block.cols-responsive-no-gap-between-md-lg .col-6.col-item:nth-child(4n) .col-item-content, .column-block.cols-responsive-no-gap-between-md-lg .col-6.col-item:nth-child(4n-1) .col-item-content {
    padding-top: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .column-block.cols-responsive-no-gap-sm .col-item:nth-child(n+2) .col-item-content {
    padding-top: 0 !important;
  }
}
.column-block.block-p .col-item-content.bg-color-alt {
  background-color: #ffffff !important;
}

.cols.same-height .col-item .col-item-content-wrapper, .cols-grid.same-height .col-item .col-item-content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.cols.same-height .col-item .col-item-content-wrapper .col-item-content, .cols-grid.same-height .col-item .col-item-content-wrapper .col-item-content {
  height: 100%;
}
.cols.same-height .col-item .col-item-content-wrapper .col-item-content.bg-color1 a, .cols.same-height .col-item .col-item-content-wrapper .col-item-content.bg-colour-black a, .cols-grid.same-height .col-item .col-item-content-wrapper .col-item-content.bg-color1 a, .cols-grid.same-height .col-item .col-item-content-wrapper .col-item-content.bg-colour-black a {
  color: #000000;
  text-decoration: underline;
}

/* =Divider Block
========================================================================================*/
.divider-block {
  padding: 0;
}
.divider-block:not(.block-p) {
  margin-top: 0 !important;
}
.divider-block + .block-wrapper:not(.block-p) {
  padding: 0;
  margin-top: 3.125rem !important;
}
.block-wrapper.block-p + .divider-block.block-p {
  padding-top: 0;
}
.block-wrapper:not(.block-p):not(.divider-block) + .divider-block:not(.block-p) {
  padding-top: 3.125rem;
}
.divider-block:not(.block-p) + .block-wrapper.block-p {
  margin-top: 0 !important;
}
.divider-block.block-p + .block-wrapper.block-p {
  padding-top: 3.125rem !important;
}
.divider-block hr {
  margin: 0;
}
/* =Form Block
========================================================================================*/
.form-block.block-p form {
  padding: 0;
}

/* =Gallery Block
========================================================================================*/
/* = Highlight
========================================================================================*/
.highlight-block figure {
  width: 100%;
}
@media (max-width: 767.98px) {
  .highlight-block figure {
    margin-bottom: 0.9375rem;
    text-align: center;
  }
}
.highlight-block figure img {
  margin: 0 auto;
  width: 100%;
}
.highlight-block .cols > div {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem !important;
}
.highlight-block.img-right .cols {
  flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
  .highlight-slider figure {
    width: auto;
    margin: 0 auto;
  }
}
.highlight-slider .slick-dots {
  position: relative;
  max-width: 76.875rem;
  width: 100% !important;
  margin-top: 3.125rem !important;
  margin-bottom: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: right;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 20px;
  top: 0 !important;
}
.highlight-slider .slick-dots li {
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: #000000;
  transition: height cubic-bezier(0.23, 1, 0.32, 1) 1000ms;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px) !important;
}
.highlight-slider .slick-dots li button {
  display: none !important;
}
.highlight-slider .slick-dots li.slick-active {
  height: 20px;
}
.highlight-slider .slick-dots li:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: -10px;
  left: 0;
  cursor: pointer;
}
/*
========================================================================================
CSS Name: Insights Block
========================================================================================
*/
.insights-block .title-container .content-container {
  width: 100%;
}
@Include media-breakpoint-up(lg) {
  .insights-block .title-container .content-container {
    width: 75%;
  }
}

@media (min-width: 1024px) {
  .half .content-container {
    position: sticky;
    top: calc(7.5rem + 2.5rem);
  }
}

/*
========================================================================================
CSS Name: Image Credits Block
========================================================================================
*/
.image-credits-block .content-container {
  opacity: 0.8;
}

/* = Highlight
========================================================================================*/
.logo-block .logo-item figure img {
  aspect-ratio: 2/1;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.logo-block .logo-item .content-container {
  text-align: center;
}

/* =tab
========================================================================================*/
.tab-box {
  padding: 2.1875rem 0;
}

.tabcontent {
  display: none;
  color: #000000;
  padding: 2.5rem;
  background: #ffffff;
  border: 2px solid #000000;
}
.tabcontent .image-container {
  max-width: max-content;
  width: 100%;
  object-fit: cover;
}
.tabcontent .image-container img {
  object-fit: contain;
}
@media (min-width: 1024px) {
  .tabcontent .image-container {
    max-width: 300px;
    aspect-ratio: 1/1;
  }
}
.tabcontent .content-container.image {
  width: 100%;
}
@media (min-width: 1024px) {
  .tabcontent .content-container.image {
    padding-left: 2.5rem;
  }
}
.tab-block.block-p .tabcontent {
  background-color: #ffffff;
}
.font-color-white-strict .tabcontent * {
  color: #000000;
}

.tabnav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabnav li {
  float: left;
  position: relative;
  margin: 0;
  text-align: center;
}
.tabnav li a {
  display: block;
  padding: 1.25rem 1.875rem;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  /*margin-bottom:-1px;
  border-left:solid 1px $color3; */
}
.tabnav li a:hover {
  background: #000000;
  color: #ffffff;
}
.tabnav li.active a {
  background: #000000;
  color: #ffffff;
}
.bg-colour-black .tabnav li a {
  color: #000000;
  background: #ffffff;
}
.bg-colour-black .tabnav li a:hover {
  background: #000000;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .bg-colour-black .tabnav li {
    border-bottom: 2px solid #ffffff;
  }
  .bg-colour-black .tabnav li.active {
    border-bottom: 2px solid #000000;
  }
}

.tab-container {
  /*border:solid 1px $color3; */
  border-top: 0;
}

.jq-tabs .tabcontent {
  display: none;
}

.tab-data.full-width .tabnav {
  display: flex;
  flex-wrap: wrap;
}
.tab-data.full-width .tabnav li {
  float: none;
  flex: 1 1 0;
}

@media (max-width: 1023.98px) {
  .tabnav {
    display: none !important;
  }

  .tab-data .tabnav {
    display: none;
  }
}
/* =Team Block
========================================================================================*/
.team-block .list-item-img img {
  width: 100%;
}
.team-block .list-item-content .content-container {
  max-height: 18.75rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.team-block .list-item-content .content-container p {
  padding-right: 0.625rem;
}
.team-block .list-item-content a svg {
  fill: #000000;
}
.team-block .list-item-content a:hover {
  fill: #ffffff;
}
.team-block .list-item-content ::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.5);
}
.team-block .list-item-content ::-webkit-scrollbar {
  width: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.5);
}
.team-block .list-item-content ::-webkit-scrollbar-thumb {
  background-color: black;
  cursor: pointer;
}

/* =Tiles Block
========================================================================================*/
.tile-block .tile-link {
  text-decoration: none !important;
}
/* =Video Block
========================================================================================*/
/*
========================================================================================
CSS Name: Pullout Block
========================================================================================
*/
.pullout-block .inner-block-container a.pullout-featured-image, .pullout-block .inner-block-container .grow-slow {
  height: 100%;
}
.pullout-block .inner-block-container img {
  height: 100%;
  width: 100%;
  min-height: 500px;
}
@media (max-width: 1023.98px) {
  .pullout-block .inner-block-container img {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {
  .pullout-block .inner-block-container img {
    min-height: auto;
  }
}
.pullout-block .inner-block-container .image-container {
  height: 100%;
  width: 100%;
}
@media (max-width: 1279.98px) {
  .pullout-block .inner-block-container .small-col {
    max-width: 60%;
  }
}
@media (max-width: 1023.98px) {
  .pullout-block .inner-block-container .small-col {
    max-width: 100%;
  }
}
.pullout-block .inner-block-container .pullout-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: start;
  height: 100%;
  padding: 2.5rem;
}
@media (min-width: 1280px) {
  .pullout-block .inner-block-container .pullout-content {
    max-width: 48rem;
  }
}
@media (min-width: 1024px) {
  .pullout-block .inner-block-container .pullout-content.text-right {
    padding-left: 0;
  }
}
@media (min-width: 1024px) {
  .pullout-block .inner-block-container .pullout-content.text-left {
    padding-right: 0;
  }
}
.pullout-block .inner-block-container .video-lity:hover .grow-slow, .pullout-block .inner-block-container .pullout-featured-item:hover .grow-slow {
  transform: scale(1.075);
}
.pullout-block .inner-block-container .pullout-overlay {
  position: absolute;
  z-index: 1;
}
.pullout-block .inner-block-container .pullout-overlay.category {
  right: 0.625rem;
  top: 0.625rem;
  font-size: 14px;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  background: #ffffff;
}
.pullout-block .inner-block-container .pullout-overlay.play {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pullout-block .inner-block-container .pullout-overlay.play .btn3 {
  font-size: 3.75rem !important;
}
.pullout-block .inner-block-container .pullout-overlay.play .btn3 i {
  font-size: 3.75rem;
}
@media (max-width: 1279.98px) {
  .pullout-block .inner-block-container .pullout-overlay.play .btn3 {
    font-size: 2.5rem !important;
  }
}
@media (max-width: 1279.98px) {
  .pullout-block .inner-block-container .large-col .image-container {
    height: 100%;
  }
  .pullout-block .inner-block-container .large-col .image-container .grow-slow {
    height: 100%;
  }
  .pullout-block .inner-block-container .large-col .image-container .grow-slow img {
    height: 100%;
  }
}

/*
========================================================================================
CSS Name: Quotation Block
========================================================================================
*/
.quotation-block .quote-container .quotes i {
  font-size: 4rem;
}
.quotation-block .quote-container .content-container {
  font-size: 28px;
  font-family: "Azeret Mono", monospace;
}
@media (max-width: 1023.98px) {
  .quotation-block .quote-container .content-container {
    font-size: 18px;
  }
}
.quotation-block .quote-container .title-container h1, .quotation-block .quote-container .title-container h2, .quotation-block .quote-container .title-container h3, .quotation-block .quote-container .title-container h4, .quotation-block .quote-container .title-container h5, .quotation-block .quote-container .title-container h6 {
  font-family: "Poppins", sans-serif;
}
@media (max-width: 1023.98px) {
  .quotation-block .quote-container .title-container h1, .quotation-block .quote-container .title-container h2, .quotation-block .quote-container .title-container h3, .quotation-block .quote-container .title-container h4, .quotation-block .quote-container .title-container h5, .quotation-block .quote-container .title-container h6 {
    font-size: 18px;
  }
}

/*
========================================================================================
CSS Name: Rating Block
========================================================================================
*/
.rating-block .rating-container {
  border-top: 8px solid #000000;
}
.rating-block .rating-container .title-container .stars-container i {
  font-size: 24px;
}
.rating-block .rating-container .content-container {
  font-size: 18px;
}

/* =Breadcrumbs
========================================================================================*/
.breadcrumbs, #breadcrumbs {
  color: inherit;
  margin-top: 0.625rem;
}
.breadcrumbs i, #breadcrumbs i {
  margin: 0 6px;
}
.breadcrumbs a, #breadcrumbs a {
  color: inherit;
}
.breadcrumbs a:hover, #breadcrumbs a:hover {
  color: inherit;
  text-decoration: underline !important;
}

/* =Side Menu - Menu Widget
========================================================================================*/
.widget.widget_jdw_menu {
  background: #000000;
  border-radius: 0.625rem;
  overflow: hidden;
}
.widget.widget_jdw_menu .widget_jdw_nav li {
  padding: 1.25rem 0 !important;
  display: block;
  border-bottom: 0.125rem solid #ffffff;
}
.widget.widget_jdw_menu .widget_jdw_nav li:last-child {
  border-bottom: none;
}
.widget.widget_jdw_menu .widget_jdw_nav li a {
  text-decoration: none;
  font-size: 1.25rem;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-left: 1.25rem;
}
.widget.widget_jdw_menu .widget_jdw_nav li a:hover {
  color: #ffffff;
}
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-item > a,
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-parent > a,
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-ancestor > a {
  font-weight: 700;
}
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-item > .sub-menu,
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-parent > .sub-menu,
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-ancestor > .sub-menu {
  display: block;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu {
  padding: 0;
  margin-bottom: 0;
  display: none;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu li {
  padding: 1.25rem 0 !important;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu li a {
  padding-left: 1.25rem;
  font-size: 1.25rem;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu > li:first-child {
  margin-top: 1.25rem;
  border-top: 0.125rem solid #ffffff;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu .sub-menu li a {
  padding-left: 1.875rem;
  font-size: 1.125rem;
  font-style: italic;
}
.widget.widget_jdw_menu .widget_jdw_nav li.current-menu-item.menu-item-has-children, .widget.widget_jdw_menu .widget_jdw_nav li.current-menu-parent.menu-item-has-children, .widget.widget_jdw_menu .widget_jdw_nav li.current-menu-ancestor.menu-item-has-children {
  padding-bottom: 0 !important;
}

/* =Page Banner
========================================================================================*/
.page-banner .homepage-banner {
  position: relative;
}
.page-banner .banner-content {
  position: relative;
  min-height: 15.625rem;
}
.page-banner .banner-container {
  position: relative;
  height: 100%;
}
.page-banner .banner-container.single .content-container .title {
  text-wrap: pretty;
}
@media (min-width: 1280px) {
  .page-banner .banner-container.single .content-container {
    width: 50%;
  }
}
.page-banner .banner-container.single .content-container .by-line {
  font-size: 20px;
  text-wrap: pretty;
}
.page-banner .banner-container.single .content-container .location-details a {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  text-decoration: underline;
  width: max-content;
}
.page-banner .banner-container.single .content-container .location-details .tribe-address {
  text-wrap: pretty;
  line-height: 1.6;
}
.page-banner .banner-container.single .content-container .location-details .tribe-events-abbr {
  text-decoration: none;
}
.page-banner .banner-container .image-container {
  width: 100%;
}
.page-banner .banner-container.bg-color1 .breadcrumbs a, .page-banner .banner-container.bg-color1 #breadcrumbs a {
  color: #000000;
}
.page-banner .inner-block-container .banner-slider .slick-track {
  display: flex;
  flex-wrap: wrap;
  min-height: 43.75rem;
}
.page-banner .inner-block-container .banner-slider .slick-dots {
  position: relative;
}
.page-banner .inner-block-container .banner-slider .swiper-autoplay-progress {
  background: #000000;
  width: calc(var(--progress) * 100%);
  height: 2px;
  position: relative;
  z-index: 1;
  transition: width cubic-bezier(0.23, 1, 0.32, 1);
}
.page-banner .inner-block-container .banner-slider .banner-slider-item {
  position: relative;
  max-height: 100vh;
  width: 100%;
}
@media (min-width: 1600px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item {
    min-height: 800px;
  }
}
@media (max-width: 459.98px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item {
    max-height: initial;
    overflow: hidden;
  }
}
@media (max-width: 767.98px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item .swiper-slide-item-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.page-banner .inner-block-container .banner-slider .banner-slider-item .image-container {
  position: relative;
  width: 100%;
}
.page-banner .inner-block-container .banner-slider .banner-slider-item img {
  width: 100%;
  min-height: 100vh;
  aspect-ratio: 16/10;
  object-fit: cover;
}
@media (min-width: 1600px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item img {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767.98px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item img {
    aspect-ratio: 16/9;
    min-height: 80vh;
    max-height: 80vh;
  }
}
@media (max-width: 459.98px) {
  .page-banner .inner-block-container .banner-slider .banner-slider-item img {
    max-width: 460px;
    width: auto;
    aspect-ratio: auto;
    min-height: 600px;
  }
}

@media (max-width: 767.98px) {
  .image .banner-content {
    display: flex;
    flex-wrap: wrap;
  }
}

.banner-slider .content-container, .image .content-container {
  max-width: 50rem;
  position: absolute;
  z-index: 1;
}
.banner-slider .content-container {
  bottom: 2.5rem;
  left: 5rem;
  max-width: 34.375rem;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(4px);
}
@media (max-width: 1279.98px) {
  .banner-slider .content-container {
    left: 0;
    bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .banner-slider .content-container {
    max-width: 100%;
    background: rgba(255, 255, 255, 0.7) !important;
  }
}
.image .content-container {
  bottom: 2.5rem;
  left: 5rem;
  max-width: 34.375rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 1023.98px) {
  .image .content-container {
    left: auto;
    bottom: 0;
    max-width: 100%;
  }
}
.image .content-container #breadcrumbs {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 1.25rem;
}
@media (max-width: 767.98px) {
  .image .content-container {
    position: relative;
    width: 100%;
    order: 1;
  }
}
@media (max-width: 767.98px) {
  .banner-slider .content-container {
    width: auto;
    order: 1;
  }
}

.image .image-container img {
  width: 100%;
  min-height: 50vh;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  min-width: 76.875rem;
  max-width: 100vw;
  width: fit-content;
}
@media (max-width: 1023.98px) {
  .swiper-slide {
    min-width: 100%;
  }
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

/* =Pagination
========================================================================================*/
.navigation {
  text-align: center;
}
.navigation a {
  text-decoration: none !important;
}
.navigation .page-numbers {
  display: inline-block;
  color: #000000;
  background: #ffffff;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: 3.125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  margin-right: 6px;
  border-bottom: 2px solid #000000;
}
.navigation .page-numbers:hover, .navigation .page-numbers.current {
  background-color: #000000;
  color: #ffffff !important;
}

/* =Sidebar
========================================================================================*/
.widget {
  background: #ffffff;
  margin-bottom: 3.125rem;
  border-radius: 0.625rem;
  overflow: hidden;
}
.widget :last-child {
  margin-bottom: 0;
}
.widget .widgettitle {
  display: block;
  margin-bottom: 0;
  background: #000000;
  color: #ffffff;
  font-size: 1.4375rem;
  padding: 1.25rem;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget > div {
  padding: 1.25rem;
}

/* =Social Share
========================================================================================*/
.social-share-buttons a {
  position: relative;
  display: inline-block;
  margin-right: 0.625rem;
  color: #ffffff;
  padding-left: 4.75rem;
}
.social-share-buttons a span {
  position: absolute;
  top: 0;
  left: -0.0625rem;
  width: 3.75rem;
  height: 100%;
  border-right: solid 0.125rem #ffffff;
}
.social-share-buttons a span svg {
  width: 1.875rem;
  height: 1.875rem;
}
@media (max-width: 1023.98px) {
  .social-share-buttons a {
    font-size: 0;
    text-indent: -999em;
    overflow: hidden;
    padding-right: 0;
    padding-left: 3.5rem;
  }
  .social-share-buttons a span {
    border: none;
    position: initial;
    top: 0;
    left: 0;
  }
}
.social-share-buttons a:hover span {
  border-color: #000000;
}
.social-share-buttons a:hover span svg * {
  fill: #000000;
}
.social-share-buttons.btn-no-text a {
  font-size: 0;
  text-indent: -999em;
  overflow: hidden;
  padding-right: 0;
  padding-left: 3.5rem;
}
.social-share-buttons.btn-no-text a span {
  border: none;
  position: initial;
  top: 0;
  left: 0;
}

/* =Social Network
========================================================================================*/
.social-network {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .social-network {
    justify-content: center;
  }
}
.social-network a {
  position: relative;
  color: #ffffff;
  font-size: 0;
  text-indent: -999em;
  overflow: hidden;
  width: 3.75rem;
  height: 3.75rem;
  padding-right: 0;
  padding-left: 0;
}
.social-network a svg {
  width: 1.875rem;
  height: 1.875rem;
}
.social-network a:hover svg * {
  fill: #000000;
}

/* = Tags
========================================================================================*/
.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags li {
  margin-right: 0.625rem;
}
.tags li a,
.tags li span {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  font-size: 0.9583333333rem;
  line-height: 1.6;
  text-decoration: none;
  min-height: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 0.8333333333rem;
}
.tags li a:hover:not(span),
.tags li span:hover:not(span) {
  background: #000000;
  color: #ffffff;
}
.tags li:last-child {
  margin-right: 0;
}
.tags li:last-child a,
.tags li:last-child span {
  margin-right: 0;
}

.tags-wrapper.multi-line {
  overflow: hidden;
}
.tags-wrapper.multi-line ul {
  margin-bottom: -0.625rem;
}
.tags-wrapper.multi-line ul li .tag-item {
  margin-bottom: 0.625rem;
}

/*
========================================================================================
CSS Name: Alert Bar
========================================================================================
*/
.alert-bar-partial {
  position: relative;
}
.alert-bar-partial .alert-bar-container {
  display: inline-flex;
  align-items: start;
  flex-wrap: initial;
}
.alert-bar-partial .alert-bar-container [class^=fa-] {
  font-size: 18px;
}
.alert-bar-partial .alert-bar-container span {
  line-height: 1;
}
@media (max-width: 1023.98px) {
  .alert-bar-partial .alert-bar-container span {
    line-height: 1.4;
  }
}

/*
========================================================================================
CSS Name: Acknowledgement Partial
========================================================================================
*/
.acknowledgement-partial {
  position: fixed;
  overflow-y: scroll;
  overscroll-behavior: contain;
  inset: 0;
  z-index: 10000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  color: #ffffff;
  display: none;
  flex-wrap: wrap;
  flex-flow: column;
}
.acknowledgement-partial .inner-partial-container {
  min-height: 102vh;
}
.acknowledgement-partial .content-container {
  margin-top: calc(5rem + 5rem);
  margin-bottom: calc(5rem + 5rem);
}
@media (max-width: 1599.98px) {
  .acknowledgement-partial .content-container {
    margin-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
}
.acknowledgement-partial .button-container button.btn3 span {
  font-size: 16px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 400 !important;
}

.inner-partial-container .logo {
  margin: 0;
  line-height: 1;
  display: inline-block;
  max-width: 40%;
}
.inner-partial-container .logo img {
  max-width: 80%;
  height: auto;
}

body.acknowledgement-active, body.overlay-active {
  overflow: hidden;
}
body.acknowledgement-active::-webkit-scrollbar, body.overlay-active::-webkit-scrollbar {
  display: none;
}

/* =Footer
========================================================================================*/
#footer {
  line-height: 1.6;
}
#footer i {
  line-height: 1.6;
}
@media (max-width: 767.98px) {
  #footer .footer-links a {
    display: inline-block;
    margin-bottom: 1.25rem;
  }
  #footer .footer-links a:last-child {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767.98px) {
  #footer .col {
    margin-bottom: 1.25rem;
    text-align: center;
  }
  #footer .col:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 1279.98px) {
  .footer-top-container {
    gap: 3.125rem;
  }
}
.footer-top-container .footer-logo-container {
  display: flex;
}
.footer-top-container .footer-logo-container img {
  max-width: 80%;
}
.footer-top-container .footer-logo-container a {
  padding-left: 1.875rem;
}
.footer-top-container .footer-logo-container a:first-child {
  border-right: 1px solid #000000;
}
.dark .footer-top-container .footer-logo-container a:first-child {
  border-right: 1px solid #ffffff;
}
@media (max-width: 767.98px) {
  .footer-top-container .footer-logo-container a:first-child {
    border-right: 0;
  }
}
.footer-top-container .footer-logo-container a:first-child {
  padding-left: 0;
}
.footer-top-container .footer-logo-container a:not(:last-child) {
  padding-right: 0;
}
.footer-top-container .footer-logo-container a:last-child {
  padding-left: 0;
}
.footer-top-container .footer-socials {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: start;
  gap: 1.875rem;
}
.footer-top-container .footer-socials a {
  display: flex;
  flex-wrap: wrap;
  height: auto;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: #000000;
}
.dark .footer-top-container .footer-socials a {
  background: #ffffff;
}
.footer-top-container .footer-socials i {
  font-size: 1.875rem;
  margin-right: 0 !important;
  line-height: 1 !important;
  color: var(--bg-colour) !important;
}
.dark .footer-top-container .footer-socials i {
  color: var(--bg-colour) !important;
}
@media (max-width: 1023.98px) {
  .footer-top-container .footer-socials i {
    font-size: 30px !important;
  }
}
@media (max-width: 1279.98px) {
  .footer-top-container .footer-socials {
    justify-content: start;
  }
}
@media (max-width: 340px) {
  .footer-top-container .footer-socials {
    gap: 2.5rem;
  }
}

.footer-bottom-container {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
.footer-bottom-container .footer-acknowledgement {
  font-size: 20px;
}

.footer-middle-container i {
  font-size: 18px;
}
.visit-block .footer-middle-container .footer-middle-item {
  border-top: none;
  padding-top: 0;
}
.footer-middle-container .footer-middle-item .opening-hours {
  max-width: 18.75rem;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1023.98px) {
  .footer-middle-container .footer-middle-item .opening-hours {
    max-width: 100%;
  }
}
.footer-middle-container .footer-middle-item .contact-details .contact-detail-item a + a {
  margin-left: 1.25rem;
}
@media (max-width: 480px) {
  .footer-middle-container .footer-middle-item .contact-details .contact-detail-item .icon {
    display: none;
  }
  .footer-middle-container .footer-middle-item .contact-details .contact-detail-item .entry {
    margin-left: 0;
  }
}
.footer-middle-container .footer-middle-item .contact-details .contact-detail-item:is(:last-child) a {
  color: inherit;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  display: inline-block;
  font-family: "Azeret Mono", monospace;
}
.footer-middle-container .footer-middle-item .contact-details .icon {
  width: 18px;
  height: 18px;
  text-align: center;
}
.footer-middle-container .footer-middle-item .newsletter-form .forminator-ui {
  display: flex;
  flex-wrap: wrap;
}
.footer-middle-container .footer-middle-item .newsletter-form .forminator-ui input[type=email] {
  border-top: 2px solid transparent;
}
@media (max-width: 1279.98px) {
  .footer-middle-container .footer-middle-item .newsletter-form .forminator-ui {
    flex-wrap: wrap;
  }
}
.footer-middle-container .footer-middle-item .newsletter-form .forminator-ui .forminator-row:not(.forminator-row-last) {
  width: 100%;
}
@media (min-width: 1600px) {
  .footer-middle-container .footer-middle-item .newsletter-form .forminator-ui .forminator-row-last {
    margin-left: 15px;
  }
}
@media (max-width: 1279.98px) {
  .footer-middle-container .footer-middle-item .newsletter-form .forminator-ui .forminator-row-last {
    width: 100%;
  }
  .footer-middle-container .footer-middle-item .newsletter-form .forminator-ui .forminator-row-last .forminator-button {
    width: 100%;
    justify-content: center;
  }
}

.footer-copyright {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-copyright.copyright {
  justify-content: start;
  gap: 0.625rem;
}
@media (max-width: 767.98px) {
  .footer-copyright .footer-copyright-menu {
    width: 100%;
  }
}
.footer-copyright .footer-copyright-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.footer-copyright .footer-copyright-menu ul li:not(:first-child) {
  padding-left: 0.625rem;
  border-left: 1px solid #000000;
}
.dark .footer-copyright .footer-copyright-menu ul li:not(:first-child) {
  border-left: 1px solid #ffffff;
}
@media (max-width: 1023.98px) {
  .footer-copyright .footer-copyright-menu ul {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  .footer-copyright .footer-copyright-menu ul {
    display: block;
    columns: 2;
    gap: 1.875rem;
    width: 100%;
  }
  .footer-copyright .footer-copyright-menu ul li:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}

.footer-marquee {
  --gap: 5rem;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  gap: var(--gap);
  animation: scroll 60s linear infinite;
  overflow: visible;
}
@media (max-width: 1023.98px) {
  .footer-marquee {
    animation-duration: 10s;
  }
}
.footer-marquee .marquee-content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
/* =Header
========================================================================================*/
.inner-header {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  transition: padding cubic-bezier(0.23, 1, 0.32, 1) 500ms;
  transition-delay: 100ms;
}
.is-sticky .inner-header {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.is-sticky .inner-header .logo {
  width: 150px;
}

.header {
  position: relative;
  z-index: 10;
  width: 100%;
  top: 0;
  background: #ffffff;
  /* For Sticky Header*/
  /* Custom styles for Sticky Header */
}
.home .header, .header.has-banner {
  position: absolute;
  background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9276085434) 100%);
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9276085434) 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9276085434) 100%);
}
.home .header h1, .home .header h2, .home .header h3, .home .header h4, .home .header h5, .home .header h6, .home .header a, .home .header p, .home .header ul, .home .header ol, .home .header blockquote:before, .home .header small, .home .header strong, .home .header span, .header.has-banner h1, .header.has-banner h2, .header.has-banner h3, .header.has-banner h4, .header.has-banner h5, .header.has-banner h6, .header.has-banner a, .header.has-banner p, .header.has-banner ul, .header.has-banner ol, .header.has-banner blockquote:before, .header.has-banner small, .header.has-banner strong, .header.has-banner span {
  color: #ffffff;
}
.home .header i, .header.has-banner i {
  color: #ffffff;
}
.header.has-alert-bar .alert-bar-partial.font-color-black-strict * {
  color: #000000;
}
.header .logo {
  margin: 0;
  line-height: 1;
  display: inline-block;
  max-width: 35%;
  width: 17.5rem;
  transition: width cubic-bezier(0.23, 1, 0.32, 1) 700ms;
}
@media (min-width: 1024px) {
  .header .logo {
    max-width: 40%;
  }
}
.header .logo strong {
  font-size: 0;
  height: 0;
  left: -999em;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  text-indent: -999em;
  top: -999em;
  width: 0;
}
.header .logo a {
  display: inline-block;
  position: relative;
}
.header .logo a img {
  max-width: 100%;
  height: auto;
}
.header.clone-full, .header.clone-wrap {
  /* Required styles */
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  /* Custom styles */
  transform: translateY(-100%);
}
@media (max-width: 1023.98px) {
  .header.clone-full.has-alert-bar .alert-bar-partial, .header.clone-wrap.has-alert-bar .alert-bar-partial {
    display: none;
  }
}
.header.clone-full .logo, .header.clone-wrap .logo {
  max-width: 9.375rem;
}
.header.clone-full .logo img, .header.clone-wrap .logo img {
  vertical-align: middle;
}
.header.clone-wrap {
  background: none !important;
}
.header.clone-wrap .wrap {
  background: #000000;
}
.header.sticky {
  transform: translateY(0);
}
.featured .list-item {
  position: sticky;
  top: 2.5rem;
}
.list-item:hover .list-item-body .list-item-img .list-item-img-overlay-lb:before {
  transform: scaleX(1);
}
.list-item:hover .list-item-body .list-item-img .list-item-img-overlay-lb:after {
  transform: scaleY(1);
}
.list-item:hover .list-item-body .list-item-img .list-item-img-overlay-tr:before {
  transform: scaleY(1);
}
.list-item:hover .list-item-body .list-item-img .list-item-img-overlay-tr:after {
  transform: scaleX(1);
}
.list-item .list-item-body {
  position: relative;
}
.list-item .list-item-body .list-item-img {
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}
.list-item .list-item-body .list-item-img img {
  width: 100%;
  backface-visibility: initial;
}
.list-item .list-item-body .list-item-img.placeholder-img {
  background: #ffffff;
}
.list-item > a, .list-item figure a {
  display: block;
}
.list-item-img-overlay-lb, .list-item-img-overlay-tr {
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  left: 0px;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.list-item-img-overlay-lb:before, .list-item-img-overlay-lb:after, .list-item-img-overlay-tr:before, .list-item-img-overlay-tr:after {
  content: none;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--border-colour);
  width: 0.625rem;
  height: 0.625rem;
  transition: transform cubic-bezier(0.23, 1, 0.32, 1) 700ms;
}
@media (min-width: 768px) {
  .list-item-img-overlay-lb:before, .list-item-img-overlay-lb:after, .list-item-img-overlay-tr:before, .list-item-img-overlay-tr:after {
    content: "";
  }
}

.list-item-img-overlay-lb:before {
  height: auto;
  right: auto;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transform: scaleX(0);
}
.list-item-img-overlay-lb:after {
  width: auto;
  top: auto;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
  transform: scaleY(0);
}

.list-item-img-overlay-tr:before {
  width: auto;
  bottom: auto;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transform: scaleY(0);
}
.list-item-img-overlay-tr:after {
  height: auto;
  left: auto;
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  transform: scaleX(0);
}

.listing.same-height .list-item .list-item-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.listing.same-height .list-item .list-item-body .list-item-img {
  /* To avoid overflow:hidden */
}
.listing.same-height .list-item .list-item-body .list-item-content {
  /* For the Match height with Flex*/
}

/*
========================================================================================
CSS Name: Comments
========================================================================================
*/
#commentform {
  background-color: #ffffff;
  padding: 1.875rem;
  margin-bottom: 2.5rem;
}
#commentform .form-submit {
  margin-bottom: 0;
}

.comment-list .comment {
  margin-bottom: 1.875rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #000000;
}
.comment-list .comment .comment-author .avatar {
  border-radius: 9999px;
  display: block;
  margin-bottom: 1.25rem;
}
.comment-list .comment .comment-author, .comment-list .comment .comment-meta {
  margin-bottom: 1.25rem;
}
.comment-list .comment [class*=depth-] {
  margin-top: 1.25rem;
  margin-left: 2.5rem;
}
.comment-list .comment .fn, .comment-list .comment .reply {
  font-weight: 600;
}

/* =Navigation
========================================================================================*/
#nav {
  gap: 2.5rem;
}
@media (max-width: 340px) {
  #nav {
    gap: 1.25rem;
  }
}
@media (min-width: 1024px) {
  #nav {
    gap: 3.75rem;
  }
}

#mainmenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mainmenu ul ul {
  background-color: #000000;
  min-width: 15.625rem;
  min-width: max-content;
}
#mainmenu ul ul ul {
  top: 0;
  left: 100%;
}
#mainmenu ul li {
  display: block;
  position: relative;
  float: left;
}
#mainmenu ul li a {
  display: block;
  padding: 1.3125rem 0.9375rem;
  font-size: 1.125rem;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  max-width: 15.625rem;
  color: #000000;
}
#mainmenu ul li a:hover {
  color: #ffffff;
}
#mainmenu ul li.current-menu-item > a {
  color: #ffffff;
}
#mainmenu li ul {
  display: none;
}
#mainmenu li ul li {
  /*Rest Level*/
}
#mainmenu li ul li a {
  color: #ffffff;
  font-size: 1rem;
  padding: 1.25rem;
  text-transform: none;
}
#mainmenu li ul li:hover {
  background: #ffffff;
}
#mainmenu li ul li:hover > a {
  color: #000000;
}
#mainmenu li:hover > ul {
  display: block;
  position: absolute;
}
#mainmenu li:hover li {
  float: none;
}

/**Responsive Menu List **/
.responsive-menu {
  margin: 0 auto;
  /*When Sub Menu Dropdown*/
}
body.page-overlay-content .responsive-menu {
  margin-top: 12.5rem;
}
.responsive-menu li {
  position: relative;
  /*When Sub Menu Dropdown*/
}
.responsive-menu li:first-child {
  border-top: 0;
}
.responsive-menu li a {
  position: relative;
  display: inline-block;
  font-size: 2.5rem;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  color: #ffffff;
  line-height: 2.5rem;
  margin-right: 1.625rem;
}
.responsive-menu li a:hover {
  color: #ffffff;
  opacity: 0.8;
}
.responsive-menu li a.open {
  /* background: $color1 !important;
  color: $color-white; */
}
.responsive-menu li .sub-menu {
  display: none;
  margin-top: 0.625rem;
}
.responsive-menu li .sub-menu li a {
  padding-left: 1.875rem;
  font-size: 2rem;
  /* background: rgba(0, 0, 0,.05); */
}
.responsive-menu li .sub-menu li li a {
  /* background: rgba(0, 0, 0,.1); */
  padding-left: 3.75rem;
}
.responsive-menu li.menu-item-has-children > span {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
.responsive-menu li.menu-item-has-children > span:after {
  font: var(--fa-font-solid);
  content: "";
  color: #ffffff;
  text-align: center;
  line-height: 2.5rem;
  font-size: 2.5rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.responsive-menu li.menu-item-has-children > span.active:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.responsive-menu li.menu-item-has-children .sub-menu li.menu-item-has-children > span:after {
  font: var(--fa-font-regular);
  list-height: 2.5rem;
  font-size: 2.5rem;
}

@media (max-width: 1023.98px) {
  .responsive-menu li a {
    font-size: 2.5rem;
  }
}
/*
========================================================================================
CSS Name: Style Guide 
========================================================================================
*/
:root {
  --color1: #000000;
  --color2: #000000;
  --color3: #000000;
  --color4: #ffffff;
  --spacing1: 0.625rem;
  --spacing2: 1.25rem;
  --spacing3: 1.875rem;
  --spacing4: 2.5rem;
  --spacing5: 3.125rem;
  --spacing6: 3.75rem;
  --spacing8: 5rem;
  --spacing12: 7.5rem;
  --wrap-sm: 768px;
  --wrap-md: 1280px;
  --wrap-lg: 1536px;
}

.style-guide-container {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}
@media (max-width: 1279.98px) {
  .style-guide-container {
    grid-template-columns: 1fr;
  }
}
.style-guide-container .style-guide-menu {
  grid-row-start: span 1;
  grid-row-end: span 1;
  grid-column-start: span 1;
  align-self: start;
  position: sticky;
  top: 2.5rem;
}
@media (max-width: 1279.98px) {
  .style-guide-container .style-guide-menu {
    display: none;
  }
}
.style-guide-container .style-guide-menu-link-item {
  display: flex;
  padding: 0.625rem 1.875rem 0.625rem 0;
  align-self: flex-start;
  max-width: 100%;
}
.style-guide-container .style-guide-content-wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 2.5rem;
}
.style-guide-container .style-guide-content-item .title {
  font-size: 1.875rem;
}
.style-guide-container .style-guide-content-item .divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.875rem;
  background-color: #e7e8e3;
}
.style-guide-container .style-guide-content-list .style-guide-colors, .style-guide-container .style-guide-content-list .style-guide-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 1.25rem;
  grid-column-gap: 1.25rem;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
}
@media (max-width: 1279.98px) {
  .style-guide-container .style-guide-content-list .style-guide-colors, .style-guide-container .style-guide-content-list .style-guide-buttons {
    grid-template-columns: 1fr 1fr;
  }
}
.style-guide-container .style-guide-content-list .style-guide-colors .style-guide-color, .style-guide-container .style-guide-content-list .style-guide-buttons .style-guide-color {
  display: flex;
  width: 100%;
  height: 150px;
}
.style-guide-container .style-guide-content-list .style-guide-colors .style-guide-color div, .style-guide-container .style-guide-content-list .style-guide-buttons .style-guide-color div {
  width: 100%;
}
.style-guide-container .style-guide-content-list .style-guide-colors .style-guide-color-label, .style-guide-container .style-guide-content-list .style-guide-buttons .style-guide-color-label {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  z-index: 1;
}
.style-guide-container .style-guide-content-typography-item {
  margin-bottom: 1.875rem;
}
.style-guide-container .style-guide-content-spacing {
  overflow: hidden;
}
.style-guide-container .style-guide-content-spacing-item {
  height: 1.875rem;
  background: #e9e9e9;
}
.style-guide-container .tags > * span {
  font-size: 80%;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background-color: #e9e9e9;
}
.style-guide-container .border {
  border-width: 0.125rem;
  border-color: #000000;
  border-style: solid;
}

/*
========================================================================================
CSS Name: Tribe Events Styling
========================================================================================
*/
.tribe-common button {
  font-weight: 500 !important;
}

.tribe-common button.tribe-events-c-top-bar__datepicker-button {
  font-size: var(--tec-font-size-2) !important;
}

.tribe-common .tribe-common-c-btn-border-small {
  border-color: #000000 !important;
  border-radius: unset !important;
  color: #000000 !important;
}
.tribe-common .tribe-common-c-btn-border-small:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.tribe-common .tribe-common-c-btn, .tribe-common .tribe-common-c-btn-border {
  border-radius: unset !important;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown__button,
.tribe-block__events-link .tribe-events-c-subscribe-dropdown__button {
  width: max-content;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button {
  background: #000000;
  color: #ffffff;
}
.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button:hover {
  background: rgba(0, 0, 0, 0.7);
}

.tribe-events .tribe-events-c-subscribe-dropdown__content .tribe-events-c-subscribe-dropdown__list {
  width: max-content;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.tribe-events .tribe-events-c-subscribe-dropdown__content .tribe-events-c-subscribe-dropdown__list .tribe-events-c-subscribe-dropdown__list-item {
  border-radius: 0 !important;
}
.tribe-events-meta-group {
  width: auto;
}

.tribe-events .tribe-events-calendar-month__multiday-event-wrapper {
  margin-bottom: var(--tec-spacer-2) !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-view-selector--tabs .tribe-events-c-view-selector__list-item--active .tribe-events-c-view-selector__list-item-link::after {
  background-color: var(--tec-color-accent-secondary);
  bottom: -1px;
  content: "";
  display: block;
  height: 7px;
  position: absolute;
  width: 100%;
}

.tribe-events .tribe-events-c-nav {
  border-color: #000000 !important;
}

.tribe-events-c-subscribe-dropdown__list {
  border-color: #000000 !important;
}

.single.single-tribe_events .tribe-events-c-subscribe-dropdown__content .tribe-events-c-subscribe-dropdown__list {
  padding: 0 !important;
  margin: 0 !important;
}
.single.single-tribe_events .tribe-events-c-subscribe-dropdown__content .tribe-events-c-subscribe-dropdown__list .tribe-events-c-subscribe-dropdown__list-item::marker {
  content: none;
}
.single.single-tribe_events .custom-related-events {
  padding: 0 !important;
  padding-top: 3.125rem !important;
}
.single.single-tribe_events .tribe-events-after-html {
  padding-top: 3.125rem !important;
}

.single-tribe_events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button-text:focus, .single-tribe_events .tribe-events-c-subscribe-dropdown button.tribe-events-c-subscribe-dropdown__button-text:focus, .tribe-events .tribe-events-c-subscribe-dropdown .tribe-events-c-subscribe-dropdown__button-text:focus, .tribe-events .tribe-events-c-subscribe-dropdown button.tribe-events-c-subscribe-dropdown__button-text:focus {
  outline: none !important;
}

.tribe-events-pro-photo__event-title-link {
  font-weight: 600 !important;
}

.tribe-events-pro .tribe-events-pro-photo__event-featured-image-wrapper {
  margin-bottom: 1.25rem !important;
}

.tribe-events-pro .tribe-events-pro-photo__event-details-wrapper {
  flex-wrap: wrap;
  gap: 1.25rem;
}
.tribe-events-pro .tribe-events-pro-photo__event-details-wrapper .tribe-events-pro-photo__event-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  gap: 1.25rem;
  margin-top: 0 !important;
}

.tribe-common-g-col.tribe-events-pro-photo__event:hover .tec-single-image-link .list-item-img-overlay-lb:before {
  transform: scaleX(1);
}
.tribe-common-g-col.tribe-events-pro-photo__event:hover .tec-single-image-link .list-item-img-overlay-lb:after {
  transform: scaleY(1);
}
.tribe-common-g-col.tribe-events-pro-photo__event:hover .tec-single-image-link .list-item-img-overlay-tr:before {
  transform: scaleY(1);
}
.tribe-common-g-col.tribe-events-pro-photo__event:hover .tec-single-image-link .list-item-img-overlay-tr:after {
  transform: scaleX(1);
}

.tribe-events-c-top-bar__datepicker-container .datepicker.datepicker-dropdown.dropdown-menu.datepicker-orient-left .day.current {
  color: #ffffff;
}

.tribe-events-pro-photo__event-featured-image-wrapper .tec-single-image-link {
  position: relative;
}

.tribe-common .tribe-events-pro-photo__event-featured-image {
  object-fit: cover !important;
  width: 100%;
}

.tribe-common a:not(.tribe-common-anchor--unstyle),
.tribe-common a:not(.tribe-common-anchor--unstyle):active,
.tribe-common a:not(.tribe-common-anchor--unstyle):focus,
.tribe-common a:not(.tribe-common-anchor--unstyle):hover,
.tribe-common a:not(.tribe-common-anchor--unstyle):visited {
  color: var(--tec-color-text-primary);
  outline: 0;
  text-decoration: none;
}

.tribe-common .category-overlay.font-color-white-strict a {
  color: #ffffff !important;
}

.tribe-common .btn-underline {
  text-decoration: underline !important;
  font-weight: 600 !important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-bottom: 3.125rem;
  padding-top: 3.125rem;
  min-height: auto;
}

.post-type-archive-tribe_events #wrapper .site-main:has(.blocks-container-wrapper) .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 0;
}
.post-type-archive-tribe_events #wrapper .site-main .page-banner:not(.image-enabled) ~ .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 0;
}

.tribe-events-calendar-month .tribe-events-calendar-month__day-date-daynum a {
  font-weight: 600 !important;
}

.tribe-events .tribe-events-calendar-month__day--past .tribe-events-calendar-month__day-date {
  opacity: 1 !important;
}

h3.tribe-events-calendar-month__multiday-event-hidden-title.tribe-common-h8 {
  font-weight: unset !important;
}

.tribe-events-calendar-month__header-column-title-desktop {
  font-weight: 600 !important;
}

h3.tribe-events-calendar-month__calendar-event-tooltip-title {
  font-weight: 600 !important;
}

.tooltipster-base.tooltipster-sidetip.tribe-events-tooltip-theme {
  border: 5px black solid;
  border-radius: unset;
}

.tribe-common-l-container.tribe-events-l-container {
  max-width: 2500px !important;
  margin: 0 auto;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}
@media (min-width: 1024px) {
  .tribe-common-l-container.tribe-events-l-container {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

.tribe-events-pro-photo__event-featured-image-wrapper {
  overflow: hidden;
}

.tribe-events-single-section.tribe-events-event-meta {
  width: 100% !important;
}
.tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group.tribe-events-meta-group-gmap {
  width: 100% !important;
}
.tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group.tribe-events-meta-group-gmap .tribe-events-venue-map {
  width: 100% !important;
}
.tribe-events-single-section.tribe-events-event-meta .tribe-events-meta-group.tribe-events-meta-group-gmap .tribe-events-venue-map .gmnoprint {
  display: none;
}
.tribe-events-single-section.tribe-events-event-meta::before {
  content: none;
}

.tribe-events-related-events-title {
  border: none !important;
}

.custom-related-events {
  display: flex !important;
  flex-direction: column !important;
  order: 2 !important;
  border: none !important;
  margin-bottom: 2.5rem !important;
  padding-top: var(--tec-spacer-7);
}

.tribe-events-pro .tribe-events-pro-venue__meta .tec-events-c-view-box-border {
  border: 2px solid #000000;
}

.tribe-events-calendar-list__month-separator::after {
  background-color: #000000 !important;
}

.tribe-events-calendar-list__event-featured-image {
  width: 100%;
}

.tribe-events-view--venue .tribe-common-l-container.tribe-events-l-container {
  padding-top: 0.625rem !important;
}

.tec-venue-img-link:hover .list-item-img-overlay-lb:before {
  transform: scaleX(1);
}
.tec-venue-img-link:hover .list-item-img-overlay-lb:after {
  transform: scaleY(1);
}
.tec-venue-img-link:hover .list-item-img-overlay-tr:before {
  transform: scaleY(1);
}
.tec-venue-img-link:hover .list-item-img-overlay-tr:after {
  transform: scaleX(1);
}

.site-main #tribe-events-pg-template {
  max-width: 100%;
  padding: 0 !important;
}

.tribe-events-single > .tribe_events {
  overflow: initial;
}

.post-type-archive-tribe_events .tribe-events-header__title,
.post-type-archive-tribe_events .tribe-events-header__breadcrumbs,
.tribe_venue-template-default .tribe-events-header__title,
.tribe_venue-template-default .tribe-events-header__breadcrumbs {
  display: none;
}

.ehive-tag-cloud {
  color: #ffffff;
}
.ehive-tag-cloud a {
  display: inline-block !important;
  font-family: "Azeret Mono", monospace !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: #ffffff !important;
  margin-bottom: 1.25rem !important;
  margin-right: 2.5rem !important;
}
.ehive-tag-cloud a:last-child {
  margin-bottom: 0 !important;
}
.ehive-tag-cloud .ehive-tag-1 {
  font-size: 16px !important;
}
.ehive-tag-cloud .ehive-tag-2 {
  font-size: 17.5555555556px !important;
}
.ehive-tag-cloud .ehive-tag-3 {
  font-size: 19.1111111111px !important;
}
.ehive-tag-cloud .ehive-tag-4 {
  font-size: 20.6666666667px !important;
}
.ehive-tag-cloud .ehive-tag-5 {
  font-size: 22.2222222222px !important;
}
.ehive-tag-cloud .ehive-tag-6 {
  font-size: 23.7777777778px !important;
}
.ehive-tag-cloud .ehive-tag-7 {
  font-size: 25.3333333333px !important;
}
.ehive-tag-cloud .ehive-tag-8 {
  font-size: 26.8888888889px !important;
}
.ehive-tag-cloud .ehive-tag-9 {
  font-size: 28.4444444444px !important;
}
.ehive-tag-cloud .ehive-tag-10 {
  font-size: 30px !important;
}

.bg-colour-white .ehive-tag-cloud a {
  color: #000000 !important;
}

form.ehive-search {
  padding: 0 !important;
}
form.ehive-search .ehive-query::placeholder {
  color: #000000 !important;
}

.bg-colour-black form.ehive-search {
  background: #000000 !important;
}
.bg-colour-black form.ehive-search .ehive-query {
  color: #ffffff !important;
  border-bottom: 2px solid #ffffff !important;
}
.bg-colour-black form.ehive-search .ehive-query::placeholder {
  color: #ffffff !important;
}
.bg-colour-black form.ehive-search .ehive-submit {
  color: #ffffff !important;
  background: #000000 !important;
  border-color: #ffffff !important;
}
.bg-colour-black form.ehive-search .ehive-submit:hover {
  color: #000000 !important;
  background: #ffffff !important;
}

.ehive-no-results {
  margin-top: 1.25rem;
}

.ehive-search-results {
  margin-top: 1.875rem;
}

.ehive-view.ehive-lightbox {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  height: auto !important;
}
@media (max-width: 1023.98px) {
  .ehive-view.ehive-lightbox {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .ehive-view.ehive-lightbox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.ehive-view.ehive-lightbox .ehive-item {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}
.ehive-view.ehive-lightbox .ehive-item .ehive-field.ehive-identifier-name {
  font-size: 1.875rem;
  font-family: "Azeret Mono", monospace !important;
  font-weight: 700;
  margin-bottom: 0.625rem !important;
}

.ehive-item .ehive-item-image-wrap {
  overflow: hidden;
}
.ehive-item .ehive-item-image-wrap .ehive-image-link {
  transform: scale(1);
  transition: transform cubic-bezier(0.23, 1, 0.32, 1) 1400ms;
}
.ehive-item .ehive-item-image-wrap .ehive-image-link:hover {
  transform: scale(1.075);
}

.ehive-view.ehive-lightbox .ehive-item .ehive-item-metadata-wrap {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}

.bg-colour-black .ehive-view.ehive-lightbox .ehive-item .ehive-item-metadata-wrap .ehive-more-link {
  color: #ffffff !important;
}

.ehive-pagination .page-numbers {
  display: inline-block !important;
  color: #000000 !important;
  background: #ffffff !important;
  cursor: pointer !important;
  text-decoration: none !important;
  text-align: center !important;
  min-width: 3.125rem !important;
  height: 3.125rem !important;
  line-height: 3.125rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.625rem !important;
  margin-right: 6px !important;
  border-bottom: 2px solid #000000;
}
.ehive-pagination .page-numbers:hover, .ehive-pagination .page-numbers.current {
  background-color: #000000 !important;
  color: #ffffff !important;
}
.ehive-pagination .page-numbers.current {
  margin-right: 10px;
}

.bg-colour-black .ehive-pagination .page-numbers {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.bg-colour-black .ehive-pagination .page-numbers:hover, .bg-colour-black .ehive-pagination .page-numbers.current {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.ehive-object-detail .ehive-item .ehive-item-metadata-wrap .ehive-field-label {
  font-weight: 700;
  padding-right: 0.625rem;
}
.ehive-object-detail .ehive-item .ehive-item-metadata-wrap .ehive-field-label::after {
  content: ":";
}

.ehive-objects-image-grid .ehive-view.ehive-image-grid .ehive-item {
  background-color: unset !important;
}
.ehive-objects-image-grid .ehive-view.ehive-image-grid .ehive-item .ehive-item-metadata-wrap .ehive-field.ehive-identifier-name .ehive-name-link {
  margin-top: 1.875rem !important;
  font-size: 1.875rem;
  font-family: "Azeret Mono", monospace !important;
  font-weight: 700;
  margin-bottom: 0.625rem !important;
  text-decoration: none !important;
}

.bg-colour-black .ehive-objects-image-grid .ehive-view.ehive-image-grid .ehive-item {
  background-color: unset !important;
}
.bg-colour-black .ehive-objects-image-grid .ehive-view.ehive-image-grid .ehive-item .ehive-item-metadata-wrap .ehive-field.ehive-identifier-name .ehive-name-link {
  color: #ffffff !important;
}

/* =General
========================================================================================*/
.alignnone, .alignleft {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.alignleft, .alignright {
  float: none;
}

.italic {
  font-style: italic;
}

.overflow-hidden {
  overflow: hidden !important;
}

.single .featured-image {
  max-width: 76.875rem;
  margin: 0 auto;
}
.single.single-tribe_events .featured-image {
  max-width: 100%;
}
.single.single-tribe_events .featured-image img {
  object-fit: cover;
  width: 100%;
  max-height: 75vh;
  aspect-ratio: 16/9;
}

a:not(.btn):not(.btn2):not(.btn3):not(.sbi_photo):not(.logo-link):not(.footer-logo-link):not(.instagram-photo-item):not(.jala-link):not(.single-location-link):not(.title-link):not(.btn-underline)[target=_blank]:after {
  color: inherit !important;
  content: "  ";
  font-family: "Font Awesome 6 Pro";
  text-decoration: none !important;
  font-size: 10px;
  vertical-align: middle;
}

#sb_instagram #sbi_images {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 768px) {
  #sb_instagram #sbi_images {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (min-width: 1024px) {
  #sb_instagram #sbi_images {
    grid-template-columns: repeat(6, 1fr) !important;
  }
}

.instagram-block .title-container h2 a {
  text-decoration: none !important;
}

.span-mobile span {
  display: none;
}
@media (min-width: 768px) {
  .span-mobile span {
    display: initial !important;
  }
}

.event-block .cols-grid.grid-flat-n.cols-spacing [class^=col-] {
  margin-bottom: 5rem;
}

.ie-message-overlay.display {
  text-overflow: none;
  opacity: 1;
  display: block;
  visibility: visible;
}
.ie-message-overlay.display .page-overlay-content {
  opacity: 1;
  margin-top: 0 !important;
}
.ie-message-overlay.display .page-overlay-content .page-overlay-content-main {
  max-width: 50rem;
}
.ie-message-overlay.display .page-overlay-content .page-overlay-content-main > div {
  text-align: center;
}

.grow-slow {
  transform: scale(1);
  transition: transform cubic-bezier(0.23, 1, 0.32, 1) 1400ms;
}
.grow-slow:hover {
  transform: scale(1.05);
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-10%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
.image-overlay {
  position: absolute;
  z-index: 1;
}
.image-overlay.category {
  right: 0.625rem;
  top: 0.625rem;
  font-size: 14px;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  background: #ffffff;
}

.category-overlay {
  font-size: 14px;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  background: #ffffff;
  display: inline-block;
  width: auto;
}
.category-overlay .single {
  position: relative;
  font-size: 14px;
  font-family: "Azeret Mono", monospace;
  font-weight: 700;
  background: #000000;
  width: max-content;
}
.category-overlay .single:hover {
  color: #ffffff;
}

/*
Background colour custom styling.
*/
.bg-colour-custom + .bg-colour-custom:first-child, .bg-colour-custom + .bg-colour-white:first-child, .bg-colour-custom + .bg-colour-black:first-child, .bg-colour-white + .bg-colour-custom:first-child, .bg-colour-white + .bg-colour-white:first-child, .bg-colour-white + .bg-colour-black:first-child, .bg-colour-black + .bg-colour-custom:first-child, .bg-colour-black + .bg-colour-white:first-child, .bg-colour-black + .bg-colour-black:first-child {
  padding-bottom: 3.125rem;
}

.bg-colour-white + .bg-colour-white {
  padding-top: 0;
}

.bg-colour-black + .bg-colour-black {
  padding-top: 0;
}

.bg-colour-custom {
  background-color: var(--bg-colour) !important;
}
.banner-container.image .bg-colour-custom {
  background: color-mix(in srgb, var(--bg-colour) 85%, transparent) !important;
}
@media (max-width: 767.98px) {
  .banner-container.image .bg-colour-custom {
    background: color-mix(in srgb, var(--bg-colour) 100%, transparent) !important;
  }
}

/*
Custom angle styling.
*/
.angle-group {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  pointer-events: none;
}
.angle-group .angle {
  position: absolute;
  max-width: 4.375rem;
  width: 100%;
}
.angle-group .angle span {
  display: block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="79.999" height="79.999" fill="currentColor"><g data-name="Group 3"><path data-name="Union 2" d="M15-.001v65h65v15H0v-80z" /></g></svg>');
  background-size: 4.375rem;
  background-repeat: no-repeat;
  max-height: 4.375rem;
  height: 4.375rem;
}
.font-color-white-strict .angle-group .angle span {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="79.999" height="79.999" fill="white"><g data-name="Group 3"><path data-name="Union 2" d="M15-.001v65h65v15H0v-80z" /></g></svg>');
}
.angle-group .angle.top-left {
  transform: rotate(90deg);
}
.angle-group .angle.top-right {
  right: 0;
  transform: rotate(180deg);
}
.angle-group .angle.bottom-left {
  bottom: 0;
}
.angle-group .angle.bottom-right {
  bottom: 0;
  right: 0;
  transform: rotate(270deg);
}

img {
  max-width: 100%;
}

.lity {
  z-index: 99999;
}

.uw-sl button.uw-sl__item {
  left: 38px !important;
  top: -70px !important;
}

body .uwy.userway_p2 .userway_buttons_wrapper {
  left: calc(-3px + 100vw) !important;
}

/*
Swiper Custom styling
*/
.swiper-pagination {
  position: absolute;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-height: 24px;
  bottom: 2.5rem !important;
  right: 5rem;
  left: unset !important;
}
@media (max-width: 767.98px) {
  .homepage-banner-container .swiper-pagination {
    display: none;
    top: 45%;
    right: 2.5rem;
    bottom: 0 !important;
    transform: translate(0, 50%);
  }
}
.swiper-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 1px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff;
  transition: height cubic-bezier(0.23, 1, 0.32, 1) 1000ms;
  opacity: 1;
  position: relative;
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: -10px;
  left: 0;
  cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet-active {
  height: 24px;
}

.audio-player {
  display: none;
  cursor: pointer;
}

.acknowledgement-audio {
  cursor: pointer;
}

.grecaptcha-badge {
  display: none !important;
}

.forminator-row:has(.forminator-field-captcha) {
  display: none !important;
}

/*** Scrollbar styles ***/
/*** Layout - Space adjustments ***/
/* =Home
========================================================================================*/
/*# sourceMappingURL=style.css.map */
