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

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

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
/* =Fonts
========================================================================================*/
@font-face {
  font-family: "Nantes";
  src: url("../../fonts/Nantes-Regular.woff2") format("woff2"), url("../../fonts/Nantes-Regular.woff") format("woff"), url("../../fonts/Nantes-Regular.svg#Nantes-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato-Light.woff2") format("woff2"), url("../../fonts/Lato-Light.woff") format("woff"), url("../../fonts/Lato-Light.svg#Lato-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato-Regular.woff2") format("woff2"), url("../../fonts/Lato-Regular.woff") format("woff"), url("../../fonts/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("../../fonts/Lato-Bold.woff2") format("woff2"), url("../../fonts/Lato-Bold.woff") format("woff"), url("../../fonts/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/*
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...
* }
*
*/
/*
* @Colours
*
* Automatically creates classes based on the values inside the variable $colours;
* Extra colours follow the following format: color<[0-9]>: hex
*
* .font-color<colour-name>, .bg-color<colour-name>... etc..
*
* To use manually use - map-get($colours, 1);
*
* .my-custom-class {
*  color: map-get($colours, "-black");
*  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...
* }
*
**/
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}
/*
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
========================================================================================*/
/* Box sizing rules */
*,
::before,
::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default margin, padding and borders */
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;
}

/* Prevent font size inflation */
html,
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Fix for webkit rendering */
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove list styles on ul, ol elements with a list role */
ol, ul, ol[role=list], ul[role=list] {
  list-style: none;
}

/* Balance text wrapping on headings and avoiding text overflows */
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
  overflow-wrap: break-word;
}

/* Make images easier to work with */
img, picture, video, canvas, svg {
  vertical-align: top;
  border: 0;
  max-width: 100%;
  display: block;
  height: auto;
}

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

/* Blockquote */
blockquote, q {
  quotes: none;
}

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

/* Remove the high contrast feature styling for A */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  a:active {
    background-color: transparent;
  }
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* 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: clip;
  line-height: 1;
  appearance: none;
  text-decoration: none !important;
  border-radius: 0;
  background: transparent;
  font: inherit;
}

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

select {
  text-overflow: clip;
  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;
}

/* 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: 1rem;
  padding-left: 1rem;
  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: -1rem;
  margin-left: -1rem;
}

.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: 1rem;
  padding-left: 1rem;
}

.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.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-7 {
  margin: 4.5rem !important;
}

.mt-7,
.my-7 {
  margin-top: 4.5rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 4.5rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 4.5rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 4.5rem !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-9 {
  margin: 6rem !important;
}

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

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

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

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

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

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

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

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

.ml-10,
.mx-10 {
  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.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-7 {
  padding: 4.5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 4.5rem !important;
}

.pr-7,
.px-7 {
  padding-right: 4.5rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 4.5rem !important;
}

.pl-7,
.px-7 {
  padding-left: 4.5rem !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-9 {
  padding: 6rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n7 {
  margin: -4.5rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -4.5rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -4.5rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -4.5rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -4.5rem !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-n9 {
  margin: -6rem !important;
}

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

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

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

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

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

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

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

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

.ml-n10,
.mx-n10 {
  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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-7 {
    margin: 4.5rem !important;
  }

  .mt-sm-7,
.my-sm-7 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-7,
.mx-sm-7 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-7,
.my-sm-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-7,
.mx-sm-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-sm-10,
.mx-sm-10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-sm-7 {
    padding: 4.5rem !important;
  }

  .pt-sm-7,
.py-sm-7 {
    padding-top: 4.5rem !important;
  }

  .pr-sm-7,
.px-sm-7 {
    padding-right: 4.5rem !important;
  }

  .pb-sm-7,
.py-sm-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-sm-7,
.px-sm-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-sm-n7 {
    margin: -4.5rem !important;
  }

  .mt-sm-n7,
.my-sm-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-sm-n7,
.mx-sm-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-sm-n7,
.my-sm-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-sm-n7,
.mx-sm-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-sm-n10,
.mx-sm-n10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-7 {
    margin: 4.5rem !important;
  }

  .mt-md-7,
.my-md-7 {
    margin-top: 4.5rem !important;
  }

  .mr-md-7,
.mx-md-7 {
    margin-right: 4.5rem !important;
  }

  .mb-md-7,
.my-md-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-7,
.mx-md-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-md-10,
.mx-md-10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-md-7 {
    padding: 4.5rem !important;
  }

  .pt-md-7,
.py-md-7 {
    padding-top: 4.5rem !important;
  }

  .pr-md-7,
.px-md-7 {
    padding-right: 4.5rem !important;
  }

  .pb-md-7,
.py-md-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-7,
.px-md-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-md-n7 {
    margin: -4.5rem !important;
  }

  .mt-md-n7,
.my-md-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-md-n7,
.mx-md-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-md-n7,
.my-md-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-md-n7,
.mx-md-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-md-n10,
.mx-md-n10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-7 {
    margin: 4.5rem !important;
  }

  .mt-lg-7,
.my-lg-7 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-7,
.mx-lg-7 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-7,
.my-lg-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-7,
.mx-lg-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-lg-10,
.mx-lg-10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-lg-7 {
    padding: 4.5rem !important;
  }

  .pt-lg-7,
.py-lg-7 {
    padding-top: 4.5rem !important;
  }

  .pr-lg-7,
.px-lg-7 {
    padding-right: 4.5rem !important;
  }

  .pb-lg-7,
.py-lg-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-lg-7,
.px-lg-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-lg-n7 {
    margin: -4.5rem !important;
  }

  .mt-lg-n7,
.my-lg-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-lg-n7,
.mx-lg-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-lg-n7,
.my-lg-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-lg-n7,
.mx-lg-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-lg-n10,
.mx-lg-n10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-7 {
    margin: 4.5rem !important;
  }

  .mt-xl-7,
.my-xl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xl-7,
.mx-xl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xl-7,
.my-xl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xl-7,
.mx-xl-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-xl-10,
.mx-xl-10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-xl-7 {
    padding: 4.5rem !important;
  }

  .pt-xl-7,
.py-xl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xl-7,
.px-xl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xl-7,
.py-xl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xl-7,
.px-xl-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xl-n7,
.my-xl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xl-n7,
.mx-xl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xl-n7,
.my-xl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xl-n7,
.mx-xl-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-xl-n10,
.mx-xl-n10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xxl-7 {
    margin: 4.5rem !important;
  }

  .mt-xxl-7,
.my-xxl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xxl-7,
.mx-xxl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xxl-7,
.my-xxl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xxl-7,
.mx-xxl-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-xxl-10,
.mx-xxl-10 {
    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.5rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .p-xxl-7 {
    padding: 4.5rem !important;
  }

  .pt-xxl-7,
.py-xxl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xxl-7,
.px-xxl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xxl-7,
.py-xxl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xxl-7,
.px-xxl-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .m-xxl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xxl-n7,
.my-xxl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xxl-n7,
.mx-xxl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xxl-n7,
.my-xxl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xxl-n7,
.mx-xxl-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

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

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

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

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

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

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

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

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

  .ml-xxl-n10,
.mx-xxl-n10 {
    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.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-7 {
  margin: 4.5rem !important;
}

.mt-7,
.my-7 {
  margin-top: 4.5rem !important;
}

.mr-7,
.mx-7 {
  margin-right: 4.5rem !important;
}

.mb-7,
.my-7 {
  margin-bottom: 4.5rem !important;
}

.ml-7,
.mx-7 {
  margin-left: 4.5rem !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-9 {
  margin: 6rem !important;
}

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

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

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

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

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

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

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

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

.ml-10,
.mx-10 {
  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.5rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.p-7 {
  padding: 4.5rem !important;
}

.pt-7,
.py-7 {
  padding-top: 4.5rem !important;
}

.pr-7,
.px-7 {
  padding-right: 4.5rem !important;
}

.pb-7,
.py-7 {
  padding-bottom: 4.5rem !important;
}

.pl-7,
.px-7 {
  padding-left: 4.5rem !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-9 {
  padding: 6rem !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n7 {
  margin: -4.5rem !important;
}

.mt-n7,
.my-n7 {
  margin-top: -4.5rem !important;
}

.mr-n7,
.mx-n7 {
  margin-right: -4.5rem !important;
}

.mb-n7,
.my-n7 {
  margin-bottom: -4.5rem !important;
}

.ml-n7,
.mx-n7 {
  margin-left: -4.5rem !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-n9 {
  margin: -6rem !important;
}

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

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

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

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

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

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

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

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

.ml-n10,
.mx-n10 {
  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.5rem !important;
  }

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

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

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

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

  .m-sm-2 {
    margin: 1rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 1rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 1rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 1rem !important;
  }

  .m-sm-3 {
    margin: 1.5rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1.5rem !important;
  }

  .m-sm-4 {
    margin: 2rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 2rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 2rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 2rem !important;
  }

  .m-sm-5 {
    margin: 2.5rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 2.5rem !important;
  }

  .m-sm-6 {
    margin: 3.5rem !important;
  }

  .mt-sm-6,
.my-sm-6 {
    margin-top: 3.5rem !important;
  }

  .mr-sm-6,
.mx-sm-6 {
    margin-right: 3.5rem !important;
  }

  .mb-sm-6,
.my-sm-6 {
    margin-bottom: 3.5rem !important;
  }

  .ml-sm-6,
.mx-sm-6 {
    margin-left: 3.5rem !important;
  }

  .m-sm-7 {
    margin: 4.5rem !important;
  }

  .mt-sm-7,
.my-sm-7 {
    margin-top: 4.5rem !important;
  }

  .mr-sm-7,
.mx-sm-7 {
    margin-right: 4.5rem !important;
  }

  .mb-sm-7,
.my-sm-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-sm-7,
.mx-sm-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

  .mt-sm-9,
.my-sm-9 {
    margin-top: 6rem !important;
  }

  .mr-sm-9,
.mx-sm-9 {
    margin-right: 6rem !important;
  }

  .mb-sm-9,
.my-sm-9 {
    margin-bottom: 6rem !important;
  }

  .ml-sm-9,
.mx-sm-9 {
    margin-left: 6rem !important;
  }

  .m-sm-10 {
    margin: 7.5rem !important;
  }

  .mt-sm-10,
.my-sm-10 {
    margin-top: 7.5rem !important;
  }

  .mr-sm-10,
.mx-sm-10 {
    margin-right: 7.5rem !important;
  }

  .mb-sm-10,
.my-sm-10 {
    margin-bottom: 7.5rem !important;
  }

  .ml-sm-10,
.mx-sm-10 {
    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.5rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.5rem !important;
  }

  .p-sm-2 {
    padding: 1rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 1rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 1rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 1rem !important;
  }

  .p-sm-3 {
    padding: 1.5rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1.5rem !important;
  }

  .p-sm-4 {
    padding: 2rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 2rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 2rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 2rem !important;
  }

  .p-sm-5 {
    padding: 2.5rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 2.5rem !important;
  }

  .p-sm-6 {
    padding: 3.5rem !important;
  }

  .pt-sm-6,
.py-sm-6 {
    padding-top: 3.5rem !important;
  }

  .pr-sm-6,
.px-sm-6 {
    padding-right: 3.5rem !important;
  }

  .pb-sm-6,
.py-sm-6 {
    padding-bottom: 3.5rem !important;
  }

  .pl-sm-6,
.px-sm-6 {
    padding-left: 3.5rem !important;
  }

  .p-sm-7 {
    padding: 4.5rem !important;
  }

  .pt-sm-7,
.py-sm-7 {
    padding-top: 4.5rem !important;
  }

  .pr-sm-7,
.px-sm-7 {
    padding-right: 4.5rem !important;
  }

  .pb-sm-7,
.py-sm-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-sm-7,
.px-sm-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

  .pt-sm-9,
.py-sm-9 {
    padding-top: 6rem !important;
  }

  .pr-sm-9,
.px-sm-9 {
    padding-right: 6rem !important;
  }

  .pb-sm-9,
.py-sm-9 {
    padding-bottom: 6rem !important;
  }

  .pl-sm-9,
.px-sm-9 {
    padding-left: 6rem !important;
  }

  .p-sm-10 {
    padding: 7.5rem !important;
  }

  .pt-sm-10,
.py-sm-10 {
    padding-top: 7.5rem !important;
  }

  .pr-sm-10,
.px-sm-10 {
    padding-right: 7.5rem !important;
  }

  .pb-sm-10,
.py-sm-10 {
    padding-bottom: 7.5rem !important;
  }

  .pl-sm-10,
.px-sm-10 {
    padding-left: 7.5rem !important;
  }

  .m-sm-n1 {
    margin: -0.5rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n2 {
    margin: -1rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -1rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -1rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -1rem !important;
  }

  .m-sm-n3 {
    margin: -1.5rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n4 {
    margin: -2rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -2rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -2rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -2rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -2rem !important;
  }

  .m-sm-n5 {
    margin: -2.5rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -2.5rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -2.5rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -2.5rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -2.5rem !important;
  }

  .m-sm-n6 {
    margin: -3.5rem !important;
  }

  .mt-sm-n6,
.my-sm-n6 {
    margin-top: -3.5rem !important;
  }

  .mr-sm-n6,
.mx-sm-n6 {
    margin-right: -3.5rem !important;
  }

  .mb-sm-n6,
.my-sm-n6 {
    margin-bottom: -3.5rem !important;
  }

  .ml-sm-n6,
.mx-sm-n6 {
    margin-left: -3.5rem !important;
  }

  .m-sm-n7 {
    margin: -4.5rem !important;
  }

  .mt-sm-n7,
.my-sm-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-sm-n7,
.mx-sm-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-sm-n7,
.my-sm-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-sm-n7,
.mx-sm-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

  .mt-sm-n9,
.my-sm-n9 {
    margin-top: -6rem !important;
  }

  .mr-sm-n9,
.mx-sm-n9 {
    margin-right: -6rem !important;
  }

  .mb-sm-n9,
.my-sm-n9 {
    margin-bottom: -6rem !important;
  }

  .ml-sm-n9,
.mx-sm-n9 {
    margin-left: -6rem !important;
  }

  .m-sm-n10 {
    margin: -7.5rem !important;
  }

  .mt-sm-n10,
.my-sm-n10 {
    margin-top: -7.5rem !important;
  }

  .mr-sm-n10,
.mx-sm-n10 {
    margin-right: -7.5rem !important;
  }

  .mb-sm-n10,
.my-sm-n10 {
    margin-bottom: -7.5rem !important;
  }

  .ml-sm-n10,
.mx-sm-n10 {
    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.5rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.5rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.5rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.5rem !important;
  }

  .m-md-2 {
    margin: 1rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 1rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 1rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 1rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 1rem !important;
  }

  .m-md-3 {
    margin: 1.5rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1.5rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1.5rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1.5rem !important;
  }

  .m-md-4 {
    margin: 2rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 2rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 2rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 2rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 2rem !important;
  }

  .m-md-5 {
    margin: 2.5rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 2.5rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 2.5rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 2.5rem !important;
  }

  .m-md-6 {
    margin: 3.5rem !important;
  }

  .mt-md-6,
.my-md-6 {
    margin-top: 3.5rem !important;
  }

  .mr-md-6,
.mx-md-6 {
    margin-right: 3.5rem !important;
  }

  .mb-md-6,
.my-md-6 {
    margin-bottom: 3.5rem !important;
  }

  .ml-md-6,
.mx-md-6 {
    margin-left: 3.5rem !important;
  }

  .m-md-7 {
    margin: 4.5rem !important;
  }

  .mt-md-7,
.my-md-7 {
    margin-top: 4.5rem !important;
  }

  .mr-md-7,
.mx-md-7 {
    margin-right: 4.5rem !important;
  }

  .mb-md-7,
.my-md-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-md-7,
.mx-md-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

  .mt-md-9,
.my-md-9 {
    margin-top: 6rem !important;
  }

  .mr-md-9,
.mx-md-9 {
    margin-right: 6rem !important;
  }

  .mb-md-9,
.my-md-9 {
    margin-bottom: 6rem !important;
  }

  .ml-md-9,
.mx-md-9 {
    margin-left: 6rem !important;
  }

  .m-md-10 {
    margin: 7.5rem !important;
  }

  .mt-md-10,
.my-md-10 {
    margin-top: 7.5rem !important;
  }

  .mr-md-10,
.mx-md-10 {
    margin-right: 7.5rem !important;
  }

  .mb-md-10,
.my-md-10 {
    margin-bottom: 7.5rem !important;
  }

  .ml-md-10,
.mx-md-10 {
    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.5rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.5rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.5rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.5rem !important;
  }

  .p-md-2 {
    padding: 1rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 1rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 1rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 1rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 1rem !important;
  }

  .p-md-3 {
    padding: 1.5rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1.5rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1.5rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1.5rem !important;
  }

  .p-md-4 {
    padding: 2rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 2rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 2rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 2rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 2rem !important;
  }

  .p-md-5 {
    padding: 2.5rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 2.5rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 2.5rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 2.5rem !important;
  }

  .p-md-6 {
    padding: 3.5rem !important;
  }

  .pt-md-6,
.py-md-6 {
    padding-top: 3.5rem !important;
  }

  .pr-md-6,
.px-md-6 {
    padding-right: 3.5rem !important;
  }

  .pb-md-6,
.py-md-6 {
    padding-bottom: 3.5rem !important;
  }

  .pl-md-6,
.px-md-6 {
    padding-left: 3.5rem !important;
  }

  .p-md-7 {
    padding: 4.5rem !important;
  }

  .pt-md-7,
.py-md-7 {
    padding-top: 4.5rem !important;
  }

  .pr-md-7,
.px-md-7 {
    padding-right: 4.5rem !important;
  }

  .pb-md-7,
.py-md-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-md-7,
.px-md-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

  .pt-md-9,
.py-md-9 {
    padding-top: 6rem !important;
  }

  .pr-md-9,
.px-md-9 {
    padding-right: 6rem !important;
  }

  .pb-md-9,
.py-md-9 {
    padding-bottom: 6rem !important;
  }

  .pl-md-9,
.px-md-9 {
    padding-left: 6rem !important;
  }

  .p-md-10 {
    padding: 7.5rem !important;
  }

  .pt-md-10,
.py-md-10 {
    padding-top: 7.5rem !important;
  }

  .pr-md-10,
.px-md-10 {
    padding-right: 7.5rem !important;
  }

  .pb-md-10,
.py-md-10 {
    padding-bottom: 7.5rem !important;
  }

  .pl-md-10,
.px-md-10 {
    padding-left: 7.5rem !important;
  }

  .m-md-n1 {
    margin: -0.5rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.5rem !important;
  }

  .m-md-n2 {
    margin: -1rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -1rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -1rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -1rem !important;
  }

  .m-md-n3 {
    margin: -1.5rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1.5rem !important;
  }

  .m-md-n4 {
    margin: -2rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -2rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -2rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -2rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -2rem !important;
  }

  .m-md-n5 {
    margin: -2.5rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -2.5rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -2.5rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -2.5rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -2.5rem !important;
  }

  .m-md-n6 {
    margin: -3.5rem !important;
  }

  .mt-md-n6,
.my-md-n6 {
    margin-top: -3.5rem !important;
  }

  .mr-md-n6,
.mx-md-n6 {
    margin-right: -3.5rem !important;
  }

  .mb-md-n6,
.my-md-n6 {
    margin-bottom: -3.5rem !important;
  }

  .ml-md-n6,
.mx-md-n6 {
    margin-left: -3.5rem !important;
  }

  .m-md-n7 {
    margin: -4.5rem !important;
  }

  .mt-md-n7,
.my-md-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-md-n7,
.mx-md-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-md-n7,
.my-md-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-md-n7,
.mx-md-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

  .mt-md-n9,
.my-md-n9 {
    margin-top: -6rem !important;
  }

  .mr-md-n9,
.mx-md-n9 {
    margin-right: -6rem !important;
  }

  .mb-md-n9,
.my-md-n9 {
    margin-bottom: -6rem !important;
  }

  .ml-md-n9,
.mx-md-n9 {
    margin-left: -6rem !important;
  }

  .m-md-n10 {
    margin: -7.5rem !important;
  }

  .mt-md-n10,
.my-md-n10 {
    margin-top: -7.5rem !important;
  }

  .mr-md-n10,
.mx-md-n10 {
    margin-right: -7.5rem !important;
  }

  .mb-md-n10,
.my-md-n10 {
    margin-bottom: -7.5rem !important;
  }

  .ml-md-n10,
.mx-md-n10 {
    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.5rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.5rem !important;
  }

  .m-lg-2 {
    margin: 1rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 1rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 1rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 1rem !important;
  }

  .m-lg-3 {
    margin: 1.5rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1.5rem !important;
  }

  .m-lg-4 {
    margin: 2rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 2rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 2rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 2rem !important;
  }

  .m-lg-5 {
    margin: 2.5rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 2.5rem !important;
  }

  .m-lg-6 {
    margin: 3.5rem !important;
  }

  .mt-lg-6,
.my-lg-6 {
    margin-top: 3.5rem !important;
  }

  .mr-lg-6,
.mx-lg-6 {
    margin-right: 3.5rem !important;
  }

  .mb-lg-6,
.my-lg-6 {
    margin-bottom: 3.5rem !important;
  }

  .ml-lg-6,
.mx-lg-6 {
    margin-left: 3.5rem !important;
  }

  .m-lg-7 {
    margin: 4.5rem !important;
  }

  .mt-lg-7,
.my-lg-7 {
    margin-top: 4.5rem !important;
  }

  .mr-lg-7,
.mx-lg-7 {
    margin-right: 4.5rem !important;
  }

  .mb-lg-7,
.my-lg-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-lg-7,
.mx-lg-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

  .mt-lg-9,
.my-lg-9 {
    margin-top: 6rem !important;
  }

  .mr-lg-9,
.mx-lg-9 {
    margin-right: 6rem !important;
  }

  .mb-lg-9,
.my-lg-9 {
    margin-bottom: 6rem !important;
  }

  .ml-lg-9,
.mx-lg-9 {
    margin-left: 6rem !important;
  }

  .m-lg-10 {
    margin: 7.5rem !important;
  }

  .mt-lg-10,
.my-lg-10 {
    margin-top: 7.5rem !important;
  }

  .mr-lg-10,
.mx-lg-10 {
    margin-right: 7.5rem !important;
  }

  .mb-lg-10,
.my-lg-10 {
    margin-bottom: 7.5rem !important;
  }

  .ml-lg-10,
.mx-lg-10 {
    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.5rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.5rem !important;
  }

  .p-lg-2 {
    padding: 1rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 1rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 1rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 1rem !important;
  }

  .p-lg-3 {
    padding: 1.5rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1.5rem !important;
  }

  .p-lg-4 {
    padding: 2rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 2rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 2rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 2rem !important;
  }

  .p-lg-5 {
    padding: 2.5rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 2.5rem !important;
  }

  .p-lg-6 {
    padding: 3.5rem !important;
  }

  .pt-lg-6,
.py-lg-6 {
    padding-top: 3.5rem !important;
  }

  .pr-lg-6,
.px-lg-6 {
    padding-right: 3.5rem !important;
  }

  .pb-lg-6,
.py-lg-6 {
    padding-bottom: 3.5rem !important;
  }

  .pl-lg-6,
.px-lg-6 {
    padding-left: 3.5rem !important;
  }

  .p-lg-7 {
    padding: 4.5rem !important;
  }

  .pt-lg-7,
.py-lg-7 {
    padding-top: 4.5rem !important;
  }

  .pr-lg-7,
.px-lg-7 {
    padding-right: 4.5rem !important;
  }

  .pb-lg-7,
.py-lg-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-lg-7,
.px-lg-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

  .pt-lg-9,
.py-lg-9 {
    padding-top: 6rem !important;
  }

  .pr-lg-9,
.px-lg-9 {
    padding-right: 6rem !important;
  }

  .pb-lg-9,
.py-lg-9 {
    padding-bottom: 6rem !important;
  }

  .pl-lg-9,
.px-lg-9 {
    padding-left: 6rem !important;
  }

  .p-lg-10 {
    padding: 7.5rem !important;
  }

  .pt-lg-10,
.py-lg-10 {
    padding-top: 7.5rem !important;
  }

  .pr-lg-10,
.px-lg-10 {
    padding-right: 7.5rem !important;
  }

  .pb-lg-10,
.py-lg-10 {
    padding-bottom: 7.5rem !important;
  }

  .pl-lg-10,
.px-lg-10 {
    padding-left: 7.5rem !important;
  }

  .m-lg-n1 {
    margin: -0.5rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n2 {
    margin: -1rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -1rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -1rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -1rem !important;
  }

  .m-lg-n3 {
    margin: -1.5rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n4 {
    margin: -2rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -2rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -2rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -2rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -2rem !important;
  }

  .m-lg-n5 {
    margin: -2.5rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -2.5rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -2.5rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -2.5rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -2.5rem !important;
  }

  .m-lg-n6 {
    margin: -3.5rem !important;
  }

  .mt-lg-n6,
.my-lg-n6 {
    margin-top: -3.5rem !important;
  }

  .mr-lg-n6,
.mx-lg-n6 {
    margin-right: -3.5rem !important;
  }

  .mb-lg-n6,
.my-lg-n6 {
    margin-bottom: -3.5rem !important;
  }

  .ml-lg-n6,
.mx-lg-n6 {
    margin-left: -3.5rem !important;
  }

  .m-lg-n7 {
    margin: -4.5rem !important;
  }

  .mt-lg-n7,
.my-lg-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-lg-n7,
.mx-lg-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-lg-n7,
.my-lg-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-lg-n7,
.mx-lg-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

  .mt-lg-n9,
.my-lg-n9 {
    margin-top: -6rem !important;
  }

  .mr-lg-n9,
.mx-lg-n9 {
    margin-right: -6rem !important;
  }

  .mb-lg-n9,
.my-lg-n9 {
    margin-bottom: -6rem !important;
  }

  .ml-lg-n9,
.mx-lg-n9 {
    margin-left: -6rem !important;
  }

  .m-lg-n10 {
    margin: -7.5rem !important;
  }

  .mt-lg-n10,
.my-lg-n10 {
    margin-top: -7.5rem !important;
  }

  .mr-lg-n10,
.mx-lg-n10 {
    margin-right: -7.5rem !important;
  }

  .mb-lg-n10,
.my-lg-n10 {
    margin-bottom: -7.5rem !important;
  }

  .ml-lg-n10,
.mx-lg-n10 {
    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.5rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.5rem !important;
  }

  .m-xl-2 {
    margin: 1rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 1rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 1rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 1rem !important;
  }

  .m-xl-3 {
    margin: 1.5rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1.5rem !important;
  }

  .m-xl-4 {
    margin: 2rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 2rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 2rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 2rem !important;
  }

  .m-xl-5 {
    margin: 2.5rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 2.5rem !important;
  }

  .m-xl-6 {
    margin: 3.5rem !important;
  }

  .mt-xl-6,
.my-xl-6 {
    margin-top: 3.5rem !important;
  }

  .mr-xl-6,
.mx-xl-6 {
    margin-right: 3.5rem !important;
  }

  .mb-xl-6,
.my-xl-6 {
    margin-bottom: 3.5rem !important;
  }

  .ml-xl-6,
.mx-xl-6 {
    margin-left: 3.5rem !important;
  }

  .m-xl-7 {
    margin: 4.5rem !important;
  }

  .mt-xl-7,
.my-xl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xl-7,
.mx-xl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xl-7,
.my-xl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xl-7,
.mx-xl-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

  .mt-xl-9,
.my-xl-9 {
    margin-top: 6rem !important;
  }

  .mr-xl-9,
.mx-xl-9 {
    margin-right: 6rem !important;
  }

  .mb-xl-9,
.my-xl-9 {
    margin-bottom: 6rem !important;
  }

  .ml-xl-9,
.mx-xl-9 {
    margin-left: 6rem !important;
  }

  .m-xl-10 {
    margin: 7.5rem !important;
  }

  .mt-xl-10,
.my-xl-10 {
    margin-top: 7.5rem !important;
  }

  .mr-xl-10,
.mx-xl-10 {
    margin-right: 7.5rem !important;
  }

  .mb-xl-10,
.my-xl-10 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xl-10,
.mx-xl-10 {
    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.5rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.5rem !important;
  }

  .p-xl-2 {
    padding: 1rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 1rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 1rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 1rem !important;
  }

  .p-xl-3 {
    padding: 1.5rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1.5rem !important;
  }

  .p-xl-4 {
    padding: 2rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 2rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 2rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 2rem !important;
  }

  .p-xl-5 {
    padding: 2.5rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 2.5rem !important;
  }

  .p-xl-6 {
    padding: 3.5rem !important;
  }

  .pt-xl-6,
.py-xl-6 {
    padding-top: 3.5rem !important;
  }

  .pr-xl-6,
.px-xl-6 {
    padding-right: 3.5rem !important;
  }

  .pb-xl-6,
.py-xl-6 {
    padding-bottom: 3.5rem !important;
  }

  .pl-xl-6,
.px-xl-6 {
    padding-left: 3.5rem !important;
  }

  .p-xl-7 {
    padding: 4.5rem !important;
  }

  .pt-xl-7,
.py-xl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xl-7,
.px-xl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xl-7,
.py-xl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xl-7,
.px-xl-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

  .pt-xl-9,
.py-xl-9 {
    padding-top: 6rem !important;
  }

  .pr-xl-9,
.px-xl-9 {
    padding-right: 6rem !important;
  }

  .pb-xl-9,
.py-xl-9 {
    padding-bottom: 6rem !important;
  }

  .pl-xl-9,
.px-xl-9 {
    padding-left: 6rem !important;
  }

  .p-xl-10 {
    padding: 7.5rem !important;
  }

  .pt-xl-10,
.py-xl-10 {
    padding-top: 7.5rem !important;
  }

  .pr-xl-10,
.px-xl-10 {
    padding-right: 7.5rem !important;
  }

  .pb-xl-10,
.py-xl-10 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xl-10,
.px-xl-10 {
    padding-left: 7.5rem !important;
  }

  .m-xl-n1 {
    margin: -0.5rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n2 {
    margin: -1rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -1rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -1rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -1rem !important;
  }

  .m-xl-n3 {
    margin: -1.5rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n4 {
    margin: -2rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -2rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -2rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -2rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -2rem !important;
  }

  .m-xl-n5 {
    margin: -2.5rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -2.5rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -2.5rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -2.5rem !important;
  }

  .m-xl-n6 {
    margin: -3.5rem !important;
  }

  .mt-xl-n6,
.my-xl-n6 {
    margin-top: -3.5rem !important;
  }

  .mr-xl-n6,
.mx-xl-n6 {
    margin-right: -3.5rem !important;
  }

  .mb-xl-n6,
.my-xl-n6 {
    margin-bottom: -3.5rem !important;
  }

  .ml-xl-n6,
.mx-xl-n6 {
    margin-left: -3.5rem !important;
  }

  .m-xl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xl-n7,
.my-xl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xl-n7,
.mx-xl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xl-n7,
.my-xl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xl-n7,
.mx-xl-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

  .mt-xl-n9,
.my-xl-n9 {
    margin-top: -6rem !important;
  }

  .mr-xl-n9,
.mx-xl-n9 {
    margin-right: -6rem !important;
  }

  .mb-xl-n9,
.my-xl-n9 {
    margin-bottom: -6rem !important;
  }

  .ml-xl-n9,
.mx-xl-n9 {
    margin-left: -6rem !important;
  }

  .m-xl-n10 {
    margin: -7.5rem !important;
  }

  .mt-xl-n10,
.my-xl-n10 {
    margin-top: -7.5rem !important;
  }

  .mr-xl-n10,
.mx-xl-n10 {
    margin-right: -7.5rem !important;
  }

  .mb-xl-n10,
.my-xl-n10 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xl-n10,
.mx-xl-n10 {
    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.5rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-2 {
    margin: 1rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 1rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 1rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 1rem !important;
  }

  .m-xxl-3 {
    margin: 1.5rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-4 {
    margin: 2rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 2rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 2rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 2rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 2rem !important;
  }

  .m-xxl-5 {
    margin: 2.5rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 2.5rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 2.5rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 2.5rem !important;
  }

  .m-xxl-6 {
    margin: 3.5rem !important;
  }

  .mt-xxl-6,
.my-xxl-6 {
    margin-top: 3.5rem !important;
  }

  .mr-xxl-6,
.mx-xxl-6 {
    margin-right: 3.5rem !important;
  }

  .mb-xxl-6,
.my-xxl-6 {
    margin-bottom: 3.5rem !important;
  }

  .ml-xxl-6,
.mx-xxl-6 {
    margin-left: 3.5rem !important;
  }

  .m-xxl-7 {
    margin: 4.5rem !important;
  }

  .mt-xxl-7,
.my-xxl-7 {
    margin-top: 4.5rem !important;
  }

  .mr-xxl-7,
.mx-xxl-7 {
    margin-right: 4.5rem !important;
  }

  .mb-xxl-7,
.my-xxl-7 {
    margin-bottom: 4.5rem !important;
  }

  .ml-xxl-7,
.mx-xxl-7 {
    margin-left: 4.5rem !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-9 {
    margin: 6rem !important;
  }

  .mt-xxl-9,
.my-xxl-9 {
    margin-top: 6rem !important;
  }

  .mr-xxl-9,
.mx-xxl-9 {
    margin-right: 6rem !important;
  }

  .mb-xxl-9,
.my-xxl-9 {
    margin-bottom: 6rem !important;
  }

  .ml-xxl-9,
.mx-xxl-9 {
    margin-left: 6rem !important;
  }

  .m-xxl-10 {
    margin: 7.5rem !important;
  }

  .mt-xxl-10,
.my-xxl-10 {
    margin-top: 7.5rem !important;
  }

  .mr-xxl-10,
.mx-xxl-10 {
    margin-right: 7.5rem !important;
  }

  .mb-xxl-10,
.my-xxl-10 {
    margin-bottom: 7.5rem !important;
  }

  .ml-xxl-10,
.mx-xxl-10 {
    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.5rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-2 {
    padding: 1rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 1rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 1rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 1rem !important;
  }

  .p-xxl-3 {
    padding: 1.5rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-4 {
    padding: 2rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 2rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 2rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 2rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 2rem !important;
  }

  .p-xxl-5 {
    padding: 2.5rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 2.5rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 2.5rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 2.5rem !important;
  }

  .p-xxl-6 {
    padding: 3.5rem !important;
  }

  .pt-xxl-6,
.py-xxl-6 {
    padding-top: 3.5rem !important;
  }

  .pr-xxl-6,
.px-xxl-6 {
    padding-right: 3.5rem !important;
  }

  .pb-xxl-6,
.py-xxl-6 {
    padding-bottom: 3.5rem !important;
  }

  .pl-xxl-6,
.px-xxl-6 {
    padding-left: 3.5rem !important;
  }

  .p-xxl-7 {
    padding: 4.5rem !important;
  }

  .pt-xxl-7,
.py-xxl-7 {
    padding-top: 4.5rem !important;
  }

  .pr-xxl-7,
.px-xxl-7 {
    padding-right: 4.5rem !important;
  }

  .pb-xxl-7,
.py-xxl-7 {
    padding-bottom: 4.5rem !important;
  }

  .pl-xxl-7,
.px-xxl-7 {
    padding-left: 4.5rem !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-9 {
    padding: 6rem !important;
  }

  .pt-xxl-9,
.py-xxl-9 {
    padding-top: 6rem !important;
  }

  .pr-xxl-9,
.px-xxl-9 {
    padding-right: 6rem !important;
  }

  .pb-xxl-9,
.py-xxl-9 {
    padding-bottom: 6rem !important;
  }

  .pl-xxl-9,
.px-xxl-9 {
    padding-left: 6rem !important;
  }

  .p-xxl-10 {
    padding: 7.5rem !important;
  }

  .pt-xxl-10,
.py-xxl-10 {
    padding-top: 7.5rem !important;
  }

  .pr-xxl-10,
.px-xxl-10 {
    padding-right: 7.5rem !important;
  }

  .pb-xxl-10,
.py-xxl-10 {
    padding-bottom: 7.5rem !important;
  }

  .pl-xxl-10,
.px-xxl-10 {
    padding-left: 7.5rem !important;
  }

  .m-xxl-n1 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n2 {
    margin: -1rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -1rem !important;
  }

  .m-xxl-n3 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n4 {
    margin: -2rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -2rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -2rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -2rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -2rem !important;
  }

  .m-xxl-n5 {
    margin: -2.5rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -2.5rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -2.5rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -2.5rem !important;
  }

  .m-xxl-n6 {
    margin: -3.5rem !important;
  }

  .mt-xxl-n6,
.my-xxl-n6 {
    margin-top: -3.5rem !important;
  }

  .mr-xxl-n6,
.mx-xxl-n6 {
    margin-right: -3.5rem !important;
  }

  .mb-xxl-n6,
.my-xxl-n6 {
    margin-bottom: -3.5rem !important;
  }

  .ml-xxl-n6,
.mx-xxl-n6 {
    margin-left: -3.5rem !important;
  }

  .m-xxl-n7 {
    margin: -4.5rem !important;
  }

  .mt-xxl-n7,
.my-xxl-n7 {
    margin-top: -4.5rem !important;
  }

  .mr-xxl-n7,
.mx-xxl-n7 {
    margin-right: -4.5rem !important;
  }

  .mb-xxl-n7,
.my-xxl-n7 {
    margin-bottom: -4.5rem !important;
  }

  .ml-xxl-n7,
.mx-xxl-n7 {
    margin-left: -4.5rem !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-n9 {
    margin: -6rem !important;
  }

  .mt-xxl-n9,
.my-xxl-n9 {
    margin-top: -6rem !important;
  }

  .mr-xxl-n9,
.mx-xxl-n9 {
    margin-right: -6rem !important;
  }

  .mb-xxl-n9,
.my-xxl-n9 {
    margin-bottom: -6rem !important;
  }

  .ml-xxl-n9,
.mx-xxl-n9 {
    margin-left: -6rem !important;
  }

  .m-xxl-n10 {
    margin: -7.5rem !important;
  }

  .mt-xxl-n10,
.my-xxl-n10 {
    margin-top: -7.5rem !important;
  }

  .mr-xxl-n10,
.mx-xxl-n10 {
    margin-right: -7.5rem !important;
  }

  .mb-xxl-n10,
.my-xxl-n10 {
    margin-bottom: -7.5rem !important;
  }

  .ml-xxl-n10,
.mx-xxl-n10 {
    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;
}

.woocommerce-cart .woocommerce-cart-form .shop_table .product-remove a.remove, .responsive-menu li.menu-item-has-children > .open-submenu, .responsive-menu, .responsive-menu-buttons, .list-item .list-item-body .list-item-content, .list-item .list-item-body .list-item-img img, .header.clone-full, .header.clone-wrap, .tags, .woocommerce-pagination .page-numbers li .page-numbers:hover svg, .woocommerce-pagination .page-numbers li .page-numbers.current svg, .woocommerce-pagination .page-numbers li .page-numbers:focus svg, .navigation .page-numbers, 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, .list-item > a:hover figure img,
.list-item figure a:hover figure img, .growed img, .grow img {
  transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
}

.social-network a *, .share-buttons a:not(.btn-icon, .btn-circle-icon) *, .share-buttons button:not(.btn-icon, .btn-circle-icon) *, .img-only-link * {
  transition: all 0.3s ease-in-out;
  backface-visibility: hidden;
}

.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, 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, .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);
}

.list-item > a:hover figure,
.list-item figure a:hover figure, .growed {
  overflow: hidden;
}
.list-item > a:hover figure img,
.list-item figure a:hover figure img, .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: 16px;
  overflow: hidden;
}

.rounded-small {
  border-radius: 8px;
  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 ***/
.tab-accordion-block .accordion-trigger,
.tab-accordion-block .tab-container .tabMobiletrigger, .accordion-block .accordion-trigger,
.accordion-block .tab-container .tabMobiletrigger, .font-size-base {
  font-size: 1.125rem !important;
}

@media (max-width: 1279.98px) {
  .tab-accordion-block .accordion-trigger,
.tab-accordion-block .tab-container .tabMobiletrigger, .accordion-block .accordion-trigger,
.accordion-block .tab-container .tabMobiletrigger, .font-size-base {
    font-size: 16px !important;
  }
}
/* =Default tag styles
========================================================================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0 !important;
}
html {
  font-size: 12px;
}
@media screen and (min-width: 460px) {
  html {
    font-size: calc(12px + 4 * ((100vw - 460px) / 1140));
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 16px;
  }
}
html.no-smooth-scrolling {
  scroll-behavior: initial;
}

body {
  position: relative;
  font-size: 1.125rem;
  font-family: "Lato", 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: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration-style: solid;
}

[id] {
  scroll-margin-top: 10.8125rem !important;
}

.block-m:not(.block-p)[id] {
  scroll-margin-top: 16.8125rem !important;
}

.link2 {
  text-decoration: none;
  color: #F2B5A5;
}
.link2:hover {
  color: #F05327;
}

/* =Font and Colours styles
========================================================================================*/
.font1 {
  font-family: "Lato", sans-serif !important;
}

.font2 {
  font-family: "Nantes", serif !important;
}

/* =Extra border radius classes
========================================================================================*/
.top-left {
  border-top-left-radius: 9.375rem !important;
}

.top-right {
  border-top-right-radius: 9.375rem !important;
}

.bottom-left {
  border-bottom-left-radius: 9.375rem !important;
}

.bottom-right {
  border-bottom-right-radius: 9.375rem !important;
}

/* Font Colours */
.font-color1 {
  color: #F05327;
}

svg.font-color1 path {
  fill: #F05327 !important;
}

.font-color2 {
  color: #F2B5A5;
}

svg.font-color2 path {
  fill: #F2B5A5 !important;
}

.font-color3 {
  color: #EF9D4F;
}

svg.font-color3 path {
  fill: #EF9D4F !important;
}

.font-color4 {
  color: #D3A788;
}

svg.font-color4 path {
  fill: #D3A788 !important;
}

.font-color5 {
  color: #FBF2E9;
}

svg.font-color5 path {
  fill: #FBF2E9 !important;
}

.font-color6 {
  color: #206E95;
}

svg.font-color6 path {
  fill: #206E95 !important;
}

.font-color-black {
  color: #000000;
}

svg.font-color-black path {
  fill: #000000 !important;
}

.font-color-white {
  color: #FFFFFF;
}

svg.font-color-white path {
  fill: #FFFFFF !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.bg-color1 a:not(.btn):not(.btn-icon):not(.btn-expand):not(.button):not(.link2),
.font-color-white-strict.bg-color1 .link2:hover {
  color: #EF9D4F;
}
.font-color-white-strict.bg-color1 a:not(.btn):not(.btn-icon):not(.btn-expand):not(.button):not(.link2):hover,
.font-color-white-strict.bg-color1 .link2 {
  color: #F2B5A5;
}

/* Bg Colours */
.bg-color1,
.bg-color1-hover:hover {
  background-color: #F05327 !important;
}

.bg-color1 + .bg-color1[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color2,
.bg-color2-hover:hover {
  background-color: #F2B5A5 !important;
}

.bg-color2 + .bg-color2[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color3,
.bg-color3-hover:hover {
  background-color: #EF9D4F !important;
}

.bg-color3 + .bg-color3[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color4,
.bg-color4-hover:hover {
  background-color: #D3A788 !important;
}

.bg-color4 + .bg-color4[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color5,
.bg-color5-hover:hover {
  background-color: #FBF2E9 !important;
}

.bg-color5 + .bg-color5[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color6,
.bg-color6-hover:hover {
  background-color: #206E95 !important;
}

.bg-color6 + .bg-color6[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color-black,
.bg-color-black-hover:hover {
  background-color: #000000 !important;
}

.bg-color-black + .bg-color-black[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color-white,
.bg-color-white-hover:hover {
  background-color: #FFFFFF !important;
}

.bg-color-white + .bg-color-white[id] {
  scroll-margin-top: 16.8125rem !important;
}

.bg-color-alt {
  background-color: #D3A788 !important;
}

.bg-gradient {
  background: linear-gradient(180deg, rgba(211, 167, 136, 0.9) 0%, #FFFFFF 100%);
}

/* =Layout styles
========================================================================================*/
#wrapper {
  background: #FFFFFF;
  position: relative;
}

.wrap {
  max-width: 1684px;
  margin: 0 auto;
}

.wrap-small {
  max-width: 946px;
  margin: 0 auto;
}

.wrap-medium {
  max-width: 1144px;
  margin: 0 auto;
}

.wrap-medium2 {
  max-width: 1406px;
  margin: 0 auto;
}

.wrap-large {
  max-width: 1792px;
  margin: 0 auto;
}

.wrap-p {
  padding: 2rem;
}

.wrap-px {
  padding-left: 2rem;
  padding-right: 2rem;
}

.wrap-py {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* =Block Classes
========================================================================================*/
.block-p {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.block-pt {
  padding-top: 6rem;
}

.block-mb {
  margin-bottom: 6rem;
}

.block-mt {
  margin-top: 6rem;
}

.block-wrapper.block-m + .block-wrapper.block-m {
  margin-top: 6rem;
}
.block-wrapper.block-m:nth-child(1) {
  margin-top: 6rem;
}
.block-wrapper.block-m:last-child {
  margin-bottom: 6rem;
}
.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-color5 + .block-wrapper.block-p.bg-color5 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color6 + .block-wrapper.block-p.bg-color6 {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color-alt + .block-wrapper.block-p.bg-color-alt {
  padding-top: 0;
}
.block-wrapper.block-p.bg-color-none + .block-wrapper.block-p.bg-color-none {
  padding-top: 0;
}
.block-wrapper.block-p:last-child {
  margin-bottom: 0;
}

/* =Editor Classes
========================================================================================*/
.alignnone {
  margin: 0.5rem 1rem 1rem 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 0.5rem auto 0.5rem auto;
}

.alignright {
  float: right;
  margin: 0.5rem 0 1rem 1rem;
}

.alignleft {
  float: left;
  margin: 0.5rem 1rem 1rem 0;
}

a img.alignright {
  float: right;
  margin: 0.5rem 0 1rem 1rem;
}
a img.alignnone {
  margin: 0.5rem 1rem 1rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.5rem 1rem 1rem 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 459.98px) {
  img.aligncenter,
img.alignright,
img.alignleft {
    margin: 0.5rem 0 !important;
    width: 100%;
    height: auto;
  }
}

.wp-caption {
  /* Image does not overflow the content area */
  text-align: center;
  margin-bottom: 0.5rem;
  max-width: 100%;
}
.wp-caption.alignnone, .wp-caption.alignleft {
  margin: 0.5rem 1rem 1rem 0;
}
.wp-caption.alignright {
  margin: 0.5rem 0 1rem 1rem;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  padding: 0;
  width: 100%;
}
.wp-caption .wp-caption-text {
  padding: 0.5rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 459.98px) {
  .wp-caption {
    width: 100% !important;
  }
}

.wp-caption.alignnone {
  width: 100% !important;
  background: #D3A788;
  text-align: center;
  padding: 1.5rem;
  margin: 2rem 0;
}

.entry .iframe-responsive,
.content-container .iframe-responsive,
.hentry .iframe-responsive {
  margin-bottom: 1.5rem;
}
.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;
}

*:is(.bg-color6, .bg-color-black) ::selection {
  background: #FFFFFF;
  color: #000000;
}

.column-block:is(.bg-color6, .bg-color-black) .grid-item::selection,
.column-block:is(.bg-color6, .bg-color-black) .grid-item *::selection {
  background: #000000;
  color: #FFFFFF;
}

/* =General Classes
========================================================================================*/
/*Trasitions with Fix of opacity movement. */
.no_transition {
  transition: none;
}

.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%;
  height: 100vh;
}

.children-x-0 > * + * {
  margin-left: 0;
}

.children-x-1 > * + * {
  margin-left: 0.5rem;
}

.children-x-2 > * + * {
  margin-left: 1rem;
}

.children-x-3 > * + * {
  margin-left: 1.5rem;
}

.children-x-4 > * + * {
  margin-left: 2rem;
}

.children-x-5 > * + * {
  margin-left: 2.5rem;
}

.children-x-6 > * + * {
  margin-left: 3.5rem;
}

.children-x-7 > * + * {
  margin-left: 4.5rem;
}

.children-x-8 > * + * {
  margin-left: 5rem;
}

.children-x-9 > * + * {
  margin-left: 6rem;
}

.children-x-10 > * + * {
  margin-left: 7.5rem;
}

.children-y-0 > * + * {
  margin-top: 0;
}

.children-y-1 > * + * {
  margin-top: 0.5rem;
}

.children-y-2 > * + * {
  margin-top: 1rem;
}

.children-y-3 > * + * {
  margin-top: 1.5rem;
}

.children-y-4 > * + * {
  margin-top: 2rem;
}

.children-y-5 > * + * {
  margin-top: 2.5rem;
}

.children-y-6 > * + * {
  margin-top: 3.5rem;
}

.children-y-7 > * + * {
  margin-top: 4.5rem;
}

.children-y-8 > * + * {
  margin-top: 5rem;
}

.children-y-9 > * + * {
  margin-top: 6rem;
}

.children-y-10 > * + * {
  margin-top: 7.5rem;
}

.aspect-auto {
  aspect-ratio: auto;
  object-fit: cover;
}

.aspect-square {
  aspect-ratio: 1;
  object-fit: cover;
}

.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-2-1 {
  aspect-ratio: 2;
  object-fit: cover;
}

.aspect-1-2 {
  aspect-ratio: 0.5;
  object-fit: cover;
}

:focus-visible {
  outline: 0.125rem solid rgba(0, 0, 0, 0.8) !important;
  outline-offset: 2px;
  border-color: #F05327;
}

*:is(.bg-color6, .bg-color-black) :focus-visible {
  outline-color: rgba(255, 255, 255, 0.8) !important;
  border-color: #FFFFFF;
}

input:focus-visible, textarea:focus-visible {
  background-color: #FBF2E9 !important;
}

/* =JD Media Query
========================================================================================*/
.jd_media_query_activation {
  height: 0;
  width: 0;
  position: absolute;
  overflow: hidden;
  visibility: hidden;
}

/* = Positions
========================================================================================*/
.pos-static {
  position: static;
}

/* = Flex gap
========================================================================================*/
.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.mr-gap-1 > *:not(:last-child) {
  margin-right: 0.5rem !important;
}

.mr-mb-gap-1 > * {
  margin-bottom: 0.5rem !important;
}
.mr-mb-gap-1 > *:not(:last-child) {
  margin-right: 0.5rem !important;
}

.mr-gap-2 > *:not(:last-child) {
  margin-right: 1rem !important;
}

.mr-mb-gap-2 > * {
  margin-bottom: 1rem !important;
}
.mr-mb-gap-2 > *:not(:last-child) {
  margin-right: 1rem !important;
}

/* = Max width
========================================================================================*/
.max-width-small {
  max-width: 946px;
}

.max-width-medium {
  max-width: 1144px;
}

/* = WP Admin Bar fix on mobile
========================================================================================*/
@media screen and (max-width: 782px) {
  #wp-admin-bar-query-monitor {
    display: none !important;
  }
}
/* = Custom font mixins
========================================================================================*/
.font-size-16 {
  font-size: 1rem;
}
@media (max-width: 1279.98px) {
  .font-size-16 {
    font-size: 16px;
  }
}

.text-transform-uppercase {
  text-transform: uppercase;
}

/* = Block styling based on banners
========================================================================================*/
.page-banner + .blocks-container-wrapper .block-wrapper:first-child:not(.bg-color-none, .bg-color-white) {
  margin-top: 6rem !important;
}

/*
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: -2rem;
}
.cols-grid > .col, .cols-grid > [class*=col-] {
  padding-right: 0;
  padding-left: 2rem;
}
.cols-grid:not(.grid-flat) > .col, .cols-grid:not(.grid-flat) > [class*=col-] {
  margin-bottom: 2rem;
}
.cols-grid.grid-small {
  margin-left: -1.5rem;
}
.cols-grid.grid-small > .col, .cols-grid.grid-small > [class*=col-] {
  padding-left: 1.5rem;
}
.cols-grid.grid-small:not(.grid-flat) > .col, .cols-grid.grid-small:not(.grid-flat) > [class*=col-] {
  margin-bottom: 1.5rem;
}
.cols-grid.grid-large {
  margin-left: -3.5rem;
}
.cols-grid.grid-large > .col, .cols-grid.grid-large > [class*=col-] {
  padding-left: 3.5rem;
}
.cols-grid.grid-large:not(.grid-flat) > .col, .cols-grid.grid-large:not(.grid-flat) > [class*=col-] {
  margin-bottom: 3.5rem;
}

/* 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: -2rem;
}
.grid-flat-n.grid-small {
  margin-bottom: -1.5rem;
}
.grid-flat-n.grid-large {
  margin-bottom: -3.5rem;
}

/* 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.5rem;
  }

  .grid-sm-small > .col, .grid-sm-small > [class*=col-] {
    padding-left: 1.5rem;
  }

  .grid-sm-small:not(.grid-flat) > .col, .grid-sm-small:not(.grid-flat) > [class*=col-] {
    margin-bottom: 1.5rem;
  }
}
/*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%;
  }
}
/* =CSS Grid*/
/*============================================*/
.d-grid {
  display: grid;
}
.d-grid.tile-grid {
  grid-gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .d-grid.tile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .d-grid.tile-grid .tile-grid-item {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .d-grid.tile-grid.tile-grid-4 {
    grid-template-columns: repeat(6, 1fr);
  }
  .d-grid.tile-grid.tile-grid-4 .tile-grid-item {
    grid-column: span 2;
  }
  .d-grid.tile-grid.tile-grid-4.stretch-remainder-3 .tile-grid-item:nth-last-child(-n+4) {
    grid-column: span 3;
  }
  .d-grid.tile-grid.tile-grid-3 {
    grid-template-columns: repeat(6, 1fr);
  }
  .d-grid.tile-grid.tile-grid-3 .tile-grid-item {
    grid-column: span 2;
  }
  .d-grid.tile-grid.tile-grid-3.stretch-remainder-2 .tile-grid-item:nth-last-child(-n+2) {
    grid-column: span 3;
  }
}
@media (min-width: 1280px) {
  .d-grid.tile-grid.tile-grid-4 {
    grid-template-columns: repeat(12, 1fr);
  }
  .d-grid.tile-grid.tile-grid-4 .tile-grid-item {
    grid-column: span 3;
  }
  .d-grid.tile-grid.tile-grid-4.stretch-remainder-3 .tile-grid-item:nth-last-child(-n+3) {
    grid-column: span 4;
  }
  .d-grid.tile-grid.tile-grid-4.stretch-remainder-2 .tile-grid-item:nth-last-child(-n+2) {
    grid-column: span 6;
  }
}

/*animation elements*/
@media screen and (prefers-reduced-motion: no-preference) {
  .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;
  }
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
  Slider
*/
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/*=================================
  Previous and Next icon buttons
==================================*/
.slick-prev,
.slick-next {
  position: absolute;
  top: calc(50% - 20px);
  display: block;
  padding: 0;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  transform: translate(0, -50%);
}
.slick-prev:hover .slick-prev-icon,
.slick-prev:hover .slick-next-icon, .slick-prev:focus .slick-prev-icon,
.slick-prev:focus .slick-next-icon,
.slick-next:hover .slick-prev-icon,
.slick-next:hover .slick-next-icon,
.slick-next:focus .slick-prev-icon,
.slick-next:focus .slick-next-icon {
  opacity: 1;
}
.slick-prev:focus .slick-prev-icon,
.slick-prev:focus .slick-next-icon,
.slick-next:focus .slick-prev-icon,
.slick-next:focus .slick-next-icon {
  color: orange;
  font-size: 28px;
  margin-left: -2px;
}
.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  cursor: default;
}
.slick-prev.slick-disabled .slick-prev-icon,
.slick-prev.slick-disabled .slick-next-icon,
.slick-next.slick-disabled .slick-prev-icon,
.slick-next.slick-disabled .slick-next-icon {
  opacity: 0.25;
}
.slick-prev .slick-prev-icon,
.slick-prev .slick-next-icon,
.slick-next .slick-prev-icon,
.slick-next .slick-next-icon {
  display: block;
  color: black;
  opacity: 0.75;
  font-family: "slick";
  font-size: 24px;
  line-height: 1;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev .slick-prev-icon:before {
  content: "←";
}
[dir=rtl] .slick-prev .slick-prev-icon:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next .slick-next-icon:before {
  content: "→";
}
[dir=rtl] .slick-next .slick-next-icon:before {
  content: "←";
}

/*==========================
  Slide navigation dots
===========================*/
.slick-slider.slick-dotted {
  margin-bottom: 60px;
}

/**
 Improved .sr-only class by ffoodd: https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034
 */
.slick-sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*===========================
  Pause/play icon button
============================*/
.slick-autoplay-toggle-button {
  color: black;
  background: transparent;
  transition: all 0.3s ease;
}
.slick-autoplay-toggle-button:hover {
  background: #000000;
  color: #FFFFFF;
}
.slick-autoplay-toggle-button .slick-pause-icon, .slick-autoplay-toggle-button .slick-play-icon {
  display: inline-flex;
}
.slick-autoplay-toggle-button .slick-pause-icon:before, .slick-autoplay-toggle-button .slick-pause-icon:after {
  content: "";
  display: inline-block;
  background-color: #000000;
  width: 2px;
  height: 12px;
  border-radius: 16px;
  transition: background-color 0.3s ease;
}
.slick-autoplay-toggle-button .slick-pause-icon:before {
  margin-right: 0.1875rem;
}
.slick-autoplay-toggle-button .slick-play-icon:before {
  content: "";
  display: inline-block;
  background: url("../../images/icons/play.svg") no-repeat center center;
  background-size: contain;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-left: 2px;
  text-align: center;
  transition: filter 0.3s ease;
}
.slick-autoplay-toggle-button:hover .slick-play-icon::before {
  filter: invert(1);
}
.slick-autoplay-toggle-button:hover .slick-pause-icon::before, .slick-autoplay-toggle-button:hover .slick-pause-icon::after {
  background-color: #FFFFFF;
}

/* 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: #F05327;
  -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: 2rem;
}
.slick-lightbox .slick-next {
  right: 2rem;
}

.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.5rem 0 0;
}

/* =Buttons
========================================================================================*/
.btn,
.btn-icon,
.btn-expand,
.btn-circle-icon,
.button,
.woocommerce-Button:not(#woocommerce-default),
.woocommerce .button:not(#woocommerce-default),
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear),
input[type=submit]:not(.adminbar-button),
button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button) {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 400;
  min-height: 2.5rem;
  min-width: 2.5rem;
  border: 1px solid #000000;
  cursor: pointer;
  font-size: 1.125rem;
  padding: 0.4375rem 1.5rem;
  text-decoration: none !important;
  border-radius: 24px;
  font-family: "Lato", sans-serif;
  line-height: 1;
}
@media (max-width: 1279.98px) {
  .btn,
.btn-icon,
.btn-expand,
.btn-circle-icon,
.button,
.woocommerce-Button:not(#woocommerce-default),
.woocommerce .button:not(#woocommerce-default),
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear),
input[type=submit]:not(.adminbar-button),
button:not([class^=gm-]):not(.unstyled):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button) {
    font-size: 18px;
    min-height: 40px;
    min-width: 40px;
    padding: 7px 24px;
  }
}

.btn,
.button,
.woocommerce-Button:not(#woocommerce-default),
.woocommerce .button:not(#woocommerce-default),
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear),
input[type=submit],
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button) {
  background: #FFFFFF;
  border: 1px solid #000000;
  color: #000000;
}
.btn:not(.ff-btn-submit):hover,
.button:not(.ff-btn-submit):hover,
.woocommerce-Button:not(#woocommerce-default):not(.ff-btn-submit):hover,
.woocommerce .button:not(#woocommerce-default):not(.ff-btn-submit):hover,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear):not(.ff-btn-submit):hover,
input[type=submit]:not(.ff-btn-submit):hover,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button):not(.ff-btn-submit):hover {
  background: #000000;
  color: #FFFFFF;
}
.btn:not(.ff-btn-submit):focus-visible,
.button:not(.ff-btn-submit):focus-visible,
.woocommerce-Button:not(#woocommerce-default):not(.ff-btn-submit):focus-visible,
.woocommerce .button:not(#woocommerce-default):not(.ff-btn-submit):focus-visible,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear):not(.ff-btn-submit):focus-visible,
input[type=submit]:not(.ff-btn-submit):focus-visible,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button):not(.ff-btn-submit):focus-visible {
  background: #000000;
  color: #FFFFFF;
}
.btn.ver-color3,
.button.ver-color3,
.woocommerce-Button:not(#woocommerce-default).ver-color3,
.woocommerce .button:not(#woocommerce-default).ver-color3,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-color3,
input[type=submit].ver-color3,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-color3 {
  background: #EF9D4F !important;
  border: 1px solid #EF9D4F !important;
  color: #000000 !important;
}
.btn.ver-color3:hover,
.button.ver-color3:hover,
.woocommerce-Button:not(#woocommerce-default).ver-color3:hover,
.woocommerce .button:not(#woocommerce-default).ver-color3:hover,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-color3:hover,
input[type=submit].ver-color3:hover,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-color3:hover {
  background: transparent !important;
  border-color: #F05327 !important;
  color: #F05327 !important;
}
.btn.ver-color3:focus-visible,
.button.ver-color3:focus-visible,
.woocommerce-Button:not(#woocommerce-default).ver-color3:focus-visible,
.woocommerce .button:not(#woocommerce-default).ver-color3:focus-visible,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-color3:focus-visible,
input[type=submit].ver-color3:focus-visible,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-color3:focus-visible {
  background: transparent !important;
  border-color: #F05327 !important;
  color: #F05327 !important;
}
.btn.ver-transparent,
.button.ver-transparent,
.woocommerce-Button:not(#woocommerce-default).ver-transparent,
.woocommerce .button:not(#woocommerce-default).ver-transparent,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-transparent,
input[type=submit].ver-transparent,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-transparent {
  background: transparent !important;
}
.btn.ver-transparent:hover,
.button.ver-transparent:hover,
.woocommerce-Button:not(#woocommerce-default).ver-transparent:hover,
.woocommerce .button:not(#woocommerce-default).ver-transparent:hover,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-transparent:hover,
input[type=submit].ver-transparent:hover,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-transparent:hover {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.btn.ver-transparent:focus-visible,
.button.ver-transparent:focus-visible,
.woocommerce-Button:not(#woocommerce-default).ver-transparent:focus-visible,
.woocommerce .button:not(#woocommerce-default).ver-transparent:focus-visible,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-transparent:focus-visible,
input[type=submit].ver-transparent:focus-visible,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-transparent:focus-visible {
  background: #000000 !important;
  color: #FFFFFF !important;
}
.btn.ver-no-border,
.button.ver-no-border,
.woocommerce-Button:not(#woocommerce-default).ver-no-border,
.woocommerce .button:not(#woocommerce-default).ver-no-border,
input[type=button]:not(.pcr-save, .pcr-cancel, .pcr-clear).ver-no-border,
input[type=submit].ver-no-border,
button:not([class^=gm-]):not(.unstyled):not(.btn-right):not(.btn-left):not(.page-numbers):not(.slick-dots button):not(.accordion-trigger):not(.customize-partial-edit-shortcut-button):not([title="Keyboard shortcuts"]):not([class^=tribe]):not(.btn-icon):not(.btn-circle-icon):not(.btn-circle):not(.open-team-overlay):not(.show-password-input):not(.open-submenu):not(.choices__button, .iti__selected-country, .pcr-last-color):not([id^=mceu]):not([id^=mceu] button):not(.mejs-controls button).ver-no-border {
  border-color: transparent !important;
}

.woocommerce-Button:not(#woocommerce-default),
.woocommerce .button:not(#woocommerce-default) {
  background: #EF9D4F !important;
  border: 1px solid #EF9D4F !important;
  color: #000000 !important;
}
.woocommerce-Button:not(#woocommerce-default):hover,
.woocommerce .button:not(#woocommerce-default):hover {
  background: transparent !important;
  border-color: #EF9D4F !important;
  color: #EF9D4F !important;
}
.woocommerce-Button:not(#woocommerce-default):focus-visible,
.woocommerce .button:not(#woocommerce-default):focus-visible {
  background: transparent !important;
  border-color: #EF9D4F !important;
  color: #EF9D4F !important;
}

.btn-icon, button.btn-icon {
  border: none !important;
  padding: 0.25rem 1rem 0.25rem 1.5rem !important;
  position: relative;
  z-index: 0;
  color: #000000;
  justify-content: end;
}
@media (max-width: 1279.98px) {
  .btn-icon, button.btn-icon {
    padding: 4px 16px 4px 24px;
  }
}
.btn-icon .btn-icon__label, button.btn-icon .btn-icon__label {
  z-index: 1;
}
.btn-icon .btn-icon__icon, button.btn-icon .btn-icon__icon {
  z-index: 1;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 1rem;
  background-color: transparent;
  transition: transform 0.3s cubic-bezier(0.33, 1.8, 0.66, 1), background-color 0.3s ease;
}
.btn-icon .btn-icon__icon svg, button.btn-icon .btn-icon__icon svg {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 1279.98px) {
  .btn-icon .btn-icon__icon, button.btn-icon .btn-icon__icon {
    width: 16px;
    height: 16px;
    padding: 16px;
  }
  .btn-icon .btn-icon__icon svg, button.btn-icon .btn-icon__icon svg {
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
  }
}
.btn-icon:hover, .stretched-btn:hover .btn-icon, button.btn-icon:hover, .stretched-btn:hover button.btn-icon {
  color: #000000;
}
.btn-icon:hover .btn-icon__icon, .stretched-btn:hover .btn-icon .btn-icon__icon, button.btn-icon:hover .btn-icon__icon, .stretched-btn:hover button.btn-icon .btn-icon__icon {
  transform: translateX(0.625rem);
  background-color: rgba(0, 0, 0, 0.2);
}
.btn-icon:focus-visible, .stretched-btn:focus-visible .btn-icon, button.btn-icon:focus-visible, .stretched-btn:focus-visible button.btn-icon {
  color: #000000;
}
.btn-icon:focus-visible .btn-icon__icon, .stretched-btn:focus-visible .btn-icon .btn-icon__icon, button.btn-icon:focus-visible .btn-icon__icon, .stretched-btn:focus-visible button.btn-icon .btn-icon__icon {
  transform: translateX(0.625rem);
  background-color: rgba(0, 0, 0, 0.2);
}
.btn-icon::before, button.btn-icon::before {
  z-index: 0;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid #000000;
  background-color: #FFFFFF;
}
@media (max-width: 1279.98px) {
  .btn-icon::before, button.btn-icon::before {
    padding: 8px 24px;
  }
}
.btn-icon:hover::before, .team-block .open-team-overlay:hover .btn-icon::before, button.btn-icon:hover::before, .team-block .open-team-overlay:hover button.btn-icon::before {
  animation: pulse 0.3s ease;
}
.btn-icon:focus-visible::before, .team-block .open-team-overlay:focus-visible .btn-icon::before, button.btn-icon:focus-visible::before, .team-block .open-team-overlay:focus-visible button.btn-icon::before {
  animation: pulse 0.3s ease;
}
.btn-icon.ver-color1::before, button.btn-icon.ver-color1::before {
  border: 1px solid #F05327 !important;
  background-color: #F05327 !important;
}
.btn-icon.ver-color1:hover .btn-icon__icon, .team-block .open-team-overlay:hover .btn-icon.ver-color1 .btn-icon__icon, button.btn-icon.ver-color1:hover .btn-icon__icon, .team-block .open-team-overlay:hover button.btn-icon.ver-color1 .btn-icon__icon {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.btn-icon.ver-color1:focus-visible .btn-icon__icon, .team-block .open-team-overlay:focus-visible .btn-icon.ver-color1 .btn-icon__icon, button.btn-icon.ver-color1:focus-visible .btn-icon__icon, .team-block .open-team-overlay:focus-visible button.btn-icon.ver-color1 .btn-icon__icon {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.btn-icon.ver-color3::before, button.btn-icon.ver-color3::before {
  border: 1px solid #EF9D4F !important;
  background-color: #EF9D4F !important;
}
.btn-icon.ver-color3:hover .btn-icon__icon, .team-block .open-team-overlay:hover .btn-icon.ver-color3 .btn-icon__icon, button.btn-icon.ver-color3:hover .btn-icon__icon, .team-block .open-team-overlay:hover button.btn-icon.ver-color3 .btn-icon__icon {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.btn-icon.ver-color3:focus-visible .btn-icon__icon, .team-block .open-team-overlay:focus-visible .btn-icon.ver-color3 .btn-icon__icon, button.btn-icon.ver-color3:focus-visible .btn-icon__icon, .team-block .open-team-overlay:focus-visible button.btn-icon.ver-color3 .btn-icon__icon {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.btn-icon.ver-no-border::before, button.btn-icon.ver-no-border::before {
  border-color: transparent !important;
}

.btn-expand {
  display: inline-flex;
  position: relative;
  transition: width 0.5s ease;
  overflow: hidden;
  border: none;
  color: #000000;
}
.btn-expand .btn-expand__inner-background {
  width: 2.5rem;
  position: absolute;
  background-color: transparent;
  height: 100%;
  border: 1px solid #000000;
  border-radius: 24px;
  transition: width 0.5s ease, background-color 0.3s ease;
}
@media (max-width: 1279.98px) {
  .btn-expand .btn-expand__inner-background {
    width: 40px;
  }
}
.btn-expand.ver-color3 .btn-expand__inner-background {
  background-color: #EF9D4F;
}
.btn-expand.ver-color-white {
  color: #FFFFFF;
}
.btn-expand.ver-color-white .btn-expand__inner-background {
  border-color: #FFFFFF;
}
.btn-expand .btn-expand__total-content {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  transition: transform 0.5s ease;
  z-index: 1;
}
.btn-expand .btn-expand__label {
  opacity: 0;
  flex-shrink: 0;
}
.btn-expand svg {
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  transition: transform 0.5s ease;
  flex-shrink: 0;
}
@media (max-width: 1279.98px) {
  .btn-expand svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
  }
}
.btn-expand:not(.ver-right) .btn-expand__inner-background {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.btn-expand:not(.ver-right) .btn-expand__total-content {
  transform: translateX(-100%);
}
.btn-expand:not(.ver-right) .btn-expand__label {
  transition: opacity 0.1s ease;
}
.btn-expand:not(.ver-right) svg {
  transform: translateX(0.25rem);
  transition: transform 0.5s ease;
}
@media (max-width: 1279.98px) {
  .btn-expand:not(.ver-right) svg {
    transform: translateX(4px);
  }
}
.btn-expand.ver-right {
  padding: 0.5rem 0.75rem 0.5rem 1rem;
}
.btn-expand.ver-right .btn-expand__inner-background {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
}
.btn-expand.ver-right .btn-expand__total-content {
  overflow: hidden;
}
.btn-expand.ver-right .btn-expand__label {
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.1s ease;
}
@media (max-width: 1279.98px) {
  .btn-expand.ver-right {
    padding: 8px 12px 8px 16px;
  }
}
@media (min-width: 768px) {
  .btn-expand:hover .btn-expand__inner-background, .list-item-anchor:hover .btn-expand .btn-expand__inner-background, .featured-events-block__event:hover .btn-expand .btn-expand__inner-background, .resources-block__resource:hover .btn-expand .btn-expand__inner-background, .open-team-overlay:hover .btn-expand .btn-expand__inner-background, .stretched-btn:hover .btn-expand .btn-expand__inner-background {
    width: 100%;
  }
  .btn-expand:hover .btn-expand__label, .list-item-anchor:hover .btn-expand .btn-expand__label, .featured-events-block__event:hover .btn-expand .btn-expand__label, .resources-block__resource:hover .btn-expand .btn-expand__label, .open-team-overlay:hover .btn-expand .btn-expand__label, .stretched-btn:hover .btn-expand .btn-expand__label {
    opacity: 1;
  }
  .btn-expand:hover:not(.ver-right) .btn-expand__total-content, .list-item-anchor:hover .btn-expand:not(.ver-right) .btn-expand__total-content, .featured-events-block__event:hover .btn-expand:not(.ver-right) .btn-expand__total-content, .resources-block__resource:hover .btn-expand:not(.ver-right) .btn-expand__total-content, .open-team-overlay:hover .btn-expand:not(.ver-right) .btn-expand__total-content, .stretched-btn:hover .btn-expand:not(.ver-right) .btn-expand__total-content {
    transform: translateX(0);
  }
  .btn-expand:hover:not(.ver-right) .btn-expand__label, .list-item-anchor:hover .btn-expand:not(.ver-right) .btn-expand__label, .featured-events-block__event:hover .btn-expand:not(.ver-right) .btn-expand__label, .resources-block__resource:hover .btn-expand:not(.ver-right) .btn-expand__label, .open-team-overlay:hover .btn-expand:not(.ver-right) .btn-expand__label, .stretched-btn:hover .btn-expand:not(.ver-right) .btn-expand__label {
    transition: opacity 0.5s ease 0.1s;
  }
  .btn-expand:hover:not(.ver-right) svg, .list-item-anchor:hover .btn-expand:not(.ver-right) svg, .featured-events-block__event:hover .btn-expand:not(.ver-right) svg, .resources-block__resource:hover .btn-expand:not(.ver-right) svg, .open-team-overlay:hover .btn-expand:not(.ver-right) svg, .stretched-btn:hover .btn-expand:not(.ver-right) svg {
    transform: translateX(0);
  }
  .btn-expand:hover.ver-right .btn-expand__label, .list-item-anchor:hover .btn-expand.ver-right .btn-expand__label, .featured-events-block__event:hover .btn-expand.ver-right .btn-expand__label, .resources-block__resource:hover .btn-expand.ver-right .btn-expand__label, .open-team-overlay:hover .btn-expand.ver-right .btn-expand__label, .stretched-btn:hover .btn-expand.ver-right .btn-expand__label {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.33, 1.5, 0.66, 1) 0.4s, opacity 0.4s ease 0.4s;
  }
  .btn-expand:focus-visible .btn-expand__inner-background, .list-item-anchor:focus-visible .btn-expand .btn-expand__inner-background, .featured-events-block__event:focus-visible .btn-expand .btn-expand__inner-background, .resources-block__resource:focus-visible .btn-expand .btn-expand__inner-background, .open-team-overlay:focus-visible .btn-expand .btn-expand__inner-background, .stretched-btn:focus-visible .btn-expand .btn-expand__inner-background {
    width: 100%;
  }
  .btn-expand:focus-visible .btn-expand__label, .list-item-anchor:focus-visible .btn-expand .btn-expand__label, .featured-events-block__event:focus-visible .btn-expand .btn-expand__label, .resources-block__resource:focus-visible .btn-expand .btn-expand__label, .open-team-overlay:focus-visible .btn-expand .btn-expand__label, .stretched-btn:focus-visible .btn-expand .btn-expand__label {
    opacity: 1;
  }
  .btn-expand:focus-visible:not(.ver-right) .btn-expand__total-content, .list-item-anchor:focus-visible .btn-expand:not(.ver-right) .btn-expand__total-content, .featured-events-block__event:focus-visible .btn-expand:not(.ver-right) .btn-expand__total-content, .resources-block__resource:focus-visible .btn-expand:not(.ver-right) .btn-expand__total-content, .open-team-overlay:focus-visible .btn-expand:not(.ver-right) .btn-expand__total-content, .stretched-btn:focus-visible .btn-expand:not(.ver-right) .btn-expand__total-content {
    transform: translateX(0);
  }
  .btn-expand:focus-visible:not(.ver-right) .btn-expand__label, .list-item-anchor:focus-visible .btn-expand:not(.ver-right) .btn-expand__label, .featured-events-block__event:focus-visible .btn-expand:not(.ver-right) .btn-expand__label, .resources-block__resource:focus-visible .btn-expand:not(.ver-right) .btn-expand__label, .open-team-overlay:focus-visible .btn-expand:not(.ver-right) .btn-expand__label, .stretched-btn:focus-visible .btn-expand:not(.ver-right) .btn-expand__label {
    transition: opacity 0.5s ease 0.1s;
  }
  .btn-expand:focus-visible:not(.ver-right) svg, .list-item-anchor:focus-visible .btn-expand:not(.ver-right) svg, .featured-events-block__event:focus-visible .btn-expand:not(.ver-right) svg, .resources-block__resource:focus-visible .btn-expand:not(.ver-right) svg, .open-team-overlay:focus-visible .btn-expand:not(.ver-right) svg, .stretched-btn:focus-visible .btn-expand:not(.ver-right) svg {
    transform: translateX(0);
  }
  .btn-expand:focus-visible.ver-right .btn-expand__label, .list-item-anchor:focus-visible .btn-expand.ver-right .btn-expand__label, .featured-events-block__event:focus-visible .btn-expand.ver-right .btn-expand__label, .resources-block__resource:focus-visible .btn-expand.ver-right .btn-expand__label, .open-team-overlay:focus-visible .btn-expand.ver-right .btn-expand__label, .stretched-btn:focus-visible .btn-expand.ver-right .btn-expand__label {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(0.33, 1.5, 0.66, 1) 0.4s, opacity 0.4s ease 0.4s;
  }
}

.btn-circle, button.btn-circle {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
}
@media (max-width: 1279.98px) {
  .btn-circle, button.btn-circle {
    width: 40px;
    height: 40px;
  }
}
.btn-circle.ver-transparent, button.btn-circle.ver-transparent {
  background-color: transparent;
}
.btn-circle.ver-transparent:hover, button.btn-circle.ver-transparent:hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-circle.ver-transparent:focus-visible, button.btn-circle.ver-transparent:focus-visible {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-circle.ver-color3, button.btn-circle.ver-color3 {
  background-color: #EF9D4F;
  border-color: #EF9D4F;
}
.btn-circle.ver-color3:hover, button.btn-circle.ver-color3:hover {
  background: transparent;
  color: #F05327;
  border-color: #F05327;
}
.btn-circle.ver-color3:focus-visible, button.btn-circle.ver-color3:focus-visible {
  background: transparent;
  color: #F05327;
  border-color: #F05327;
}

.btn-circle-icon:not(#jd-regular-btn), button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}
.btn-circle-icon:not(#jd-regular-btn) svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn) svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: fill 0.3s ease;
}
@media (max-width: 1279.98px) {
  .btn-circle-icon:not(#jd-regular-btn), button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn) {
    width: 40px;
    height: 40px;
  }
  .btn-circle-icon:not(#jd-regular-btn) svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn) svg {
    width: 20px;
    height: 20px;
  }
}
.btn-circle-icon:not(#jd-regular-btn):hover, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn):hover {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-circle-icon:not(#jd-regular-btn):hover svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn):hover svg {
  fill: #FFFFFF;
}
.btn-circle-icon:not(#jd-regular-btn):focus-visible, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn):focus-visible {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-circle-icon:not(#jd-regular-btn):focus-visible svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn):focus-visible svg {
  fill: #FFFFFF;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color1, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color1 {
  background-color: #F05327;
  border-color: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color1:hover, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color1:hover {
  background-color: transparent;
  color: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color1:hover svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color1:hover svg {
  fill: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color1:focus-visible, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color1:focus-visible {
  background-color: transparent;
  color: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color1:focus-visible svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color1:focus-visible svg {
  fill: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color3, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color3 {
  background-color: #EF9D4F;
  border-color: #EF9D4F;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color3:hover, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color3:hover {
  background-color: transparent;
  color: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color3:hover svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color3:hover svg {
  fill: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color3:focus-visible, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color3:focus-visible {
  background-color: transparent;
  color: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).ver-color3:focus-visible svg, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).ver-color3:focus-visible svg {
  fill: #F05327;
}
.btn-circle-icon:not(#jd-regular-btn).search-btn .xmark, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).search-btn .xmark {
  position: absolute;
  transform: translateY(-70%);
  opacity: 0;
  transition: fill 0.3s ease, opacity 0.15s ease, transform 0.4s cubic-bezier(0.33, 1.5, 0.66, 1);
}
.btn-circle-icon:not(#jd-regular-btn).search-btn .magnifying-glass, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).search-btn .magnifying-glass {
  opacity: 1;
  transform: translateY(0);
  transition: fill 0.3s ease, opacity 0.15s ease, transform 0.4s cubic-bezier(0.33, 1.5, 0.66, 1);
}
.btn-circle-icon:not(#jd-regular-btn).search-btn.open .xmark, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).search-btn.open .xmark {
  opacity: 1;
  transform: translateY(0);
}
.btn-circle-icon:not(#jd-regular-btn).search-btn.open .magnifying-glass, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).search-btn.open .magnifying-glass {
  opacity: 0;
  transform: translateY(70%);
}
.btn-circle-icon:not(#jd-regular-btn).cart-btn, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).cart-btn {
  position: relative;
}
.btn-circle-icon:not(#jd-regular-btn).cart-btn .sidecart-count, button.btn-circle-icon:not(#anchor-btn-circle-icon):not(#jd-regular-btn).cart-btn .sidecart-count {
  color: #000000;
  background-color: #FFFFFF;
  position: absolute;
  top: -0.25rem;
  right: -0.6rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 24px;
  display: flex;
  border: 1px solid #F05327;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.btn-right::after, .slick-next::after {
  -webkit-mask-image: url("../../images/icons/arrow-right.svg");
  mask-image: url("../../images/icons/arrow-right.svg");
}

.btn-left::after, .slick-prev::after {
  -webkit-mask-image: url("../../images/icons/arrow-left.svg");
  mask-image: url("../../images/icons/arrow-left.svg");
}

.btn-right:not(#jd-regular-btn),
.btn-left:not(#jd-regular-btn),
.slick-prev:not(#jd-regular-btn),
.slick-next:not(#jd-regular-btn) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
}
.btn-right:not(#jd-regular-btn)::after,
.btn-left:not(#jd-regular-btn)::after,
.slick-prev:not(#jd-regular-btn)::after,
.slick-next:not(#jd-regular-btn)::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background-color: #000000;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-right:not(#jd-regular-btn):not(.slick-disabled):hover, .accordion-trigger:hover .btn-right:not(#jd-regular-btn),
.btn-left:not(#jd-regular-btn):not(.slick-disabled):hover,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn),
.slick-prev:not(#jd-regular-btn):not(.slick-disabled):hover,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn),
.slick-next:not(#jd-regular-btn):not(.slick-disabled):hover,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn) {
  background-color: #000000;
}
.btn-right:not(#jd-regular-btn):not(.slick-disabled):hover::after, .accordion-trigger:hover .btn-right:not(#jd-regular-btn)::after,
.btn-left:not(#jd-regular-btn):not(.slick-disabled):hover::after,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn)::after,
.slick-prev:not(#jd-regular-btn):not(.slick-disabled):hover::after,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn)::after,
.slick-next:not(#jd-regular-btn):not(.slick-disabled):hover::after,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn)::after {
  background-color: #FFFFFF;
}
@media (max-width: 1279.98px) {
  .btn-right:not(#jd-regular-btn),
.btn-left:not(#jd-regular-btn),
.slick-prev:not(#jd-regular-btn),
.slick-next:not(#jd-regular-btn) {
    width: 40px;
    height: 40px;
  }
  .btn-right:not(#jd-regular-btn)::after,
.btn-left:not(#jd-regular-btn)::after,
.slick-prev:not(#jd-regular-btn)::after,
.slick-next:not(#jd-regular-btn)::after {
    width: 16px;
    height: 16px;
  }
}
.btn-right:not(#jd-regular-btn).ver-color1,
.btn-left:not(#jd-regular-btn).ver-color1,
.slick-prev:not(#jd-regular-btn).ver-color1,
.slick-next:not(#jd-regular-btn).ver-color1 {
  border-color: #F05327;
}
.btn-right:not(#jd-regular-btn).ver-color1::after,
.btn-left:not(#jd-regular-btn).ver-color1::after,
.slick-prev:not(#jd-regular-btn).ver-color1::after,
.slick-next:not(#jd-regular-btn).ver-color1::after {
  background-color: #F05327;
}
.btn-right:not(#jd-regular-btn).ver-color1:hover, .accordion-trigger:hover .btn-right:not(#jd-regular-btn).ver-color1,
.btn-left:not(#jd-regular-btn).ver-color1:hover,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn).ver-color1,
.slick-prev:not(#jd-regular-btn).ver-color1:hover,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn).ver-color1,
.slick-next:not(#jd-regular-btn).ver-color1:hover,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn).ver-color1 {
  background-color: #F05327;
}
.btn-right:not(#jd-regular-btn).ver-color1:hover::after, .accordion-trigger:hover .btn-right:not(#jd-regular-btn).ver-color1::after,
.btn-left:not(#jd-regular-btn).ver-color1:hover::after,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn).ver-color1::after,
.slick-prev:not(#jd-regular-btn).ver-color1:hover::after,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn).ver-color1::after,
.slick-next:not(#jd-regular-btn).ver-color1:hover::after,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn).ver-color1::after {
  background-color: #000000;
}
.btn-right:not(#jd-regular-btn).ver-color1:focus-visible, .accordion-trigger:focus-visible .btn-right:not(#jd-regular-btn).ver-color1,
.btn-left:not(#jd-regular-btn).ver-color1:focus-visible,
.accordion-trigger:focus-visible .btn-left:not(#jd-regular-btn).ver-color1,
.slick-prev:not(#jd-regular-btn).ver-color1:focus-visible,
.accordion-trigger:focus-visible .slick-prev:not(#jd-regular-btn).ver-color1,
.slick-next:not(#jd-regular-btn).ver-color1:focus-visible,
.accordion-trigger:focus-visible .slick-next:not(#jd-regular-btn).ver-color1 {
  background-color: #F05327;
}
.btn-right:not(#jd-regular-btn).ver-color1:focus-visible::after, .accordion-trigger:focus-visible .btn-right:not(#jd-regular-btn).ver-color1::after,
.btn-left:not(#jd-regular-btn).ver-color1:focus-visible::after,
.accordion-trigger:focus-visible .btn-left:not(#jd-regular-btn).ver-color1::after,
.slick-prev:not(#jd-regular-btn).ver-color1:focus-visible::after,
.accordion-trigger:focus-visible .slick-prev:not(#jd-regular-btn).ver-color1::after,
.slick-next:not(#jd-regular-btn).ver-color1:focus-visible::after,
.accordion-trigger:focus-visible .slick-next:not(#jd-regular-btn).ver-color1::after {
  background-color: #000000;
}
.btn-right:not(#jd-regular-btn).ver-color-white,
.btn-left:not(#jd-regular-btn).ver-color-white,
.slick-prev:not(#jd-regular-btn).ver-color-white,
.slick-next:not(#jd-regular-btn).ver-color-white {
  border-color: #FFFFFF;
}
.btn-right:not(#jd-regular-btn).ver-color-white::after,
.btn-left:not(#jd-regular-btn).ver-color-white::after,
.slick-prev:not(#jd-regular-btn).ver-color-white::after,
.slick-next:not(#jd-regular-btn).ver-color-white::after {
  background-color: #FFFFFF;
}
.btn-right:not(#jd-regular-btn).ver-color-white:hover, .accordion-trigger:hover .btn-right:not(#jd-regular-btn).ver-color-white,
.btn-left:not(#jd-regular-btn).ver-color-white:hover,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn).ver-color-white,
.slick-prev:not(#jd-regular-btn).ver-color-white:hover,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn).ver-color-white,
.slick-next:not(#jd-regular-btn).ver-color-white:hover,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn).ver-color-white {
  background-color: #FFFFFF !important;
}
.btn-right:not(#jd-regular-btn).ver-color-white:hover::after, .accordion-trigger:hover .btn-right:not(#jd-regular-btn).ver-color-white::after,
.btn-left:not(#jd-regular-btn).ver-color-white:hover::after,
.accordion-trigger:hover .btn-left:not(#jd-regular-btn).ver-color-white::after,
.slick-prev:not(#jd-regular-btn).ver-color-white:hover::after,
.accordion-trigger:hover .slick-prev:not(#jd-regular-btn).ver-color-white::after,
.slick-next:not(#jd-regular-btn).ver-color-white:hover::after,
.accordion-trigger:hover .slick-next:not(#jd-regular-btn).ver-color-white::after {
  background-color: #000000 !important;
}
.btn-right:not(#jd-regular-btn).ver-color-white:focus-visible, .accordion-trigger:focus-visible .btn-right:not(#jd-regular-btn).ver-color-white,
.btn-left:not(#jd-regular-btn).ver-color-white:focus-visible,
.accordion-trigger:focus-visible .btn-left:not(#jd-regular-btn).ver-color-white,
.slick-prev:not(#jd-regular-btn).ver-color-white:focus-visible,
.accordion-trigger:focus-visible .slick-prev:not(#jd-regular-btn).ver-color-white,
.slick-next:not(#jd-regular-btn).ver-color-white:focus-visible,
.accordion-trigger:focus-visible .slick-next:not(#jd-regular-btn).ver-color-white {
  background-color: #FFFFFF !important;
}
.btn-right:not(#jd-regular-btn).ver-color-white:focus-visible::after, .accordion-trigger:focus-visible .btn-right:not(#jd-regular-btn).ver-color-white::after,
.btn-left:not(#jd-regular-btn).ver-color-white:focus-visible::after,
.accordion-trigger:focus-visible .btn-left:not(#jd-regular-btn).ver-color-white::after,
.slick-prev:not(#jd-regular-btn).ver-color-white:focus-visible::after,
.accordion-trigger:focus-visible .slick-prev:not(#jd-regular-btn).ver-color-white::after,
.slick-next:not(#jd-regular-btn).ver-color-white:focus-visible::after,
.accordion-trigger:focus-visible .slick-next:not(#jd-regular-btn).ver-color-white::after {
  background-color: #000000 !important;
}

.stretched-btn {
  width: max-content;
}
.stretched-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.btn-small {
  min-height: 1.6666666667rem;
  font-size: 0.75rem;
  padding: 0.3333333333rem 1rem;
  border-radius: 16px;
}
@media (max-width: 1279.98px) {
  .btn-small {
    min-height: 26px !important;
    min-width: auto !important;
    font-size: 14px !important;
    padding: 6px 12px !important;
    border-radius: 16px !important;
  }
}

.btn-large {
  min-height: 3.75rem;
  font-size: 1.6875rem;
  padding: 0.75rem 2.25rem;
  border-radius: 36px;
}

/*Responsive Menu*/
/****************************/
.responsive-menu-btn,
.close_overlay {
  text-indent: -999em;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 0 !important;
}
.responsive-menu-btn .hamburger,
.close_overlay .hamburger {
  position: absolute;
}
.responsive-menu-btn .hamburger:before, .responsive-menu-btn .hamburger:after,
.close_overlay .hamburger:before,
.close_overlay .hamburger:after {
  content: "";
  position: absolute;
}
.responsive-menu-btn .hamburger:before, .responsive-menu-btn .hamburger:after, .responsive-menu-btn .hamburger,
.close_overlay .hamburger:before,
.close_overlay .hamburger:after,
.close_overlay .hamburger {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #000000;
  border-radius: 8px;
}
.responsive-menu-btn .hamburger:before,
.close_overlay .hamburger:before {
  top: -6px;
}
.responsive-menu-btn .hamburger:after,
.close_overlay .hamburger:after {
  bottom: -6px;
}
.responsive-menu-btn:hover span:before, .responsive-menu-btn:hover span:after, .responsive-menu-btn:hover span,
.close_overlay:hover span:before,
.close_overlay:hover span:after,
.close_overlay:hover span {
  background-color: #F05327;
}
.responsive-menu-btn:focus-visible span:before, .responsive-menu-btn:focus-visible span:after, .responsive-menu-btn:focus-visible span,
.close_overlay:focus-visible span:before,
.close_overlay:focus-visible span:after,
.close_overlay:focus-visible span {
  background-color: #F05327;
}

/* 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;
}
body .responsive-menu-btn span:before,
body .close_overlay span:before {
  transition: all 75ms ease-in-out, top 75ms ease 0.12s, opacity 75ms ease;
}
body .responsive-menu-btn span:after,
body .close_overlay span:after {
  transition: all 75ms ease-in-out, bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
body .responsive-menu-btn.open span,
body .close_overlay.open span {
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate(-50%, -50%) rotate(45deg);
}
body .responsive-menu-btn.open span:before,
body .close_overlay.open span:before {
  top: 0;
  transition: all 75ms ease-in-out, top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}
body .responsive-menu-btn.open span:after,
body .close_overlay.open span:after {
  bottom: 0;
  transition: all 75ms ease-in-out, bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transform: rotate(-90deg);
}

.cfw-remove-item-button:focus-visible {
  opacity: 1 !important;
}

.tribe-tickets__tickets-item-quantity-add,
.tribe-tickets__tickets-item-quantity-remove {
  width: 24px !important;
}

/* =Form Styles
========================================================================================*/
/*** Form Inputs ***/
.fluentform.ff-default form .ff-el-form-control,
input[type=text]:not(.pcr-result),
input[type=url],
input[type=date],
input[type=number]:not(.numInput),
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
textarea,
select:not(.flatpickr-monthDropdown-months),
.woocommerce form .form-row .input-text:not(#woocommerce-default),
.woocommerce form .form-row select:not(#woocommerce-default),
.select2-search__field {
  font-family: "Lato", sans-serif;
  color: #000000;
  background: #FFFFFF;
  padding: 1rem 1.5rem;
  min-height: 2.5rem;
  font-size: 1.125rem;
  border-radius: 8px;
  line-height: 1.4;
  width: 100%;
  /*Custom*/
  border: 1px solid #000000;
  margin-bottom: 0 !important;
}
.fluentform.ff-default form .ff-el-form-control:focus,
input[type=text]:not(.pcr-result):focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=number]:not(.numInput):focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
textarea:focus,
select:not(.flatpickr-monthDropdown-months):focus,
.woocommerce form .form-row .input-text:not(#woocommerce-default):focus,
.woocommerce form .form-row select:not(#woocommerce-default):focus,
.select2-search__field:focus {
  border-color: #F05327;
}

input[type=file], input[type=range] {
  color: #F05327;
  background: #FFFFFF;
  border-radius: 16px;
}

input[type=date], input[type=file] {
  width: auto;
  padding: 0.5rem;
}
@media (max-width: 459.98px) {
  input[type=date], input[type=file] {
    width: 100%;
  }
}

textarea {
  line-height: 1.4;
  overflow: auto;
  min-height: 11.25rem;
  resize: vertical;
  padding: 0.5rem 1.5rem;
}

input[type=radio], input[type=checkbox], input[type=range], progress {
  accent-color: #F05327;
}

select option:checked, select option:hover {
  background: #F05327;
  color: #FFFFFF;
}

/* body select.select_box */
body select:not(.flatpickr-monthDropdown-months):not(#fluent-form-default-select),
.select2-selection:not(#fluent-form-default-select) {
  background-image: url("../../images/icons/chevron-down.svg");
  background-position: right 1.5rem center;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-size: 18px;
  padding-right: 3rem;
}

select option {
  padding: 0 0.25rem;
}

/*** PlaceHolders ***/
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: rgba(0, 0, 0, 0.5);
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(0, 0, 0, 0.5);
}

.required-field, .required {
  color: #DC3545;
}

label {
  display: inline-block;
  margin-bottom: 1rem;
}

@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);
  }
}
/* Fluent Form overrides */
.fluentform .ff-el-group:not(.ff_submit_btn_wrapper) {
  margin-bottom: 1rem !important;
}

.fluentform .ff-el-form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.7) !important;
}

.fluentform .ff-el-form-control::placeholder {
  color: rgba(0, 0, 0, 0.7) !important;
}

.fluentform select {
  color: rgba(0, 0, 0, 0.7) !important;
}

.ff-el-is-error * {
  border-color: #DC3545 !important;
}

.fluentform .ff-el-input--label.ff-el-is-required.asterisk-right label:after {
  color: inherit !important;
}

.fluentform .text-danger {
  color: #DC3545 !important;
  font-size: 1rem !important;
  font-style: italic;
}

.ff_submit_btn_wrapper {
  margin: 1rem 0 0 !important;
}

.ff-btn-submit {
  position: relative;
  padding: 0.25rem 1.125rem 0.25rem 1.5rem !important;
  border-color: transparent !important;
}
.ff-btn-submit::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("../../images/icons/arrow-right.svg") center center no-repeat;
  background-size: 1rem;
  padding: 1rem;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.33, 1.8, 0.66, 1), background-color 0.3s ease;
}
.ff-btn-submit:not(.ff-working):hover::after {
  transform: translateX(0.625rem);
  background-color: rgba(0, 0, 0, 0.2);
}
.ff-btn-submit.ff-working::after {
  padding: 0;
  border-radius: 16px;
}

.ff-default .ff_btn_style:focus, .ff-default .ff_btn_style:hover {
  opacity: 1 !important;
}

.btn-icon__icon {
  z-index: 1;
  display: inline-block;
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  padding: 1rem;
  background-color: transparent;
  transition: transform 0.3s cubic-bezier(0.33, 1.8, 0.66, 1), background-color 0.3s ease;
}
.btn-icon__icon svg {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
}
@media (max-width: 1279.98px) {
  .btn-icon__icon {
    width: 16px;
    height: 16px;
    padding: 16px;
  }
  .btn-icon__icon svg {
    top: 8px;
    left: 8px;
    width: 16px;
    height: 16px;
  }
}

.frm-fluent-form .choices[data-type*=select-multiple] .choices__inner {
  padding: 0.5rem 1.5rem !important;
  border-radius: 8px !important;
}
.frm-fluent-form .choices[data-type*=select-multiple] .choices__inner .choices__item {
  margin-bottom: 0.5rem !important;
}

.frm-fluent-form .choices[data-type*=select-multiple].is-open .choices__inner {
  border-radius: 8px 8px 0 0 !important;
}

.frm-fluent-form .choices[data-type*=select-multiple]::after {
  display: none !important;
}

.frm-fluent-form .choices__list--dropdown {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.fluentform .ff-btn.ff-working::after {
  background: #000 !important;
}

.fluentform .ff-btn.ff-working {
  pointer-events: auto !important;
  cursor: wait !important;
}

.fluentform .ff-el-image-holder .ff-el-form-check-label {
  padding-left: 0 !important;
}

.fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder span {
  margin-left: 0 !important;
}

.ff-el-image-holder {
  text-align: center;
}
.ff-el-image-holder .ff-el-form-check-label {
  width: 100%;
}

.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4) .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff_item_selected label > span {
  background-color: #000000 !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4) .fluentform .ff-el-group.ff_list_buttons .ff-el-form-check.ff-el-image-holder.ff_item_selected {
  border-color: #000000 !important;
}

.ff_upload_btn:not(.ff-dropzone .ff_upload_btn) {
  padding: 0.4375rem 1.5rem !important;
  color: #000000 !important;
  transition: all 0.3s ease !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center;
}
.ff_upload_btn:not(.ff-dropzone .ff_upload_btn)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("../../images/icons/arrow-up-from-bracket.svg");
  mask-image: url("../../images/icons/arrow-up-from-bracket.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: 20px;
  mask-size: 20px;
  margin-left: 8px;
  background-color: #000000;
  transition: all 0.3s ease;
}

.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn) {
  background-color: #EF9D4F !important;
  border: 1px solid #EF9D4F !important;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):hover {
  background-color: transparent !important;
  border-color: #F05327 !important;
  color: #F05327 !important;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):hover::after {
  background-color: #F05327 !important;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):focus-visible {
  background-color: transparent !important;
  border-color: #F05327 !important;
  color: #F05327 !important;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):focus-visible::after {
  background-color: #F05327 !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn) {
  background-color: #FFFFFF !important;
  border: 1px solid #FFFFFF !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):hover {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #FFFFFF !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):hover::after {
  background-color: #FFFFFF !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):focus-visible {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #FFFFFF !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .ff_upload_btn:not(.ff-dropzone .ff_upload_btn):focus-visible::after {
  background-color: #FFFFFF !important;
}

.fluentform .ff-dropzone .ff_file_upload_holder {
  display: block !important;
}
.fluentform .ff-dropzone .ff_file_upload_holder .ff-btn {
  max-width: 500px !important;
}

.fluentform .ff-el-progress-bar {
  background-color: #206E95 !important;
}

.form-block.bg-color6 .fluentform .ff-el-progress-bar {
  background-color: #F05327 !important;
}

.iti__selected-country-primary {
  padding-left: 18px !important;
}

#wppb-form-style-3-wrapper .wppb-send-credentials-checkbox label, #wppb-form-style-3-wrapper .wppb-campaign-monitor-subscribe label, #wppb-form-style-3-wrapper .wppb-mailchimp-subscribe label, #wppb-form-style-3-wrapper .wppb-mailpoet-subscribe label, #wppb-form-style-3-wrapper .wppb-shipping-different-address label, #wppb-form-style-3-wrapper .pms-subscription-plan-auto-renew label, #wppb-form-style-3-wrapper .wppb-gdpr-checkbox label, #wppb-form-style-3-wrapper .wppb-checkbox-terms-and-conditions label, #wppb-form-style-3-wrapper .wppb-create-new-site label, #wppb-form-style-3-wrapper .login-remember label, #wppb-form-style-3-wrapper #pms-paygates-wrapper label, #wppb-form-style-3-wrapper .wppb-subscription-plans .pms-subscription-plan label, #wppb-form-style-3-wrapper .wppb-radios label, #wppb-form-style-3-wrapper .wppb-checkboxes label, #wppb-form-style-3-wrapper .wppb-subscription-plans .description, #wppb-form-style-3-wrapper .wppb-subscription-plans .pms-subscription-plan-description, #wppb-form-style-3-wrapper .pms-field-description, #wppb-form-style-3-wrapper .wppb-description-delimiter {
  color: #000000;
}

.tribe-events a:not(:hover) {
  text-decoration: none !important;
}

.tribe-common .tribe-common-c-btn.btn-icon, .tribe-common a.tribe-common-c-btn.btn-icon {
  padding: 0.25rem 1rem 0.25rem 1.5rem !important;
}

.tribe-events-c-top-bar__nav-link {
  border: 1px solid black !important;
}

@media (min-width: 768px) {
  .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__today-button {
    display: inline-flex !important;
  }
}

.tribe-events-c-view-selector__button {
  font-size: 1.125rem !important;
}
@media (max-width: 1023.98px) {
  .tribe-events-c-view-selector__button {
    font-size: 18px !important;
  }
}
.tribe-events-c-view-selector__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: inline-block;
  margin-left: 0.5rem;
  background: url("../../images/icons/chevron-down.svg") no-repeat center center;
  background-size: 14px;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}
@media (max-width: 767.98px) {
  .tribe-events-c-view-selector__button::after {
    display: none;
  }
}
.tribe-events-c-view-selector__button--open::after, .tribe-events-c-view-selector__button--active::after {
  transform: none;
}

.tribe-events-c-view-selector__content {
  background-color: #FFFFFF !important;
  border-radius: 16px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.3);
}

.tribe-events-calendar-list__month-separator::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #F05327;
  margin-left: 1rem;
}

.tribe-events .tribe-events-c-small-cta > :first-child {
  padding: 0.25rem 1rem 0.25rem 1.5rem !important;
}

.datepicker-dropdown th.prev, .datepicker-dropdown th.next {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.datepicker-dropdown th.prev svg, .datepicker-dropdown th.next svg {
  width: 1rem;
  height: 1rem;
}
.datepicker-dropdown th.next {
  margin-left: 0.25rem !important;
}
.datepicker-dropdown .day.active {
  background-image: none !important;
  background-color: #206E95 !important;
}

.tribe-events-virtual-hybrid-event,
.tribe-events-virtual-virtual-event {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.tribe-events-virtual-hybrid-event .tribe-events-virtual-virtual-event__icon,
.tribe-events-virtual-virtual-event .tribe-events-virtual-virtual-event__icon {
  margin-right: 0 !important;
}

.tribe-events-calendar-series-archive__link {
  font-size: 14px;
  color: #000000 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.tribe-events-calendar-series-archive__link svg {
  stroke: #000000 !important;
}

.tribe-events-status-label__text--canceled {
  color: #DC3545 !important;
  text-transform: uppercase;
  border: 2px solid #DC3545 !important;
  border-radius: 8px;
  padding: 0 4px !important;
}
.tribe-events-calendar-list__event-title .tribe-events-status-label__text {
  margin-right: 0.5rem;
}

/* =Gallery
========================================================================================*/
.popup-gallery a {
  display: block;
  width: 100%;
  height: 100%;
}

.slick-lightbox-slick .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}
.slick-lightbox-slick .slick-arrow .slick-next-icon, .slick-lightbox-slick .slick-arrow .slick-prev-icon {
  display: none !important;
}
@media (max-width: 767.98px) {
  .slick-lightbox-slick .slick-arrow {
    display: none !important;
  }
}
.slick-lightbox-slick:hover {
  background-color: transparent !important;
}

.slick-lightbox-slick-img {
  border-radius: 8px;
}

/*Close button*/
.slick-lightbox-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0 !important;
  background-color: transparent !important;
}
.slick-lightbox-close::before {
  content: "";
  -webkit-mask-image: url("../../images/icons/xmark.svg");
  mask-image: url("../../images/icons/xmark.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center center;
  mask-position: center center;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #000;
}
@media (max-width: 1279.98px) {
  .slick-lightbox-close {
    width: 40px;
    height: 40px;
  }
  .slick-lightbox-close::before {
    width: 20px;
    height: 20px;
  }
}
.slick-lightbox-close:hover {
  background-color: #000 !important;
}
.slick-lightbox-close:hover::before, .slick-lightbox-close:hover::after {
  background-color: #FFF;
}

.slick-lightbox.bg-color6 .slick-lightbox-slick-caption {
  color: #FFFFFF;
}
.slick-lightbox.bg-color6 .slick-prev, .slick-lightbox.bg-color6 .slick-next {
  border-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-prev::after, .slick-lightbox.bg-color6 .slick-next::after {
  background-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-prev:hover, .slick-lightbox.bg-color6 .slick-next:hover {
  background-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-prev:hover::after, .slick-lightbox.bg-color6 .slick-next:hover::after {
  background-color: #000000 !important;
}
.slick-lightbox.bg-color6 .slick-lightbox-close {
  border-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-lightbox-close::before {
  background-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-lightbox-close:hover {
  background-color: #FFFFFF !important;
}
.slick-lightbox.bg-color6 .slick-lightbox-close:hover::before {
  background-color: #000000 !important;
}

/* =Page Overlay
========================================================================================*/
.page-overlay {
  opacity: 0;
  display: none;
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 4;
  background: #FBF2E9;
  transform: translateY(-100%);
  transition: transform 0.7s ease, opacity 0.7s ease;
}
.page-overlay.team-overlay {
  transform: unset;
}
.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;
}
.page-overlay .page-overlay-content-main {
  width: 100%;
}
.page-overlay.mobile-menu-overlay {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  height: 100vh;
  overflow: auto;
  scrollbar-gutter: stable;
}
.page-overlay.mobile-menu-overlay::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.page-overlay.mobile-menu-overlay::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid #F05327;
  border-radius: 16px;
}
.page-overlay.mobile-menu-overlay::-webkit-scrollbar-thumb {
  background-color: #F05327;
  border-radius: 16px;
}
.page-overlay.mobile-menu-overlay::-webkit-scrollbar-thumb:hover {
  background-color: rgba(240, 83, 39, 0.6);
}
.page-overlay.mobile-menu-overlay .page-overlay-content {
  position: static;
}

.page-overlay.actived {
  visibility: visible;
  display: block;
}

.page-overlay.displayed {
  opacity: 1;
  transform: translateY(0);
}
.page-overlay-content.displayed {
  opacity: 1;
  margin-top: 0;
}

.close_overlay {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.close_overlay span:before, .close_overlay span:after, .close_overlay span {
  background-color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .page-overlay .page-overlay-content {
    width: 100%;
  }

  .responsive-menu .menu-item-has-children > span {
    width: 24px !important;
    height: 24px !important;
  }

  .responsive-menu, .responsive-menu-buttons {
    max-width: 95% !important;
  }
}
.close-mobile-menu {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  opacity: 0;
}
.close-mobile-menu:focus-visible {
  opacity: 1;
}

/* =Slider
========================================================================================*/
/* Dots */
/* Dots Horizontal */
.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem 0 0 !important;
  margin: 0 0 0.5rem 1rem !important;
  list-style: none !important;
  width: 100%;
  text-align: center;
  bottom: 0;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slick-dots li:not(:last-child) {
  margin-right: 1.5rem;
}
.slick-dots li button {
  font-size: 0 !important;
  text-indent: -999em !important;
  line-height: 0 !important;
  min-height: 0 !important;
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  cursor: pointer !important;
  background-color: transparent;
  border: 1px solid #F05327 !important;
  border-radius: 24px !important;
  transition: all 0.3s ease;
}
.slick-dots li:first-child {
  margin-left: 0;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li.slick-active button {
  background-color: #F05327 !important;
  width: 48px !important;
}
@media (max-width: 767.98px) {
  .slick-dots {
    margin: 0 0 1rem !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: 1rem 0;
}

.slick-disabled {
  border-style: dashed !important;
  cursor: not-allowed !important;
}

/* =Table
========================================================================================*/
.entry table, .content-container table, .hentry table {
  max-width: 100%;
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #000000;
  width: 100%;
  margin-bottom: 1.5rem;
}
.entry table th, .content-container table th, .hentry table th {
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  background: #EF9D4F;
  padding: 0.5rem 1.5rem;
  font-size: 1.125rem;
  color: #000000;
}
.entry table td, .content-container table td, .hentry table td {
  padding: 0.5rem 1.5rem;
  line-height: 1.4;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
}
.entry table tr:hover td, .content-container table tr:hover td, .hentry table tr:hover td {
  background: #FBF2E9;
}
.entry table tr.selected td, .content-container table tr.selected td, .hentry table tr.selected td {
  background: #FBF2E9;
}
.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: #D3A788;
    display: block;
    position: relative;
    padding-left: 50%;
    border-right: 0;
    font-size: 14px;
  }

  table.res-table td:before {
    content: attr(data-th) ": ";
    font-weight: 400;
    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: #D3A788;
  }
}
/*=Typography
========================================================================================*/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Nantes", serif;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  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: 3.125rem;
}

h2, .h2 {
  font-size: 2.5rem;
}

h3, .h3 {
  font-size: 2.25rem;
}

h4, .h4 {
  font-size: 1.75rem;
}

h5, .h5 {
  font-size: 1.5rem;
}

h6, .h6 {
  font-size: 1.25rem;
}

.lead {
  font-family: "Lato", sans-serif;
  font-size: 1.2375rem;
  font-weight: 700;
  color: #F2B5A5;
}

small, .small {
  font-size: 75%;
}

hr {
  height: 1px;
  border-radius: 8px;
  border: 0;
  margin: 1.5rem 0;
  background-color: #000000;
}

blockquote {
  background: #FBF2E9;
  padding: 2.5rem;
  quotes: "“" "”";
  font-style: italic;
  font-size: 1.4625rem;
  color: #000000;
  border-radius: 16px;
}
.block-wrapper.bg-color-alt blockquote {
  background: #FFFFFF;
}
blockquote:before {
  color: #F05327;
  content: open-quote;
  font-family: "Nantes", sans-serif;
  font-size: 6.25rem;
  line-height: 0;
  vertical-align: -2.5rem;
  margin-right: 1rem;
}
blockquote p {
  display: inline;
  color: inherit;
}

p, blockquote {
  margin-bottom: 1.5rem;
}
p:last-child, blockquote:last-child {
  margin-bottom: 0;
}

p, ul, ol {
  line-height: 1.4;
}

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):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) {
  margin-bottom: 1.5rem;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview),
.hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) {
  margin-bottom: 0;
}

.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 1.5rem;
  list-style-type: disc;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li {
  padding-left: 0.75rem;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ul, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ul, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ul {
  list-style-type: circle;
  margin: 0;
}
.entry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child, .content-container ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child, .hentry ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child {
  margin-bottom: 0;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) {
  padding-left: 1.5rem;
  margin: 0 0 1.5rem 1.5rem;
  list-style-type: decimal;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li {
  padding-left: 0.75rem;
}
.entry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ol, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ol, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) 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):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ol li ol, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ol li ol, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) 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):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child, .content-container ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child, .hentry ol:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview):last-child {
  margin-bottom: 0;
}

.bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview), .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) {
  list-style-type: disc;
}
.bg-color1 ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ul, .font-color-white-strict ul:not(.unstyled):not(.menu):not(.sub-menu):not(.tags):not(.product-categories):not(.children):not(.page-numbers):not(.products):not(.wc-tabs):not(.woocommerce-shipping-methods):not(.woocommerce-error):not(.woocommerce-order-overview) li ul {
  list-style-type: circle;
}

.font-weight-light {
  font-weight: 300;
}

.font-weight-normal {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 400;
}

.font-weight-bold {
  font-weight: 700;
}

/*** 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;
}

/*
========================================================================================
Block Name: Accordion Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.accordion-block .btn-right {
  transition: all 0.3s ease;
}
.accordion-block .accordion-data {
  display: none;
}
.accordion-block .accordion-row {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000;
}
.accordion-block .accordion-row .accordion-data {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 3.5rem;
}
@media (max-width: 1279.98px) {
  .accordion-block .accordion-row .accordion-data {
    padding-left: 56px;
  }
}
.accordion-block .accordion-row:last-child {
  margin-bottom: 0;
}
.accordion-block .accordion-row.open .btn-right::after {
  transform: rotate(90deg);
}
.accordion-block.bg-color6 .accordion-row {
  border-color: #FFF !important;
}
.accordion-block .accordion-trigger,
.accordion-block .tab-container .tabMobiletrigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.accordion-block .accordion-trigger .btn-right,
.accordion-block .tab-container .tabMobiletrigger .btn-right {
  margin-right: 1rem !important;
}
@media (max-width: 1279.98px) {
  .accordion-block .accordion-trigger .btn-right,
.accordion-block .tab-container .tabMobiletrigger .btn-right {
    margin-right: 16px !important;
  }
}

/*
========================================================================================
* Block Name: Button Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.button-block a, .button-block input, .button-block button, .button-block .btn {
  margin-right: 1rem;
}
.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 .wrap, .multi-line div[class^=wrap], .multi-line div[class*=" wrap"], .multi-line .multi-line-content {
  margin-bottom: -1rem;
}
.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: 1rem;
}

/*
========================================================================================
* Block Name: Carousel Block
* Template generated by generate-block
========================================================================================
*/
.carousel-block {
  overflow: hidden;
}
.carousel-block * {
  visibility: visible;
}
.carousel-block__slider-buttons {
  opacity: 0;
  margin-left: auto;
  transition: opacity 0.3s ease;
}
.carousel-block__slider-buttons.slider-on {
  opacity: 1;
}
.carousel-block .cols-grid .list-item:nth-child(n+5) {
  display: none;
}
@media (max-width: 1279.98px) {
  .carousel-block .cols-grid .list-item:nth-child(n+4) {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .carousel-block .cols-grid .list-item:nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .carousel-block .cols-grid .list-item:nth-child(n+2) {
    display: none;
  }
}
.carousel-block .slick-track {
  display: flex;
  min-width: 100%;
}
.carousel-block .slick-list {
  overflow: visible;
  margin-left: -2rem;
}
.carousel-block .slick-slide {
  margin-left: 2rem;
  height: auto;
}
.carousel-block .slick-slide > div {
  height: 100%;
}
.carousel-block .slick-slide > div .list-item {
  height: 100%;
}
@media (max-width: 1599.98px) {
  .carousel-block .slick-list {
    margin-left: -1rem;
  }
  .carousel-block .slick-slide {
    margin: 0 1rem;
  }
}
.carousel-block .list-item-body:has(.stretched-btn:hover) .grow img {
  transform: scale(1.02);
}
.carousel-block .list-item-body:has(.stretched-btn:focus-visible) .grow img {
  transform: scale(1.02);
}

/*
========================================================================================
* Block Name: Child Pages Block
* Template generated by generate-block
========================================================================================
*/
.child-pages-block.bg-color6 .list-item :focus-visible {
  outline-color: #000000 !important;
}

/*
========================================================================================
* Block Name: Column Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.column-block.bg-color-none blockquote, .column-block.bg-color-white blockquote {
  background-color: #FFFFFF;
}
.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;
}

.same-height .grid-item .grid-item-content-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.same-height .grid-item .grid-item-content-wrapper .grid-item-content {
  height: 100%;
}
.same-height .grid-item .grid-item-content-wrapper .grid-item-content.bg-color1 a {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/*
========================================================================================
* Block Name: Content Block
* Template generated by generate-block
========================================================================================
*/
.content-block.bg-color5 blockquote {
  background-color: #FFFFFF;
}
.content-block.bg-color6 td {
  color: #000000 !important;
}
.content-block:not(.bg-color-none, .bg-color-white, .bg-color5) .btn:not(.ver-color3) {
  border-color: transparent !important;
}
.content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .btn.ver-color3 {
  background-color: #FFFFFF !important;
  border-color: transparent !important;
}
.content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .btn.ver-color3:hover {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
.content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .btn.ver-color3:focus-visible {
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
.content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .entry table th, .content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .content-container table th, .content-block:not(.bg-color-none, .bg-color-white, .bg-color5, .bg-color6) .hentry table th {
  background-color: #206E95 !important;
  color: #FFFFFF !important;
}

/*
========================================================================================
* Block Name: Divider Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.divider-block {
  padding: 0;
}
.divider-block:not(.block-p) {
  margin-top: 0 !important;
}
.divider-block + .block-wrapper:not(.block-p) {
  padding: 0;
  margin-top: 6rem !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: 6rem;
}
.divider-block:not(.block-p) + .block-wrapper.block-p {
  margin-top: 0 !important;
}
.divider-block.block-p + .block-wrapper.block-p {
  padding-top: 6rem !important;
}
.divider-block hr {
  margin: 0;
}
/*
========================================================================================
* Block Name: Embed Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.embed-block .embed-wrap > * {
  width: 100%;
}

/*
========================================================================================
* Block Name: Featured Events Block
* Template generated by generate-block
========================================================================================
*/
.featured-events-block__image-container {
  width: max-content;
  height: max-content;
}
.featured-events-block__event {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #000000;
}
.featured-events-block__event:hover .featured-events-block__event-title {
  text-decoration: underline;
}
.featured-events-block > .bg-color6 .featured-events-block__event {
  border-color: #FFFFFF !important;
}
.featured-events-block > .bg-color6 .btn-expand__inner-background {
  border-color: #FFFFFF !important;
}
.featured-events-block__event-details span:not(:first-child)::before {
  content: "|";
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .featured-events-block .btn-expand {
    padding: 8px;
  }
  .featured-events-block .btn-expand svg {
    margin-left: 0;
  }
  .featured-events-block .btn-expand__label {
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
    border: 0;
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    overflow-wrap: normal !important;
    padding: 0;
    position: absolute !important;
    width: 1px;
  }
}

/*
========================================================================================
* Block Name: Form Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.form-block.block-p form {
  padding: 0;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) button {
  background-color: #EF9D4F !important;
}
.form-block:not(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) button:not(.ff-working):hover::after {
  background-color: rgba(255, 255, 255, 0.8) !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) *:not(.ff-el-form-check, :focus, :focus-visible) {
  border-color: transparent !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .text-danger {
  color: #000000 !important;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4, .bg-color6) .fluentform .ff-el-is-error .ff-el-form-control {
  outline: 2px solid #000000;
}
.form-block:is(.bg-color1, .bg-color2, .bg-color3, .bg-color4) .text-danger {
  color: #000000 !important;
}
.form-block:is(.bg-color6) .text-danger {
  color: #FFFFFF !important;
}

/*
========================================================================================
* Block Name: Gallery Block
* Template generated by generate-block 
========================================================================================
*/
/* Your CSS styles here */
/*
========================================================================================
* Block Name: Highlight Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.highlight-block figure {
  width: 100%;
}
@media (max-width: 767.98px) {
  .highlight-block figure {
    margin-bottom: 0.9375rem;
    text-align: center;
  }
}
.highlight-block figure img {
  width: 100%;
}
@media (min-width: 768px) {
  .highlight-block .cols-grid {
    align-items: center;
  }
}
.highlight-block .flex-row-reverse .image-container figure {
  display: flex;
  justify-content: flex-end;
}

/*
========================================================================================
* Block Name: Introduction Block
* Template generated by generate-block
========================================================================================
*/
/*
========================================================================================
* Block Name: Logo Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.logo-block .logos-container {
  --base-height: 7rem;
  --scale-factor-horizontal: 0.1;
  --scale-factor-vertical: 0.6;
  --logo-min-size: 0.5;
  --logo-max-size: 1.25;
  gap: 4.5rem;
  row-gap: calc(4.5rem * 0.5);
}
@media (max-width: 767.98px) {
  .logo-block .logos-container {
    gap: 2rem;
    row-gap: 2rem;
  }
}
.logo-block .logos-container.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-items: center;
  align-items: center;
}
@media (max-width: 1599.98px) {
  .logo-block .logos-container.logos-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1279.98px) {
  .logo-block .logos-container.logos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767.98px) {
  .logo-block .logos-container.logos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.logo-block .logo-item {
  --base-ratio: calc(var(--width) / var(--height));
  --factor-horizontal: min(var(--scale-factor-horizontal) * -1 * var(--base-ratio) + var(--scale-factor-horizontal) + 1, 1);
  --factor-vertical: max(var(--scale-factor-vertical) * -1 * var(--base-ratio) + var(--scale-factor-vertical) + 1, 1);
  aspect-ratio: var(--base-ratio);
  height: clamp( var(--base-height) * var(--logo-min-size), var(--base-height) * var(--factor-horizontal) * var(--factor-vertical), var(--base-height) * var(--logo-max-size) );
  min-width: 0;
  max-width: 100%;
}
.logo-block .logo-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.logo-block .logo-item .content-container {
  text-align: center;
}
.logo-block a.logo-item:hover img {
  transform: scale(1.02);
}

/*
========================================================================================
* Block Name: Resources Block
* Template generated by generate-block
========================================================================================
*/
.resources-block__resource {
  text-decoration: none !important;
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}
.resources-block__resource:not(:first-child) {
  padding-top: 1rem;
}
.resources-block__resource:hover h3 {
  text-decoration: underline !important;
}
.resources-block__wrap.bg-color6 .resources-block__resource {
  border-color: #FFFFFF !important;
}

/*
========================================================================================
* Block Name: Tab Block
* Template generated by generate-block
========================================================================================
*/
.tab-block .tabMobiletrigger {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 1rem;
}
.tab-block .tabMobiletrigger .btn-right {
  margin-right: 16px !important;
}
.tab-block .tabMobiletrigger::after {
  transition: transform 0.3s ease;
}
.tab-block .tabMobiletrigger.rotate .btn-right::after {
  transform: rotate(90deg);
}
.tab-block .tabMobiletrigger:not(:first-child) {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000000;
}
.tab-block.bg-color6 .tabMobiletrigger {
  border-color: #FFFFFF !important;
}

.tab-box {
  padding: 2.1875rem 0;
}

.tabcontent {
  display: none;
  padding: 0 0 1rem 56px;
}
@media (min-width: 1024px) {
  .tabcontent {
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 0 16px 16px 16px;
    color: #000000 !important;
  }
}

.tabnav {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tabnav li {
  float: left;
  position: relative;
  margin: 0;
  text-align: center;
}
.tabnav li:not(:last-child) button {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.tabnav li button {
  display: block;
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #FFFFFF;
  background: #F05327;
  cursor: pointer;
}
.tabnav li button:hover {
  background: #FFFFFF;
  color: #F05327;
}
.tabnav li.active button {
  background: #FFFFFF;
  color: #F05327;
}
.tabnav li:first-child button {
  border-top-left-radius: 16px;
}
.tabnav li:last-child button {
  border-top-right-radius: 16px;
}

@media (min-width: 1024px) {
  .tab-block.bg-color-none .tabcontent, .tab-block.bg-color-white .tabcontent {
    background-color: #FBF2E9;
  }
}
.tab-block.bg-color-none .tabnav li:not(:last-child) button, .tab-block.bg-color-white .tabnav li:not(:last-child) button {
  border-right: 1px solid rgba(251, 242, 233, 0.3);
}
.tab-block.bg-color-none .tabnav li button:hover, .tab-block.bg-color-white .tabnav li button:hover {
  background: #FBF2E9;
}
.tab-block.bg-color-none .tabnav li.active button, .tab-block.bg-color-white .tabnav li.active button {
  background: #FBF2E9;
}
.tab-block.bg-color1 .tabnav li button {
  background: #000000;
}
.tab-block.bg-color1 .tabnav li button:hover {
  background: #FFFFFF;
  color: #000000;
}
.tab-block.bg-color1 .tabnav li.active button {
  background: #FFFFFF;
  color: #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;
  }
}
/*
========================================================================================
* Block Name: Tab Accordion Block
* Template generated by generate-block
========================================================================================
*/
.tab-accordion-block .btn-right {
  transition: all 0.3s ease;
}
.tab-accordion-block__image-frame {
  position: relative;
  width: 100%;
  max-width: 657px;
  height: max-content;
  max-height: 493px;
  aspect-ratio: 4/3;
  background: #F05327;
  border-radius: 16px;
  overflow: hidden;
}
.tab-accordion-block__image-frame img {
  opacity: 0;
  transition: opacity 0.3s ease;
  height: auto !important;
  width: 100%;
  object-fit: cover;
}
.tab-accordion-block__image-frame img.selected {
  opacity: 1;
}
.tab-accordion-block__image-frame img:not(:first-child) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (max-width: 767.98px) {
  .tab-accordion-block__image-frame {
    width: 100%;
  }
}
.tab-accordion-block .accordion-data {
  display: none;
}
.tab-accordion-block .accordion-row {
  margin-bottom: 1rem;
}
.tab-accordion-block .accordion-row .accordion-data {
  padding-top: 0.5rem;
  padding-left: 3.5rem;
}
@media (max-width: 1279.98px) {
  .tab-accordion-block .accordion-row .accordion-data {
    padding-left: 56px;
  }
}
.tab-accordion-block .accordion-row:last-child {
  margin-bottom: 0;
}
.tab-accordion-block .accordion-row.open .btn-right::after {
  transform: rotate(90deg);
}
.tab-accordion-block .accordion-trigger,
.tab-accordion-block .tab-container .tabMobiletrigger {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-weight: 700;
}
.tab-accordion-block .accordion-trigger .btn-right,
.tab-accordion-block .tab-container .tabMobiletrigger .btn-right {
  margin-right: 1rem !important;
}
@media (max-width: 1279.98px) {
  .tab-accordion-block .accordion-trigger .btn-right,
.tab-accordion-block .tab-container .tabMobiletrigger .btn-right {
    margin-right: 16px !important;
  }
}

/*
========================================================================================
* Block Name: Team Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.team-block .list-item-img > div {
  overflow: hidden;
}
.team-block .list-item-img img {
  width: 100%;
}
.team-block .team-position {
  font-size: 1rem;
}
.team-block .open-team-overlay {
  margin-top: auto;
}
.team-block .list-item-body {
  position: relative;
  cursor: pointer;
}
.team-block .list-item-body:has(.open-team-overlay:hover, .open-team-overlay:focus-visible) .list-item-img img {
  transform: scale(1.02);
}
.team-block .list-item-content .content-container {
  max-height: 17.5rem;
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding-right: 1rem;
}

.team-overlay:not(#generic-overlay) {
  background-color: rgba(0, 0, 0, 0.5);
}
.team-overlay:not(#generic-overlay) .wrap-medium {
  margin-top: 7.5rem;
}
.team-overlay:not(#generic-overlay) .cols-grid {
  max-height: calc(100vh - 26rem);
  overflow-y: auto;
  scrollbar-gutter: stable;
  /*** Scrollbar styles ***/
}
.team-overlay:not(#generic-overlay) .cols-grid::-webkit-scrollbar {
  scrollbar-gutter: stable;
  width: 0.5rem;
  height: 0.5rem;
}
.team-overlay:not(#generic-overlay) .cols-grid::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid #F05327;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .team-overlay:not(#generic-overlay) .cols-grid::-webkit-scrollbar-track {
    margin-top: 3.25rem;
  }
}
.team-overlay:not(#generic-overlay) .cols-grid::-webkit-scrollbar-thumb {
  background-color: #F05327;
  border-radius: 16px;
}
.team-overlay:not(#generic-overlay) .cols-grid::-webkit-scrollbar-thumb:hover {
  background-color: rgba(240, 83, 39, 0.6);
}
.team-overlay:not(#generic-overlay) .page-overlay-content-main {
  background-color: #FBF2E9;
  border-radius: 16px;
}
.team-overlay:not(#generic-overlay) .page-overlay-content-main .close-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  bottom: auto;
  left: auto;
}
@media (max-width: 767.98px) {
  .team-overlay:not(#generic-overlay) .page-overlay-content-main .close-overlay {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translate(50%, -50%);
  }
}
@media (max-width: 767.98px) {
  .team-overlay:not(#generic-overlay) .cols-grid .col-md-6:first-child {
    margin-bottom: 2rem;
  }
}

.testimonial-block__testimonials-wrap {
  position: relative;
}
.testimonial-block__testimonials-wrap .wide-screen-btn {
  position: absolute;
  top: 15.375rem;
  transform: translateY(-50%);
}
@media (max-width: 1500px) {
  .testimonial-block__testimonials-wrap .wide-screen-btn {
    display: none !important;
  }
}
.testimonial-block__testimonials-wrap .wide-screen-btn.btn-left {
  left: -4.5rem;
}
.testimonial-block__testimonials-wrap .wide-screen-btn.btn-right {
  right: -4.5rem;
}
.testimonial-block__testimonials-wrap.with-override-image .testimonial-block__override-image,
.testimonial-block__testimonials-wrap.with-override-image .testimonial-block__testimonials {
  flex: 1;
}
@media (max-width: 767.98px) {
  .testimonial-block__testimonials-wrap.with-override-image {
    flex-direction: column-reverse;
  }
}
@media (min-width: 1500px) {
  .testimonial-block__mobile-slider-buttons {
    display: none !important;
  }
}
.testimonial-block__testimonials {
  max-width: 100%;
}
.testimonial-block__testimonials.no-slick-init .testimonial-block__testimonial:not(:first-child) {
  display: none !important;
}
@media (min-width: 768px) {
  .testimonial-block__testimonials-wrap.with-override-image .testimonial-block__testimonials {
    max-width: 50%;
  }
}
.testimonial-block__override-image {
  flex: 1;
}
.testimonial-block__testimonial > * {
  flex: 1;
}
@media (max-width: 767.98px) {
  .testimonial-block__testimonial {
    flex-direction: column-reverse;
  }
}
.testimonial-block__testimonial > img,
.testimonial-block .testimonial-block__override-image {
  margin-right: 3.5rem;
}
@media (max-width: 1279.98px) {
  .testimonial-block__testimonial > img,
.testimonial-block .testimonial-block__override-image {
    margin-right: 2rem;
  }
}
@media (max-width: 767.98px) {
  .testimonial-block__testimonial > img,
.testimonial-block .testimonial-block__override-image {
    margin-right: 0;
    margin-top: 2rem;
  }
}
.testimonial-block__testimonial-content {
  font-size: 1.25rem;
  padding-right: 1rem;
  margin-right: 1px;
  position: relative;
  padding-top: 5rem;
  max-height: 30.8125rem;
  overflow-y: auto;
}
@media (max-width: 1279.98px) {
  .testimonial-block__testimonial-content {
    font-size: 18px;
    max-height: 26.875rem;
  }
}
@media (max-width: 1023.98px) {
  .testimonial-block__testimonial-content {
    max-height: 24rem;
  }
}
.testimonial-block__testimonial-content::before {
  content: "“";
  position: absolute;
  top: 2.5rem;
  font-family: "Nantes", serif;
  font-size: 7.5rem;
  line-height: 25%;
}
.testimonial-block__testimonial-content::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.testimonial-block__testimonial-content::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid #000000;
  border-radius: 16px;
}
.testimonial-block__testimonial-content::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 16px;
}
.testimonial-block__testimonial-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.testimonial-block .testimonial-placeholder {
  width: 41.0625rem;
  height: auto;
  aspect-ratio: 4/3;
}
.testimonial-block .testimonial-placeholder svg {
  width: 15.625rem;
  fill: #000000;
  opacity: 0.1;
}
.testimonial-block.bg-color6 .testimonial-block__testimonial-content::-webkit-scrollbar-track {
  border: 1px solid #FFFFFF;
}
.testimonial-block.bg-color6 .testimonial-block__testimonial-content::-webkit-scrollbar-thumb {
  background-color: #FFFFFF;
}
.testimonial-block.bg-color6 .testimonial-block__testimonial-content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.6);
}
.testimonial-block.bg-color6 .testimonial-placeholder svg {
  fill: #FFFFFF;
  opacity: 0.3;
}

/*
========================================================================================
* Block Name: Tile Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.tile-block blockquote, .tile-block blockquote::before {
  color: #EF9D4F;
}
.tile-block blockquote p {
  color: inherit;
}
.tile-block .list-item-body:has(.stretched-btn:hover, .stretched-btn:focus-visible) img {
  transform: scale(1.02);
}

/*
========================================================================================
* Block Name: Video Block
* Template generated by generate-block
========================================================================================
*/
/* Your CSS styles here */
.video-block .iframe-responsive {
  border-radius: 12px;
}

/* =Breadcrumbs
========================================================================================*/
.breadcrumbs, #breadcrumbs {
  color: #000000;
}
.breadcrumbs .breadcrumb_last, #breadcrumbs .breadcrumb_last {
  display: none;
}
.breadcrumbs > span, #breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
}
.breadcrumbs > span > *:not(:last-child), #breadcrumbs > span > *:not(:last-child) {
  margin-right: 0.5rem;
}
.breadcrumbs span span, #breadcrumbs span span {
  display: inline-flex;
  align-items: center;
}
.breadcrumbs span span::after, #breadcrumbs span span::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  -webkit-mask-image: url("../../images/icons/chevron-down.svg");
  mask-image: url("../../images/icons/chevron-down.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  background: #000000;
  filter: invert(0);
  transform: rotate(-90deg);
  margin-left: 0.5rem;
}
.breadcrumbs a, #breadcrumbs a {
  color: #000000;
  text-decoration: none !important;
}
.breadcrumbs a:hover, #breadcrumbs a:hover {
  text-decoration: underline !important;
}
.bg-color6 .breadcrumbs, .bg-color6 #breadcrumbs {
  color: #FFFFFF;
}
.bg-color6 .breadcrumbs a, .bg-color6 #breadcrumbs a {
  color: #FFFFFF;
}
.bg-color6 .breadcrumbs span span::after, .bg-color6 #breadcrumbs span span::after {
  background: #FFFFFF;
}

/* =Side Menu - Menu Widget
========================================================================================*/
.widget.widget_jdw_menu {
  background: #F05327;
  border-radius: 8px;
  overflow: hidden;
}
.widget.widget_jdw_menu .widget_jdw_nav li {
  padding: 1rem 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: 1rem;
  color: #FFFFFF;
  display: block;
  line-height: 1;
  margin-left: 1rem;
}
.widget.widget_jdw_menu .widget_jdw_nav li a:hover {
  color: #D3A788;
}
.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: 1rem 0 !important;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu li a {
  padding-left: 1rem;
  font-size: 1rem;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu > li:first-child {
  margin-top: 1rem;
  border-top: 0.125rem solid #ffffff;
}
.widget.widget_jdw_menu .widget_jdw_nav .sub-menu .sub-menu li a {
  padding-left: 1.5rem;
  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;
}

.meta-datetime svg {
  width: 1.125rem;
  height: 1.375rem;
}

/* =Page Banner
========================================================================================*/
.page-banner {
  position: relative;
  /* Wrap width related */
  /* Generic Banner styling, both banner types */
  /* Banner Type: Full Image Background */
  /* Banner Type: Simple */
}
.page-banner.full-image {
  max-width: 1792px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-banner.simple {
  max-width: 1684px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .page-banner {
    max-width: 100% !important;
    padding: 0 !important;
  }
}
.page-banner .banner-container {
  position: relative;
  height: 100%;
}
.page-banner .banner-container .image-container {
  border-radius: 16px;
  overflow: hidden;
}
.page-banner .banner-container .image-container picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner .banner-container .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .page-banner .banner-container .image-container img {
    height: auto;
    aspect-ratio: 1.3333333333;
  }
}
@media (max-width: 767.98px) {
  .page-banner.full-image .banner-container {
    flex-direction: column;
    align-items: center;
  }
}
.page-banner.full-image .banner-container .banner-content {
  position: relative;
  padding: 3.5rem;
}
.page-banner.full-image .banner-container .banner-content__inner-wrap {
  border-radius: 16px;
  width: 37.0625rem;
}
@media (max-width: 767.98px) {
  .page-banner.full-image .banner-container .banner-content__inner-wrap {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .page-banner.full-image .banner-container .banner-content {
    padding: 0 2rem;
    margin-top: -6rem;
  }
  .page-banner.full-image .banner-container .banner-content__inner-wrap {
    border-radius: 16px;
  }
}
@media (max-width: 459.98px) {
  .page-banner.full-image .banner-container .banner-content {
    padding: 0 1rem;
    margin-top: -3.5rem;
  }
}
.page-banner.full-image .banner-container .image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-banner.full-image .banner-container .image-container.no-image-fallback {
  min-height: 30.875rem;
}
@media (max-width: 767.98px) {
  .page-banner.full-image .banner-container .image-container {
    border-radius: 0;
    position: relative;
  }
  .page-banner.full-image .banner-container .image-container img {
    height: auto;
    aspect-ratio: 1.3333333333;
  }
}
.page-banner.full-image.landing .banner-container {
  align-items: flex-end;
}
@media (min-width: 768px) {
  .page-banner.full-image.landing .banner-container {
    min-height: 48rem;
  }
}
.page-banner.full-image:not(.landing) .banner-container {
  align-items: center;
}
@media (min-width: 768px) {
  .page-banner.full-image:not(.landing) .banner-container {
    min-height: 30.875rem;
  }
}
.page-banner.simple .banner-container {
  border-radius: 16px;
  padding: 2rem;
}
.page-banner.simple .banner-container.imageless, .page-banner.simple .banner-container.search-banner {
  min-height: 28.25rem;
}
@media (min-width: 768px) {
  .page-banner.simple .banner-container.search-banner {
    min-height: 18.75rem;
  }
}
@media (max-width: 767.98px) {
  .page-banner.simple .banner-container {
    border-radius: 0;
    padding: 0;
  }
  .page-banner.simple .banner-container.image {
    flex-direction: column-reverse;
    background: none !important;
  }
}
.page-banner.simple .banner-content {
  flex-shrink: 0;
  margin-right: 4.5rem;
}
.page-banner.simple .banner-content__inner-wrap {
  border-radius: 16px;
  max-width: 52.5rem;
  padding: 1.5rem;
}
@media (max-width: 1279.98px) {
  .page-banner.simple .banner-content {
    margin-right: 2rem;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .page-banner.simple .banner-content {
    max-width: none;
    width: 100%;
    z-index: 2;
  }
  .page-banner.simple .banner-content__inner-wrap {
    padding: 2rem;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .page-banner.simple .banner-container.image .banner-content {
    padding: 0 2rem;
    margin-top: -6rem;
  }
}
@media (max-width: 459.98px) {
  .page-banner.simple .banner-container.image .banner-content {
    margin-top: -3.5rem;
    padding: 0 1rem;
  }
}
.page-banner.simple .image-container img {
  aspect-ratio: 16/10;
}
@media (max-width: 767.98px) {
  .page-banner.simple .image-container {
    width: 100%;
    border-radius: 0 !important;
  }
  .page-banner.simple .image-container img {
    aspect-ratio: 1.3333333333;
  }
}
@media (max-width: 767.98px) {
  .page-banner .banner-content__inner-wrap.top-left, .page-banner .banner-content__inner-wrap.top-right, .page-banner .banner-content__inner-wrap.bottom-left, .page-banner .banner-content__inner-wrap.bottom-right {
    border-radius: 16px !important;
  }
}
@media (max-width: 767.98px) {
  .page-banner .image-container.top-left, .page-banner .image-container.top-right, .page-banner .image-container.bottom-left, .page-banner .image-container.bottom-right {
    border-radius: 0 !important;
  }
}

/* =Pagination
========================================================================================*/
.navigation {
  text-align: center;
}
.navigation a {
  text-decoration: none !important;
}
.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  border: 1px solid #000000;
  font-weight: 700;
  border-radius: 50%;
}
.navigation .page-numbers:hover, .navigation .page-numbers.current {
  background-color: #000000;
  color: #FFFFFF !important;
}
.navigation .page-numbers.current {
  cursor: not-allowed;
}
.navigation .page-numbers svg {
  width: 16px;
  height: 16px;
}

.woocommerce-pagination .page-numbers {
  border: 0 !important;
}
.woocommerce-pagination .page-numbers li {
  border: 0 !important;
  margin-right: 5px !important;
}
.woocommerce-pagination .page-numbers li .page-numbers {
  width: 3.125rem;
  height: 3.125rem;
  line-height: 3.125rem;
  padding: 0;
  background: #D3A788 !important;
  color: #EF9D4F !important;
  font-weight: 700;
  border-radius: 0;
}
.woocommerce-pagination .page-numbers li .page-numbers:hover, .woocommerce-pagination .page-numbers li .page-numbers.current, .woocommerce-pagination .page-numbers li .page-numbers:focus {
  color: #FFFFFF !important;
  background: #F05327 !important;
}
.woocommerce-pagination .page-numbers li .page-numbers:hover svg, .woocommerce-pagination .page-numbers li .page-numbers.current svg, .woocommerce-pagination .page-numbers li .page-numbers:focus svg {
  fill: #FFFFFF !important;
}

.post-banner .post-banner__show-all-categories--desktop {
  display: flex !important;
}
@media (max-width: 767.98px) {
  .post-banner .post-banner__show-all-categories--desktop {
    display: none !important;
  }
}
.post-banner .post-banner__show-all-categories {
  display: none !important;
}
@media (max-width: 767.98px) {
  .post-banner .post-banner__show-all-categories {
    display: flex !important;
  }
}
.post-banner .post-banner__categories .post-banner__category:nth-of-type(n + 4) {
  display: none;
}
.post-banner .post-banner__categories.show-all--desktop .post-banner__category:nth-of-type(n + 4) {
  display: flex !important;
}
.post-banner .post-banner__categories.show-all--desktop .post-banner__show-all-categories--desktop,
.post-banner .post-banner__categories.show-all--desktop .post-banner__show-all-categories {
  display: none !important;
}
@media (max-width: 767.98px) {
  .post-banner .post-banner__categories .post-banner__category:not(:first-child) {
    display: none !important;
  }
  .post-banner .post-banner__categories.show-all .post-banner__category:not(:first-child) {
    display: flex !important;
  }
  .post-banner .post-banner__categories.show-all .post-banner__show-all-categories--desktop,
.post-banner .post-banner__categories.show-all .post-banner__show-all-categories {
    display: none !important;
  }
}

/* =Sidebar
========================================================================================*/
.widget {
  background: #D3A788;
  margin-bottom: 6rem;
  border-radius: 8px;
  overflow: hidden;
}
.widget :last-child {
  margin-bottom: 0;
}
.widget .widgettitle {
  display: block;
  margin-bottom: 0;
  background: #F05327;
  color: #FFFFFF;
  font-size: 1.125rem;
  padding: 1rem;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget > div {
  padding: 1rem;
}

/* =Social Share
========================================================================================*/
.social-share-buttons {
  display: none;
}

.share-buttons .share-indicator svg {
  width: 20px;
  height: 20px;
}
.share-buttons a:not(.btn-icon, .btn-circle-icon), .share-buttons button:not(.btn-icon, .btn-circle-icon) {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
}
.share-buttons a:not(.btn-icon, .btn-circle-icon) svg, .share-buttons button:not(.btn-icon, .btn-circle-icon) svg {
  margin-left: 0.5rem;
  fill: #000000;
  width: 1.25rem;
  height: 1.25rem;
}
@media (max-width: 1023.98px) {
  .share-buttons a:not(.btn-icon, .btn-circle-icon), .share-buttons button:not(.btn-icon, .btn-circle-icon) {
    font-size: 0;
    text-indent: -999em;
    padding: 7px;
  }
  .share-buttons a:not(.btn-icon, .btn-circle-icon) svg, .share-buttons button:not(.btn-icon, .btn-circle-icon) svg {
    margin-left: 0;
    width: 20px;
    height: 20px;
  }
}
.share-buttons a:not(.btn-icon, .btn-circle-icon):hover svg, .share-buttons button:not(.btn-icon, .btn-circle-icon):hover svg {
  fill: #FFFFFF;
}
.share-buttons.btn-no-text a {
  font-size: 0;
  text-indent: -999em;
  overflow: hidden;
  padding-right: 0;
  padding-left: 3.5rem;
}
.share-buttons.btn-no-text a span {
  border: none;
  position: initial;
  top: 0;
  left: 0;
}

.post-banner .share-buttons {
  max-width: 50%;
}

/* =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: 2.5rem;
  height: 2.5rem;
  padding-right: 0;
  padding-left: 0;
}
.social-network a svg {
  width: 1.875rem;
  height: 1.875rem;
}
.social-network a:hover svg * {
  fill: #EF9D4F;
}

/* = Tags
========================================================================================*/
.tags {
  display: flex;
  flex-wrap: wrap;
}
.tags li {
  margin-right: 0.5rem;
}
.tags li a,
.tags li span {
  display: inline-block;
  background: transparent;
  color: #000000;
  font-size: 0.75rem;
  line-height: 1.4;
  text-decoration: none;
  padding: 0.3333333333rem 1rem;
  border: 1px solid #000000;
  border-radius: 10.6666666667px;
}
.tags li a:hover:not(span),
.tags li span:hover:not(span) {
  background: #F2B5A5;
  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.5rem;
}
.tags-wrapper.multi-line ul li .tag-item {
  margin-bottom: 0.5rem;
}

/* =Footer
========================================================================================*/
#footer {
  line-height: 1.4;
}
#footer #menu-footer-menu a, #footer #menu-copyright-menu a {
  color: #000000;
  text-decoration: none;
}
#footer #menu-footer-menu a:hover, #footer #menu-copyright-menu a:hover {
  text-decoration: underline;
}
#footer .footer-col-1 #menu-footer-menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#footer .footer-col-1 #menu-footer-menu > li {
  font-weight: 700;
}
#footer .footer-col-1 #menu-footer-menu > li:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 459.98px) {
  #footer .footer-col-1 #menu-footer-menu > li > a + span {
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    position: absolute;
    background: url("../../images/icons/chevron-down.svg") no-repeat center center;
    transform: translate(1rem, 0.25rem);
    transition: transform 0.3s ease;
    cursor: pointer;
  }
  #footer .footer-col-1 #menu-footer-menu > li > a + span.active {
    transform: translate(1rem, 0.25rem) rotate(-180deg);
  }
}
#footer .footer-col-1 #menu-footer-menu .sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
#footer .footer-col-1 #menu-footer-menu .sub-menu li {
  font-weight: 400;
}
#footer .footer-col-1 #menu-footer-menu .sub-menu li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 459.98px) {
  #footer .footer-col-1 #menu-footer-menu {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-col-1 #menu-footer-menu > li:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #footer .footer-links a {
    display: inline-block;
    margin-bottom: 1rem;
  }
  #footer .footer-links a:last-child {
    margin-bottom: 0 !important;
  }
}
#footer .footer-col-2 .footer-col-2__form-wrapper #fluentform_2 input, #footer .footer-col-2 .footer-col-2__form-wrapper #fluentform_2 select {
  border-color: #FFFFFF !important;
}
#footer .footer-col-2 .footer-col-2__form-wrapper #fluentform_2 .ff-el-input--label {
  position: absolute !important;
  left: -9999px;
}
#footer .footer-col-2 .footer-col-2__form-wrapper #fluentform_2 div[data-name=ff_cn_id_3] .ff-el-group {
  margin-bottom: 2rem !important;
}
@media (max-width: 767.98px) {
  #footer .col {
    margin-bottom: 1rem;
    text-align: center;
  }
  #footer .col:last-child {
    margin-bottom: 0;
  }
}
#footer .footer-bottom .copyright-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#footer .footer-bottom .copyright-menu > li:not(:last-child) {
  margin-right: 2rem;
}
@media (max-width: 767.98px) {
  #footer .footer-bottom {
    flex-direction: column;
  }
  #footer .footer-bottom .copyright-menu {
    flex-direction: column;
    align-items: start;
  }
  #footer .footer-bottom .copyright-menu > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* =Header
========================================================================================*/
.header .logo, #footer .logo {
  margin: 0;
  line-height: 1;
  display: inline-block;
  max-width: 40%;
}
.header .logo strong, #footer .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, #footer .logo a {
  display: inline-block;
  position: relative;
}
.header .logo a img, #footer .logo a img {
  max-width: 100%;
  height: auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 5;
  width: 100%;
  /* For Sticky Header*/
  /* Custom styles for Sticky Header */
}
.header.clone-full, .header.clone-wrap {
  /* Required styles */
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  /* Custom styles */
  transform: translateY(-100%);
}
.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: #EF9D4F;
}
.header.sticky {
  transform: translateY(0);
}
.header .header-main-wrap {
  position: relative;
  z-index: 2;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s ease;
}
.header .header-main-wrap.shadow.scrolled {
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
}
.header .header-search {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  border-radius: 0 0 16px 16px;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.33, 1.25, 0.66, 1), visibility 0.4s;
  transform: translateY(-110%);
}
.header .header-search::before {
  content: "";
  position: absolute;
  top: -2rem;
  display: block;
  width: 100%;
  height: 3.5rem;
  background-color: #FFFFFF;
}
.header.search-open .header-search {
  transform: translateY(0);
  visibility: visible;
  transition: visibility 0s, transform 0.4s cubic-bezier(0.33, 1.25, 0.66, 1);
}

.page-overlay-actived .header-main-wrap {
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0);
}

.list-item .list-item-body {
  position: relative;
}
.list-item .list-item-body h3 {
  text-wrap: unset !important;
}
.list-item .list-item-body > a {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.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: #D3A788;
}
.list-item .list-item-body .list-item-img .list-item-img__category-pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.list-item .list-item-body .list-item-content .list-item-button {
  margin-top: auto;
}
.list-item > a,
.list-item figure a {
  display: block;
}
.list-item .list-item-anchor:hover .grow img, .list-item .list-item-anchor:focus-visible .grow img {
  transform: scale(1.02);
}

.listing.same-height .list-item .list-item-body {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.listing.same-height .list-item .list-item-body .list-item-img {
  overflow: initial !important;
  /* To avoid overflow:hidden */
}
.listing.same-height .list-item .list-item-body .list-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* For the Match height with Flex*/
}

/*
========================================================================================
CSS Name: Comments
========================================================================================
*/
#commentform {
  background-color: #D3A788;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
#commentform .form-submit {
  margin-bottom: 0;
}

.comment-list .comment {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #F2B5A5;
}
.comment-list .comment .comment-author .avatar {
  border-radius: 9999px;
  display: block;
  margin-bottom: 1rem;
}
.comment-list .comment .comment-author, .comment-list .comment .comment-meta {
  margin-bottom: 1rem;
}
.comment-list .comment [class*=depth-] {
  margin-top: 1rem;
  margin-left: 2rem;
}
.comment-list .comment .fn, .comment-list .comment .reply {
  font-weight: 600;
}

/* =Navigation
========================================================================================*/
#mainmenu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#mainmenu > ul .sub-menu {
  max-height: 50vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #FBF2E9;
  min-width: 15.625rem;
  min-width: max-content;
}
#mainmenu > ul .sub-menu :focus-visible {
  outline-offset: -6px;
}
#mainmenu > ul .sub-menu ul {
  top: 0;
  left: 100%;
}
#mainmenu > ul .menu-item {
  display: block;
  position: relative;
  float: left;
}
#mainmenu > ul .menu-item a {
  display: block;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-family: "Lato", sans-serif;
  text-decoration: none;
  max-width: 15.625rem;
  color: #000000;
}
#mainmenu > ul .menu-item a:hover {
  color: #F05327;
  text-decoration: underline;
}
#mainmenu > ul .menu-item.current-menu-item > a {
  color: #F05327;
}
#mainmenu > ul > .menu-item {
  margin-right: 2rem;
}
#mainmenu > ul > .menu-item.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
}
#mainmenu > ul > .menu-item.menu-item-has-children > a::after {
  content: "";
  margin-left: 0.5rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background: url(../../images/icons/chevron-down.svg) no-repeat center center;
  background-size: 14px;
  transition: transform 0.3s ease;
}
#mainmenu > ul > .menu-item.menu-item-has-children:hover > a::after, #mainmenu > ul > .menu-item.menu-item-has-children:focus-within > a::after {
  transform: rotate(-180deg);
}
#mainmenu li .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.3);
}
#mainmenu li .sub-menu::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
#mainmenu li .sub-menu::-webkit-scrollbar-track {
  background: #FBF2E9;
  border: 1px solid #F05327;
  border-radius: 0 8px 8px 0;
}
#mainmenu li .sub-menu::-webkit-scrollbar-thumb {
  background-color: #F05327;
  border-radius: 0 8px 8px 0;
}
#mainmenu li .sub-menu::-webkit-scrollbar-thumb:hover {
  background-color: rgba(240, 83, 39, 0.6);
}
#mainmenu li .sub-menu .menu-item {
  /*Rest Level*/
  float: none;
  min-width: 15.625rem;
}
#mainmenu li .sub-menu .menu-item a {
  color: #000000;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  text-transform: none;
}
#mainmenu li .sub-menu .menu-item:hover {
  background: #EF9D4F;
}
#mainmenu li.is-active > .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.3s ease;
}

/**Responsive Menu List **/
.responsive-menu, .responsive-menu-buttons {
  margin: 0 auto;
  max-width: 66%;
}

.responsive-menu {
  display: flex;
  flex-direction: column;
  /*When Sub Menu Dropdown*/
}
.responsive-menu > li:not(:last-child) {
  margin-bottom: 2rem;
}
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: 18px;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #000000;
  line-height: 1.4;
  margin-right: 1.625rem;
  text-decoration: none !important;
}
.responsive-menu li a.open {
  /* background: $color1 !important;
  color: $color-white; */
}
.responsive-menu li .sub-menu {
  display: none;
  padding-top: 1rem;
}
.responsive-menu li .sub-menu li:not(:last-child) {
  margin-bottom: 1rem;
}
.responsive-menu li .sub-menu li a {
  padding-left: 1.5rem;
  /* background: rgba(0, 0, 0,.05); */
}
.responsive-menu li .sub-menu li li a {
  /* background: rgba(0, 0, 0,.1); */
  padding-left: 2.5rem;
}
.responsive-menu > li {
  padding-bottom: 1rem;
  border-bottom: 1px solid #000000;
}
.responsive-menu > li > .sub-menu {
  border-top: 1px solid #000000;
  margin-top: 1rem;
}
.responsive-menu li.menu-item-has-children > .open-submenu {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  cursor: pointer;
}
.responsive-menu li.menu-item-has-children > .open-submenu:after {
  content: "";
  color: #EF9D4F;
  text-align: center;
  line-height: 3.625rem;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 1px;
  left: 0;
  background: url(../../images/icons/chevron-down.svg) no-repeat center center;
  background-size: 18px;
  transition: transform 0.3s ease;
}
.responsive-menu li.menu-item-has-children > .open-submenu.active:after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.searchtxt {
  position: relative;
}
.searchtxt .search-magnifying-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: unset !important;
  border: unset !important;
}
.searchtxt .search-magnifying-icon:hover {
  background: unset !important;
}
.searchtxt .search-magnifying-icon svg {
  width: 20px;
  height: 20px;
}

/*
========================================================================================
CSS Name: Style Guide
========================================================================================
*/
.style-guide-container {
  --color1: #F05327;
  --color2: #F2B5A5;
  --color3: #EF9D4F;
  --color4: #D3A788;
  --color4: #FBF2E9;
  --color4: #206E95;
  --spacing1: 0.5rem;
  --spacing2: 1rem;
  --spacing3: 1.5rem;
  --spacing4: 2rem;
  --spacing5: 2.5rem;
  --spacing6: 3.5rem;
  --spacing7: 4.5rem;
  --spacing8: 5rem;
  --spacing9: 6rem;
  --spacing10: 7.5rem;
  --wrap-sm: 946px;
  --wrap-md: 1144px;
  --wrap-lg: 1792px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  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: 2rem;
}
@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.5rem 1.5rem 0.5rem 0;
  align-self: flex-start;
  max-width: 100%;
}
.style-guide-container .style-guide-content-wrapper {
  display: grid;
  grid-auto-columns: 1fr;
  grid-row-gap: 2rem;
}
.style-guide-container .style-guide-content-item .title {
  font-size: 1.5rem;
}
.style-guide-container .style-guide-content-item .divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5rem;
  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: 1rem;
  grid-column-gap: 1rem;
  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: 1rem;
  top: 1rem;
  z-index: 1;
}
.style-guide-container .style-guide-content-typography-item {
  margin-bottom: 1.5rem;
}
.style-guide-container .style-guide-content-spacing {
  overflow: hidden;
}
.style-guide-container .style-guide-content-spacing-item {
  height: 1.5rem;
  background: #F05327;
}
.style-guide-container .tags > * span {
  font-size: 80%;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.style-guide-container .tags li a, .style-guide-container .tags li span {
  background-color: #000000;
  color: #FFFFFF;
}
.style-guide-container .border {
  border-width: 1px;
  border-color: #000000;
  border-style: solid;
}

/* =General
========================================================================================*/
.site-main {
  min-height: 100vh;
}

.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;
}

.content-container a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background-color: #FFFFFF;
  color: #000000;
  z-index: 99999;
  padding: 0.5rem;
  transition: top 400ms ease-in-out;
  text-decoration: underline;
}
.skip-link:focus {
  top: 0;
  color: #000000;
}

.generic-content-full {
  gap: 1.5rem;
}

.error-page-container {
  max-width: 1144px;
}

/*** Layout - Space adjustments ***/
.search-filter-archive__search-bar {
  max-width: 800px;
}
.search-filter-archive__categories .is-active-category {
  cursor: not-allowed;
  background-color: #000000 !important;
  color: #FFFFFF !important;
}
.search-filter-archive__categories .is-active-category svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: fill 0.3s ease;
  margin-left: 0.5rem;
  fill: #FFFFFF;
}
@media (max-width: 1279.98px) {
  .search-filter-archive__categories .is-active-category svg {
    width: 20px;
    height: 20px;
  }
}

/* =Home
========================================================================================*/
/* Single Post */
/* ============================================================== */
.about-author__container img {
  transition: transform 0.3s cubic-bezier(0.4, 1.5, 0.7, 1);
}

.about-author__container:has(.stretched-btn:hover, .stretched-btn:focus-visible) img {
  transform: scale(1.02);
}

.post-banner__categories {
  max-width: 80%;
}

.share-button-container {
  flex-shrink: 0;
}

/* =General WooCommerce
========================================================================================*/
.woocommerce {
  /*Messages*/
}
.woocommerce form.woocommerce-ordering {
  padding: 0;
  padding-bottom: 1.5rem;
  background: none;
}
.woocommerce form.woocommerce-ordering .orderby {
  border: 0.125rem solid #F2B5A5;
  margin: 0;
  font-style: normal !important;
}
.woocommerce .add_to_cart_button.loading {
  color: transparent !important;
}
.woocommerce .add_to_cart_button.loading:hover {
  color: transparent !important;
}
.woocommerce .add_to_cart_button.loading:hover:after {
  color: #F2B5A5;
}
.woocommerce .woocommerce-products-header__title {
  margin-bottom: 1.5rem;
}
.woocommerce .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 1.5rem;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 0.125rem;
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.woocommerce form.checkout_coupon .woocommerce-form-login__submit,
.woocommerce form.login .woocommerce-form-login__submit,
.woocommerce form.register .woocommerce-form-login__submit {
  float: none;
}
.woocommerce div.woocommerce-message {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .woocommerce div.woocommerce-message {
    flex-wrap: wrap;
  }
}
.woocommerce div.woocommerce-message .button {
  float: none;
  order: 1;
  margin-left: auto;
}
@media (max-width: 1023.98px) {
  .woocommerce div.woocommerce-message .button {
    flex: 0 0 15%;
    margin-left: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .woocommerce div.woocommerce-message .button {
    margin-left: 0;
    margin-top: 1.5rem;
    flex: 0 0 25%;
  }
}
@media (max-width: 459.98px) {
  .woocommerce div.woocommerce-message .button {
    flex: 0 0 100%;
  }
}
.woocommerce div.woocommerce-message .restore-item {
  margin-left: 1.5rem;
}
@media (max-width: 459.98px) {
  .woocommerce div.woocommerce-message .restore-item {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  background: #FFFFFF !important;
  border: 1px solid #000000 !important;
  border-radius: 16px !important;
  color: #000000;
  font-family: "Lato", sans-serif;
  padding: 1.5rem !important;
  margin: 0 0 1.5rem 0 !important;
}
.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before {
  display: none !important;
}

#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 1rem 0 !important;
}

div.woocommerce {
  /* Forms and Labels */
  /* Tables */
}
div.woocommerce form {
  margin: 0 !important;
}
div.woocommerce form h2 {
  font-size: 1.75rem !important;
}
div.woocommerce form .form-row label {
  line-height: inherit;
  margin-bottom: 0.5rem;
}
div.woocommerce table {
  border-radius: 0 !important;
  overflow: hidden;
}
div.woocommerce table.shop_table,
div.woocommerce table.shop_table tbody th,
div.woocommerce table.shop_table tfoot td,
div.woocommerce table.shop_table tfoot th,
div.woocommerce table.shop_table td,
div.woocommerce #add_payment_method #payment,
div.woocommerce .woocommerce-cart #payment,
div.woocommerce .woocommerce-checkout #payment {
  border: 0;
  margin-bottom: 0;
}
div.woocommerce .woocommerce-table th,
div.woocommerce .woocommerce-orders-table th {
  border-right: 0;
}
div.woocommerce .quantity.jd_buttons_added {
  float: none !important;
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 1.5rem !important;
  margin-right: 1.5rem !important;
}
div.woocommerce .quantity.jd_buttons_added input {
  background: #F05327;
  color: #FFFFFF;
  width: 40px;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0;
  margin-bottom: 0 !important;
}
div.woocommerce .quantity.jd_buttons_added input.minus {
  position: relative;
}
div.woocommerce .quantity.jd_buttons_added input.minus:hover {
  background: #F2B5A5;
}
div.woocommerce .quantity.jd_buttons_added input.plus {
  position: relative;
}
div.woocommerce .quantity.jd_buttons_added input.plus:hover {
  background: #F2B5A5;
}
div.woocommerce .quantity.jd_buttons_added input.input-text {
  margin-top: 0 !important;
  border: 1px solid #EF9D4F !important;
  background: #FFFFFF;
  color: #F05327;
  /* Firefox */
  -moz-appearance: textfield;
}
div.woocommerce .quantity.jd_buttons_added input.input-text::-webkit-outer-spin-button, div.woocommerce .quantity.jd_buttons_added input.input-text::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Tables Cont. */
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-top-color: #D3A788;
}

.btn.btn-add-to-cart {
  color: #D3A788 !important;
}
.btn.btn-add-to-cart:hover {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  color: #EF9D4F !important;
}

/* Woocommerce pages layout */
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce form .form-row {
  display: block;
  margin-bottom: 1.5rem;
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  max-width: unset;
  float: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* WooCommerce Forms elements */
.select2-container--default .select2-selection--single {
  border: 1px solid #000000;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  color: #000000;
  background: #FFFFFF;
  padding: 0.5rem 1.5rem;
  min-height: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: inherit;
  padding-left: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 1px;
  margin-top: -13px;
  margin-right: 0.9375rem;
}

.select2-search--dropdown {
  padding: 4px 18px 0 !important;
}

.select2-container--default .select2-results > .select2-results__options {
  padding: 18px 10px 18px 18px !important;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
  border: 1px solid #000000;
  border-right: none;
  border-radius: 16px;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 16px;
}
.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

.select2-container--open .select2-dropdown {
  border: 1px solid #000000 !important;
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 6px !important;
}
.select2-container--open .select2-dropdown.select2-dropdown--below {
  border-top: 0 !important;
}
.select2-container--open .select2-dropdown.select2-dropdown--above {
  border-bottom: 0 !important;
}
.select2-container--open .select2-search__field {
  border: 1px solid #000000 !important;
  padding: 1rem 1.5rem !important;
}

.select2-selection__arrow {
  display: none !important;
}

.select2-dropdown {
  background-color: #FFFFFF;
}

/* Messages */
.form-row.woocommerce-invalid input.input-text {
  border-color: #DC3545 !important;
}

.woocommerce-invalid #terms {
  outline-color: #DC3545 !important;
}

.woocommerce-page .required,
.woocommerce form .form-row.woocommerce-invalid label {
  color: #DC3545 !important;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  background-color: #FFFFFF !important;
  border-radius: 0 !important;
  overflow: hidden;
  margin-top: 1rem;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: inherit !important;
}

/* Category / Product pages */
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  min-width: 20rem;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price {
  color: #000000;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  border-color: #D3A788;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: #EF9D4F;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  opacity: 0.8;
}

.woocommerce div.product div.images img {
  width: auto;
  margin: 0 auto;
}

@media (max-width: 1023.98px) {
  /*woocommerce-smallscreen.css*/
  .woocommerce table.shop_table_responsive tbody th, .woocommerce table.shop_table_responsive thead, .woocommerce-page table.shop_table_responsive tbody th, .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce table.shop_table_responsive tbody tr:first-child td:first-child, .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
    border-top: 0;
  }

  .woocommerce table.shop_table_responsive tr, .woocommerce-page table.shop_table_responsive tr {
    display: block;
  }

  .woocommerce table.shop_table_responsive tr td, .woocommerce-page table.shop_table_responsive tr td {
    display: block;
    text-align: right !important;
  }

  .woocommerce table.my_account_orders tr td.order-actions:before, .woocommerce table.shop_table_responsive tr td.actions:before, .woocommerce table.shop_table_responsive tr td.product-remove:before, .woocommerce-page table.my_account_orders tr td.order-actions:before, .woocommerce-page table.shop_table_responsive tr td.actions:before, .woocommerce-page table.shop_table_responsive tr td.product-remove:before {
    display: none;
  }

  .woocommerce table.shop_table_responsive tr td.order-actions, .woocommerce-page table.shop_table_responsive tr td.order-actions {
    text-align: left !important;
  }

  .woocommerce table.shop_table_responsive tr td:not(.product-thumbnail):before, .woocommerce-page table.shop_table_responsive tr td:not(.product-thumbnail):before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }

  .woocommerce table.my_account_orders tr td.order-actions, .woocommerce-page table.my_account_orders tr td.order-actions {
    text-align: left;
  }

  .woocommerce table.my_account_orders tr td.order-actions .button, .woocommerce-page table.my_account_orders tr td.order-actions .button {
    float: none;
    margin: 0.125em 0.25em 0.125em 0;
  }

  .woocommerce .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-1, .woocommerce-page .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
  }

  .woocommerce ul.products li.product, .woocommerce-page ul.products li.product, .woocommerce-page[class*=columns-] ul.products li.product, .woocommerce[class*=columns-] ul.products li.product {
    width: 48% !important;
    float: left;
    clear: both;
    margin: 0 0 2.992em;
  }

  .woocommerce ul.products li.product:nth-child(2n), .woocommerce-page ul.products li.product:nth-child(2n), .woocommerce-page[class*=columns-] ul.products li.product:nth-child(2n), .woocommerce[class*=columns-] ul.products li.product:nth-child(2n) {
    float: right;
    clear: none !important;
  }

  .woocommerce #content div.product div.images, .woocommerce #content div.product div.summary, .woocommerce div.product div.images, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.images, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.images, .woocommerce-page div.product div.summary {
    float: none;
    width: 100%;
  }

  .woocommerce #content table.cart td.actions, .woocommerce table.cart td.actions, .woocommerce-page #content table.cart td.actions, .woocommerce-page table.cart td.actions {
    text-align: left;
  }

  .woocommerce #content table.cart td.actions .coupon, .woocommerce table.cart td.actions .coupon, .woocommerce-page #content table.cart td.actions .coupon, .woocommerce-page table.cart td.actions .coupon {
    float: none;
    padding-bottom: 0.5em;
  }

  .woocommerce #content table.cart td.actions .coupon:after, .woocommerce #content table.cart td.actions .coupon:before, .woocommerce table.cart td.actions .coupon:after, .woocommerce table.cart td.actions .coupon:before, .woocommerce-page #content table.cart td.actions .coupon:after, .woocommerce-page #content table.cart td.actions .coupon:before, .woocommerce-page table.cart td.actions .coupon:after, .woocommerce-page table.cart td.actions .coupon:before {
    content: " ";
    display: table;
  }

  .woocommerce #content table.cart td.actions .coupon:after, .woocommerce table.cart td.actions .coupon:after, .woocommerce-page #content table.cart td.actions .coupon:after, .woocommerce-page table.cart td.actions .coupon:after {
    clear: both;
  }

  .woocommerce #content table.cart td.actions .coupon .button, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon input, .woocommerce table.cart td.actions .coupon .button, .woocommerce table.cart td.actions .coupon .input-text, .woocommerce table.cart td.actions .coupon input, .woocommerce-page #content table.cart td.actions .coupon .button, .woocommerce-page #content table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon input, .woocommerce-page table.cart td.actions .coupon .button, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon input {
    width: 48%;
    box-sizing: border-box;
  }

  .woocommerce #content table.cart td.actions .coupon .button.alt, .woocommerce #content table.cart td.actions .coupon .input-text + .button, .woocommerce table.cart td.actions .coupon .button.alt, .woocommerce table.cart td.actions .coupon .input-text + .button, .woocommerce-page #content table.cart td.actions .coupon .button.alt, .woocommerce-page #content table.cart td.actions .coupon .input-text + .button, .woocommerce-page table.cart td.actions .coupon .button.alt, .woocommerce-page table.cart td.actions .coupon .input-text + .button {
    float: right;
  }

  .woocommerce #content table.cart td.actions .button, .woocommerce table.cart td.actions .button, .woocommerce-page #content table.cart td.actions .button, .woocommerce-page table.cart td.actions .button {
    display: block;
    width: 100%;
  }

  .woocommerce .cart-collaterals .cart_totals, .woocommerce .cart-collaterals .cross-sells, .woocommerce .cart-collaterals .shipping_calculator, .woocommerce-page .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cross-sells, .woocommerce-page .cart-collaterals .shipping_calculator {
    width: 100%;
    float: none;
    text-align: left;
  }

  .woocommerce-page.woocommerce-checkout form.login .form-row, .woocommerce.woocommerce-checkout form.login .form-row {
    width: 100%;
    float: none;
  }

  .woocommerce #payment .terms, .woocommerce-page #payment .terms {
    text-align: left;
    padding: 0;
  }

  .woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
    float: none;
    box-sizing: border-box;
    margin-bottom: 1em;
  }

  .woocommerce .lost_reset_password .form-row-first, .woocommerce .lost_reset_password .form-row-last, .woocommerce-page .lost_reset_password .form-row-first, .woocommerce-page .lost_reset_password .form-row-last {
    width: 100%;
    float: none;
    margin-right: 0;
  }

  /*Product Page*/
  .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
  }

  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 100% !important;
  }

  /*Product Image Logo*/
  .woocommerce-page h1.product-logo {
    text-align: center;
  }

  .woocommerce-page h1.product-logo img {
    max-width: 50%;
  }

  /*Cart table*/
  .cart_totals .recurring-totals th {
    display: block !important;
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  /*Forms*/
  .woocommerce-page #content table.cart td.actions .coupon .input-text {
    width: 100% !important;
    margin: 0 0 1rem 0 !important;
  }

  .woocommerce-page #content table.cart td.actions .coupon .button {
    width: 100% !important;
  }

  .woocommerce-account .woocommerce-MyAccount-content, .woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
  }
}
.woocommerce span.onsale {
  aspect-ratio: 1/1;
  padding: 0;
}

/* =My Account page
========================================================================================*/
.woocommerce-MyAccount-navigation {
  float: right !important;
}
@media (max-width: 1023.98px) {
  .woocommerce-MyAccount-navigation {
    margin-bottom: 2rem;
  }
}
.woocommerce-MyAccount-navigation ul {
  padding: 0 !important;
  margin: 0 !important;
  list-style-type: none;
}
.woocommerce-MyAccount-navigation ul li {
  padding: 0 !important;
  display: block;
}
.woocommerce-MyAccount-navigation ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.woocommerce-MyAccount-navigation ul li:before {
  display: none;
}
.woocommerce-MyAccount-navigation ul li a {
  border: 1px solid #EF9D4F;
  border-radius: 24px;
  background-color: #EF9D4F;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem 1.5rem;
  text-decoration: none !important;
  border-radius: 24px;
  font-family: "Lato", sans-serif;
  font-size: 1.125rem;
}
@media (max-width: 1279.98px) {
  .woocommerce-MyAccount-navigation ul li a {
    font-size: 18px;
    padding: 7px 24px;
    min-height: 40px;
  }
}
.woocommerce-MyAccount-navigation ul li a::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url("../../images/icons/arrow-right.svg") center center no-repeat;
  background-size: 1rem !important;
  padding: 1rem;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.33, 1.8, 0.66, 1), background-color 0.3s ease;
}
.woocommerce-MyAccount-navigation ul li a:hover::after {
  transform: translateX(0.625rem);
  background-color: rgba(255, 255, 255, 0.8);
}
.woocommerce-MyAccount-navigation ul li.is-active {
  cursor: not-allowed;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  opacity: 0.5;
  pointer-events: none;
}

#customer_login h2 {
  font-size: 1.75rem;
}
#customer_login .woocommerce-form-login__submit {
  margin-left: 1rem !important;
}
#customer_login .woocommerce-form-register__submit {
  margin-top: 1rem !important;
}

.woocommerce-MyAccount-content {
  float: left !important;
}
@media (min-width: 768px) {
  .woocommerce-MyAccount-content {
    padding-right: 2rem;
  }
}

.woocommerce-form__label.woocommerce-form__label-for-checkbox {
  line-height: 2.5rem !important;
}

.woocommerce-account .woocommerce .col2-set .col-1 {
  width: 48%;
  float: left;
}

.woocommerce-account .col2-set .col-2 {
  float: right;
  width: 48%;
}

.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row span em {
  font-size: 12px;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
  font-weight: bold;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}

#add_payment_method,
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-PaymentMethod,
.woocommerce-EditAccountForm {
  padding: 0 !important;
}

.u-column1.col-1.woocommerce-Address:not(#grid-framework-cols) {
  max-width: 100%;
  padding: 0 !important;
}

#add_payment_method div.payment_box {
  background: #FFFFFF !important;
  border-radius: 16px !important;
  border: 1px solid #000000 !important;
}
#add_payment_method div.payment_box::before {
  content: "";
  display: block;
  position: absolute;
  background: #FFFFFF !important;
  top: -10px !important;
  left: 32px !important;
  width: 18px !important;
  height: 18px !important;
  transform: rotate(45deg) !important;
  border-top: 1px solid black !important;
  border-left: 1px solid black !important;
  border-right: none !important;
  border-bottom: none !important;
  margin: 0 !important;
}
#add_payment_method label {
  display: inline-flex !important;
  align-items: center;
}

/* =Cart page
========================================================================================*/
input[name=coupon_code] {
  border-color: #F05327 !important;
}

.woocommerce-page #content table.cart td.actions .coupon .input-text {
  width: auto !important;
  background: #FFFFFF !important;
  padding: 0.5rem 1.5rem !important;
  line-height: 1.4;
  margin-right: 0.5rem;
  border-radius: 0;
}

table.cart td.actions {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.woocommerce-cart .woocommerce-cart-form {
  border-radius: 0 !important;
  padding: 0 !important;
  background: #FFFFFF;
}
.woocommerce-cart .woocommerce-cart-form .product-thumbnail {
  min-width: 125px !important;
}
@media (max-width: 1023.98px) {
  .woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .woocommerce-cart .woocommerce-cart-form .product-thumbnail {
    text-align: center !important;
    display: block !important;
  }
}
.woocommerce-cart .woocommerce-cart-form .product-thumbnail:before {
  display: none;
}
@media (min-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form .product-thumbnail a {
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
    display: flex;
  }
}
.woocommerce-cart .woocommerce-cart-form .product-thumbnail a img {
  width: auto;
}
@media (min-width: 768px) {
  .woocommerce-cart .woocommerce-cart-form .product-thumbnail a img {
    height: auto !important;
    max-height: 90% !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767.98px) {
  .woocommerce-cart .woocommerce-cart-form .product-thumbnail a img {
    max-height: 160px !important;
  }
}
.woocommerce-cart .woocommerce-cart-form .shop_table {
  border-radius: 0 !important;
  background-color: #FFFFFF;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .product-remove a.remove {
  color: #FFFFFF !important;
  height: 35px;
  width: 35px;
  background: #F2B5A5;
  border-radius: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .product-remove a.remove:hover {
  background: #F05327;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .jd_buttons_added {
  margin-bottom: 0 !important;
}
@media (max-width: 1023.98px) {
  .woocommerce-cart .woocommerce-cart-form .shop_table .jd_buttons_added {
    justify-content: flex-end;
    margin-right: 0 !important;
  }
}
.woocommerce-cart .woocommerce-cart-form .shop_table th {
  border-right: 0;
  font-weight: 400;
}
@media (max-width: 767.98px) {
  .woocommerce-cart .woocommerce-cart-form .shop_table .cart_item {
    margin-bottom: 1.5rem;
    border: 0.125rem solid #F2B5A5;
    padding: 2rem;
  }
}
.woocommerce-cart .woocommerce-cart-form .shop_table .cart_item td {
  border-bottom: 0.125rem solid #F2B5A5;
}
@media (max-width: 767.98px) {
  .woocommerce-cart .woocommerce-cart-form .shop_table .cart_item td {
    border-bottom: 0;
  }
}
.woocommerce-cart .woocommerce-cart-form .shop_table .cart_item .product-name a {
  font-size: 1rem;
  text-transform: none;
  font-weight: 400;
  color: #F05327;
}
.woocommerce-cart .woocommerce-cart-form .shop_table .cart_item .product-name a:hover {
  color: #F2B5A5;
}
.woocommerce-cart .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout #checkout_form {
  padding: 0 !important;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em !important;
  color: #FFFFFF !important;
  font-weight: normal;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  color: #FFFFFF !important;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive .woocommerce-shipping-calculator {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive .woocommerce-shipping-calculator .shipping-calculator-button {
  color: #F2B5A5;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive .woocommerce-shipping-calculator .shipping-calculator-button:hover {
  color: #F05327;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive tr td {
  background-color: #FFFFFF;
  border-top: 0.125rem solid #F2B5A5 !important;
  border-right: 0.125rem solid #F2B5A5 !important;
}
@media (max-width: 1023.98px) {
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive tr td {
    border-left: 0.125rem solid #F2B5A5 !important;
  }
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive tr:last-child td {
  border-bottom: 0.125rem solid #F2B5A5 !important;
  border-left: 0.125rem solid #F2B5A5 !important;
  border-right: 0.125rem solid #F2B5A5 !important;
}
@media (max-width: 1023.98px) {
  .woocommerce-cart .cart-collaterals .cart_totals .shop_table_responsive tr.order-total + tr td:before {
    display: none;
  }
}

/* =Checkout page
========================================================================================*/
.woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
  background: #F05327;
  color: #000000;
  border-radius: 16px !important;
}

.woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #F05327;
}

.woocommerce-checkout .payment_methods {
  padding: 1rem !important;
}
.woocommerce-checkout .payment_methods .wc_payment_method.payment_method_paypal .about_paypal {
  margin: -2px 0 0 0.5em;
}
.woocommerce-checkout .payment_methods .wc_payment_method label:not([for=nab_dp-card-cvc]) {
  display: inline-block;
}
.woocommerce-checkout .payment_methods .wc_payment_method input:hover, .woocommerce-checkout .payment_methods .wc_payment_method label:hover {
  cursor: pointer;
}
.woocommerce-checkout .payment_methods .payment_method_afterpay p {
  color: #F2B5A5 !important;
}
.woocommerce-checkout #payment div.payment_box {
  padding: 1.5rem;
}
.woocommerce-checkout #payment div.payment_box input {
  font-size: inherit !important;
  padding: 0.5rem 1.5rem !important;
}
.woocommerce-checkout #payment .form-row.place-order {
  padding: 1rem !important;
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.woocommerce-checkout .payment_box {
  border-radius: 0 !important;
}
.woocommerce-checkout .place-order .button {
  font-size: 1em !important;
}
.woocommerce-checkout .select2-selection--single .select2-selection__arrow {
  margin-right: 0.9375rem;
}
.woocommerce-checkout .select2-selection--single .select2-selection__arrow b {
  border-color: #F2B5A5 transparent transparent transparent !important;
}
.woocommerce-checkout #order_review .shop_table {
  border-collapse: collapse;
  border-radius: none;
  border: 0.125rem solid #F2B5A5;
}
.woocommerce-checkout #order_review .shop_table.woocommerce-checkout-review-order-table tbody {
  border: 0.125rem solid #F2B5A5;
}
.woocommerce-checkout #order_review .shop_table.woocommerce-checkout-review-order-table thead tr th {
  background: #F2B5A5;
  color: #FFFFFF;
  font-weight: normal;
}
.woocommerce-checkout #order_review .shop_table.woocommerce-checkout-review-order-table tfoot tr th {
  background: #F2B5A5;
  color: #FFFFFF;
}
.woocommerce-checkout #order_review .shop_table.woocommerce-checkout-review-order-table tfoot tr td {
  border-bottom: 0.125rem solid #F2B5A5;
}
.woocommerce-checkout #order_review .shop_table tbody .cart_item:first-child {
  border-top: 0.125rem;
}
.woocommerce-checkout #order_review .shop_table tbody tr td {
  min-height: 100px;
  padding: 1rem;
  border-top: 0.125rem solid #F2B5A5;
}
.woocommerce-checkout #order_review table .product-total {
  text-align: center;
}
.woocommerce-checkout #order_review table th {
  border-right: 0.125rem solid #F2B5A5;
  background: none;
  color: #000000;
}
.woocommerce-checkout form.checkout .col2-set, .woocommerce-checkout form.checkout .woocommerce-page .col2-set {
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce-checkout form.checkout .col2-set, .woocommerce-checkout form.checkout .woocommerce-page .col2-set {
    width: 47.8260869565%;
    float: left;
    margin-right: 4.347826087%;
  }
  .woocommerce-checkout form.checkout .col2-set .col-1, .woocommerce-checkout form.checkout .col2-set .col-2, .woocommerce-checkout form.checkout .woocommerce-page .col2-set .col-1, .woocommerce-checkout form.checkout .woocommerce-page .col2-set .col-2 {
    display: block;
    width: 100%;
    min-width: 100%;
  }
}
.woocommerce-checkout button#place_order {
  font-size: 1.5em !important;
  width: 100%;
  font-weight: normal;
  color: #FFFFFF !important;
}
.woocommerce-checkout button#place_order:hover {
  color: #FFFFFF !important;
}
.woocommerce-checkout .woocommerce-order ul.order_details li {
  border-right: 0.125rem solid #F2B5A5;
}
.woocommerce-checkout .woocommerce-order ul.order_details li:last-of-type {
  border: 0;
}
@media (max-width: 1023.98px) {
  .woocommerce-checkout .woocommerce-order ul.order_details li {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
    border: 0.125rem !important;
  }
}

.woocommerce .woocommerce-order-details .shop_table {
  background: #FFFFFF;
  border-collapse: collapse;
  border-radius: none;
  border: 0.125rem solid #F2B5A5;
}
.woocommerce .woocommerce-order-details .shop_table.woocommerce-checkout-review-order-table tbody, .woocommerce .woocommerce-order-details .shop_table.woocommerce-table--order-details tbody {
  border: 0.125rem solid #F2B5A5;
}
.woocommerce .woocommerce-order-details .shop_table.woocommerce-checkout-review-order-table thead tr th, .woocommerce .woocommerce-order-details .shop_table.woocommerce-table--order-details thead tr th {
  background: #F2B5A5;
  color: #FFFFFF;
}
.woocommerce .woocommerce-order-details .shop_table.woocommerce-checkout-review-order-table tfoot tr:first-child th, .woocommerce .woocommerce-order-details .shop_table.woocommerce-table--order-details tfoot tr:first-child th {
  border-top: 0;
}
.woocommerce .woocommerce-order-details .shop_table.woocommerce-checkout-review-order-table tfoot tr th, .woocommerce .woocommerce-order-details .shop_table.woocommerce-table--order-details tfoot tr th {
  background: #F2B5A5;
  color: #FFFFFF;
}
.woocommerce .woocommerce-order-details .shop_table.woocommerce-checkout-review-order-table tfoot tr td, .woocommerce .woocommerce-order-details .shop_table.woocommerce-table--order-details tfoot tr td {
  border-bottom: 1px solid #F2B5A5;
}
.woocommerce .woocommerce-order-details .shop_table tbody .cart_item:first-child {
  border-top: 0px;
}
.woocommerce .woocommerce-order-details .shop_table tbody tr td {
  min-height: 100px;
  padding: 1rem;
  border-top: 1px solid #F2B5A5;
}
.woocommerce .woocommerce-order-details table .product-name {
  text-align: center;
}
.woocommerce .woocommerce-order-details table .product-total {
  text-align: center;
}
.woocommerce .woocommerce-order-details table th {
  border-right: solid 1px #F2B5A5;
  background: none;
  color: #000000;
}
.woocommerce .account-orders-table {
  background: #FFFFFF;
}
.woocommerce .account-orders-table tbody .woocommerce-orders-table__row td {
  border-bottom: 1px solid #F2B5A5;
}
.woocommerce #order_review {
  width: 100%;
}
@media (min-width: 768px) {
  .woocommerce #order_review {
    width: 47.8260869565%;
    float: right;
    margin-right: 0;
  }
}
.woocommerce .woocommerce-customer-details address {
  line-height: 1.5;
  border-radius: 0;
  border: 0;
  padding: 0;
}
.woocommerce .woocommerce-customer-details .col2-set {
  width: 100%;
  float: none;
}
.woocommerce .woocommerce-customer-details .col2-set .col-1 {
  display: block;
  min-width: 48%;
  float: left;
  width: 48%;
}
.woocommerce .woocommerce-customer-details .col2-set .col-2 {
  display: block;
  min-width: 48%;
  float: right;
  width: 48%;
}
@media (max-width: 1023.98px) {
  .woocommerce .woocommerce-customer-details .col2-set .col-1, .woocommerce .woocommerce-customer-details .col2-set .col-2 {
    width: 100% !important;
  }
  .woocommerce .woocommerce-customer-details .col2-set .col-2 {
    margin-top: 2rem;
  }
}
.woocommerce mark {
  background-color: #F2B5A5;
  padding: 2px 4px;
  border-radius: 8px;
  color: #000000;
}
@media (max-width: 767.98px) {
  .woocommerce .woocommerce-MyAccount-content {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .woocommerce .woocommerce-Addresses .col-1 {
    margin-bottom: 1.5rem;
  }
}
.woocommerce .woocommerce-Addresses address {
  line-height: 1.5;
}

.order_details .product-name a {
  color: #F2B5A5;
}
.order_details .product-name a:hover {
  color: #F05327;
}

.woocommerce .products.cols-grid {
  margin-left: -1.5rem !important;
}
.woocommerce .products.cols-grid:before, .woocommerce .products.cols-grid:after {
  display: none;
}
.woocommerce .products.cols-grid li.product {
  float: none;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  margin: 0 !important;
  width: auto !important;
  margin-bottom: 1.5rem !important;
  padding-left: 2rem !important;
}
@media (max-width: 767.98px) {
  .woocommerce .products.cols-grid li.product {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 459.98px) {
  .woocommerce .products.cols-grid li.product {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.woocommerce .products.cols-grid li.product .woocommerce-placeholder {
  border: 0 !important;
}

.woocommerce.single-product .summary .single_add_to_cart_button {
  float: none !important;
}
.woocommerce.single-product .summary .product_meta > span {
  display: block;
}
.woocommerce.single-product .summary .product_meta > span:not(:last-child) {
  margin-bottom: 1.5rem;
}
.woocommerce.single-product .summary .product_meta > span .sku {
  font-weight: bold;
}
.woocommerce.single-product .summary .product_meta > span a {
  font-weight: bold;
}
.woocommerce.single-product .summary .cart {
  margin-bottom: 1.5rem;
}
.woocommerce.single-product .summary select {
  display: block !important;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs {
  margin-bottom: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs:before {
  display: none !important;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs li {
  border-radius: 0 !important;
  border: 0 !important;
  float: left;
  position: relative !important;
  margin: 0 !important;
  text-align: center !important;
  padding: 0 !important;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs li:before, .woocommerce.single-product .woocommerce-tabs .wc-tabs li:after {
  display: none;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs li a {
  padding: 1rem 1.5rem !important;
  text-decoration: none;
  color: #000000 !important;
  background: #F05327;
  font-size: 1.5rem;
  height: 100%;
  cursor: pointer;
  text-transform: uppercase;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs li a:hover {
  background: #F2B5A5;
  color: #F05327 !important;
}
.woocommerce.single-product .woocommerce-tabs .wc-tabs li.active a {
  background: #F2B5A5;
  color: #F05327 !important;
}
.woocommerce.single-product .woocommerce-tabs .woocommerce-Tabs-panel {
  padding: 1rem !important;
  background: #D3A788;
}
.woocommerce.single-product .woocommerce-tabs .shop_attributes {
  border-top: 1px solid #F2B5A5 !important;
}
.woocommerce.single-product .woocommerce-tabs .shop_attributes th {
  color: #F05327;
  background: #F2B5A5 !important;
  border-right: 0;
  border-bottom: 1px solid #F2B5A5 !important;
}
.woocommerce.single-product .woocommerce-tabs .shop_attributes td {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  background: #D3A788 !important;
  border-bottom: 1px solid #F2B5A5 !important;
  border-right: 1px solid #F2B5A5 !important;
  vertical-align: middle !important;
}
.woocommerce.single-product .woocommerce-tabs .shop_attributes td a {
  color: #000000;
}
.woocommerce.single-product .woocommerce-tabs .shop_attributes td a:hover {
  color: #F05327;
}
/*# sourceMappingURL=style.css.map */
